ETH Price: $3,277.08 (-0.08%)
Gas: 4 Gwei

Token

HASHTAG | t.me/HashtagCommunity (#️⃣)
 

Overview

Max Total Supply

97,443,150,080.914689607611211689 #️⃣

Holders

7

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
ezmil.eth
Balance
608,431,660.537441841479032677 #️⃣

Value
$0.00
0xF18e91F463d35ec221e5cdD0012D64f7fa159Dd1
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:
Hashtag

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
Yes with 10000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-07-29
*/

// File: node_modules\@openzeppelin\contracts\utils\Context.sol

// SPDX-License-Identifier: MIT

pragma solidity 0.8.6;

/*
 * @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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File: @openzeppelin\contracts\access\Ownable.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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual 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;
    }
}

// File: node_modules\@openzeppelin\contracts\token\ERC20\IERC20.sol


/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
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);
}

// File: node_modules\@openzeppelin\contracts\token\ERC20\extensions\IERC20Metadata.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: @openzeppelin\contracts\token\ERC20\ERC20.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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of 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}.
     *
     * The defaut 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);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        _approve(sender, _msgSender(), currentAllowance - 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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        _approve(_msgSender(), spender, currentAllowance - subtractedValue);

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

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        _balances[sender] = senderBalance - amount;
        _balances[recipient] += 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:
     *
     * - `to` 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;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);
    }

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        _balances[account] = accountBalance - amount;
        _totalSupply -= amount;

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

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

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

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

// File: node_modules\@openzeppelin\contracts\token\ERC20\ERC20.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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of 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 Hashtag is ERC20, Ownable {
    bool public feesEnabled;
    mapping(address => bool) public isExcludedFromFee;
    event FeesEnabledUpdated(bool enabled);
    event ExcludedFromFeeUpdated(address account, bool excluded);
  constructor(
    string memory name_ , 
    string memory symbol_)
    
    ERC20(name_ , symbol_)
    
  {
    uint256 totalSupply = 100000000000 ether;
      _mint(msg.sender, totalSupply);
      feesEnabled = false;
      isExcludedFromFee[msg.sender] = true;
      isExcludedFromFee[0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D] = true;
          
  }
  
    function _transfer(address sender , address recipient, uint256 amount) 
      internal 
      override
       {
         require(
            recipient != address(this),
            "Cannot send tokens to token contract"
        );
        if (
            !feesEnabled ||
            isExcludedFromFee[sender] ||
            isExcludedFromFee[recipient]
        ) {
            ERC20._transfer(sender, recipient, amount);
            return;
        }
        uint256 burn = amount / 4;
        _burn(msg.sender, burn);
        super._transfer(sender, recipient, amount - burn);     
    }
function setFeesEnabled(bool _enabled) public onlyOwner {
        emit FeesEnabledUpdated(_enabled);
        feesEnabled = _enabled;
        
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"}],"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":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"excluded","type":"bool"}],"name":"ExcludedFromFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"FeesEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feesEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"","type":"address"}],"name":"isExcludedFromFee","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":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setFeesEnabled","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":"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"}]

60806040523480156200001157600080fd5b50604051620016f6380380620016f683398101604081905262000034916200039f565b8151829082906200004d90600390602085019062000242565b5080516200006390600490602084019062000242565b5050506000620000786200015660201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506c01431e0fae6d7217caa0000000620000e033826200015a565b50506005805460ff60a01b1916905550336000908152600660205260408120805460ff199081166001908117909255737a250d5630b4cf539739df2c5dacb4c659f2488d9092527f8cb3563b79eac8102a826f0dcb81e7e954d7df2b15d07edcb2dd2b236c2078b4805490921617905562000483565b3390565b6001600160a01b038216620001b55760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620001c9919062000409565b90915550506001600160a01b03821660009081526020819052604081208054839290620001f890849062000409565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620002509062000430565b90600052602060002090601f016020900481019282620002745760008555620002bf565b82601f106200028f57805160ff1916838001178555620002bf565b82800160010185558215620002bf579182015b82811115620002bf578251825591602001919060010190620002a2565b50620002cd929150620002d1565b5090565b5b80821115620002cd5760008155600101620002d2565b600082601f830112620002fa57600080fd5b81516001600160401b03808211156200031757620003176200046d565b604051601f8301601f19908116603f011681019082821181831017156200034257620003426200046d565b816040528381526020925086838588010111156200035f57600080fd5b600091505b8382101562000383578582018301518183018401529082019062000364565b83821115620003955760008385830101525b9695505050505050565b60008060408385031215620003b357600080fd5b82516001600160401b0380821115620003cb57600080fd5b620003d986838701620002e8565b93506020850151915080821115620003f057600080fd5b50620003ff85828601620002e8565b9150509250929050565b600082198211156200042b57634e487b7160e01b600052601160045260246000fd5b500190565b600181811c908216806200044557607f821691505b602082108114156200046757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61126380620004936000396000f3fe608060405234801561001057600080fd5b506004361061011b5760003560e01c8063715018a6116100b2578063a64e4f8a11610081578063a9059cbb11610066578063a9059cbb14610286578063dd62ed3e14610299578063f2fde38b146102df57600080fd5b8063a64e4f8a1461024e578063a901dd921461027357600080fd5b8063715018a6146102015780638da5cb5b1461020b57806395d89b4114610233578063a457c2d71461023b57600080fd5b8063313ce567116100ee578063313ce5671461018657806339509351146101955780635342acb4146101a857806370a08231146101cb57600080fd5b806306fdde0314610120578063095ea7b31461013e57806318160ddd1461016157806323b872dd14610173575b600080fd5b6101286102f2565b60405161013591906110cd565b60405180910390f35b61015161014c366004611081565b610384565b6040519015158152602001610135565b6002545b604051908152602001610135565b610151610181366004611045565b61039a565b60405160128152602001610135565b6101516101a3366004611081565b610472565b6101516101b6366004610ff0565b60066020526000908152604090205460ff1681565b6101656101d9366004610ff0565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b6102096104b6565b005b60055460405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610135565b61012861058c565b610151610249366004611081565b61059b565b6005546101519074010000000000000000000000000000000000000000900460ff1681565b6102096102813660046110ab565b61065b565b610151610294366004611081565b610741565b6101656102a7366004611012565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b6102096102ed366004610ff0565b61074e565b606060038054610301906111aa565b80601f016020809104026020016040519081016040528092919081815260200182805461032d906111aa565b801561037a5780601f1061034f5761010080835404028352916020019161037a565b820191906000526020600020905b81548152906001019060200180831161035d57829003601f168201915b5050505050905090565b60006103913384846108cc565b50600192915050565b60006103a7848484610a4c565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600160209081526040808320338452909152902054828110156104535760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61046785336104628685611193565b6108cc565b506001949350505050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091610391918590610462908690611140565b60055473ffffffffffffffffffffffffffffffffffffffff16331461051d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161044a565b60055460405160009173ffffffffffffffffffffffffffffffffffffffff16907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b606060048054610301906111aa565b33600090815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff86168452909152812054828110156106425760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f000000000000000000000000000000000000000000000000000000606482015260840161044a565b61065133856104628685611193565b5060019392505050565b60055473ffffffffffffffffffffffffffffffffffffffff1633146106c25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161044a565b60405181151581527fba500994dffbabeeb9e430f03a978d7b975359a20c5bde3a6ccb5a0c454680c89060200160405180910390a16005805491151574010000000000000000000000000000000000000000027fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff909216919091179055565b6000610391338484610a4c565b60055473ffffffffffffffffffffffffffffffffffffffff1633146107b55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161044a565b73ffffffffffffffffffffffffffffffffffffffff811661083e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161044a565b60055460405173ffffffffffffffffffffffffffffffffffffffff8084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b73ffffffffffffffffffffffffffffffffffffffff83166109545760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161044a565b73ffffffffffffffffffffffffffffffffffffffff82166109dd5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015260840161044a565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8216301415610ad75760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f742073656e6420746f6b656e7320746f20746f6b656e20636f6e7460448201527f7261637400000000000000000000000000000000000000000000000000000000606482015260840161044a565b60055474010000000000000000000000000000000000000000900460ff161580610b26575073ffffffffffffffffffffffffffffffffffffffff831660009081526006602052604090205460ff165b80610b56575073ffffffffffffffffffffffffffffffffffffffff821660009081526006602052604090205460ff165b15610b6b57610b66838383610b9e565b505050565b6000610b78600483611158565b9050610b843382610e0d565b610b988484610b938486611193565b610b9e565b50505050565b73ffffffffffffffffffffffffffffffffffffffff8316610c275760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161044a565b73ffffffffffffffffffffffffffffffffffffffff8216610cb05760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161044a565b73ffffffffffffffffffffffffffffffffffffffff831660009081526020819052604090205481811015610d4c5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e63650000000000000000000000000000000000000000000000000000606482015260840161044a565b610d568282611193565b73ffffffffffffffffffffffffffffffffffffffff8086166000908152602081905260408082209390935590851681529081208054849290610d99908490611140565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610dff91815260200190565b60405180910390a350505050565b73ffffffffffffffffffffffffffffffffffffffff8216610e965760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f7300000000000000000000000000000000000000000000000000000000000000606482015260840161044a565b73ffffffffffffffffffffffffffffffffffffffff821660009081526020819052604090205481811015610f325760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f6365000000000000000000000000000000000000000000000000000000000000606482015260840161044a565b610f3c8282611193565b73ffffffffffffffffffffffffffffffffffffffff841660009081526020819052604081209190915560028054849290610f77908490611193565b909155505060405182815260009073ffffffffffffffffffffffffffffffffffffffff8516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610a3f565b803573ffffffffffffffffffffffffffffffffffffffff81168114610feb57600080fd5b919050565b60006020828403121561100257600080fd5b61100b82610fc7565b9392505050565b6000806040838503121561102557600080fd5b61102e83610fc7565b915061103c60208401610fc7565b90509250929050565b60008060006060848603121561105a57600080fd5b61106384610fc7565b925061107160208501610fc7565b9150604084013590509250925092565b6000806040838503121561109457600080fd5b61109d83610fc7565b946020939093013593505050565b6000602082840312156110bd57600080fd5b8135801515811461100b57600080fd5b600060208083528351808285015260005b818110156110fa578581018301518582016040015282016110de565b8181111561110c576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b60008219821115611153576111536111fe565b500190565b60008261118e577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b6000828210156111a5576111a56111fe565b500390565b600181811c908216806111be57607f821691505b602082108114156111f8577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fdfea2646970667358221220177849d7cd4c5a46363e82f2ea7aa1797e76d5b5305c72ebc79a0388d9e7007264736f6c6343000806003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000001f48415348544147207c20742e6d652f48617368746167436f6d6d756e69747900000000000000000000000000000000000000000000000000000000000000000723efb88fe283a300000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061011b5760003560e01c8063715018a6116100b2578063a64e4f8a11610081578063a9059cbb11610066578063a9059cbb14610286578063dd62ed3e14610299578063f2fde38b146102df57600080fd5b8063a64e4f8a1461024e578063a901dd921461027357600080fd5b8063715018a6146102015780638da5cb5b1461020b57806395d89b4114610233578063a457c2d71461023b57600080fd5b8063313ce567116100ee578063313ce5671461018657806339509351146101955780635342acb4146101a857806370a08231146101cb57600080fd5b806306fdde0314610120578063095ea7b31461013e57806318160ddd1461016157806323b872dd14610173575b600080fd5b6101286102f2565b60405161013591906110cd565b60405180910390f35b61015161014c366004611081565b610384565b6040519015158152602001610135565b6002545b604051908152602001610135565b610151610181366004611045565b61039a565b60405160128152602001610135565b6101516101a3366004611081565b610472565b6101516101b6366004610ff0565b60066020526000908152604090205460ff1681565b6101656101d9366004610ff0565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b6102096104b6565b005b60055460405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610135565b61012861058c565b610151610249366004611081565b61059b565b6005546101519074010000000000000000000000000000000000000000900460ff1681565b6102096102813660046110ab565b61065b565b610151610294366004611081565b610741565b6101656102a7366004611012565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b6102096102ed366004610ff0565b61074e565b606060038054610301906111aa565b80601f016020809104026020016040519081016040528092919081815260200182805461032d906111aa565b801561037a5780601f1061034f5761010080835404028352916020019161037a565b820191906000526020600020905b81548152906001019060200180831161035d57829003601f168201915b5050505050905090565b60006103913384846108cc565b50600192915050565b60006103a7848484610a4c565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600160209081526040808320338452909152902054828110156104535760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e636500000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61046785336104628685611193565b6108cc565b506001949350505050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091610391918590610462908690611140565b60055473ffffffffffffffffffffffffffffffffffffffff16331461051d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161044a565b60055460405160009173ffffffffffffffffffffffffffffffffffffffff16907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055565b606060048054610301906111aa565b33600090815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff86168452909152812054828110156106425760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f000000000000000000000000000000000000000000000000000000606482015260840161044a565b61065133856104628685611193565b5060019392505050565b60055473ffffffffffffffffffffffffffffffffffffffff1633146106c25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161044a565b60405181151581527fba500994dffbabeeb9e430f03a978d7b975359a20c5bde3a6ccb5a0c454680c89060200160405180910390a16005805491151574010000000000000000000000000000000000000000027fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff909216919091179055565b6000610391338484610a4c565b60055473ffffffffffffffffffffffffffffffffffffffff1633146107b55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161044a565b73ffffffffffffffffffffffffffffffffffffffff811661083e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161044a565b60055460405173ffffffffffffffffffffffffffffffffffffffff8084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b73ffffffffffffffffffffffffffffffffffffffff83166109545760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161044a565b73ffffffffffffffffffffffffffffffffffffffff82166109dd5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015260840161044a565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8216301415610ad75760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f742073656e6420746f6b656e7320746f20746f6b656e20636f6e7460448201527f7261637400000000000000000000000000000000000000000000000000000000606482015260840161044a565b60055474010000000000000000000000000000000000000000900460ff161580610b26575073ffffffffffffffffffffffffffffffffffffffff831660009081526006602052604090205460ff165b80610b56575073ffffffffffffffffffffffffffffffffffffffff821660009081526006602052604090205460ff165b15610b6b57610b66838383610b9e565b505050565b6000610b78600483611158565b9050610b843382610e0d565b610b988484610b938486611193565b610b9e565b50505050565b73ffffffffffffffffffffffffffffffffffffffff8316610c275760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161044a565b73ffffffffffffffffffffffffffffffffffffffff8216610cb05760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161044a565b73ffffffffffffffffffffffffffffffffffffffff831660009081526020819052604090205481811015610d4c5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e63650000000000000000000000000000000000000000000000000000606482015260840161044a565b610d568282611193565b73ffffffffffffffffffffffffffffffffffffffff8086166000908152602081905260408082209390935590851681529081208054849290610d99908490611140565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610dff91815260200190565b60405180910390a350505050565b73ffffffffffffffffffffffffffffffffffffffff8216610e965760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f7300000000000000000000000000000000000000000000000000000000000000606482015260840161044a565b73ffffffffffffffffffffffffffffffffffffffff821660009081526020819052604090205481811015610f325760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f6365000000000000000000000000000000000000000000000000000000000000606482015260840161044a565b610f3c8282611193565b73ffffffffffffffffffffffffffffffffffffffff841660009081526020819052604081209190915560028054849290610f77908490611193565b909155505060405182815260009073ffffffffffffffffffffffffffffffffffffffff8516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610a3f565b803573ffffffffffffffffffffffffffffffffffffffff81168114610feb57600080fd5b919050565b60006020828403121561100257600080fd5b61100b82610fc7565b9392505050565b6000806040838503121561102557600080fd5b61102e83610fc7565b915061103c60208401610fc7565b90509250929050565b60008060006060848603121561105a57600080fd5b61106384610fc7565b925061107160208501610fc7565b9150604084013590509250925092565b6000806040838503121561109457600080fd5b61109d83610fc7565b946020939093013593505050565b6000602082840312156110bd57600080fd5b8135801515811461100b57600080fd5b600060208083528351808285015260005b818110156110fa578581018301518582016040015282016110de565b8181111561110c576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b60008219821115611153576111536111fe565b500190565b60008261118e577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b6000828210156111a5576111a56111fe565b500390565b600181811c908216806111be57607f821691505b602082108114156111f8577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fdfea2646970667358221220177849d7cd4c5a46363e82f2ea7aa1797e76d5b5305c72ebc79a0388d9e7007264736f6c63430008060033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000001f48415348544147207c20742e6d652f48617368746167436f6d6d756e69747900000000000000000000000000000000000000000000000000000000000000000723efb88fe283a300000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): HASHTAG | t.me/HashtagCommunity
Arg [1] : symbol_ (string): #️⃣

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000001f
Arg [3] : 48415348544147207c20742e6d652f48617368746167436f6d6d756e69747900
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [5] : 23efb88fe283a300000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

18782:1379:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8743:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10910:169;;;;;;:::i;:::-;;:::i;:::-;;;1937:14:1;;1930:22;1912:41;;1900:2;1885:18;10910:169:0;1867:92:1;9863:108:0;9951:12;;9863:108;;;7589:25:1;;;7577:2;7562:18;9863:108:0;7544:76:1;11561:422:0;;;;;;:::i;:::-;;:::i;9705:93::-;;;9788:2;7767:36:1;;7755:2;7740:18;9705:93:0;7722:87:1;12392:215:0;;;;;;:::i;:::-;;:::i;18854:49::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;10034:127;;;;;;:::i;:::-;10135:18;;10108:7;10135:18;;;;;;;;;;;;10034:127;2729:148;;;:::i;:::-;;2078:87;2151:6;;2078:87;;2151:6;;;;1687:74:1;;1675:2;1660:18;2078:87:0;1642:125:1;8962:104:0;;;:::i;13110:377::-;;;;;;:::i;:::-;;:::i;18824:23::-;;;;;;;;;;;;20007:151;;;;;;:::i;:::-;;:::i;10374:175::-;;;;;;:::i;:::-;;:::i;10612:151::-;;;;;;:::i;:::-;10728:18;;;;10701:7;10728:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10612:151;3032:244;;;;;;:::i;:::-;;:::i;8743:100::-;8797:13;8830:5;8823:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8743:100;:::o;10910:169::-;10993:4;11010:39;747:10;11033:7;11042:6;11010:8;:39::i;:::-;-1:-1:-1;11067:4:0;10910:169;;;;:::o;11561:422::-;11667:4;11684:36;11694:6;11702:9;11713:6;11684:9;:36::i;:::-;11760:19;;;11733:24;11760:19;;;:11;:19;;;;;;;;747:10;11760:33;;;;;;;;11812:26;;;;11804:79;;;;-1:-1:-1;;;11804:79:0;;5256:2:1;11804:79:0;;;5238:21:1;5295:2;5275:18;;;5268:30;5334:34;5314:18;;;5307:62;5405:10;5385:18;;;5378:38;5433:19;;11804:79:0;;;;;;;;;11894:57;11903:6;747:10;11925:25;11944:6;11925:16;:25;:::i;:::-;11894:8;:57::i;:::-;-1:-1:-1;11971:4:0;;11561:422;-1:-1:-1;;;;11561:422:0:o;12392:215::-;747:10;12480:4;12529:25;;;:11;:25;;;;;;;;;:34;;;;;;;;;;12480:4;;12497:80;;12520:7;;12529:47;;12566:10;;12529:47;:::i;2729:148::-;2151:6;;2298:23;2151:6;747:10;2298:23;2290:68;;;;-1:-1:-1;;;2290:68:0;;5665:2:1;2290:68:0;;;5647:21:1;;;5684:18;;;5677:30;5743:34;5723:18;;;5716:62;5795:18;;2290:68:0;5637:182:1;2290:68:0;2820:6:::1;::::0;2799:40:::1;::::0;2836:1:::1;::::0;2799:40:::1;2820:6;::::0;2799:40:::1;::::0;2836:1;;2799:40:::1;2850:6;:19:::0;;;::::1;::::0;;2729:148::o;8962:104::-;9018:13;9051:7;9044:14;;;;;:::i;13110:377::-;747:10;13203:4;13247:25;;;:11;:25;;;;;;;;;:34;;;;;;;;;;13300:35;;;;13292:85;;;;-1:-1:-1;;;13292:85:0;;7239:2:1;13292:85:0;;;7221:21:1;7278:2;7258:18;;;7251:30;7317:34;7297:18;;;7290:62;7388:7;7368:18;;;7361:35;7413:19;;13292:85:0;7211:227:1;13292:85:0;13388:67;747:10;13411:7;13420:34;13439:15;13420:16;:34;:::i;13388:67::-;-1:-1:-1;13475:4:0;;13110:377;-1:-1:-1;;;13110:377:0:o;20007:151::-;2151:6;;2298:23;2151:6;747:10;2298:23;2290:68;;;;-1:-1:-1;;;2290:68:0;;5665:2:1;2290:68:0;;;5647:21:1;;;5684:18;;;5677:30;5743:34;5723:18;;;5716:62;5795:18;;2290:68:0;5637:182:1;2290:68:0;20079:28:::1;::::0;1937:14:1;;1930:22;1912:41;;20079:28:0::1;::::0;1900:2:1;1885:18;20079:28:0::1;;;;;;;20118:11;:22:::0;;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;20007:151::o;10374:175::-;10460:4;10477:42;747:10;10501:9;10512:6;10477:9;:42::i;3032:244::-;2151:6;;2298:23;2151:6;747:10;2298:23;2290:68;;;;-1:-1:-1;;;2290:68:0;;5665:2:1;2290:68:0;;;5647:21:1;;;5684:18;;;5677:30;5743:34;5723:18;;;5716:62;5795:18;;2290:68:0;5637:182:1;2290:68:0;3121:22:::1;::::0;::::1;3113:73;;;::::0;-1:-1:-1;;;3113:73:0;;3634:2:1;3113:73:0::1;::::0;::::1;3616:21:1::0;3673:2;3653:18;;;3646:30;3712:34;3692:18;;;3685:62;3783:8;3763:18;;;3756:36;3809:19;;3113:73:0::1;3606:228:1::0;3113:73:0::1;3223:6;::::0;3202:38:::1;::::0;::::1;::::0;;::::1;::::0;3223:6:::1;::::0;3202:38:::1;::::0;3223:6:::1;::::0;3202:38:::1;3251:6;:17:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;3032:244::o;16466:346::-;16568:19;;;16560:68;;;;-1:-1:-1;;;16560:68:0;;6834:2:1;16560:68:0;;;6816:21:1;6873:2;6853:18;;;6846:30;6912:34;6892:18;;;6885:62;6983:6;6963:18;;;6956:34;7007:19;;16560:68:0;6806:226:1;16560:68:0;16647:21;;;16639:68;;;;-1:-1:-1;;;16639:68:0;;4041:2:1;16639:68:0;;;4023:21:1;4080:2;4060:18;;;4053:30;4119:34;4099:18;;;4092:62;4190:4;4170:18;;;4163:32;4212:19;;16639:68:0;4013:224:1;16639:68:0;16720:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;16772:32;;7589:25:1;;;16772:32:0;;7562:18:1;16772:32:0;;;;;;;;16466:346;;;:::o;19396:609::-;19543:26;;;19564:4;19543:26;;19521:112;;;;-1:-1:-1;;;19521:112:0;;4851:2:1;19521:112:0;;;4833:21:1;4890:2;4870:18;;;4863:30;4929:34;4909:18;;;4902:62;5000:6;4980:18;;;4973:34;5024:19;;19521:112:0;4823:226:1;19521:112:0;19663:11;;;;;;;19662:12;;:54;;-1:-1:-1;19691:25:0;;;;;;;:17;:25;;;;;;;;19662:54;:99;;;-1:-1:-1;19733:28:0;;;;;;;:17;:28;;;;;;;;19662:99;19644:219;;;19788:42;19804:6;19812:9;19823:6;19788:15;:42::i;:::-;19396:609;;;:::o;19644:219::-;19873:12;19888:10;19897:1;19888:6;:10;:::i;:::-;19873:25;;19909:23;19915:10;19927:4;19909:5;:23::i;:::-;19943:49;19959:6;19967:9;19978:13;19987:4;19978:6;:13;:::i;:::-;19943:15;:49::i;:::-;19509:496;19396:609;;;:::o;13977:604::-;14083:20;;;14075:70;;;;-1:-1:-1;;;14075:70:0;;6428:2:1;14075:70:0;;;6410:21:1;6467:2;6447:18;;;6440:30;6506:34;6486:18;;;6479:62;6577:7;6557:18;;;6550:35;6602:19;;14075:70:0;6400:227:1;14075:70:0;14164:23;;;14156:71;;;;-1:-1:-1;;;14156:71:0;;2827:2:1;14156:71:0;;;2809:21:1;2866:2;2846:18;;;2839:30;2905:34;2885:18;;;2878:62;2976:5;2956:18;;;2949:33;2999:19;;14156:71:0;2799:225:1;14156:71:0;14324:17;;;14300:21;14324:17;;;;;;;;;;;14360:23;;;;14352:74;;;;-1:-1:-1;;;14352:74:0;;4444:2:1;14352:74:0;;;4426:21:1;4483:2;4463:18;;;4456:30;4522:34;4502:18;;;4495:62;4593:8;4573:18;;;4566:36;4619:19;;14352:74:0;4416:228:1;14352:74:0;14457:22;14473:6;14457:13;:22;:::i;:::-;14437:17;;;;:9;:17;;;;;;;;;;;:42;;;;14490:20;;;;;;;;:30;;14514:6;;14437:9;14490:30;;14514:6;;14490:30;:::i;:::-;;;;;;;;14555:9;14538:35;;14547:6;14538:35;;;14566:6;14538:35;;;;7589:25:1;;7577:2;7562:18;;7544:76;14538:35:0;;;;;;;;14064:517;13977:604;;;:::o;15534:494::-;15618:21;;;15610:67;;;;-1:-1:-1;;;15610:67:0;;6026:2:1;15610:67:0;;;6008:21:1;6065:2;6045:18;;;6038:30;6104:34;6084:18;;;6077:62;6175:3;6155:18;;;6148:31;6196:19;;15610:67:0;5998:223:1;15610:67:0;15777:18;;;15752:22;15777:18;;;;;;;;;;;15814:24;;;;15806:71;;;;-1:-1:-1;;;15806:71:0;;3231:2:1;15806:71:0;;;3213:21:1;3270:2;3250:18;;;3243:30;3309:34;3289:18;;;3282:62;3380:4;3360:18;;;3353:32;3402:19;;15806:71:0;3203:224:1;15806:71:0;15909:23;15926:6;15909:14;:23;:::i;:::-;15888:18;;;:9;:18;;;;;;;;;;:44;;;;15943:12;:22;;15959:6;;15888:9;15943:22;;15959:6;;15943:22;:::i;:::-;;;;-1:-1:-1;;15983:37:0;;7589:25:1;;;16009:1:0;;15983:37;;;;;;7577:2:1;7562:18;15983:37:0;7544:76:1;14:196;82:20;;142:42;131:54;;121:65;;111:2;;200:1;197;190:12;111:2;63:147;;;:::o;215:186::-;274:6;327:2;315:9;306:7;302:23;298:32;295:2;;;343:1;340;333:12;295:2;366:29;385:9;366:29;:::i;:::-;356:39;285:116;-1:-1:-1;;;285:116:1:o;406:260::-;474:6;482;535:2;523:9;514:7;510:23;506:32;503:2;;;551:1;548;541:12;503:2;574:29;593:9;574:29;:::i;:::-;564:39;;622:38;656:2;645:9;641:18;622:38;:::i;:::-;612:48;;493:173;;;;;:::o;671:328::-;748:6;756;764;817:2;805:9;796:7;792:23;788:32;785:2;;;833:1;830;823:12;785:2;856:29;875:9;856:29;:::i;:::-;846:39;;904:38;938:2;927:9;923:18;904:38;:::i;:::-;894:48;;989:2;978:9;974:18;961:32;951:42;;775:224;;;;;:::o;1004:254::-;1072:6;1080;1133:2;1121:9;1112:7;1108:23;1104:32;1101:2;;;1149:1;1146;1139:12;1101:2;1172:29;1191:9;1172:29;:::i;:::-;1162:39;1248:2;1233:18;;;;1220:32;;-1:-1:-1;;;1091:167:1:o;1263:273::-;1319:6;1372:2;1360:9;1351:7;1347:23;1343:32;1340:2;;;1388:1;1385;1378:12;1340:2;1427:9;1414:23;1480:5;1473:13;1466:21;1459:5;1456:32;1446:2;;1502:1;1499;1492:12;1964:656;2076:4;2105:2;2134;2123:9;2116:21;2166:6;2160:13;2209:6;2204:2;2193:9;2189:18;2182:34;2234:1;2244:140;2258:6;2255:1;2252:13;2244:140;;;2353:14;;;2349:23;;2343:30;2319:17;;;2338:2;2315:26;2308:66;2273:10;;2244:140;;;2402:6;2399:1;2396:13;2393:2;;;2472:1;2467:2;2458:6;2447:9;2443:22;2439:31;2432:42;2393:2;-1:-1:-1;2536:2:1;2524:15;2541:66;2520:88;2505:104;;;;2611:2;2501:113;;2085:535;-1:-1:-1;;;2085:535:1:o;7814:128::-;7854:3;7885:1;7881:6;7878:1;7875:13;7872:2;;;7891:18;;:::i;:::-;-1:-1:-1;7927:9:1;;7862:80::o;7947:274::-;7987:1;8013;8003:2;;8048:77;8045:1;8038:88;8149:4;8146:1;8139:15;8177:4;8174:1;8167:15;8003:2;-1:-1:-1;8206:9:1;;7993:228::o;8226:125::-;8266:4;8294:1;8291;8288:8;8285:2;;;8299:18;;:::i;:::-;-1:-1:-1;8336:9:1;;8275:76::o;8356:437::-;8435:1;8431:12;;;;8478;;;8499:2;;8553:4;8545:6;8541:17;8531:27;;8499:2;8606;8598:6;8595:14;8575:18;8572:38;8569:2;;;8643:77;8640:1;8633:88;8744:4;8741:1;8734:15;8772:4;8769:1;8762:15;8569:2;;8411:382;;;:::o;8798:184::-;8850:77;8847:1;8840:88;8947:4;8944:1;8937:15;8971:4;8968:1;8961:15

Swarm Source

ipfs://177849d7cd4c5a46363e82f2ea7aa1797e76d5b5305c72ebc79a0388d9e70072
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.