ETH Price: $3,415.78 (+1.01%)
Gas: 3 Gwei

Token

Elon Musk (ELON)
 

Overview

Max Total Supply

69,420,133,701,010 ELON

Holders

8

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
jaredfromsubway.eth
Balance
6,970,388,697 ELON

Value
$0.00
0xae2fc483527b8ef99eb5d9b44875f005ba1fae13
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:
ElonToken

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-06-23
*/

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


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @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


// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;



/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

// File: contracts/elon_token.sol


pragma solidity ^0.8.9;




contract ElonToken is ERC20, ERC20Burnable, Ownable {
    uint256 public taxRate;
    address public taxWallet;

    event TaxRateChanged(uint256 newTaxRate);
    event TaxWalletChanged(address newTaxWallet);

    constructor() ERC20("Elon Musk", "ELON") {
        taxRate = 0; // 0% tax rate initially
        taxWallet = msg.sender; // The contract deployer initially
    }

    function mint(address to, uint256 amount) public onlyOwner {
        _mint(to, amount);
    }

    function transfer(address recipient, uint256 amount) public override returns (bool) {
        uint256 tax = calculateTax(amount);
        uint256 netAmount = amount - tax;
        _transfer(_msgSender(), taxWallet, tax);
        _transfer(_msgSender(), recipient, netAmount);
        return true;
    }

    function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
        uint256 tax = calculateTax(amount);
        uint256 netAmount = amount - tax;
        _transfer(sender, taxWallet, tax);
        _transfer(sender, recipient, netAmount);
        _approve(sender, _msgSender(), allowance(sender,_msgSender()) - amount);
        return true;
    }

    function setTaxRate(uint256 newTaxRate) public onlyOwner {
        require(newTaxRate <= 100, "Tax rate must be less than or equal to 100");
        taxRate = newTaxRate;
        emit TaxRateChanged(newTaxRate);
    }

    function setTaxWallet(address newTaxWallet) public onlyOwner {
        taxWallet = newTaxWallet;
        emit TaxWalletChanged(newTaxWallet);
    }

    function calculateTax(uint256 amount) private view returns (uint256) {
        return amount * taxRate / 100;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newTaxRate","type":"uint256"}],"name":"TaxRateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newTaxWallet","type":"address"}],"name":"TaxWalletChanged","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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","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":[{"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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newTaxRate","type":"uint256"}],"name":"setTaxRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newTaxWallet","type":"address"}],"name":"setTaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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"}]

60806040523480156200001157600080fd5b506040518060400160405280600981526020017f456c6f6e204d75736b00000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f454c4f4e0000000000000000000000000000000000000000000000000000000081525081600390816200008f91906200045b565b508060049081620000a191906200045b565b505050620000c4620000b86200011360201b60201c565b6200011b60201b60201c565b600060068190555033600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000542565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200026357607f821691505b6020821081036200027957620002786200021b565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620002e37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620002a4565b620002ef8683620002a4565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200033c62000336620003308462000307565b62000311565b62000307565b9050919050565b6000819050919050565b62000358836200031b565b62000370620003678262000343565b848454620002b1565b825550505050565b600090565b6200038762000378565b620003948184846200034d565b505050565b5b81811015620003bc57620003b06000826200037d565b6001810190506200039a565b5050565b601f8211156200040b57620003d5816200027f565b620003e08462000294565b81016020851015620003f0578190505b62000408620003ff8562000294565b83018262000399565b50505b505050565b600082821c905092915050565b6000620004306000198460080262000410565b1980831691505092915050565b60006200044b83836200041d565b9150826002028217905092915050565b6200046682620001e1565b67ffffffffffffffff811115620004825762000481620001ec565b5b6200048e82546200024a565b6200049b828285620003c0565b600060209050601f831160018114620004d35760008415620004be578287015190505b620004ca85826200043d565b8655506200053a565b601f198416620004e3866200027f565b60005b828110156200050d57848901518255600182019150602085019450602081019050620004e6565b868310156200052d578489015162000529601f8916826200041d565b8355505b6001600288020188555050505b505050505050565b611f9480620005526000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c8063715018a6116100b8578063a457c2d71161007c578063a457c2d71461032c578063a9059cbb1461035c578063c6d69a301461038c578063dd62ed3e146103a8578063ea414b28146103d8578063f2fde38b146103f457610137565b8063715018a6146102ac578063771a3a1d146102b657806379cc6790146102d45780638da5cb5b146102f057806395d89b411461030e57610137565b8063313ce567116100ff578063313ce567146101f6578063395093511461021457806340c10f191461024457806342966c681461026057806370a082311461027c57610137565b806306fdde031461013c578063095ea7b31461015a57806318160ddd1461018a57806323b872dd146101a85780632dc0562d146101d8575b600080fd5b610144610410565b6040516101519190611424565b60405180910390f35b610174600480360381019061016f91906114df565b6104a2565b604051610181919061153a565b60405180910390f35b6101926104c5565b60405161019f9190611564565b60405180910390f35b6101c260048036038101906101bd919061157f565b6104cf565b6040516101cf919061153a565b60405180910390f35b6101e061055f565b6040516101ed91906115e1565b60405180910390f35b6101fe610585565b60405161020b9190611618565b60405180910390f35b61022e600480360381019061022991906114df565b61058e565b60405161023b919061153a565b60405180910390f35b61025e600480360381019061025991906114df565b6105c5565b005b61027a60048036038101906102759190611633565b6105db565b005b61029660048036038101906102919190611660565b6105ef565b6040516102a39190611564565b60405180910390f35b6102b4610637565b005b6102be61064b565b6040516102cb9190611564565b60405180910390f35b6102ee60048036038101906102e991906114df565b610651565b005b6102f8610671565b60405161030591906115e1565b60405180910390f35b61031661069b565b6040516103239190611424565b60405180910390f35b610346600480360381019061034191906114df565b61072d565b604051610353919061153a565b60405180910390f35b610376600480360381019061037191906114df565b6107a4565b604051610383919061153a565b60405180910390f35b6103a660048036038101906103a19190611633565b610814565b005b6103c260048036038101906103bd919061168d565b6108a1565b6040516103cf9190611564565b60405180910390f35b6103f260048036038101906103ed9190611660565b610928565b005b61040e60048036038101906104099190611660565b6109aa565b005b60606003805461041f906116fc565b80601f016020809104026020016040519081016040528092919081815260200182805461044b906116fc565b80156104985780601f1061046d57610100808354040283529160200191610498565b820191906000526020600020905b81548152906001019060200180831161047b57829003601f168201915b5050505050905090565b6000806104ad610a2d565b90506104ba818585610a35565b600191505092915050565b6000600254905090565b6000806104db83610bfe565b9050600081846104eb919061175c565b905061051a86600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610c21565b610525868683610c21565b61055286610531610a2d565b866105438a61053e610a2d565b6108a1565b61054d919061175c565b610a35565b6001925050509392505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006012905090565b600080610599610a2d565b90506105ba8185856105ab85896108a1565b6105b59190611790565b610a35565b600191505092915050565b6105cd610e97565b6105d78282610f15565b5050565b6105ec6105e6610a2d565b8261106b565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61063f610e97565b6106496000611238565b565b60065481565b6106638261065d610a2d565b836112fe565b61066d828261106b565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546106aa906116fc565b80601f01602080910402602001604051908101604052809291908181526020018280546106d6906116fc565b80156107235780601f106106f857610100808354040283529160200191610723565b820191906000526020600020905b81548152906001019060200180831161070657829003601f168201915b5050505050905090565b600080610738610a2d565b9050600061074682866108a1565b90508381101561078b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078290611836565b60405180910390fd5b6107988286868403610a35565b60019250505092915050565b6000806107b083610bfe565b9050600081846107c0919061175c565b90506107f66107cd610a2d565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610c21565b610808610801610a2d565b8683610c21565b60019250505092915050565b61081c610e97565b6064811115610860576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610857906118c8565b60405180910390fd5b806006819055507fbe89dc2f9769e9896808a0f0983380fed3225e0784b99b98d3eec9ccb5018528816040516108969190611564565b60405180910390a150565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610930610e97565b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507ea263b61aab5ebdcff20c4c0c74c2589ea5ab52149abde19eca17ad522178998160405161099f91906115e1565b60405180910390a150565b6109b2610e97565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a189061195a565b60405180910390fd5b610a2a81611238565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610aa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9b906119ec565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0a90611a7e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610bf19190611564565b60405180910390a3505050565b6000606460065483610c109190611a9e565b610c1a9190611b0f565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8790611bb2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf690611c44565b60405180910390fd5b610d0a83838361138a565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8790611cd6565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e7e9190611564565b60405180910390a3610e9184848461138f565b50505050565b610e9f610a2d565b73ffffffffffffffffffffffffffffffffffffffff16610ebd610671565b73ffffffffffffffffffffffffffffffffffffffff1614610f13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0a90611d42565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7b90611dae565b60405180910390fd5b610f906000838361138a565b8060026000828254610fa29190611790565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516110539190611564565b60405180910390a36110676000838361138f565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d190611e40565b60405180910390fd5b6110e68260008361138a565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561116c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116390611ed2565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161121f9190611564565b60405180910390a36112338360008461138f565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600061130a84846108a1565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146113845781811015611376576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136d90611f3e565b60405180910390fd5b6113838484848403610a35565b5b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156113ce5780820151818401526020810190506113b3565b60008484015250505050565b6000601f19601f8301169050919050565b60006113f682611394565b611400818561139f565b93506114108185602086016113b0565b611419816113da565b840191505092915050565b6000602082019050818103600083015261143e81846113eb565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006114768261144b565b9050919050565b6114868161146b565b811461149157600080fd5b50565b6000813590506114a38161147d565b92915050565b6000819050919050565b6114bc816114a9565b81146114c757600080fd5b50565b6000813590506114d9816114b3565b92915050565b600080604083850312156114f6576114f5611446565b5b600061150485828601611494565b9250506020611515858286016114ca565b9150509250929050565b60008115159050919050565b6115348161151f565b82525050565b600060208201905061154f600083018461152b565b92915050565b61155e816114a9565b82525050565b60006020820190506115796000830184611555565b92915050565b60008060006060848603121561159857611597611446565b5b60006115a686828701611494565b93505060206115b786828701611494565b92505060406115c8868287016114ca565b9150509250925092565b6115db8161146b565b82525050565b60006020820190506115f660008301846115d2565b92915050565b600060ff82169050919050565b611612816115fc565b82525050565b600060208201905061162d6000830184611609565b92915050565b60006020828403121561164957611648611446565b5b6000611657848285016114ca565b91505092915050565b60006020828403121561167657611675611446565b5b600061168484828501611494565b91505092915050565b600080604083850312156116a4576116a3611446565b5b60006116b285828601611494565b92505060206116c385828601611494565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061171457607f821691505b602082108103611727576117266116cd565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611767826114a9565b9150611772836114a9565b925082820390508181111561178a5761178961172d565b5b92915050565b600061179b826114a9565b91506117a6836114a9565b92508282019050808211156117be576117bd61172d565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061182060258361139f565b915061182b826117c4565b604082019050919050565b6000602082019050818103600083015261184f81611813565b9050919050565b7f5461782072617465206d757374206265206c657373207468616e206f7220657160008201527f75616c20746f2031303000000000000000000000000000000000000000000000602082015250565b60006118b2602a8361139f565b91506118bd82611856565b604082019050919050565b600060208201905081810360008301526118e1816118a5565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061194460268361139f565b915061194f826118e8565b604082019050919050565b6000602082019050818103600083015261197381611937565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006119d660248361139f565b91506119e18261197a565b604082019050919050565b60006020820190508181036000830152611a05816119c9565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611a6860228361139f565b9150611a7382611a0c565b604082019050919050565b60006020820190508181036000830152611a9781611a5b565b9050919050565b6000611aa9826114a9565b9150611ab4836114a9565b9250828202611ac2816114a9565b91508282048414831517611ad957611ad861172d565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611b1a826114a9565b9150611b25836114a9565b925082611b3557611b34611ae0565b5b828204905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611b9c60258361139f565b9150611ba782611b40565b604082019050919050565b60006020820190508181036000830152611bcb81611b8f565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611c2e60238361139f565b9150611c3982611bd2565b604082019050919050565b60006020820190508181036000830152611c5d81611c21565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611cc060268361139f565b9150611ccb82611c64565b604082019050919050565b60006020820190508181036000830152611cef81611cb3565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611d2c60208361139f565b9150611d3782611cf6565b602082019050919050565b60006020820190508181036000830152611d5b81611d1f565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611d98601f8361139f565b9150611da382611d62565b602082019050919050565b60006020820190508181036000830152611dc781611d8b565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e2a60218361139f565b9150611e3582611dce565b604082019050919050565b60006020820190508181036000830152611e5981611e1d565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611ebc60228361139f565b9150611ec782611e60565b604082019050919050565b60006020820190508181036000830152611eeb81611eaf565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611f28601d8361139f565b9150611f3382611ef2565b602082019050919050565b60006020820190508181036000830152611f5781611f1b565b905091905056fea264697066735822122066315f24c2a6b49f0cabf66177d02cddb0ee607bb9ead56c8c9def8aa989bf7a64736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101375760003560e01c8063715018a6116100b8578063a457c2d71161007c578063a457c2d71461032c578063a9059cbb1461035c578063c6d69a301461038c578063dd62ed3e146103a8578063ea414b28146103d8578063f2fde38b146103f457610137565b8063715018a6146102ac578063771a3a1d146102b657806379cc6790146102d45780638da5cb5b146102f057806395d89b411461030e57610137565b8063313ce567116100ff578063313ce567146101f6578063395093511461021457806340c10f191461024457806342966c681461026057806370a082311461027c57610137565b806306fdde031461013c578063095ea7b31461015a57806318160ddd1461018a57806323b872dd146101a85780632dc0562d146101d8575b600080fd5b610144610410565b6040516101519190611424565b60405180910390f35b610174600480360381019061016f91906114df565b6104a2565b604051610181919061153a565b60405180910390f35b6101926104c5565b60405161019f9190611564565b60405180910390f35b6101c260048036038101906101bd919061157f565b6104cf565b6040516101cf919061153a565b60405180910390f35b6101e061055f565b6040516101ed91906115e1565b60405180910390f35b6101fe610585565b60405161020b9190611618565b60405180910390f35b61022e600480360381019061022991906114df565b61058e565b60405161023b919061153a565b60405180910390f35b61025e600480360381019061025991906114df565b6105c5565b005b61027a60048036038101906102759190611633565b6105db565b005b61029660048036038101906102919190611660565b6105ef565b6040516102a39190611564565b60405180910390f35b6102b4610637565b005b6102be61064b565b6040516102cb9190611564565b60405180910390f35b6102ee60048036038101906102e991906114df565b610651565b005b6102f8610671565b60405161030591906115e1565b60405180910390f35b61031661069b565b6040516103239190611424565b60405180910390f35b610346600480360381019061034191906114df565b61072d565b604051610353919061153a565b60405180910390f35b610376600480360381019061037191906114df565b6107a4565b604051610383919061153a565b60405180910390f35b6103a660048036038101906103a19190611633565b610814565b005b6103c260048036038101906103bd919061168d565b6108a1565b6040516103cf9190611564565b60405180910390f35b6103f260048036038101906103ed9190611660565b610928565b005b61040e60048036038101906104099190611660565b6109aa565b005b60606003805461041f906116fc565b80601f016020809104026020016040519081016040528092919081815260200182805461044b906116fc565b80156104985780601f1061046d57610100808354040283529160200191610498565b820191906000526020600020905b81548152906001019060200180831161047b57829003601f168201915b5050505050905090565b6000806104ad610a2d565b90506104ba818585610a35565b600191505092915050565b6000600254905090565b6000806104db83610bfe565b9050600081846104eb919061175c565b905061051a86600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610c21565b610525868683610c21565b61055286610531610a2d565b866105438a61053e610a2d565b6108a1565b61054d919061175c565b610a35565b6001925050509392505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006012905090565b600080610599610a2d565b90506105ba8185856105ab85896108a1565b6105b59190611790565b610a35565b600191505092915050565b6105cd610e97565b6105d78282610f15565b5050565b6105ec6105e6610a2d565b8261106b565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61063f610e97565b6106496000611238565b565b60065481565b6106638261065d610a2d565b836112fe565b61066d828261106b565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546106aa906116fc565b80601f01602080910402602001604051908101604052809291908181526020018280546106d6906116fc565b80156107235780601f106106f857610100808354040283529160200191610723565b820191906000526020600020905b81548152906001019060200180831161070657829003601f168201915b5050505050905090565b600080610738610a2d565b9050600061074682866108a1565b90508381101561078b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078290611836565b60405180910390fd5b6107988286868403610a35565b60019250505092915050565b6000806107b083610bfe565b9050600081846107c0919061175c565b90506107f66107cd610a2d565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684610c21565b610808610801610a2d565b8683610c21565b60019250505092915050565b61081c610e97565b6064811115610860576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610857906118c8565b60405180910390fd5b806006819055507fbe89dc2f9769e9896808a0f0983380fed3225e0784b99b98d3eec9ccb5018528816040516108969190611564565b60405180910390a150565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610930610e97565b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507ea263b61aab5ebdcff20c4c0c74c2589ea5ab52149abde19eca17ad522178998160405161099f91906115e1565b60405180910390a150565b6109b2610e97565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a189061195a565b60405180910390fd5b610a2a81611238565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610aa4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9b906119ec565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0a90611a7e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610bf19190611564565b60405180910390a3505050565b6000606460065483610c109190611a9e565b610c1a9190611b0f565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8790611bb2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf690611c44565b60405180910390fd5b610d0a83838361138a565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8790611cd6565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e7e9190611564565b60405180910390a3610e9184848461138f565b50505050565b610e9f610a2d565b73ffffffffffffffffffffffffffffffffffffffff16610ebd610671565b73ffffffffffffffffffffffffffffffffffffffff1614610f13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0a90611d42565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7b90611dae565b60405180910390fd5b610f906000838361138a565b8060026000828254610fa29190611790565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516110539190611564565b60405180910390a36110676000838361138f565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d190611e40565b60405180910390fd5b6110e68260008361138a565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561116c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116390611ed2565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161121f9190611564565b60405180910390a36112338360008461138f565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600061130a84846108a1565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146113845781811015611376576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136d90611f3e565b60405180910390fd5b6113838484848403610a35565b5b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156113ce5780820151818401526020810190506113b3565b60008484015250505050565b6000601f19601f8301169050919050565b60006113f682611394565b611400818561139f565b93506114108185602086016113b0565b611419816113da565b840191505092915050565b6000602082019050818103600083015261143e81846113eb565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006114768261144b565b9050919050565b6114868161146b565b811461149157600080fd5b50565b6000813590506114a38161147d565b92915050565b6000819050919050565b6114bc816114a9565b81146114c757600080fd5b50565b6000813590506114d9816114b3565b92915050565b600080604083850312156114f6576114f5611446565b5b600061150485828601611494565b9250506020611515858286016114ca565b9150509250929050565b60008115159050919050565b6115348161151f565b82525050565b600060208201905061154f600083018461152b565b92915050565b61155e816114a9565b82525050565b60006020820190506115796000830184611555565b92915050565b60008060006060848603121561159857611597611446565b5b60006115a686828701611494565b93505060206115b786828701611494565b92505060406115c8868287016114ca565b9150509250925092565b6115db8161146b565b82525050565b60006020820190506115f660008301846115d2565b92915050565b600060ff82169050919050565b611612816115fc565b82525050565b600060208201905061162d6000830184611609565b92915050565b60006020828403121561164957611648611446565b5b6000611657848285016114ca565b91505092915050565b60006020828403121561167657611675611446565b5b600061168484828501611494565b91505092915050565b600080604083850312156116a4576116a3611446565b5b60006116b285828601611494565b92505060206116c385828601611494565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061171457607f821691505b602082108103611727576117266116cd565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611767826114a9565b9150611772836114a9565b925082820390508181111561178a5761178961172d565b5b92915050565b600061179b826114a9565b91506117a6836114a9565b92508282019050808211156117be576117bd61172d565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061182060258361139f565b915061182b826117c4565b604082019050919050565b6000602082019050818103600083015261184f81611813565b9050919050565b7f5461782072617465206d757374206265206c657373207468616e206f7220657160008201527f75616c20746f2031303000000000000000000000000000000000000000000000602082015250565b60006118b2602a8361139f565b91506118bd82611856565b604082019050919050565b600060208201905081810360008301526118e1816118a5565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061194460268361139f565b915061194f826118e8565b604082019050919050565b6000602082019050818103600083015261197381611937565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006119d660248361139f565b91506119e18261197a565b604082019050919050565b60006020820190508181036000830152611a05816119c9565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611a6860228361139f565b9150611a7382611a0c565b604082019050919050565b60006020820190508181036000830152611a9781611a5b565b9050919050565b6000611aa9826114a9565b9150611ab4836114a9565b9250828202611ac2816114a9565b91508282048414831517611ad957611ad861172d565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611b1a826114a9565b9150611b25836114a9565b925082611b3557611b34611ae0565b5b828204905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611b9c60258361139f565b9150611ba782611b40565b604082019050919050565b60006020820190508181036000830152611bcb81611b8f565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611c2e60238361139f565b9150611c3982611bd2565b604082019050919050565b60006020820190508181036000830152611c5d81611c21565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611cc060268361139f565b9150611ccb82611c64565b604082019050919050565b60006020820190508181036000830152611cef81611cb3565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611d2c60208361139f565b9150611d3782611cf6565b602082019050919050565b60006020820190508181036000830152611d5b81611d1f565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611d98601f8361139f565b9150611da382611d62565b602082019050919050565b60006020820190508181036000830152611dc781611d8b565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e2a60218361139f565b9150611e3582611dce565b604082019050919050565b60006020820190508181036000830152611e5981611e1d565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611ebc60228361139f565b9150611ec782611e60565b604082019050919050565b60006020820190508181036000830152611eeb81611eaf565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611f28601d8361139f565b9150611f3382611ef2565b602082019050919050565b60006020820190508181036000830152611f5781611f1b565b905091905056fea264697066735822122066315f24c2a6b49f0cabf66177d02cddb0ee607bb9ead56c8c9def8aa989bf7a64736f6c63430008120033

Deployed Bytecode Sourcemap

21543:1725:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9314:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11674:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10443:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22355:398;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21631:24;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10285:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13125:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21936:95;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20890:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10614:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2769:103;;;:::i;:::-;;21602:22;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21300:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2128:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9533:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13866:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22039:308;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22761:221;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11203:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22990:150;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3027:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9314:100;9368:13;9401:5;9394:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9314:100;:::o;11674:201::-;11757:4;11774:13;11790:12;:10;:12::i;:::-;11774:28;;11813:32;11822:5;11829:7;11838:6;11813:8;:32::i;:::-;11863:4;11856:11;;;11674:201;;;;:::o;10443:108::-;10504:7;10531:12;;10524:19;;10443:108;:::o;22355:398::-;22453:4;22470:11;22484:20;22497:6;22484:12;:20::i;:::-;22470:34;;22515:17;22544:3;22535:6;:12;;;;:::i;:::-;22515:32;;22558:33;22568:6;22576:9;;;;;;;;;;;22587:3;22558:9;:33::i;:::-;22602:39;22612:6;22620:9;22631;22602;:39::i;:::-;22652:71;22661:6;22669:12;:10;:12::i;:::-;22716:6;22683:30;22693:6;22700:12;:10;:12::i;:::-;22683:9;:30::i;:::-;:39;;;;:::i;:::-;22652:8;:71::i;:::-;22741:4;22734:11;;;;22355:398;;;;;:::o;21631:24::-;;;;;;;;;;;;;:::o;10285:93::-;10343:5;10368:2;10361:9;;10285:93;:::o;13125:238::-;13213:4;13230:13;13246:12;:10;:12::i;:::-;13230:28;;13269:64;13278:5;13285:7;13322:10;13294:25;13304:5;13311:7;13294:9;:25::i;:::-;:38;;;;:::i;:::-;13269:8;:64::i;:::-;13351:4;13344:11;;;13125:238;;;;:::o;21936:95::-;2014:13;:11;:13::i;:::-;22006:17:::1;22012:2;22016:6;22006:5;:17::i;:::-;21936:95:::0;;:::o;20890:91::-;20946:27;20952:12;:10;:12::i;:::-;20966:6;20946:5;:27::i;:::-;20890:91;:::o;10614:127::-;10688:7;10715:9;:18;10725:7;10715:18;;;;;;;;;;;;;;;;10708:25;;10614:127;;;:::o;2769:103::-;2014:13;:11;:13::i;:::-;2834:30:::1;2861:1;2834:18;:30::i;:::-;2769:103::o:0;21602:22::-;;;;:::o;21300:164::-;21377:46;21393:7;21402:12;:10;:12::i;:::-;21416:6;21377:15;:46::i;:::-;21434:22;21440:7;21449:6;21434:5;:22::i;:::-;21300:164;;:::o;2128:87::-;2174:7;2201:6;;;;;;;;;;;2194:13;;2128:87;:::o;9533:104::-;9589:13;9622:7;9615:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9533:104;:::o;13866:436::-;13959:4;13976:13;13992:12;:10;:12::i;:::-;13976:28;;14015:24;14042:25;14052:5;14059:7;14042:9;:25::i;:::-;14015:52;;14106:15;14086:16;:35;;14078:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14199:60;14208:5;14215:7;14243:15;14224:16;:34;14199:8;:60::i;:::-;14290:4;14283:11;;;;13866:436;;;;:::o;22039:308::-;22117:4;22134:11;22148:20;22161:6;22148:12;:20::i;:::-;22134:34;;22179:17;22208:3;22199:6;:12;;;;:::i;:::-;22179:32;;22222:39;22232:12;:10;:12::i;:::-;22246:9;;;;;;;;;;;22257:3;22222:9;:39::i;:::-;22272:45;22282:12;:10;:12::i;:::-;22296:9;22307;22272;:45::i;:::-;22335:4;22328:11;;;;22039:308;;;;:::o;22761:221::-;2014:13;:11;:13::i;:::-;22851:3:::1;22837:10;:17;;22829:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;22922:10;22912:7;:20;;;;22948:26;22963:10;22948:26;;;;;;:::i;:::-;;;;;;;;22761:221:::0;:::o;11203:151::-;11292:7;11319:11;:18;11331:5;11319:18;;;;;;;;;;;;;;;:27;11338:7;11319:27;;;;;;;;;;;;;;;;11312:34;;11203:151;;;;:::o;22990:150::-;2014:13;:11;:13::i;:::-;23074:12:::1;23062:9;;:24;;;;;;;;;;;;;;;;;;23102:30;23119:12;23102:30;;;;;;:::i;:::-;;;;;;;;22990:150:::0;:::o;3027:201::-;2014:13;:11;:13::i;:::-;3136:1:::1;3116:22;;:8;:22;;::::0;3108:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3192:28;3211:8;3192:18;:28::i;:::-;3027:201:::0;:::o;679:98::-;732:7;759:10;752:17;;679:98;:::o;17859:346::-;17978:1;17961:19;;:5;:19;;;17953:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18059:1;18040:21;;:7;:21;;;18032:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18143:6;18113:11;:18;18125:5;18113:18;;;;;;;;;;;;;;;:27;18132:7;18113:27;;;;;;;;;;;;;;;:36;;;;18181:7;18165:32;;18174:5;18165:32;;;18190:6;18165:32;;;;;;:::i;:::-;;;;;;;;17859:346;;;:::o;23148:117::-;23208:7;23254:3;23244:7;;23235:6;:16;;;;:::i;:::-;:22;;;;:::i;:::-;23228:29;;23148:117;;;:::o;14772:806::-;14885:1;14869:18;;:4;:18;;;14861:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14962:1;14948:16;;:2;:16;;;14940:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15017:38;15038:4;15044:2;15048:6;15017:20;:38::i;:::-;15068:19;15090:9;:15;15100:4;15090:15;;;;;;;;;;;;;;;;15068:37;;15139:6;15124:11;:21;;15116:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;15256:6;15242:11;:20;15224:9;:15;15234:4;15224:15;;;;;;;;;;;;;;;:38;;;;15459:6;15442:9;:13;15452:2;15442:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;15509:2;15494:26;;15503:4;15494:26;;;15513:6;15494:26;;;;;;:::i;:::-;;;;;;;;15533:37;15553:4;15559:2;15563:6;15533:19;:37::i;:::-;14850:728;14772:806;;;:::o;2293:132::-;2368:12;:10;:12::i;:::-;2357:23;;:7;:5;:7::i;:::-;:23;;;2349:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2293:132::o;15865:548::-;15968:1;15949:21;;:7;:21;;;15941:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;16019:49;16048:1;16052:7;16061:6;16019:20;:49::i;:::-;16097:6;16081:12;;:22;;;;;;;:::i;:::-;;;;;;;;16274:6;16252:9;:18;16262:7;16252:18;;;;;;;;;;;;;;;;:28;;;;;;;;;;;16328:7;16307:37;;16324:1;16307:37;;;16337:6;16307:37;;;;;;:::i;:::-;;;;;;;;16357:48;16385:1;16389:7;16398:6;16357:19;:48::i;:::-;15865:548;;:::o;16746:675::-;16849:1;16830:21;;:7;:21;;;16822:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;16902:49;16923:7;16940:1;16944:6;16902:20;:49::i;:::-;16964:22;16989:9;:18;16999:7;16989:18;;;;;;;;;;;;;;;;16964:43;;17044:6;17026:14;:24;;17018:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;17163:6;17146:14;:23;17125:9;:18;17135:7;17125:18;;;;;;;;;;;;;;;:44;;;;17280:6;17264:12;;:22;;;;;;;;;;;17341:1;17315:37;;17324:7;17315:37;;;17345:6;17315:37;;;;;;:::i;:::-;;;;;;;;17365:48;17385:7;17402:1;17406:6;17365:19;:48::i;:::-;16811:610;16746:675;;:::o;3388:191::-;3462:16;3481:6;;;;;;;;;;;3462:25;;3507:8;3498:6;;:17;;;;;;;;;;;;;;;;;;3562:8;3531:40;;3552:8;3531:40;;;;;;;;;;;;3451:128;3388:191;:::o;18496:419::-;18597:24;18624:25;18634:5;18641:7;18624:9;:25::i;:::-;18597:52;;18684:17;18664:16;:37;18660:248;;18746:6;18726:16;:26;;18718:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18830:51;18839:5;18846:7;18874:6;18855:16;:25;18830:8;:51::i;:::-;18660:248;18586:329;18496:419;;;:::o;19515:91::-;;;;:::o;20210:90::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:118::-;4510:24;4528:5;4510:24;:::i;:::-;4505:3;4498:37;4423:118;;:::o;4547:222::-;4640:4;4678:2;4667:9;4663:18;4655:26;;4691:71;4759:1;4748:9;4744:17;4735:6;4691:71;:::i;:::-;4547:222;;;;:::o;4775:86::-;4810:7;4850:4;4843:5;4839:16;4828:27;;4775:86;;;:::o;4867:112::-;4950:22;4966:5;4950:22;:::i;:::-;4945:3;4938:35;4867:112;;:::o;4985:214::-;5074:4;5112:2;5101:9;5097:18;5089:26;;5125:67;5189:1;5178:9;5174:17;5165:6;5125:67;:::i;:::-;4985:214;;;;:::o;5205:329::-;5264:6;5313:2;5301:9;5292:7;5288:23;5284:32;5281:119;;;5319:79;;:::i;:::-;5281:119;5439:1;5464:53;5509:7;5500:6;5489:9;5485:22;5464:53;:::i;:::-;5454:63;;5410:117;5205:329;;;;:::o;5540:::-;5599:6;5648:2;5636:9;5627:7;5623:23;5619:32;5616:119;;;5654:79;;:::i;:::-;5616:119;5774:1;5799:53;5844:7;5835:6;5824:9;5820:22;5799:53;:::i;:::-;5789:63;;5745:117;5540:329;;;;:::o;5875:474::-;5943:6;5951;6000:2;5988:9;5979:7;5975:23;5971:32;5968:119;;;6006:79;;:::i;:::-;5968:119;6126:1;6151:53;6196:7;6187:6;6176:9;6172:22;6151:53;:::i;:::-;6141:63;;6097:117;6253:2;6279:53;6324:7;6315:6;6304:9;6300:22;6279:53;:::i;:::-;6269:63;;6224:118;5875:474;;;;;:::o;6355:180::-;6403:77;6400:1;6393:88;6500:4;6497:1;6490:15;6524:4;6521:1;6514:15;6541:320;6585:6;6622:1;6616:4;6612:12;6602:22;;6669:1;6663:4;6659:12;6690:18;6680:81;;6746:4;6738:6;6734:17;6724:27;;6680:81;6808:2;6800:6;6797:14;6777:18;6774:38;6771:84;;6827:18;;:::i;:::-;6771:84;6592:269;6541:320;;;:::o;6867:180::-;6915:77;6912:1;6905:88;7012:4;7009:1;7002:15;7036:4;7033:1;7026:15;7053:194;7093:4;7113:20;7131:1;7113:20;:::i;:::-;7108:25;;7147:20;7165:1;7147:20;:::i;:::-;7142:25;;7191:1;7188;7184:9;7176:17;;7215:1;7209:4;7206:11;7203:37;;;7220:18;;:::i;:::-;7203:37;7053:194;;;;:::o;7253:191::-;7293:3;7312:20;7330:1;7312:20;:::i;:::-;7307:25;;7346:20;7364:1;7346:20;:::i;:::-;7341:25;;7389:1;7386;7382:9;7375:16;;7410:3;7407:1;7404:10;7401:36;;;7417:18;;:::i;:::-;7401:36;7253:191;;;;:::o;7450:224::-;7590:34;7586:1;7578:6;7574:14;7567:58;7659:7;7654:2;7646:6;7642:15;7635:32;7450:224;:::o;7680:366::-;7822:3;7843:67;7907:2;7902:3;7843:67;:::i;:::-;7836:74;;7919:93;8008:3;7919:93;:::i;:::-;8037:2;8032:3;8028:12;8021:19;;7680:366;;;:::o;8052:419::-;8218:4;8256:2;8245:9;8241:18;8233:26;;8305:9;8299:4;8295:20;8291:1;8280:9;8276:17;8269:47;8333:131;8459:4;8333:131;:::i;:::-;8325:139;;8052:419;;;:::o;8477:229::-;8617:34;8613:1;8605:6;8601:14;8594:58;8686:12;8681:2;8673:6;8669:15;8662:37;8477:229;:::o;8712:366::-;8854:3;8875:67;8939:2;8934:3;8875:67;:::i;:::-;8868:74;;8951:93;9040:3;8951:93;:::i;:::-;9069:2;9064:3;9060:12;9053:19;;8712:366;;;:::o;9084:419::-;9250:4;9288:2;9277:9;9273:18;9265:26;;9337:9;9331:4;9327:20;9323:1;9312:9;9308:17;9301:47;9365:131;9491:4;9365:131;:::i;:::-;9357:139;;9084:419;;;:::o;9509:225::-;9649:34;9645:1;9637:6;9633:14;9626:58;9718:8;9713:2;9705:6;9701:15;9694:33;9509:225;:::o;9740:366::-;9882:3;9903:67;9967:2;9962:3;9903:67;:::i;:::-;9896:74;;9979:93;10068:3;9979:93;:::i;:::-;10097:2;10092:3;10088:12;10081:19;;9740:366;;;:::o;10112:419::-;10278:4;10316:2;10305:9;10301:18;10293:26;;10365:9;10359:4;10355:20;10351:1;10340:9;10336:17;10329:47;10393:131;10519:4;10393:131;:::i;:::-;10385:139;;10112:419;;;:::o;10537:223::-;10677:34;10673:1;10665:6;10661:14;10654:58;10746:6;10741:2;10733:6;10729:15;10722:31;10537:223;:::o;10766:366::-;10908:3;10929:67;10993:2;10988:3;10929:67;:::i;:::-;10922:74;;11005:93;11094:3;11005:93;:::i;:::-;11123:2;11118:3;11114:12;11107:19;;10766:366;;;:::o;11138:419::-;11304:4;11342:2;11331:9;11327:18;11319:26;;11391:9;11385:4;11381:20;11377:1;11366:9;11362:17;11355:47;11419:131;11545:4;11419:131;:::i;:::-;11411:139;;11138:419;;;:::o;11563:221::-;11703:34;11699:1;11691:6;11687:14;11680:58;11772:4;11767:2;11759:6;11755:15;11748:29;11563:221;:::o;11790:366::-;11932:3;11953:67;12017:2;12012:3;11953:67;:::i;:::-;11946:74;;12029:93;12118:3;12029:93;:::i;:::-;12147:2;12142:3;12138:12;12131:19;;11790:366;;;:::o;12162:419::-;12328:4;12366:2;12355:9;12351:18;12343:26;;12415:9;12409:4;12405:20;12401:1;12390:9;12386:17;12379:47;12443:131;12569:4;12443:131;:::i;:::-;12435:139;;12162:419;;;:::o;12587:410::-;12627:7;12650:20;12668:1;12650:20;:::i;:::-;12645:25;;12684:20;12702:1;12684:20;:::i;:::-;12679:25;;12739:1;12736;12732:9;12761:30;12779:11;12761:30;:::i;:::-;12750:41;;12940:1;12931:7;12927:15;12924:1;12921:22;12901:1;12894:9;12874:83;12851:139;;12970:18;;:::i;:::-;12851:139;12635:362;12587:410;;;;:::o;13003:180::-;13051:77;13048:1;13041:88;13148:4;13145:1;13138:15;13172:4;13169:1;13162:15;13189:185;13229:1;13246:20;13264:1;13246:20;:::i;:::-;13241:25;;13280:20;13298:1;13280:20;:::i;:::-;13275:25;;13319:1;13309:35;;13324:18;;:::i;:::-;13309:35;13366:1;13363;13359:9;13354:14;;13189:185;;;;:::o;13380:224::-;13520:34;13516:1;13508:6;13504:14;13497:58;13589:7;13584:2;13576:6;13572:15;13565:32;13380:224;:::o;13610:366::-;13752:3;13773:67;13837:2;13832:3;13773:67;:::i;:::-;13766:74;;13849:93;13938:3;13849:93;:::i;:::-;13967:2;13962:3;13958:12;13951:19;;13610:366;;;:::o;13982:419::-;14148:4;14186:2;14175:9;14171:18;14163:26;;14235:9;14229:4;14225:20;14221:1;14210:9;14206:17;14199:47;14263:131;14389:4;14263:131;:::i;:::-;14255:139;;13982:419;;;:::o;14407:222::-;14547:34;14543:1;14535:6;14531:14;14524:58;14616:5;14611:2;14603:6;14599:15;14592:30;14407:222;:::o;14635:366::-;14777:3;14798:67;14862:2;14857:3;14798:67;:::i;:::-;14791:74;;14874:93;14963:3;14874:93;:::i;:::-;14992:2;14987:3;14983:12;14976:19;;14635:366;;;:::o;15007:419::-;15173:4;15211:2;15200:9;15196:18;15188:26;;15260:9;15254:4;15250:20;15246:1;15235:9;15231:17;15224:47;15288:131;15414:4;15288:131;:::i;:::-;15280:139;;15007:419;;;:::o;15432:225::-;15572:34;15568:1;15560:6;15556:14;15549:58;15641:8;15636:2;15628:6;15624:15;15617:33;15432:225;:::o;15663:366::-;15805:3;15826:67;15890:2;15885:3;15826:67;:::i;:::-;15819:74;;15902:93;15991:3;15902:93;:::i;:::-;16020:2;16015:3;16011:12;16004:19;;15663:366;;;:::o;16035:419::-;16201:4;16239:2;16228:9;16224:18;16216:26;;16288:9;16282:4;16278:20;16274:1;16263:9;16259:17;16252:47;16316:131;16442:4;16316:131;:::i;:::-;16308:139;;16035:419;;;:::o;16460:182::-;16600:34;16596:1;16588:6;16584:14;16577:58;16460:182;:::o;16648:366::-;16790:3;16811:67;16875:2;16870:3;16811:67;:::i;:::-;16804:74;;16887:93;16976:3;16887:93;:::i;:::-;17005:2;17000:3;16996:12;16989:19;;16648:366;;;:::o;17020:419::-;17186:4;17224:2;17213:9;17209:18;17201:26;;17273:9;17267:4;17263:20;17259:1;17248:9;17244:17;17237:47;17301:131;17427:4;17301:131;:::i;:::-;17293:139;;17020:419;;;:::o;17445:181::-;17585:33;17581:1;17573:6;17569:14;17562:57;17445:181;:::o;17632:366::-;17774:3;17795:67;17859:2;17854:3;17795:67;:::i;:::-;17788:74;;17871:93;17960:3;17871:93;:::i;:::-;17989:2;17984:3;17980:12;17973:19;;17632:366;;;:::o;18004:419::-;18170:4;18208:2;18197:9;18193:18;18185:26;;18257:9;18251:4;18247:20;18243:1;18232:9;18228:17;18221:47;18285:131;18411:4;18285:131;:::i;:::-;18277:139;;18004:419;;;:::o;18429:220::-;18569:34;18565:1;18557:6;18553:14;18546:58;18638:3;18633:2;18625:6;18621:15;18614:28;18429:220;:::o;18655:366::-;18797:3;18818:67;18882:2;18877:3;18818:67;:::i;:::-;18811:74;;18894:93;18983:3;18894:93;:::i;:::-;19012:2;19007:3;19003:12;18996:19;;18655:366;;;:::o;19027:419::-;19193:4;19231:2;19220:9;19216:18;19208:26;;19280:9;19274:4;19270:20;19266:1;19255:9;19251:17;19244:47;19308:131;19434:4;19308:131;:::i;:::-;19300:139;;19027:419;;;:::o;19452:221::-;19592:34;19588:1;19580:6;19576:14;19569:58;19661:4;19656:2;19648:6;19644:15;19637:29;19452:221;:::o;19679:366::-;19821:3;19842:67;19906:2;19901:3;19842:67;:::i;:::-;19835:74;;19918:93;20007:3;19918:93;:::i;:::-;20036:2;20031:3;20027:12;20020:19;;19679:366;;;:::o;20051:419::-;20217:4;20255:2;20244:9;20240:18;20232:26;;20304:9;20298:4;20294:20;20290:1;20279:9;20275:17;20268:47;20332:131;20458:4;20332:131;:::i;:::-;20324:139;;20051:419;;;:::o;20476:179::-;20616:31;20612:1;20604:6;20600:14;20593:55;20476:179;:::o;20661:366::-;20803:3;20824:67;20888:2;20883:3;20824:67;:::i;:::-;20817:74;;20900:93;20989:3;20900:93;:::i;:::-;21018:2;21013:3;21009:12;21002:19;;20661:366;;;:::o;21033:419::-;21199:4;21237:2;21226:9;21222:18;21214:26;;21286:9;21280:4;21276:20;21272:1;21261:9;21257:17;21250:47;21314:131;21440:4;21314:131;:::i;:::-;21306:139;;21033:419;;;:::o

Swarm Source

ipfs://66315f24c2a6b49f0cabf66177d02cddb0ee607bb9ead56c8c9def8aa989bf7a
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.