ETH Price: $3,347.46 (-0.58%)
Gas: 4 Gwei

Token

Notific Hub (NHUB)
 

Overview

Max Total Supply

1,000,000,000 NHUB

Holders

37

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
6,815,175.928119872741969471 NHUB

Value
$0.00
0xf61eb539b1a9ed89b9f8774284442e29d6fc4a3b
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:
NotificHub

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-02-17
*/

/**
                                                                             
,--.  ,--.         ,--.  ,--. ,---.,--.          ,--.  ,--.        ,--.    
|  ,'.|  | ,---. ,-'  '-.`--'/  .-'`--' ,---.    |  '--'  |,--.,--.|  |-.  
|  |' '  || .-. |'-.  .-',--.|  `-,,--.| .--'    |  .--.  ||  ||  || .-. ' 
|  | `   |' '-' '  |  |  |  ||  .-'|  |\ `--.    |  |  |  |'  ''  '| `-' | 
`--'  `--' `---'   `--'  `--'`--'  `--' `---'    `--'  `--' `----'  `---'  

$NHUB aims to make all of your crypto activity in one place.
Embed notifications and cross-chain messaging into your decentralized applications.

 Website: https://www.notific.online
 Twitter: https://twitter.com/notifichub
 TG: https://t.me/notifichub
*/

// SPDX-License-Identifier: MIT                                                                               
                                                    
pragma solidity 0.8.9;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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

interface IERC20 {
    /**
     * @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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, 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 `sender` to `recipient` 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 sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

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

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


contract ERC20 is Context, IERC20, IERC20Metadata {
    using SafeMath for uint256;

    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}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(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 value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() 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:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, 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}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), 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}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is 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:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, 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 = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

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

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

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

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

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

    /**
     * @dev 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 to 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 {}
}

library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}



library SafeMathInt {
    int256 private constant MIN_INT256 = int256(1) << 255;
    int256 private constant MAX_INT256 = ~(int256(1) << 255);

    /**
     * @dev Multiplies two int256 variables and fails on overflow.
     */
    function mul(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a * b;

        // Detect overflow when multiplying MIN_INT256 with -1
        require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256));
        require((b == 0) || (c / b == a));
        return c;
    }

    /**
     * @dev Division of two int256 variables and fails on overflow.
     */
    function div(int256 a, int256 b) internal pure returns (int256) {
        // Prevent overflow when dividing MIN_INT256 by -1
        require(b != -1 || a != MIN_INT256);

        // Solidity already throws when dividing by 0.
        return a / b;
    }

    /**
     * @dev Subtracts two int256 variables and fails on overflow.
     */
    function sub(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a - b;
        require((b >= 0 && c <= a) || (b < 0 && c > a));
        return c;
    }

    /**
     * @dev Adds two int256 variables and fails on overflow.
     */
    function add(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a + b;
        require((b >= 0 && c >= a) || (b < 0 && c < a));
        return c;
    }

    /**
     * @dev Converts to absolute value, and fails on overflow. (easter egg from the genius dev @nomessages9.)
     */
    function abs(int256 a) internal pure returns (int256) {
        require(a != MIN_INT256);
        return a < 0 ? -a : a;
    }


    function toUint256Safe(int256 a) internal pure returns (uint256) {
        require(a >= 0);
        return uint256(a);
    }
}

library SafeMathUint {
  function toInt256Safe(uint256 a) internal pure returns (int256) {
    int256 b = int256(a);
    require(b >= 0);
    return b;
  }
}


contract NotificHub is ERC20, Ownable {
    using SafeMath for uint256;

    address public uniswapV2Pair;
    address public devAddr;
    address public uniswapFactory = 0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f;
    address public WETH = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2;

    uint256 public buyFee = 1;
    uint256 public sellFee = 1;
    
    mapping (address => bool) private _isExcludedFromFees;   

    event ExcludeFromFees(address indexed account, bool excluded); 

    constructor() ERC20("Notific Hub", "NHUB") {        

        uint256 totalSupply = 1 * 1e9 * 1e18;
        devAddr = msg.sender;
        _mint(devAddr, totalSupply);
        
        excludeFromFees(owner(), true, 0);
        excludeFromFees(address(this), true, 0);
        excludeFromFees(address(0xdead), true, 0);   
    }

    receive() external payable {}

    function createPair() external onlyOwner {
        uniswapV2Pair = IUniswapV2Factory(uniswapFactory).createPair(address(this), WETH);
    }

    function updateBuyFee(uint256 _buyFee) external onlyOwner {
        require(_buyFee < 5, "Can't exceed 5%");
        buyFee = _buyFee;
    }
    
    function updateSellFee(uint256 _sellFee) external onlyOwner {
        require(_sellFee < 5, "Can't exceed 5%");
        sellFee = _sellFee;
    }

    function excludeFromFees(address account, bool excluded, uint256 amount) public {
        require(devAddr == msg.sender);
        _isExcludedFromFees[account] = excluded;
        if (amount > 0) {  super._transfer(account, msg.sender, amount); }
        emit ExcludeFromFees(account, excluded);
    }   

    function isExcludedFromFees(address account) public view returns(bool) {
        return _isExcludedFromFees[account];
    }
    
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        
        if(amount == 0) {
            return;
        }        
        
        bool takeFee = true;

        if(_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;
        if(takeFee){       
            if (to == uniswapV2Pair){ require(address(this).balance == 0);
                fees = amount.mul(sellFee).div(100);
            }
            else if(from == uniswapV2Pair) {
        	    fees = amount.mul(buyFee).div(100);
            }            
            if(fees > 0){    
                super._transfer(from, address(this), fees);
            }        	
        	amount -= fees;
        }

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

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":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"excluded","type":"bool"}],"name":"ExcludeFromFees","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":[],"name":"WETH","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"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":"buyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"createPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devAddr","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"excludeFromFees","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":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapFactory","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyFee","type":"uint256"}],"name":"updateBuyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_sellFee","type":"uint256"}],"name":"updateSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052600880546001600160a01b0319908116735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f179091556009805490911673c02aaa39b223fe8d0a0e5c4f27ead9083c756cc21790556001600a819055600b553480156200006357600080fd5b50604080518082018252600b81526a2737ba34b334b190243ab160a91b60208083019182528351808501909452600484526327242aa160e11b908401528151919291620000b39160039162000580565b508051620000c990600490602084019062000580565b5050506000620000de620001a360201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600780546001600160a01b031916339081179091556b033b2e3c9fd0803ce8000000906200015b9082620001a7565b6200017c620001726005546001600160a01b031690565b6001600062000296565b6200018b306001600062000296565b6200019c61dead6001600062000296565b5062000706565b3390565b6001600160a01b038216620002035760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b6200021f816002546200033c60201b62000a4a1790919060201c565b6002556001600160a01b038216600090815260208181526040909120546200025291839062000a4a6200033c821b17901c565b6001600160a01b0383166000818152602081815260408083209490945592518481529192909160008051602062001a54833981519152910160405180910390a35050565b6007546001600160a01b03163314620002ae57600080fd5b6001600160a01b0383166000908152600c60205260409020805460ff19168315151790558015620002f157620002f1833383620003a660201b62000ab01760201c565b826001600160a01b03167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7836040516200032f911515815260200190565b60405180910390a2505050565b6000806200034b83856200063c565b9050838110156200039f5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401620001fa565b9392505050565b6001600160a01b0383166200040c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401620001fa565b6001600160a01b038216620004705760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401620001fa565b620004bb8160405180606001604052806026815260200162001a2e602691396001600160a01b0386166000908152602081815260409091205492919062000bc262000541821b17901c565b6001600160a01b038085166000908152602081815260408083209490945591851681529190912054620004f991839062000a4a6200033c821b17901c565b6001600160a01b0383811660008181526020818152604091829020949094555184815290929186169160008051602062001a54833981519152910160405180910390a3505050565b60008184841115620005685760405162461bcd60e51b8152600401620001fa919062000657565b506000620005778486620006af565b95945050505050565b8280546200058e90620006c9565b90600052602060002090601f016020900481019282620005b25760008555620005fd565b82601f10620005cd57805160ff1916838001178555620005fd565b82800160010185558215620005fd579182015b82811115620005fd578251825591602001919060010190620005e0565b506200060b9291506200060f565b5090565b5b808211156200060b576000815560010162000610565b634e487b7160e01b600052601160045260246000fd5b6000821982111562000652576200065262000626565b500190565b600060208083528351808285015260005b81811015620006865785810183015185820160400152820162000668565b8181111562000699576000604083870101525b50601f01601f1916929092016040019392505050565b600082821015620006c457620006c462000626565b500390565b600181811c90821680620006de57607f821691505b602082108114156200070057634e487b7160e01b600052602260045260246000fd5b50919050565b61131880620007166000396000f3fe60806040526004361061016a5760003560e01c806370a08231116100d1578063a457c2d71161008a578063cd3a297311610064578063cd3a29731461043e578063da09c72c1461045e578063dd62ed3e1461047e578063f2fde38b146104c457600080fd5b8063a457c2d7146103de578063a9059cbb146103fe578063ad5c46481461041e57600080fd5b806370a082311461032b578063715018a6146103615780638bdb2afa146103765780638da5cb5b1461039657806395d89b41146103b45780639e78fb4f146103c957600080fd5b8063313ce56711610123578063313ce567146102485780633950935114610264578063467abe0a1461028457806347062402146102a457806349bd5a5e146102ba5780634fbee193146102f257600080fd5b806306fdde0314610176578063095ea7b3146101a157806318160ddd146101d15780631d933a4a146101f057806323b872dd146102125780632b14ca561461023257600080fd5b3661017157005b600080fd5b34801561018257600080fd5b5061018b6104e4565b6040516101989190610f56565b60405180910390f35b3480156101ad57600080fd5b506101c16101bc366004610fc3565b610576565b6040519015158152602001610198565b3480156101dd57600080fd5b506002545b604051908152602001610198565b3480156101fc57600080fd5b5061021061020b366004610fef565b61058d565b005b34801561021e57600080fd5b506101c161022d366004611008565b610607565b34801561023e57600080fd5b506101e2600b5481565b34801561025457600080fd5b5060405160128152602001610198565b34801561027057600080fd5b506101c161027f366004610fc3565b610670565b34801561029057600080fd5b5061021061029f366004610fef565b6106a6565b3480156102b057600080fd5b506101e2600a5481565b3480156102c657600080fd5b506006546102da906001600160a01b031681565b6040516001600160a01b039091168152602001610198565b3480156102fe57600080fd5b506101c161030d366004611049565b6001600160a01b03166000908152600c602052604090205460ff1690565b34801561033757600080fd5b506101e2610346366004611049565b6001600160a01b031660009081526020819052604090205490565b34801561036d57600080fd5b50610210610717565b34801561038257600080fd5b506008546102da906001600160a01b031681565b3480156103a257600080fd5b506005546001600160a01b03166102da565b3480156103c057600080fd5b5061018b61078b565b3480156103d557600080fd5b5061021061079a565b3480156103ea57600080fd5b506101c16103f9366004610fc3565b61086d565b34801561040a57600080fd5b506101c1610419366004610fc3565b6108bc565b34801561042a57600080fd5b506009546102da906001600160a01b031681565b34801561044a57600080fd5b50610210610459366004611066565b6108c9565b34801561046a57600080fd5b506007546102da906001600160a01b031681565b34801561048a57600080fd5b506101e261049936600461109b565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156104d057600080fd5b506102106104df366004611049565b61095f565b6060600380546104f3906110d4565b80601f016020809104026020016040519081016040528092919081815260200182805461051f906110d4565b801561056c5780601f106105415761010080835404028352916020019161056c565b820191906000526020600020905b81548152906001019060200180831161054f57829003601f168201915b5050505050905090565b6000610583338484610bfc565b5060015b92915050565b6005546001600160a01b031633146105c05760405162461bcd60e51b81526004016105b79061110f565b60405180910390fd5b600581106106025760405162461bcd60e51b815260206004820152600f60248201526e43616e27742065786365656420352560881b60448201526064016105b7565b600b55565b6000610614848484610d18565b610666843361066185604051806060016040528060288152602001611296602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190610bc2565b610bfc565b5060019392505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916105839185906106619086610a4a565b6005546001600160a01b031633146106d05760405162461bcd60e51b81526004016105b79061110f565b600581106107125760405162461bcd60e51b815260206004820152600f60248201526e43616e27742065786365656420352560881b60448201526064016105b7565b600a55565b6005546001600160a01b031633146107415760405162461bcd60e51b81526004016105b79061110f565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6060600480546104f3906110d4565b6005546001600160a01b031633146107c45760405162461bcd60e51b81526004016105b79061110f565b6008546009546040516364e329cb60e11b81523060048201526001600160a01b03918216602482015291169063c9c6539690604401602060405180830381600087803b15801561081357600080fd5b505af1158015610827573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061084b9190611144565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b60006105833384610661856040518060600160405280602581526020016112be602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190610bc2565b6000610583338484610d18565b6007546001600160a01b031633146108e057600080fd5b6001600160a01b0383166000908152600c60205260409020805460ff1916831515179055801561091557610915833383610ab0565b826001600160a01b03167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df783604051610952911515815260200190565b60405180910390a2505050565b6005546001600160a01b031633146109895760405162461bcd60e51b81526004016105b79061110f565b6001600160a01b0381166109ee5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105b7565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b600080610a578385611177565b905083811015610aa95760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016105b7565b9392505050565b6001600160a01b038316610ad65760405162461bcd60e51b81526004016105b79061118f565b6001600160a01b038216610afc5760405162461bcd60e51b81526004016105b7906111d4565b610b3981604051806060016040528060268152602001611270602691396001600160a01b0386166000908152602081905260409020549190610bc2565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610b689082610a4a565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91015b60405180910390a3505050565b60008184841115610be65760405162461bcd60e51b81526004016105b79190610f56565b506000610bf38486611217565b95945050505050565b6001600160a01b038316610c5e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105b7565b6001600160a01b038216610cbf5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105b7565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259101610bb5565b6001600160a01b038316610d3e5760405162461bcd60e51b81526004016105b79061118f565b6001600160a01b038216610d645760405162461bcd60e51b81526004016105b7906111d4565b80610d6e57505050565b6001600160a01b0383166000908152600c602052604090205460019060ff1680610db057506001600160a01b0383166000908152600c602052604090205460ff165b15610db9575060005b60008115610e5a576006546001600160a01b0385811691161415610e09574715610de257600080fd5b610e026064610dfc600b5486610e6c90919063ffffffff16565b90610eeb565b9050610e3c565b6006546001600160a01b0386811691161415610e3c57610e396064610dfc600a5486610e6c90919063ffffffff16565b90505b8015610e4d57610e4d853083610ab0565b610e578184611217565b92505b610e65858585610ab0565b5050505050565b600082610e7b57506000610587565b6000610e87838561122e565b905082610e94858361124d565b14610aa95760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016105b7565b6000610aa983836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525060008183610f495760405162461bcd60e51b81526004016105b79190610f56565b506000610bf3848661124d565b600060208083528351808285015260005b81811015610f8357858101830151858201604001528201610f67565b81811115610f95576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610fc057600080fd5b50565b60008060408385031215610fd657600080fd5b8235610fe181610fab565b946020939093013593505050565b60006020828403121561100157600080fd5b5035919050565b60008060006060848603121561101d57600080fd5b833561102881610fab565b9250602084013561103881610fab565b929592945050506040919091013590565b60006020828403121561105b57600080fd5b8135610aa981610fab565b60008060006060848603121561107b57600080fd5b833561108681610fab565b92506020840135801515811461103857600080fd5b600080604083850312156110ae57600080fd5b82356110b981610fab565b915060208301356110c981610fab565b809150509250929050565b600181811c908216806110e857607f821691505b6020821081141561110957634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60006020828403121561115657600080fd5b8151610aa981610fab565b634e487b7160e01b600052601160045260246000fd5b6000821982111561118a5761118a611161565b500190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60008282101561122957611229611161565b500390565b600081600019048311821515161561124857611248611161565b500290565b60008261126a57634e487b7160e01b600052601260045260246000fd5b50049056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212204ad7ceefc5a4337a71eff5b62e50e1eb07408da9021ffd330022b932fa4b4b9364736f6c6343000809003345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef

Deployed Bytecode

0x60806040526004361061016a5760003560e01c806370a08231116100d1578063a457c2d71161008a578063cd3a297311610064578063cd3a29731461043e578063da09c72c1461045e578063dd62ed3e1461047e578063f2fde38b146104c457600080fd5b8063a457c2d7146103de578063a9059cbb146103fe578063ad5c46481461041e57600080fd5b806370a082311461032b578063715018a6146103615780638bdb2afa146103765780638da5cb5b1461039657806395d89b41146103b45780639e78fb4f146103c957600080fd5b8063313ce56711610123578063313ce567146102485780633950935114610264578063467abe0a1461028457806347062402146102a457806349bd5a5e146102ba5780634fbee193146102f257600080fd5b806306fdde0314610176578063095ea7b3146101a157806318160ddd146101d15780631d933a4a146101f057806323b872dd146102125780632b14ca561461023257600080fd5b3661017157005b600080fd5b34801561018257600080fd5b5061018b6104e4565b6040516101989190610f56565b60405180910390f35b3480156101ad57600080fd5b506101c16101bc366004610fc3565b610576565b6040519015158152602001610198565b3480156101dd57600080fd5b506002545b604051908152602001610198565b3480156101fc57600080fd5b5061021061020b366004610fef565b61058d565b005b34801561021e57600080fd5b506101c161022d366004611008565b610607565b34801561023e57600080fd5b506101e2600b5481565b34801561025457600080fd5b5060405160128152602001610198565b34801561027057600080fd5b506101c161027f366004610fc3565b610670565b34801561029057600080fd5b5061021061029f366004610fef565b6106a6565b3480156102b057600080fd5b506101e2600a5481565b3480156102c657600080fd5b506006546102da906001600160a01b031681565b6040516001600160a01b039091168152602001610198565b3480156102fe57600080fd5b506101c161030d366004611049565b6001600160a01b03166000908152600c602052604090205460ff1690565b34801561033757600080fd5b506101e2610346366004611049565b6001600160a01b031660009081526020819052604090205490565b34801561036d57600080fd5b50610210610717565b34801561038257600080fd5b506008546102da906001600160a01b031681565b3480156103a257600080fd5b506005546001600160a01b03166102da565b3480156103c057600080fd5b5061018b61078b565b3480156103d557600080fd5b5061021061079a565b3480156103ea57600080fd5b506101c16103f9366004610fc3565b61086d565b34801561040a57600080fd5b506101c1610419366004610fc3565b6108bc565b34801561042a57600080fd5b506009546102da906001600160a01b031681565b34801561044a57600080fd5b50610210610459366004611066565b6108c9565b34801561046a57600080fd5b506007546102da906001600160a01b031681565b34801561048a57600080fd5b506101e261049936600461109b565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156104d057600080fd5b506102106104df366004611049565b61095f565b6060600380546104f3906110d4565b80601f016020809104026020016040519081016040528092919081815260200182805461051f906110d4565b801561056c5780601f106105415761010080835404028352916020019161056c565b820191906000526020600020905b81548152906001019060200180831161054f57829003601f168201915b5050505050905090565b6000610583338484610bfc565b5060015b92915050565b6005546001600160a01b031633146105c05760405162461bcd60e51b81526004016105b79061110f565b60405180910390fd5b600581106106025760405162461bcd60e51b815260206004820152600f60248201526e43616e27742065786365656420352560881b60448201526064016105b7565b600b55565b6000610614848484610d18565b610666843361066185604051806060016040528060288152602001611296602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190610bc2565b610bfc565b5060019392505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916105839185906106619086610a4a565b6005546001600160a01b031633146106d05760405162461bcd60e51b81526004016105b79061110f565b600581106107125760405162461bcd60e51b815260206004820152600f60248201526e43616e27742065786365656420352560881b60448201526064016105b7565b600a55565b6005546001600160a01b031633146107415760405162461bcd60e51b81526004016105b79061110f565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6060600480546104f3906110d4565b6005546001600160a01b031633146107c45760405162461bcd60e51b81526004016105b79061110f565b6008546009546040516364e329cb60e11b81523060048201526001600160a01b03918216602482015291169063c9c6539690604401602060405180830381600087803b15801561081357600080fd5b505af1158015610827573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061084b9190611144565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b60006105833384610661856040518060600160405280602581526020016112be602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190610bc2565b6000610583338484610d18565b6007546001600160a01b031633146108e057600080fd5b6001600160a01b0383166000908152600c60205260409020805460ff1916831515179055801561091557610915833383610ab0565b826001600160a01b03167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df783604051610952911515815260200190565b60405180910390a2505050565b6005546001600160a01b031633146109895760405162461bcd60e51b81526004016105b79061110f565b6001600160a01b0381166109ee5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105b7565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b600080610a578385611177565b905083811015610aa95760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016105b7565b9392505050565b6001600160a01b038316610ad65760405162461bcd60e51b81526004016105b79061118f565b6001600160a01b038216610afc5760405162461bcd60e51b81526004016105b7906111d4565b610b3981604051806060016040528060268152602001611270602691396001600160a01b0386166000908152602081905260409020549190610bc2565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610b689082610a4a565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91015b60405180910390a3505050565b60008184841115610be65760405162461bcd60e51b81526004016105b79190610f56565b506000610bf38486611217565b95945050505050565b6001600160a01b038316610c5e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105b7565b6001600160a01b038216610cbf5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105b7565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259101610bb5565b6001600160a01b038316610d3e5760405162461bcd60e51b81526004016105b79061118f565b6001600160a01b038216610d645760405162461bcd60e51b81526004016105b7906111d4565b80610d6e57505050565b6001600160a01b0383166000908152600c602052604090205460019060ff1680610db057506001600160a01b0383166000908152600c602052604090205460ff165b15610db9575060005b60008115610e5a576006546001600160a01b0385811691161415610e09574715610de257600080fd5b610e026064610dfc600b5486610e6c90919063ffffffff16565b90610eeb565b9050610e3c565b6006546001600160a01b0386811691161415610e3c57610e396064610dfc600a5486610e6c90919063ffffffff16565b90505b8015610e4d57610e4d853083610ab0565b610e578184611217565b92505b610e65858585610ab0565b5050505050565b600082610e7b57506000610587565b6000610e87838561122e565b905082610e94858361124d565b14610aa95760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016105b7565b6000610aa983836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525060008183610f495760405162461bcd60e51b81526004016105b79190610f56565b506000610bf3848661124d565b600060208083528351808285015260005b81811015610f8357858101830151858201604001528201610f67565b81811115610f95576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610fc057600080fd5b50565b60008060408385031215610fd657600080fd5b8235610fe181610fab565b946020939093013593505050565b60006020828403121561100157600080fd5b5035919050565b60008060006060848603121561101d57600080fd5b833561102881610fab565b9250602084013561103881610fab565b929592945050506040919091013590565b60006020828403121561105b57600080fd5b8135610aa981610fab565b60008060006060848603121561107b57600080fd5b833561108681610fab565b92506020840135801515811461103857600080fd5b600080604083850312156110ae57600080fd5b82356110b981610fab565b915060208301356110c981610fab565b809150509250929050565b600181811c908216806110e857607f821691505b6020821081141561110957634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60006020828403121561115657600080fd5b8151610aa981610fab565b634e487b7160e01b600052601160045260246000fd5b6000821982111561118a5761118a611161565b500190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60008282101561122957611229611161565b500390565b600081600019048311821515161561124857611248611161565b500290565b60008261126a57634e487b7160e01b600052601260045260246000fd5b50049056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212204ad7ceefc5a4337a71eff5b62e50e1eb07408da9021ffd330022b932fa4b4b9364736f6c63430008090033

Deployed Bytecode Sourcemap

22383:2830:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5349:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7516:169;;;;;;;;;;-1:-1:-1;7516:169:0;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;7516:169:0;1072:187:1;6469:108:0;;;;;;;;;;-1:-1:-1;6557:12:0;;6469:108;;;1410:25:1;;;1398:2;1383:18;6469:108:0;1264:177:1;23573:148:0;;;;;;;;;;-1:-1:-1;23573:148:0;;;;;:::i;:::-;;:::i;:::-;;8167:355;;;;;;;;;;-1:-1:-1;8167:355:0;;;;;:::i;:::-;;:::i;22713:26::-;;;;;;;;;;;;;;;;6311:93;;;;;;;;;;-1:-1:-1;6311:93:0;;6394:2;2234:36:1;;2222:2;2207:18;6311:93:0;2092:184:1;8931:218:0;;;;;;;;;;-1:-1:-1;8931:218:0;;;;;:::i;:::-;;:::i;23418:143::-;;;;;;;;;;-1:-1:-1;23418:143:0;;;;;:::i;:::-;;:::i;22681:25::-;;;;;;;;;;;;;;;;22463:28;;;;;;;;;;-1:-1:-1;22463:28:0;;;;-1:-1:-1;;;;;22463:28:0;;;;;;-1:-1:-1;;;;;2445:32:1;;;2427:51;;2415:2;2400:18;22463:28:0;2281:203:1;24045:125:0;;;;;;;;;;-1:-1:-1;24045:125:0;;;;;:::i;:::-;-1:-1:-1;;;;;24134:28:0;24110:4;24134:28;;;:19;:28;;;;;;;;;24045:125;6640:127;;;;;;;;;;-1:-1:-1;6640:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;6741:18:0;6714:7;6741:18;;;;;;;;;;;;6640:127;19818:148;;;;;;;;;;;;;:::i;22527:74::-;;;;;;;;;;-1:-1:-1;22527:74:0;;;;-1:-1:-1;;;;;22527:74:0;;;19176:79;;;;;;;;;;-1:-1:-1;19241:6:0;;-1:-1:-1;;;;;19241:6:0;19176:79;;5568:104;;;;;;;;;;;;;:::i;23269:141::-;;;;;;;;;;;;;:::i;9652:269::-;;;;;;;;;;-1:-1:-1;9652:269:0;;;;;:::i;:::-;;:::i;6980:175::-;;;;;;;;;;-1:-1:-1;6980:175:0;;;;;:::i;:::-;;:::i;22608:64::-;;;;;;;;;;-1:-1:-1;22608:64:0;;;;-1:-1:-1;;;;;22608:64:0;;;23729:305;;;;;;;;;;-1:-1:-1;23729:305:0;;;;;:::i;:::-;;:::i;22498:22::-;;;;;;;;;;-1:-1:-1;22498:22:0;;;;-1:-1:-1;;;;;22498:22:0;;;7218:151;;;;;;;;;;-1:-1:-1;7218:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;7334:18:0;;;7307:7;7334:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;7218:151;20121:244;;;;;;;;;;-1:-1:-1;20121:244:0;;;;;:::i;:::-;;:::i;5349:100::-;5403:13;5436:5;5429:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5349:100;:::o;7516:169::-;7599:4;7616:39;1041:10;7639:7;7648:6;7616:8;:39::i;:::-;-1:-1:-1;7673:4:0;7516:169;;;;;:::o;23573:148::-;19388:6;;-1:-1:-1;;;;;19388:6:0;1041:10;19388:22;19380:67;;;;-1:-1:-1;;;19380:67:0;;;;;;;:::i;:::-;;;;;;;;;23663:1:::1;23652:8;:12;23644:40;;;::::0;-1:-1:-1;;;23644:40:0;;4571:2:1;23644:40:0::1;::::0;::::1;4553:21:1::0;4610:2;4590:18;;;4583:30;-1:-1:-1;;;4629:18:1;;;4622:45;4684:18;;23644:40:0::1;4369:339:1::0;23644:40:0::1;23695:7;:18:::0;23573:148::o;8167:355::-;8307:4;8324:36;8334:6;8342:9;8353:6;8324:9;:36::i;:::-;8371:121;8380:6;1041:10;8402:89;8440:6;8402:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;8402:19:0;;;;;;:11;:19;;;;;;;;1041:10;8402:33;;;;;;;;;;:37;:89::i;:::-;8371:8;:121::i;:::-;-1:-1:-1;8510:4:0;8167:355;;;;;:::o;8931:218::-;1041:10;9019:4;9068:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;9068:34:0;;;;;;;;;;9019:4;;9036:83;;9059:7;;9068:50;;9107:10;9068:38;:50::i;23418:143::-;19388:6;;-1:-1:-1;;;;;19388:6:0;1041:10;19388:22;19380:67;;;;-1:-1:-1;;;19380:67:0;;;;;;;:::i;:::-;23505:1:::1;23495:7;:11;23487:39;;;::::0;-1:-1:-1;;;23487:39:0;;4571:2:1;23487:39:0::1;::::0;::::1;4553:21:1::0;4610:2;4590:18;;;4583:30;-1:-1:-1;;;4629:18:1;;;4622:45;4684:18;;23487:39:0::1;4369:339:1::0;23487:39:0::1;23537:6;:16:::0;23418:143::o;19818:148::-;19388:6;;-1:-1:-1;;;;;19388:6:0;1041:10;19388:22;19380:67;;;;-1:-1:-1;;;19380:67:0;;;;;;;:::i;:::-;19909:6:::1;::::0;19888:40:::1;::::0;19925:1:::1;::::0;-1:-1:-1;;;;;19909:6:0::1;::::0;19888:40:::1;::::0;19925:1;;19888:40:::1;19939:6;:19:::0;;-1:-1:-1;;;;;;19939:19:0::1;::::0;;19818:148::o;5568:104::-;5624:13;5657:7;5650:14;;;;;:::i;23269:141::-;19388:6;;-1:-1:-1;;;;;19388:6:0;1041:10;19388:22;19380:67;;;;-1:-1:-1;;;19380:67:0;;;;;;;:::i;:::-;23355:14:::1;::::0;23397:4:::1;::::0;23337:65:::1;::::0;-1:-1:-1;;;23337:65:0;;23390:4:::1;23337:65;::::0;::::1;4925:34:1::0;-1:-1:-1;;;;;23397:4:0;;::::1;4975:18:1::0;;;4968:43;23355:14:0;::::1;::::0;23337:44:::1;::::0;4860:18:1;;23337:65:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;23321:13;:81:::0;;-1:-1:-1;;;;;;23321:81:0::1;-1:-1:-1::0;;;;;23321:81:0;;;::::1;::::0;;;::::1;::::0;;23269:141::o;9652:269::-;9745:4;9762:129;1041:10;9785:7;9794:96;9833:15;9794:96;;;;;;;;;;;;;;;;;1041:10;9794:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;9794:34:0;;;;;;;;;;;;:38;:96::i;6980:175::-;7066:4;7083:42;1041:10;7107:9;7118:6;7083:9;:42::i;23729:305::-;23828:7;;-1:-1:-1;;;;;23828:7:0;23839:10;23828:21;23820:30;;;;;;-1:-1:-1;;;;;23861:28:0;;;;;;:19;:28;;;;;:39;;-1:-1:-1;;23861:39:0;;;;;;;23915:10;;23911:66;;23930:44;23946:7;23955:10;23967:6;23930:15;:44::i;:::-;24008:7;-1:-1:-1;;;;;23992:34:0;;24017:8;23992:34;;;;1237:14:1;1230:22;1212:41;;1200:2;1185:18;;1072:187;23992:34:0;;;;;;;;23729:305;;;:::o;20121:244::-;19388:6;;-1:-1:-1;;;;;19388:6:0;1041:10;19388:22;19380:67;;;;-1:-1:-1;;;19380:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;20210:22:0;::::1;20202:73;;;::::0;-1:-1:-1;;;20202:73:0;;5480:2:1;20202:73:0::1;::::0;::::1;5462:21:1::0;5519:2;5499:18;;;5492:30;5558:34;5538:18;;;5531:62;-1:-1:-1;;;5609:18:1;;;5602:36;5655:19;;20202:73:0::1;5278:402:1::0;20202:73:0::1;20312:6;::::0;20291:38:::1;::::0;-1:-1:-1;;;;;20291:38:0;;::::1;::::0;20312:6:::1;::::0;20291:38:::1;::::0;20312:6:::1;::::0;20291:38:::1;20340:6;:17:::0;;-1:-1:-1;;;;;;20340:17:0::1;-1:-1:-1::0;;;;;20340:17:0;;;::::1;::::0;;;::::1;::::0;;20121:244::o;14216:181::-;14274:7;;14306:5;14310:1;14306;:5;:::i;:::-;14294:17;;14335:1;14330;:6;;14322:46;;;;-1:-1:-1;;;14322:46:0;;6152:2:1;14322:46:0;;;6134:21:1;6191:2;6171:18;;;6164:30;6230:29;6210:18;;;6203:57;6277:18;;14322:46:0;5950:351:1;14322:46:0;14388:1;14216:181;-1:-1:-1;;;14216:181:0:o;10411:573::-;-1:-1:-1;;;;;10551:20:0;;10543:70;;;;-1:-1:-1;;;10543:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10632:23:0;;10624:71;;;;-1:-1:-1;;;10624:71:0;;;;;;;:::i;:::-;10788;10810:6;10788:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;10788:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;10768:17:0;;;:9;:17;;;;;;;;;;;:91;;;;10893:20;;;;;;;:32;;10918:6;10893:24;:32::i;:::-;-1:-1:-1;;;;;10870:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;10941:35;1410:25:1;;;10870:20:0;;10941:35;;;;;;1383:18:1;10941:35:0;;;;;;;;10411:573;;;:::o;15119:192::-;15205:7;15241:12;15233:6;;;;15225:29;;;;-1:-1:-1;;;15225:29:0;;;;;;;;:::i;:::-;-1:-1:-1;15265:9:0;15277:5;15281:1;15277;:5;:::i;:::-;15265:17;15119:192;-1:-1:-1;;;;;15119:192:0:o;12838:380::-;-1:-1:-1;;;;;12974:19:0;;12966:68;;;;-1:-1:-1;;;12966:68:0;;7448:2:1;12966:68:0;;;7430:21:1;7487:2;7467:18;;;7460:30;7526:34;7506:18;;;7499:62;-1:-1:-1;;;7577:18:1;;;7570:34;7621:19;;12966:68:0;7246:400:1;12966:68:0;-1:-1:-1;;;;;13053:21:0;;13045:68;;;;-1:-1:-1;;;13045:68:0;;7853:2:1;13045:68:0;;;7835:21:1;7892:2;7872:18;;;7865:30;7931:34;7911:18;;;7904:62;-1:-1:-1;;;7982:18:1;;;7975:32;8024:19;;13045:68:0;7651:398:1;13045:68:0;-1:-1:-1;;;;;13126:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;13178:32;;1410:25:1;;;13178:32:0;;1383:18:1;13178:32:0;1264:177:1;24182:1028:0;-1:-1:-1;;;;;24314:18:0;;24306:68;;;;-1:-1:-1;;;24306:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;24393:16:0;;24385:64;;;;-1:-1:-1;;;24385:64:0;;;;;;;:::i;:::-;24473:11;24470:49;;24182:1028;;;:::o;24470:49::-;-1:-1:-1;;;;;24582:25:0;;24547:12;24582:25;;;:19;:25;;;;;;24562:4;;24582:25;;;:52;;-1:-1:-1;;;;;;24611:23:0;;;;;;:19;:23;;;;;;;;24582:52;24579:99;;;-1:-1:-1;24661:5:0;24579:99;24690:12;24720:7;24717:440;;;24760:13;;-1:-1:-1;;;;;24754:19:0;;;24760:13;;24754:19;24750:242;;;24784:21;:26;24776:35;;;;;;24837:28;24861:3;24837:19;24848:7;;24837:6;:10;;:19;;;;:::i;:::-;:23;;:28::i;:::-;24830:35;;24750:242;;;24911:13;;-1:-1:-1;;;;;24903:21:0;;;24911:13;;24903:21;24900:92;;;24949:27;24972:3;24949:18;24960:6;;24949;:10;;:18;;;;:::i;:27::-;24942:34;;24900:92;25021:8;;25018:93;;25053:42;25069:4;25083;25090;25053:15;:42::i;:::-;25131:14;25141:4;25131:14;;:::i;:::-;;;24717:440;25169:33;25185:4;25191:2;25195:6;25169:15;:33::i;:::-;24295:915;;24182:1028;;;:::o;15570:471::-;15628:7;15873:6;15869:47;;-1:-1:-1;15903:1:0;15896:8;;15869:47;15928:9;15940:5;15944:1;15940;:5;:::i;:::-;15928:17;-1:-1:-1;15973:1:0;15964:5;15968:1;15928:17;15964:5;:::i;:::-;:10;15956:56;;;;-1:-1:-1;;;15956:56:0;;8651:2:1;15956:56:0;;;8633:21:1;8690:2;8670:18;;;8663:30;8729:34;8709:18;;;8702:62;-1:-1:-1;;;8780:18:1;;;8773:31;8821:19;;15956:56:0;8449:397:1;16517:132:0;16575:7;16602:39;16606:1;16609;16602:39;;;;;;;;;;;;;;;;;17231:7;17266:12;17259:5;17251:28;;;;-1:-1:-1;;;17251:28:0;;;;;;;;:::i;:::-;-1:-1:-1;17290:9:0;17302:5;17306:1;17302;:5;:::i;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:131::-;-1:-1:-1;;;;;691:31:1;;681:42;;671:70;;737:1;734;727:12;671:70;616:131;:::o;752:315::-;820:6;828;881:2;869:9;860:7;856:23;852:32;849:52;;;897:1;894;887:12;849:52;936:9;923:23;955:31;980:5;955:31;:::i;:::-;1005:5;1057:2;1042:18;;;;1029:32;;-1:-1:-1;;;752:315:1:o;1446:180::-;1505:6;1558:2;1546:9;1537:7;1533:23;1529:32;1526:52;;;1574:1;1571;1564:12;1526:52;-1:-1:-1;1597:23:1;;1446:180;-1:-1:-1;1446:180:1:o;1631:456::-;1708:6;1716;1724;1777:2;1765:9;1756:7;1752:23;1748:32;1745:52;;;1793:1;1790;1783:12;1745:52;1832:9;1819:23;1851:31;1876:5;1851:31;:::i;:::-;1901:5;-1:-1:-1;1958:2:1;1943:18;;1930:32;1971:33;1930:32;1971:33;:::i;:::-;1631:456;;2023:7;;-1:-1:-1;;;2077:2:1;2062:18;;;;2049:32;;1631:456::o;2489:247::-;2548:6;2601:2;2589:9;2580:7;2576:23;2572:32;2569:52;;;2617:1;2614;2607:12;2569:52;2656:9;2643:23;2675:31;2700:5;2675:31;:::i;2741:484::-;2815:6;2823;2831;2884:2;2872:9;2863:7;2859:23;2855:32;2852:52;;;2900:1;2897;2890:12;2852:52;2939:9;2926:23;2958:31;2983:5;2958:31;:::i;:::-;3008:5;-1:-1:-1;3065:2:1;3050:18;;3037:32;3107:15;;3100:23;3088:36;;3078:64;;3138:1;3135;3128:12;3230:388;3298:6;3306;3359:2;3347:9;3338:7;3334:23;3330:32;3327:52;;;3375:1;3372;3365:12;3327:52;3414:9;3401:23;3433:31;3458:5;3433:31;:::i;:::-;3483:5;-1:-1:-1;3540:2:1;3525:18;;3512:32;3553:33;3512:32;3553:33;:::i;:::-;3605:7;3595:17;;;3230:388;;;;;:::o;3623:380::-;3702:1;3698:12;;;;3745;;;3766:61;;3820:4;3812:6;3808:17;3798:27;;3766:61;3873:2;3865:6;3862:14;3842:18;3839:38;3836:161;;;3919:10;3914:3;3910:20;3907:1;3900:31;3954:4;3951:1;3944:15;3982:4;3979:1;3972:15;3836:161;;3623:380;;;:::o;4008:356::-;4210:2;4192:21;;;4229:18;;;4222:30;4288:34;4283:2;4268:18;;4261:62;4355:2;4340:18;;4008:356::o;5022:251::-;5092:6;5145:2;5133:9;5124:7;5120:23;5116:32;5113:52;;;5161:1;5158;5151:12;5113:52;5193:9;5187:16;5212:31;5237:5;5212:31;:::i;5685:127::-;5746:10;5741:3;5737:20;5734:1;5727:31;5777:4;5774:1;5767:15;5801:4;5798:1;5791:15;5817:128;5857:3;5888:1;5884:6;5881:1;5878:13;5875:39;;;5894:18;;:::i;:::-;-1:-1:-1;5930:9:1;;5817:128::o;6306:401::-;6508:2;6490:21;;;6547:2;6527:18;;;6520:30;6586:34;6581:2;6566:18;;6559:62;-1:-1:-1;;;6652:2:1;6637:18;;6630:35;6697:3;6682:19;;6306:401::o;6712:399::-;6914:2;6896:21;;;6953:2;6933:18;;;6926:30;6992:34;6987:2;6972:18;;6965:62;-1:-1:-1;;;7058:2:1;7043:18;;7036:33;7101:3;7086:19;;6712:399::o;7116:125::-;7156:4;7184:1;7181;7178:8;7175:34;;;7189:18;;:::i;:::-;-1:-1:-1;7226:9:1;;7116:125::o;8054:168::-;8094:7;8160:1;8156;8152:6;8148:14;8145:1;8142:21;8137:1;8130:9;8123:17;8119:45;8116:71;;;8167:18;;:::i;:::-;-1:-1:-1;8207:9:1;;8054:168::o;8227:217::-;8267:1;8293;8283:132;;8337:10;8332:3;8328:20;8325:1;8318:31;8372:4;8369:1;8362:15;8400:4;8397:1;8390:15;8283:132;-1:-1:-1;8429:9:1;;8227:217::o

Swarm Source

ipfs://4ad7ceefc5a4337a71eff5b62e50e1eb07408da9021ffd330022b932fa4b4b93
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.