Token

Only Memes (ONLY)

Overview

Max Total Supply

33,519 ONLY

Holders

20

Market

Price

-

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0 ONLY

Value
$0.00
0x4444b4213472fe6d5b08fc6e9d82dc5f021dfb35
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
MemeToken

Compiler Version
v0.8.27+commit.40a35a09

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at SonicScan.org on 2024-12-21
*/

//SPDX-License-Identifier: None

pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC-20 standard as defined in the ERC.
 */
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 value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` 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 value) external returns (bool);
}

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


// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;


/**
 * @dev Interface for the optional metadata functions from the ERC-20 standard.
 */
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);
}

pragma solidity ^0.8.20;

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

pragma solidity ^0.8.20;

/**
 * @dev Standard ERC-20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev Standard ERC-721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}

/**
 * @dev Standard ERC-1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}


pragma solidity ^0.8.20;





/**
 * @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}.
 *
 * 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 ERC-20
 * applications.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) private _balances;

    mapping(address account => mapping(address spender => 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 returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual 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 returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual 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 `value`.
     */
    function transfer(address to, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, value);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `value` 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 value) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, value);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Skips emitting an {Approval} event indicating an allowance update. This is not
     * required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve].
     *
     * 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 `value`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `value`.
     */
    function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        return true;
    }

    /**
     * @dev Moves a `value` 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.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` 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.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
     * true using the following override:
     *
     * ```solidity
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

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

pragma solidity ^0.8.20;


/**
 * @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.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @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 {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @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 {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _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);
    }
}


pragma solidity 0.8.27;

interface IVoter {
    function _lastEpoch() external view returns (uint256);

    function _epochLength() external view returns(uint256);

    function _unlockTokens(address user) external;
}

pragma solidity 0.8.27; 





contract MemeToken is ERC20, Ownable {

    uint256 internal _totalSupply;
    uint256 internal _maxSupply;
    address public Voter;
    mapping (address => uint256) public amountLocked;
    IVoter voter = IVoter(Voter);

    constructor(uint256 initialSupply, uint256 maximumSupply)ERC20("Only Memes", "ONLY")Ownable(msg.sender){
        _totalSupply = initialSupply;
        _maxSupply = maximumSupply;
        _mint(msg.sender, initialSupply);
    }

     function totalSupply() public view override returns (uint256) {
        return _totalSupply - balanceOf(address(0));
    }

    function mint( address account, uint256 amount) external onlyOwner {
        
            uint256 _maxMint = _maxSupply - totalSupply();
     
          if (amount > _maxMint){ 
             amount = _maxMint; }
 
             _mint(account, amount);
             _totalSupply += amount;
    }

    function burn(uint256 amount) external {
        _totalSupply -= amount; 
        _burn(msg.sender, amount);
  
    }

    function maxSupply() external view returns (uint256) {
        return _maxSupply;
    }
    
    function setVoter(address _voter) external onlyOwner{
        require(Voter == address(0));
        Voter = _voter;
 }
 function lockTokens(uint256 amount, address user) external {
require (msg.sender == Voter, "only Voter can lock");
require (amount + amountLocked[user] <= balanceOf(user), "Fully Locked");
amountLocked[user] += amount;

 }

 function transfer(address to, uint256 value) public override returns (bool) {
        address owner = _msgSender();
        if (Voter != address(0) && block.timestamp > voter._lastEpoch() + voter._epochLength()) {
                    voter._unlockTokens(owner);
                    _transfer(owner, to, value); 
        return true;
        }
        else {
         require (value <= balanceOf(owner) - amountLocked[owner], "Value exceeds unlocked balance");
        _transfer(owner, to, value);
        return true; 
        }

    }
  function transferFrom(address from, address to, uint256 value) public override returns (bool) {
        address spender = _msgSender();
        if (Voter != address(0) && block.timestamp > voter._lastEpoch() + voter._epochLength()) {
             voter._unlockTokens(spender);
              _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        return true;
        }
        else {
        require (value <= balanceOf(from) - amountLocked[from], "Value exceeds unlocked balance");
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        return true;
         }
    }
 }

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"initialSupply","type":"uint256"},{"internalType":"uint256","name":"maximumSupply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"Voter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"amountLocked","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","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":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"user","type":"address"}],"name":"lockTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","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":"address","name":"_voter","type":"address"}],"name":"setVoter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","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"}]

608060405260085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015610070575f5ffd5b506040516126cb3803806126cb8339818101604052810190610092919061055e565b336040518060400160405280600a81526020017f4f6e6c79204d656d6573000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4f4e4c5900000000000000000000000000000000000000000000000000000000815250816003908161010e91906107d0565b50806004908161011e91906107d0565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610191575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161018891906108de565b60405180910390fd5b6101a0816101c660201b60201c565b5081600681905550806007819055506101bf338361028960201b60201c565b50506109b4565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036102f9575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016102f091906108de565b60405180910390fd5b61030a5f838361030e60201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361035e578060025f8282546103529190610924565b9250508190555061042c565b5f5f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156103e7578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016103de93929190610966565b60405180910390fd5b8181035f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610473578060025f82825403925050819055506104bd565b805f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161051a919061099b565b60405180910390a3505050565b5f5ffd5b5f819050919050565b61053d8161052b565b8114610547575f5ffd5b50565b5f8151905061055881610534565b92915050565b5f5f6040838503121561057457610573610527565b5b5f6105818582860161054a565b92505060206105928582860161054a565b9150509250929050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061061757607f821691505b60208210810361062a576106296105d3565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830261068c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610651565b6106968683610651565b95508019841693508086168417925050509392505050565b5f819050919050565b5f6106d16106cc6106c78461052b565b6106ae565b61052b565b9050919050565b5f819050919050565b6106ea836106b7565b6106fe6106f6826106d8565b84845461065d565b825550505050565b5f5f905090565b610715610706565b6107208184846106e1565b505050565b5b81811015610743576107385f8261070d565b600181019050610726565b5050565b601f8211156107885761075981610630565b61076284610642565b81016020851015610771578190505b61078561077d85610642565b830182610725565b50505b505050565b5f82821c905092915050565b5f6107a85f198460080261078d565b1980831691505092915050565b5f6107c08383610799565b9150826002028217905092915050565b6107d98261059c565b67ffffffffffffffff8111156107f2576107f16105a6565b5b6107fc8254610600565b610807828285610747565b5f60209050601f831160018114610838575f8415610826578287015190505b61083085826107b5565b865550610897565b601f19841661084686610630565b5f5b8281101561086d57848901518255600182019150602085019450602081019050610848565b8683101561088a5784890151610886601f891682610799565b8355505b6001600288020188555050505b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6108c88261089f565b9050919050565b6108d8816108be565b82525050565b5f6020820190506108f15f8301846108cf565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61092e8261052b565b91506109398361052b565b9250828201905080821115610951576109506108f7565b5b92915050565b6109608161052b565b82525050565b5f6060820190506109795f8301866108cf565b6109866020830185610957565b6109936040830184610957565b949350505050565b5f6020820190506109ae5f830184610957565b92915050565b611d0a806109c15f395ff3fe608060405234801561000f575f5ffd5b506004361061011f575f3560e01c8063715018a6116100ab578063d5abeb011161006f578063d5abeb01146102f3578063dd62ed3e14610311578063f2fde38b14610341578063f6c788b21461035d578063fa193a6e1461038d5761011f565b8063715018a6146102615780638da5cb5b1461026b57806395d89b4114610289578063a9059cbb146102a7578063aa68acde146102d75761011f565b8063313ce567116100f2578063313ce567146101bf57806340c10f19146101dd57806342966c68146101f95780634bc2a6571461021557806370a08231146102315761011f565b806306fdde0314610123578063095ea7b31461014157806318160ddd1461017157806323b872dd1461018f575b5f5ffd5b61012b6103ab565b6040516101389190611770565b60405180910390f35b61015b60048036038101906101569190611821565b61043b565b6040516101689190611879565b60405180910390f35b61017961045d565b60405161018691906118a1565b60405180910390f35b6101a960048036038101906101a491906118ba565b610479565b6040516101b69190611879565b60405180910390f35b6101c7610768565b6040516101d49190611925565b60405180910390f35b6101f760048036038101906101f29190611821565b610770565b005b610213600480360381019061020e919061193e565b6107c3565b005b61022f600480360381019061022a9190611969565b6107e8565b005b61024b60048036038101906102469190611969565b61088b565b60405161025891906118a1565b60405180910390f35b6102696108d0565b005b6102736108e3565b60405161028091906119a3565b60405180910390f35b61029161090b565b60405161029e9190611770565b60405180910390f35b6102c160048036038101906102bc9190611821565b61099b565b6040516102ce9190611879565b60405180910390f35b6102f160048036038101906102ec91906119bc565b610c73565b005b6102fb610dec565b60405161030891906118a1565b60405180910390f35b61032b600480360381019061032691906119fa565b610df5565b60405161033891906118a1565b60405180910390f35b61035b60048036038101906103569190611969565b610e77565b005b61037760048036038101906103729190611969565b610efb565b60405161038491906118a1565b60405180910390f35b610395610f10565b6040516103a291906119a3565b60405180910390f35b6060600380546103ba90611a65565b80601f01602080910402602001604051908101604052809291908181526020018280546103e690611a65565b80156104315780601f1061040857610100808354040283529160200191610431565b820191905f5260205f20905b81548152906001019060200180831161041457829003601f168201915b5050505050905090565b5f5f610445610f35565b9050610452818585610f3c565b600191505092915050565b5f6104675f61088b565b6006546104749190611ac2565b905090565b5f5f610483610f35565b90505f73ffffffffffffffffffffffffffffffffffffffff1660085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141580156106065750600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16631c244b5b6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610547573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061056b9190611b09565b600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166310e948956040518163ffffffff1660e01b8152600401602060405180830381865afa1580156105d5573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105f99190611b09565b6106039190611b34565b42115b156106b257600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a1198078826040518263ffffffff1660e01b815260040161066591906119a3565b5f604051808303815f87803b15801561067c575f5ffd5b505af115801561068e573d5f5f3e3d5ffd5b5050505061069d858285610f4e565b6106a8858585610fe0565b6001915050610761565b60095f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546106f98661088b565b6107039190611ac2565b831115610745576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073c90611bb1565b60405180910390fd5b610750858285610f4e565b61075b858585610fe0565b60019150505b9392505050565b5f6012905090565b6107786110d0565b5f61078161045d565b60075461078e9190611ac2565b90508082111561079c578091505b6107a68383611157565b8160065f8282546107b79190611b34565b92505081905550505050565b8060065f8282546107d49190611ac2565b925050819055506107e533826111d6565b50565b6107f06110d0565b5f73ffffffffffffffffffffffffffffffffffffffff1660085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610848575f5ffd5b8060085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f5f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6108d86110d0565b6108e15f611255565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461091a90611a65565b80601f016020809104026020016040519081016040528092919081815260200182805461094690611a65565b80156109915780601f1061096857610100808354040283529160200191610991565b820191905f5260205f20905b81548152906001019060200180831161097457829003601f168201915b5050505050905090565b5f5f6109a5610f35565b90505f73ffffffffffffffffffffffffffffffffffffffff1660085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614158015610b285750600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16631c244b5b6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a69573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a8d9190611b09565b600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166310e948956040518163ffffffff1660e01b8152600401602060405180830381865afa158015610af7573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b1b9190611b09565b610b259190611b34565b42115b15610bc957600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a1198078826040518263ffffffff1660e01b8152600401610b8791906119a3565b5f604051808303815f87803b158015610b9e575f5ffd5b505af1158015610bb0573d5f5f3e3d5ffd5b50505050610bbf818585610fe0565b6001915050610c6d565b60095f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610c108261088b565b610c1a9190611ac2565b831115610c5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5390611bb1565b60405180910390fd5b610c67818585610fe0565b60019150505b92915050565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf990611c19565b60405180910390fd5b610d0b8161088b565b60095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205483610d549190611b34565b1115610d95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8c90611c81565b60405180910390fd5b8160095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610de19190611b34565b925050819055505050565b5f600754905090565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610e7f6110d0565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610eef575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610ee691906119a3565b60405180910390fd5b610ef881611255565b50565b6009602052805f5260405f205f915090505481565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f33905090565b610f498383836001611318565b505050565b5f610f598484610df5565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610fda5781811015610fcb578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610fc293929190611c9f565b60405180910390fd5b610fd984848484035f611318565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611050575f6040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161104791906119a3565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110c0575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016110b791906119a3565b60405180910390fd5b6110cb8383836114e7565b505050565b6110d8610f35565b73ffffffffffffffffffffffffffffffffffffffff166110f66108e3565b73ffffffffffffffffffffffffffffffffffffffff161461115557611119610f35565b6040517f118cdaa700000000000000000000000000000000000000000000000000000000815260040161114c91906119a3565b60405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111c7575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016111be91906119a3565b60405180910390fd5b6111d25f83836114e7565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611246575f6040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161123d91906119a3565b60405180910390fd5b611251825f836114e7565b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611388575f6040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161137f91906119a3565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113f8575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016113ef91906119a3565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555080156114e1578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516114d891906118a1565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611537578060025f82825461152b9190611b34565b92505081905550611605565b5f5f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156115c0578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016115b793929190611c9f565b60405180910390fd5b8181035f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361164c578060025f8282540392505081905550611696565b805f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516116f391906118a1565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61174282611700565b61174c818561170a565b935061175c81856020860161171a565b61176581611728565b840191505092915050565b5f6020820190508181035f8301526117888184611738565b905092915050565b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6117bd82611794565b9050919050565b6117cd816117b3565b81146117d7575f5ffd5b50565b5f813590506117e8816117c4565b92915050565b5f819050919050565b611800816117ee565b811461180a575f5ffd5b50565b5f8135905061181b816117f7565b92915050565b5f5f6040838503121561183757611836611790565b5b5f611844858286016117da565b92505060206118558582860161180d565b9150509250929050565b5f8115159050919050565b6118738161185f565b82525050565b5f60208201905061188c5f83018461186a565b92915050565b61189b816117ee565b82525050565b5f6020820190506118b45f830184611892565b92915050565b5f5f5f606084860312156118d1576118d0611790565b5b5f6118de868287016117da565b93505060206118ef868287016117da565b92505060406119008682870161180d565b9150509250925092565b5f60ff82169050919050565b61191f8161190a565b82525050565b5f6020820190506119385f830184611916565b92915050565b5f6020828403121561195357611952611790565b5b5f6119608482850161180d565b91505092915050565b5f6020828403121561197e5761197d611790565b5b5f61198b848285016117da565b91505092915050565b61199d816117b3565b82525050565b5f6020820190506119b65f830184611994565b92915050565b5f5f604083850312156119d2576119d1611790565b5b5f6119df8582860161180d565b92505060206119f0858286016117da565b9150509250929050565b5f5f60408385031215611a1057611a0f611790565b5b5f611a1d858286016117da565b9250506020611a2e858286016117da565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611a7c57607f821691505b602082108103611a8f57611a8e611a38565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611acc826117ee565b9150611ad7836117ee565b9250828203905081811115611aef57611aee611a95565b5b92915050565b5f81519050611b03816117f7565b92915050565b5f60208284031215611b1e57611b1d611790565b5b5f611b2b84828501611af5565b91505092915050565b5f611b3e826117ee565b9150611b49836117ee565b9250828201905080821115611b6157611b60611a95565b5b92915050565b7f56616c7565206578636565647320756e6c6f636b65642062616c616e636500005f82015250565b5f611b9b601e8361170a565b9150611ba682611b67565b602082019050919050565b5f6020820190508181035f830152611bc881611b8f565b9050919050565b7f6f6e6c7920566f7465722063616e206c6f636b000000000000000000000000005f82015250565b5f611c0360138361170a565b9150611c0e82611bcf565b602082019050919050565b5f6020820190508181035f830152611c3081611bf7565b9050919050565b7f46756c6c79204c6f636b656400000000000000000000000000000000000000005f82015250565b5f611c6b600c8361170a565b9150611c7682611c37565b602082019050919050565b5f6020820190508181035f830152611c9881611c5f565b9050919050565b5f606082019050611cb25f830186611994565b611cbf6020830185611892565b611ccc6040830184611892565b94935050505056fea264697066735822122043ab8eaaa49dd021d87052ab0fd94e1b02c7b84df2af2e84018bb5b69f5beb9564736f6c634300081b0033000000000000000000000000000000000000000000037ad8818758882450000000000000000000000000000000000000000000000022cc750f4975516b200000

Deployed Bytecode

0x608060405234801561000f575f5ffd5b506004361061011f575f3560e01c8063715018a6116100ab578063d5abeb011161006f578063d5abeb01146102f3578063dd62ed3e14610311578063f2fde38b14610341578063f6c788b21461035d578063fa193a6e1461038d5761011f565b8063715018a6146102615780638da5cb5b1461026b57806395d89b4114610289578063a9059cbb146102a7578063aa68acde146102d75761011f565b8063313ce567116100f2578063313ce567146101bf57806340c10f19146101dd57806342966c68146101f95780634bc2a6571461021557806370a08231146102315761011f565b806306fdde0314610123578063095ea7b31461014157806318160ddd1461017157806323b872dd1461018f575b5f5ffd5b61012b6103ab565b6040516101389190611770565b60405180910390f35b61015b60048036038101906101569190611821565b61043b565b6040516101689190611879565b60405180910390f35b61017961045d565b60405161018691906118a1565b60405180910390f35b6101a960048036038101906101a491906118ba565b610479565b6040516101b69190611879565b60405180910390f35b6101c7610768565b6040516101d49190611925565b60405180910390f35b6101f760048036038101906101f29190611821565b610770565b005b610213600480360381019061020e919061193e565b6107c3565b005b61022f600480360381019061022a9190611969565b6107e8565b005b61024b60048036038101906102469190611969565b61088b565b60405161025891906118a1565b60405180910390f35b6102696108d0565b005b6102736108e3565b60405161028091906119a3565b60405180910390f35b61029161090b565b60405161029e9190611770565b60405180910390f35b6102c160048036038101906102bc9190611821565b61099b565b6040516102ce9190611879565b60405180910390f35b6102f160048036038101906102ec91906119bc565b610c73565b005b6102fb610dec565b60405161030891906118a1565b60405180910390f35b61032b600480360381019061032691906119fa565b610df5565b60405161033891906118a1565b60405180910390f35b61035b60048036038101906103569190611969565b610e77565b005b61037760048036038101906103729190611969565b610efb565b60405161038491906118a1565b60405180910390f35b610395610f10565b6040516103a291906119a3565b60405180910390f35b6060600380546103ba90611a65565b80601f01602080910402602001604051908101604052809291908181526020018280546103e690611a65565b80156104315780601f1061040857610100808354040283529160200191610431565b820191905f5260205f20905b81548152906001019060200180831161041457829003601f168201915b5050505050905090565b5f5f610445610f35565b9050610452818585610f3c565b600191505092915050565b5f6104675f61088b565b6006546104749190611ac2565b905090565b5f5f610483610f35565b90505f73ffffffffffffffffffffffffffffffffffffffff1660085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141580156106065750600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16631c244b5b6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610547573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061056b9190611b09565b600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166310e948956040518163ffffffff1660e01b8152600401602060405180830381865afa1580156105d5573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105f99190611b09565b6106039190611b34565b42115b156106b257600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a1198078826040518263ffffffff1660e01b815260040161066591906119a3565b5f604051808303815f87803b15801561067c575f5ffd5b505af115801561068e573d5f5f3e3d5ffd5b5050505061069d858285610f4e565b6106a8858585610fe0565b6001915050610761565b60095f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546106f98661088b565b6107039190611ac2565b831115610745576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073c90611bb1565b60405180910390fd5b610750858285610f4e565b61075b858585610fe0565b60019150505b9392505050565b5f6012905090565b6107786110d0565b5f61078161045d565b60075461078e9190611ac2565b90508082111561079c578091505b6107a68383611157565b8160065f8282546107b79190611b34565b92505081905550505050565b8060065f8282546107d49190611ac2565b925050819055506107e533826111d6565b50565b6107f06110d0565b5f73ffffffffffffffffffffffffffffffffffffffff1660085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610848575f5ffd5b8060085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f5f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6108d86110d0565b6108e15f611255565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461091a90611a65565b80601f016020809104026020016040519081016040528092919081815260200182805461094690611a65565b80156109915780601f1061096857610100808354040283529160200191610991565b820191905f5260205f20905b81548152906001019060200180831161097457829003601f168201915b5050505050905090565b5f5f6109a5610f35565b90505f73ffffffffffffffffffffffffffffffffffffffff1660085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614158015610b285750600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16631c244b5b6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a69573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a8d9190611b09565b600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166310e948956040518163ffffffff1660e01b8152600401602060405180830381865afa158015610af7573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b1b9190611b09565b610b259190611b34565b42115b15610bc957600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a1198078826040518263ffffffff1660e01b8152600401610b8791906119a3565b5f604051808303815f87803b158015610b9e575f5ffd5b505af1158015610bb0573d5f5f3e3d5ffd5b50505050610bbf818585610fe0565b6001915050610c6d565b60095f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610c108261088b565b610c1a9190611ac2565b831115610c5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5390611bb1565b60405180910390fd5b610c67818585610fe0565b60019150505b92915050565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf990611c19565b60405180910390fd5b610d0b8161088b565b60095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205483610d549190611b34565b1115610d95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8c90611c81565b60405180910390fd5b8160095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610de19190611b34565b925050819055505050565b5f600754905090565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610e7f6110d0565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610eef575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610ee691906119a3565b60405180910390fd5b610ef881611255565b50565b6009602052805f5260405f205f915090505481565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f33905090565b610f498383836001611318565b505050565b5f610f598484610df5565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610fda5781811015610fcb578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610fc293929190611c9f565b60405180910390fd5b610fd984848484035f611318565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611050575f6040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161104791906119a3565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110c0575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016110b791906119a3565b60405180910390fd5b6110cb8383836114e7565b505050565b6110d8610f35565b73ffffffffffffffffffffffffffffffffffffffff166110f66108e3565b73ffffffffffffffffffffffffffffffffffffffff161461115557611119610f35565b6040517f118cdaa700000000000000000000000000000000000000000000000000000000815260040161114c91906119a3565b60405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111c7575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016111be91906119a3565b60405180910390fd5b6111d25f83836114e7565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611246575f6040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161123d91906119a3565b60405180910390fd5b611251825f836114e7565b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611388575f6040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161137f91906119a3565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113f8575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016113ef91906119a3565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555080156114e1578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516114d891906118a1565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611537578060025f82825461152b9190611b34565b92505081905550611605565b5f5f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156115c0578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016115b793929190611c9f565b60405180910390fd5b8181035f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361164c578060025f8282540392505081905550611696565b805f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516116f391906118a1565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61174282611700565b61174c818561170a565b935061175c81856020860161171a565b61176581611728565b840191505092915050565b5f6020820190508181035f8301526117888184611738565b905092915050565b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6117bd82611794565b9050919050565b6117cd816117b3565b81146117d7575f5ffd5b50565b5f813590506117e8816117c4565b92915050565b5f819050919050565b611800816117ee565b811461180a575f5ffd5b50565b5f8135905061181b816117f7565b92915050565b5f5f6040838503121561183757611836611790565b5b5f611844858286016117da565b92505060206118558582860161180d565b9150509250929050565b5f8115159050919050565b6118738161185f565b82525050565b5f60208201905061188c5f83018461186a565b92915050565b61189b816117ee565b82525050565b5f6020820190506118b45f830184611892565b92915050565b5f5f5f606084860312156118d1576118d0611790565b5b5f6118de868287016117da565b93505060206118ef868287016117da565b92505060406119008682870161180d565b9150509250925092565b5f60ff82169050919050565b61191f8161190a565b82525050565b5f6020820190506119385f830184611916565b92915050565b5f6020828403121561195357611952611790565b5b5f6119608482850161180d565b91505092915050565b5f6020828403121561197e5761197d611790565b5b5f61198b848285016117da565b91505092915050565b61199d816117b3565b82525050565b5f6020820190506119b65f830184611994565b92915050565b5f5f604083850312156119d2576119d1611790565b5b5f6119df8582860161180d565b92505060206119f0858286016117da565b9150509250929050565b5f5f60408385031215611a1057611a0f611790565b5b5f611a1d858286016117da565b9250506020611a2e858286016117da565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611a7c57607f821691505b602082108103611a8f57611a8e611a38565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611acc826117ee565b9150611ad7836117ee565b9250828203905081811115611aef57611aee611a95565b5b92915050565b5f81519050611b03816117f7565b92915050565b5f60208284031215611b1e57611b1d611790565b5b5f611b2b84828501611af5565b91505092915050565b5f611b3e826117ee565b9150611b49836117ee565b9250828201905080821115611b6157611b60611a95565b5b92915050565b7f56616c7565206578636565647320756e6c6f636b65642062616c616e636500005f82015250565b5f611b9b601e8361170a565b9150611ba682611b67565b602082019050919050565b5f6020820190508181035f830152611bc881611b8f565b9050919050565b7f6f6e6c7920566f7465722063616e206c6f636b000000000000000000000000005f82015250565b5f611c0360138361170a565b9150611c0e82611bcf565b602082019050919050565b5f6020820190508181035f830152611c3081611bf7565b9050919050565b7f46756c6c79204c6f636b656400000000000000000000000000000000000000005f82015250565b5f611c6b600c8361170a565b9150611c7682611c37565b602082019050919050565b5f6020820190508181035f830152611c9881611c5f565b9050919050565b5f606082019050611cb25f830186611994565b611cbf6020830185611892565b611ccc6040830184611892565b94935050505056fea264697066735822122043ab8eaaa49dd021d87052ab0fd94e1b02c7b84df2af2e84018bb5b69f5beb9564736f6c634300081b0033

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

000000000000000000000000000000000000000000037ad8818758882450000000000000000000000000000000000000000000000022cc750f4975516b200000

-----Decoded View---------------
Arg [0] : initialSupply (uint256): 4206900000000000000000000
Arg [1] : maximumSupply (uint256): 42069000000000000000000000

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000037ad88187588824500000
Arg [1] : 00000000000000000000000000000000000000000022cc750f4975516b200000


Deployed Bytecode Sourcemap

25191:2703:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12494:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14787:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25665:124;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27245:645;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13447:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25797:302;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26107:121;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26337;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13758:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24088:103;;;:::i;:::-;;23413:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12704:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26693:548;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26461:227;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26236:89;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14326:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24346:220;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25334:48;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25307:20;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12494:91;12539:13;12572:5;12565:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12494:91;:::o;14787:190::-;14860:4;14877:13;14893:12;:10;:12::i;:::-;14877:28;;14916:31;14925:5;14932:7;14941:5;14916:8;:31::i;:::-;14965:4;14958:11;;;14787:190;;;;:::o;25665:124::-;25718:7;25760:21;25778:1;25760:9;:21::i;:::-;25745:12;;:36;;;;:::i;:::-;25738:43;;25665:124;:::o;27245:645::-;27333:4;27350:15;27368:12;:10;:12::i;:::-;27350:30;;27412:1;27395:19;;:5;;;;;;;;;;;:19;;;;:82;;;;;27457:5;;;;;;;;;;;:18;;;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;27436:5;;;;;;;;;;;:16;;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:41;;;;:::i;:::-;27418:15;:59;27395:82;27391:492;;;27495:5;;;;;;;;;;;:19;;;27515:7;27495:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27540:37;27556:4;27562:7;27571:5;27540:15;:37::i;:::-;27588:26;27598:4;27604:2;27608:5;27588:9;:26::i;:::-;27632:4;27625:11;;;;;27391:492;27710:12;:18;27723:4;27710:18;;;;;;;;;;;;;;;;27692:15;27702:4;27692:9;:15::i;:::-;:36;;;;:::i;:::-;27683:5;:45;;27674:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;27774:37;27790:4;27796:7;27805:5;27774:15;:37::i;:::-;27822:26;27832:4;27838:2;27842:5;27822:9;:26::i;:::-;27866:4;27859:11;;;27245:645;;;;;;:::o;13447:84::-;13496:5;13521:2;13514:9;;13447:84;:::o;25797:302::-;23299:13;:11;:13::i;:::-;25889:16:::1;25921:13;:11;:13::i;:::-;25908:10;;:26;;;;:::i;:::-;25889:45;;25967:8;25958:6;:17;25954:59;;;26002:8;25993:17;;25954:59;26031:22;26037:7;26046:6;26031:5;:22::i;:::-;26085:6;26069:12;;:22;;;;;;;:::i;:::-;;;;;;;;25864:235;25797:302:::0;;:::o;26107:121::-;26173:6;26157:12;;:22;;;;;;;:::i;:::-;;;;;;;;26191:25;26197:10;26209:6;26191:5;:25::i;:::-;26107:121;:::o;26337:::-;23299:13;:11;:13::i;:::-;26425:1:::1;26408:19;;:5;;;;;;;;;;;:19;;;26400:28;;;;;;26447:6;26439:5;;:14;;;;;;;;;;;;;;;;;;26337:121:::0;:::o;13758:118::-;13823:7;13850:9;:18;13860:7;13850:18;;;;;;;;;;;;;;;;13843:25;;13758:118;;;:::o;24088:103::-;23299:13;:11;:13::i;:::-;24153:30:::1;24180:1;24153:18;:30::i;:::-;24088:103::o:0;23413:87::-;23459:7;23486:6;;;;;;;;;;;23479:13;;23413:87;:::o;12704:95::-;12751:13;12784:7;12777:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12704:95;:::o;26693:548::-;26763:4;26780:13;26796:12;:10;:12::i;:::-;26780:28;;26840:1;26823:19;;:5;;;;;;;;;;;:19;;;;:82;;;;;26885:5;;;;;;;;;;;:18;;;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;26864:5;;;;;;;;;;;:16;;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:41;;;;:::i;:::-;26846:15;:59;26823:82;26819:413;;;26930:5;;;;;;;;;;;:19;;;26950:5;26930:26;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26979:27;26989:5;26996:2;27000:5;26979:9;:27::i;:::-;27025:4;27018:11;;;;;26819:413;27105:12;:19;27118:5;27105:19;;;;;;;;;;;;;;;;27086:16;27096:5;27086:9;:16::i;:::-;:38;;;;:::i;:::-;27077:5;:47;;27068:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;27170:27;27180:5;27187:2;27191:5;27170:9;:27::i;:::-;27215:4;27208:11;;;26693:548;;;;;:::o;26461:227::-;26546:5;;;;;;;;;;;26532:19;;:10;:19;;;26523:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;26618:15;26628:4;26618:9;:15::i;:::-;26596:12;:18;26609:4;26596:18;;;;;;;;;;;;;;;;26587:6;:27;;;;:::i;:::-;:46;;26578:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;26675:6;26653:12;:18;26666:4;26653:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;26461:227;;:::o;26236:89::-;26280:7;26307:10;;26300:17;;26236:89;:::o;14326:142::-;14406:7;14433:11;:18;14445:5;14433:18;;;;;;;;;;;;;;;:27;14452:7;14433:27;;;;;;;;;;;;;;;;14426:34;;14326:142;;;;:::o;24346:220::-;23299:13;:11;:13::i;:::-;24451:1:::1;24431:22;;:8;:22;;::::0;24427:93:::1;;24505:1;24477:31;;;;;;;;;;;:::i;:::-;;;;;;;;24427:93;24530:28;24549:8;24530:18;:28::i;:::-;24346:220:::0;:::o;25334:48::-;;;;;;;;;;;;;;;;;:::o;25307:20::-;;;;;;;;;;;;;:::o;4075:98::-;4128:7;4155:10;4148:17;;4075:98;:::o;19646:130::-;19731:37;19740:5;19747:7;19756:5;19763:4;19731:8;:37::i;:::-;19646:130;;;:::o;21378:487::-;21478:24;21505:25;21515:5;21522:7;21505:9;:25::i;:::-;21478:52;;21565:17;21545:16;:37;21541:317;;21622:5;21603:16;:24;21599:132;;;21682:7;21691:16;21709:5;21655:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;21599:132;21774:57;21783:5;21790:7;21818:5;21799:16;:24;21825:5;21774:8;:57::i;:::-;21541:317;21467:398;21378:487;;;:::o;16221:308::-;16321:1;16305:18;;:4;:18;;;16301:88;;16374:1;16347:30;;;;;;;;;;;:::i;:::-;;;;;;;;16301:88;16417:1;16403:16;;:2;:16;;;16399:88;;16472:1;16443:32;;;;;;;;;;;:::i;:::-;;;;;;;;16399:88;16497:24;16505:4;16511:2;16515:5;16497:7;:24::i;:::-;16221:308;;;:::o;23578:166::-;23649:12;:10;:12::i;:::-;23638:23;;:7;:5;:7::i;:::-;:23;;;23634:103;;23712:12;:10;:12::i;:::-;23685:40;;;;;;;;;;;:::i;:::-;;;;;;;;23634:103;23578:166::o;18341:213::-;18431:1;18412:21;;:7;:21;;;18408:93;;18486:1;18457:32;;;;;;;;;;;:::i;:::-;;;;;;;;18408:93;18511:35;18527:1;18531:7;18540:5;18511:7;:35::i;:::-;18341:213;;:::o;18882:211::-;18972:1;18953:21;;:7;:21;;;18949:91;;19025:1;18998:30;;;;;;;;;;;:::i;:::-;;;;;;;;18949:91;19050:35;19058:7;19075:1;19079:5;19050:7;:35::i;:::-;18882:211;;:::o;24726:191::-;24800:16;24819:6;;;;;;;;;;;24800:25;;24845:8;24836:6;;:17;;;;;;;;;;;;;;;;;;24900:8;24869:40;;24890:8;24869:40;;;;;;;;;;;;24789:128;24726:191;:::o;20643:443::-;20773:1;20756:19;;:5;:19;;;20752:91;;20828:1;20799:32;;;;;;;;;;;:::i;:::-;;;;;;;;20752:91;20876:1;20857:21;;:7;:21;;;20853:92;;20930:1;20902:31;;;;;;;;;;;:::i;:::-;;;;;;;;20853:92;20985:5;20955:11;:18;20967:5;20955:18;;;;;;;;;;;;;;;:27;20974:7;20955:27;;;;;;;;;;;;;;;:35;;;;21005:9;21001:78;;;21052:7;21036:31;;21045:5;21036:31;;;21061:5;21036:31;;;;;;:::i;:::-;;;;;;;;21001:78;20643:443;;;;:::o;16853:1135::-;16959:1;16943:18;;:4;:18;;;16939:552;;17097:5;17081:12;;:21;;;;;;;:::i;:::-;;;;;;;;16939:552;;;17135:19;17157:9;:15;17167:4;17157:15;;;;;;;;;;;;;;;;17135:37;;17205:5;17191:11;:19;17187:117;;;17263:4;17269:11;17282:5;17238:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;17187:117;17459:5;17445:11;:19;17427:9;:15;17437:4;17427:15;;;;;;;;;;;;;;;:37;;;;17120:371;16939:552;17521:1;17507:16;;:2;:16;;;17503:435;;17689:5;17673:12;;:21;;;;;;;;;;;17503:435;;;17906:5;17889:9;:13;17899:2;17889:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;17503:435;17970:2;17955:25;;17964:4;17955:25;;;17974:5;17955:25;;;;;;:::i;:::-;;;;;;;;16853:1135;;;:::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:139::-;376:6;371:3;366;360:23;417:1;408:6;403:3;399:16;392:27;287:139;;;:::o;432:102::-;473:6;524:2;520:7;515:2;508:5;504:14;500:28;490:38;;432:102;;;:::o;540:377::-;628:3;656:39;689:5;656:39;:::i;:::-;711:71;775:6;770:3;711:71;:::i;:::-;704:78;;791:65;849:6;844:3;837:4;830:5;826:16;791:65;:::i;:::-;881:29;903:6;881:29;:::i;:::-;876:3;872:39;865:46;;632:285;540:377;;;;:::o;923:313::-;1036:4;1074:2;1063:9;1059:18;1051:26;;1123:9;1117:4;1113:20;1109:1;1098:9;1094:17;1087:47;1151:78;1224:4;1215:6;1151:78;:::i;:::-;1143:86;;923:313;;;;:::o;1323:117::-;1432:1;1429;1422:12;1569:126;1606:7;1646:42;1639:5;1635:54;1624:65;;1569:126;;;:::o;1701:96::-;1738:7;1767:24;1785:5;1767:24;:::i;:::-;1756:35;;1701:96;;;:::o;1803:122::-;1876:24;1894:5;1876:24;:::i;:::-;1869:5;1866:35;1856:63;;1915:1;1912;1905:12;1856:63;1803:122;:::o;1931:139::-;1977:5;2015:6;2002:20;1993:29;;2031:33;2058:5;2031:33;:::i;:::-;1931:139;;;;:::o;2076:77::-;2113:7;2142:5;2131:16;;2076:77;;;:::o;2159:122::-;2232:24;2250:5;2232:24;:::i;:::-;2225:5;2222:35;2212:63;;2271:1;2268;2261:12;2212:63;2159:122;:::o;2287:139::-;2333:5;2371:6;2358:20;2349:29;;2387:33;2414:5;2387:33;:::i;:::-;2287:139;;;;:::o;2432:474::-;2500:6;2508;2557:2;2545:9;2536:7;2532:23;2528:32;2525:119;;;2563:79;;:::i;:::-;2525:119;2683:1;2708:53;2753:7;2744:6;2733:9;2729:22;2708:53;:::i;:::-;2698:63;;2654:117;2810:2;2836:53;2881:7;2872:6;2861:9;2857:22;2836:53;:::i;:::-;2826:63;;2781:118;2432:474;;;;;:::o;2912:90::-;2946:7;2989:5;2982:13;2975:21;2964:32;;2912:90;;;:::o;3008:109::-;3089:21;3104:5;3089:21;:::i;:::-;3084:3;3077:34;3008:109;;:::o;3123:210::-;3210:4;3248:2;3237:9;3233:18;3225:26;;3261:65;3323:1;3312:9;3308:17;3299:6;3261:65;:::i;:::-;3123:210;;;;:::o;3339:118::-;3426:24;3444:5;3426:24;:::i;:::-;3421:3;3414:37;3339:118;;:::o;3463:222::-;3556:4;3594:2;3583:9;3579:18;3571:26;;3607:71;3675:1;3664:9;3660:17;3651:6;3607:71;:::i;:::-;3463:222;;;;:::o;3691:619::-;3768:6;3776;3784;3833:2;3821:9;3812:7;3808:23;3804:32;3801:119;;;3839:79;;:::i;:::-;3801:119;3959:1;3984:53;4029:7;4020:6;4009:9;4005:22;3984:53;:::i;:::-;3974:63;;3930:117;4086:2;4112:53;4157:7;4148:6;4137:9;4133:22;4112:53;:::i;:::-;4102:63;;4057:118;4214:2;4240:53;4285:7;4276:6;4265:9;4261:22;4240:53;:::i;:::-;4230:63;;4185:118;3691:619;;;;;:::o;4316:86::-;4351:7;4391:4;4384:5;4380:16;4369:27;;4316:86;;;:::o;4408:112::-;4491:22;4507:5;4491:22;:::i;:::-;4486:3;4479:35;4408:112;;:::o;4526:214::-;4615:4;4653:2;4642:9;4638:18;4630:26;;4666:67;4730:1;4719:9;4715:17;4706:6;4666:67;:::i;:::-;4526:214;;;;:::o;4746:329::-;4805:6;4854:2;4842:9;4833:7;4829:23;4825:32;4822:119;;;4860:79;;:::i;:::-;4822:119;4980:1;5005:53;5050:7;5041:6;5030:9;5026:22;5005:53;:::i;:::-;4995:63;;4951:117;4746:329;;;;:::o;5081:::-;5140:6;5189:2;5177:9;5168:7;5164:23;5160:32;5157:119;;;5195:79;;:::i;:::-;5157:119;5315:1;5340:53;5385:7;5376:6;5365:9;5361:22;5340:53;:::i;:::-;5330:63;;5286:117;5081:329;;;;:::o;5416:118::-;5503:24;5521:5;5503:24;:::i;:::-;5498:3;5491:37;5416:118;;:::o;5540:222::-;5633:4;5671:2;5660:9;5656:18;5648:26;;5684:71;5752:1;5741:9;5737:17;5728:6;5684:71;:::i;:::-;5540:222;;;;:::o;5768:474::-;5836:6;5844;5893:2;5881:9;5872:7;5868:23;5864:32;5861:119;;;5899:79;;:::i;:::-;5861:119;6019:1;6044:53;6089:7;6080:6;6069:9;6065:22;6044:53;:::i;:::-;6034:63;;5990:117;6146:2;6172:53;6217:7;6208:6;6197:9;6193:22;6172:53;:::i;:::-;6162:63;;6117:118;5768:474;;;;;:::o;6248:::-;6316:6;6324;6373:2;6361:9;6352:7;6348:23;6344:32;6341:119;;;6379:79;;:::i;:::-;6341:119;6499:1;6524:53;6569:7;6560:6;6549:9;6545:22;6524:53;:::i;:::-;6514:63;;6470:117;6626:2;6652:53;6697:7;6688:6;6677:9;6673:22;6652:53;:::i;:::-;6642:63;;6597:118;6248:474;;;;;:::o;6728:180::-;6776:77;6773:1;6766:88;6873:4;6870:1;6863:15;6897:4;6894:1;6887:15;6914:320;6958:6;6995:1;6989:4;6985:12;6975:22;;7042:1;7036:4;7032:12;7063:18;7053:81;;7119:4;7111:6;7107:17;7097:27;;7053:81;7181:2;7173:6;7170:14;7150:18;7147:38;7144:84;;7200:18;;:::i;:::-;7144:84;6965:269;6914:320;;;:::o;7240:180::-;7288:77;7285:1;7278:88;7385:4;7382:1;7375:15;7409:4;7406:1;7399:15;7426:194;7466:4;7486:20;7504:1;7486:20;:::i;:::-;7481:25;;7520:20;7538:1;7520:20;:::i;:::-;7515:25;;7564:1;7561;7557:9;7549:17;;7588:1;7582:4;7579:11;7576:37;;;7593:18;;:::i;:::-;7576:37;7426:194;;;;:::o;7626:143::-;7683:5;7714:6;7708:13;7699:22;;7730:33;7757:5;7730:33;:::i;:::-;7626:143;;;;:::o;7775:351::-;7845:6;7894:2;7882:9;7873:7;7869:23;7865:32;7862:119;;;7900:79;;:::i;:::-;7862:119;8020:1;8045:64;8101:7;8092:6;8081:9;8077:22;8045:64;:::i;:::-;8035:74;;7991:128;7775:351;;;;:::o;8132:191::-;8172:3;8191:20;8209:1;8191:20;:::i;:::-;8186:25;;8225:20;8243:1;8225:20;:::i;:::-;8220:25;;8268:1;8265;8261:9;8254:16;;8289:3;8286:1;8283:10;8280:36;;;8296:18;;:::i;:::-;8280:36;8132:191;;;;:::o;8329:180::-;8469:32;8465:1;8457:6;8453:14;8446:56;8329:180;:::o;8515:366::-;8657:3;8678:67;8742:2;8737:3;8678:67;:::i;:::-;8671:74;;8754:93;8843:3;8754:93;:::i;:::-;8872:2;8867:3;8863:12;8856:19;;8515:366;;;:::o;8887:419::-;9053:4;9091:2;9080:9;9076:18;9068:26;;9140:9;9134:4;9130:20;9126:1;9115:9;9111:17;9104:47;9168:131;9294:4;9168:131;:::i;:::-;9160:139;;8887:419;;;:::o;9312:169::-;9452:21;9448:1;9440:6;9436:14;9429:45;9312:169;:::o;9487:366::-;9629:3;9650:67;9714:2;9709:3;9650:67;:::i;:::-;9643:74;;9726:93;9815:3;9726:93;:::i;:::-;9844:2;9839:3;9835:12;9828:19;;9487:366;;;:::o;9859:419::-;10025:4;10063:2;10052:9;10048:18;10040:26;;10112:9;10106:4;10102:20;10098:1;10087:9;10083:17;10076:47;10140:131;10266:4;10140:131;:::i;:::-;10132:139;;9859:419;;;:::o;10284:162::-;10424:14;10420:1;10412:6;10408:14;10401:38;10284:162;:::o;10452:366::-;10594:3;10615:67;10679:2;10674:3;10615:67;:::i;:::-;10608:74;;10691:93;10780:3;10691:93;:::i;:::-;10809:2;10804:3;10800:12;10793:19;;10452:366;;;:::o;10824:419::-;10990:4;11028:2;11017:9;11013:18;11005:26;;11077:9;11071:4;11067:20;11063:1;11052:9;11048:17;11041:47;11105:131;11231:4;11105:131;:::i;:::-;11097:139;;10824:419;;;:::o;11249:442::-;11398:4;11436:2;11425:9;11421:18;11413:26;;11449:71;11517:1;11506:9;11502:17;11493:6;11449:71;:::i;:::-;11530:72;11598:2;11587:9;11583:18;11574:6;11530:72;:::i;:::-;11612;11680:2;11669:9;11665:18;11656:6;11612:72;:::i;:::-;11249:442;;;;;;:::o

Swarm Source

ipfs://43ab8eaaa49dd021d87052ab0fd94e1b02c7b84df2af2e84018bb5b69f5beb95
[ 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.