ETH Price: $2,611.01 (-1.90%)

Token

SlashFi (SLSH)
 

Overview

Max Total Supply

535,000 SLSH

Holders

41

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000000000000009318 SLSH

Value
$0.00
0xc6cb1db82e58c0a69eb0c9fb6e7ea6cc183022ee
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:
SlashFi

Compiler Version
v0.8.25+commit.b61c2a91

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-09-09
*/

/*

$SLSH is the first of its kind "gamified echo deflation" token on Ethereum.

Telegram: https://t.me/SlashFinance
Twitter: https://x.com/SlashFinance
Medium: https://medium.com/@slashfinance
Dapp: https://app.slashfi.finance

*/

// File: @openzeppelin/contracts/interfaces/draft-IERC6093.sol


// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

/**
 * @dev Standard ERC20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 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 ERC721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-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 ERC1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 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);
}

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


// OpenZeppelin Contracts (last updated v5.0.0) (utils/Context.sol)

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

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


// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

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

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


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @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 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.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;


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

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


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)

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 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.
 */
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}.
     *
     * 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 `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:
     * ```
     * 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);
            }
        }
    }
}

// File: slsh/slsh.sol


pragma solidity ^0.8.0;



contract SlashFi is ERC20, Ownable(msg.sender) {
    // Mapping to track cooldowns for debasing a wallet
    mapping(address => uint256) public lastDebaseTime;
    mapping(address => bool) public debaseExclusionList;

    uint256 public constant DEBASE_PERCENTAGE = 50; // 0.5% as a factor of 10000
    uint256 public constant INITIAL_DEBASE_PERCENTAGE = 100; // 1% as a factor of 10000
    uint256 public constant DEBASE_COOLDOWN = 30 minutes;

    event Debased(address indexed target, uint256 amountBurned);
    event ExcludeFromDebase(address account, bool exclude);
    event Burn(address indexed account, uint256 amount);

    constructor() ERC20("SlashFi", "SLSH") {
        _mint(msg.sender, 535000 * 10**decimals()); // Mint initial supply
    }

    // Exclude LP and CEX wallets from debase
    function excludeFromDebase(address account, bool exclude) external onlyOwner {
        debaseExclusionList[account] = exclude;
        emit ExcludeFromDebase(account, exclude);
    }

    // Debase a target wallet
    function debase(address target) external {
        require(!debaseExclusionList[target], "Target is excluded from debase");

        uint256 currentTime = block.timestamp;
        uint256 lastDebase = lastDebaseTime[target];

        uint256 debaseCooldown = DEBASE_COOLDOWN;
        uint256 debasePercentage = (lastDebase == 0) ? INITIAL_DEBASE_PERCENTAGE : DEBASE_PERCENTAGE;

        require(currentTime >= lastDebase + debaseCooldown, "Debase cooldown period has not passed");

        uint256 balance = balanceOf(target);
        uint256 debaseAmount = (balance * debasePercentage) / 10000; // Adjusted to factor of 10000

        require(debaseAmount > 0, "Debase amount must be greater than zero");

        _burn(target, debaseAmount);

        lastDebaseTime[target] = currentTime;
        emit Debased(target, debaseAmount);
    }

    // Burn function that allows only the owner to burn their own tokens
    function burn(uint256 amount) external onlyOwner {
        require(amount > 0, "Burn amount must be greater than zero");
        _burn(msg.sender, amount);
        emit Burn(msg.sender, amount);
    }

    // Optional: Implement UI functions to view cooldowns and debase information
    function getLastDebaseTime(address account) external view returns (uint256) {
        return lastDebaseTime[account];
    }

    function isExcludedFromDebase(address account) external view returns (bool) {
        return debaseExclusionList[account];
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"uint256","name":"amountBurned","type":"uint256"}],"name":"Debased","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"exclude","type":"bool"}],"name":"ExcludeFromDebase","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":"DEBASE_COOLDOWN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEBASE_PERCENTAGE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"INITIAL_DEBASE_PERCENTAGE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"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":[{"internalType":"address","name":"target","type":"address"}],"name":"debase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"debaseExclusionList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"exclude","type":"bool"}],"name":"excludeFromDebase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getLastDebaseTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromDebase","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lastDebaseTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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"}]

608060405234801561000f575f80fd5b50336040518060400160405280600781526020017f536c6173684669000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f534c534800000000000000000000000000000000000000000000000000000000815250816003908161008c91906106fe565b50806004908161009c91906106fe565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361010f575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610106919061080c565b60405180910390fd5b61011e8161015b60201b60201c565b506101563361013161021e60201b60201c565b600a61013d919061098d565b620829d861014b91906109d7565b61022660201b60201c565b610aa8565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f6012905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610296575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161028d919061080c565b60405180910390fd5b6102a75f83836102ab60201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036102fb578060025f8282546102ef9190610a18565b925050819055506103c9565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610384578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161037b93929190610a5a565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610410578060025f828254039250508190555061045a565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516104b79190610a8f565b60405180910390a3505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061053f57607f821691505b602082108103610552576105516104fb565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026105b47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610579565b6105be8683610579565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6106026105fd6105f8846105d6565b6105df565b6105d6565b9050919050565b5f819050919050565b61061b836105e8565b61062f61062782610609565b848454610585565b825550505050565b5f90565b610643610637565b61064e818484610612565b505050565b5b81811015610671576106665f8261063b565b600181019050610654565b5050565b601f8211156106b65761068781610558565b6106908461056a565b8101602085101561069f578190505b6106b36106ab8561056a565b830182610653565b50505b505050565b5f82821c905092915050565b5f6106d65f19846008026106bb565b1980831691505092915050565b5f6106ee83836106c7565b9150826002028217905092915050565b610707826104c4565b67ffffffffffffffff8111156107205761071f6104ce565b5b61072a8254610528565b610735828285610675565b5f60209050601f831160018114610766575f8415610754578287015190505b61075e85826106e3565b8655506107c5565b601f19841661077486610558565b5f5b8281101561079b57848901518255600182019150602085019450602081019050610776565b868310156107b857848901516107b4601f8916826106c7565b8355505b6001600288020188555050505b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6107f6826107cd565b9050919050565b610806816107ec565b82525050565b5f60208201905061081f5f8301846107fd565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b60018511156108a75780860481111561088357610882610825565b5b60018516156108925780820291505b80810290506108a085610852565b9450610867565b94509492505050565b5f826108bf576001905061097a565b816108cc575f905061097a565b81600181146108e257600281146108ec5761091b565b600191505061097a565b60ff8411156108fe576108fd610825565b5b8360020a91508482111561091557610914610825565b5b5061097a565b5060208310610133831016604e8410600b84101617156109505782820a90508381111561094b5761094a610825565b5b61097a565b61095d848484600161085e565b9250905081840481111561097457610973610825565b5b81810290505b9392505050565b5f60ff82169050919050565b5f610997826105d6565b91506109a283610981565b92506109cf7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846108b0565b905092915050565b5f6109e1826105d6565b91506109ec836105d6565b92508282026109fa816105d6565b91508282048414831517610a1157610a10610825565b5b5092915050565b5f610a22826105d6565b9150610a2d836105d6565b9250828201905080821115610a4557610a44610825565b5b92915050565b610a54816105d6565b82525050565b5f606082019050610a6d5f8301866107fd565b610a7a6020830185610a4b565b610a876040830184610a4b565b949350505050565b5f602082019050610aa25f830184610a4b565b92915050565b611a8f80610ab55f395ff3fe608060405234801561000f575f80fd5b506004361061013f575f3560e01c80634d1ad8c5116100b6578063930c91d11161007a578063930c91d11461038757806395d89b41146103a5578063a9059cbb146103c3578063dd62ed3e146103f3578063ee51865614610423578063f2fde38b146104415761013f565b80634d1ad8c5146102cf57806370a08231146102ff578063712e8d481461032f578063715018a61461035f5780638da5cb5b146103695761013f565b80631de29b8f116101085780631de29b8f146101fd57806323b872dd146102195780632e6d6e1714610249578063313ce56714610279578063339be72e1461029757806342966c68146102b35761013f565b8062db2b421461014357806306fdde0314610173578063095ea7b31461019157806318160ddd146101c15780631db0459f146101df575b5f80fd5b61015d6004803603810190610158919061138c565b61045d565b60405161016a91906113cf565b60405180910390f35b61017b6104a3565b6040516101889190611458565b60405180910390f35b6101ab60048036038101906101a691906114a2565b610533565b6040516101b891906114fa565b60405180910390f35b6101c9610555565b6040516101d691906113cf565b60405180910390f35b6101e761055e565b6040516101f491906113cf565b60405180910390f35b6102176004803603810190610212919061138c565b610563565b005b610233600480360381019061022e9190611513565b6107a7565b60405161024091906114fa565b60405180910390f35b610263600480360381019061025e919061138c565b6107d5565b60405161027091906114fa565b60405180910390f35b6102816107f2565b60405161028e919061157e565b60405180910390f35b6102b160048036038101906102ac91906115c1565b6107fa565b005b6102cd60048036038101906102c891906115ff565b610893565b005b6102e960048036038101906102e4919061138c565b610938565b6040516102f691906113cf565b60405180910390f35b6103196004803603810190610314919061138c565b61094d565b60405161032691906113cf565b60405180910390f35b6103496004803603810190610344919061138c565b610992565b60405161035691906114fa565b60405180910390f35b6103676109e4565b005b6103716109f7565b60405161037e9190611639565b60405180910390f35b61038f610a1f565b60405161039c91906113cf565b60405180910390f35b6103ad610a25565b6040516103ba9190611458565b60405180910390f35b6103dd60048036038101906103d891906114a2565b610ab5565b6040516103ea91906114fa565b60405180910390f35b61040d60048036038101906104089190611652565b610ad7565b60405161041a91906113cf565b60405180910390f35b61042b610b59565b60405161043891906113cf565b60405180910390f35b61045b6004803603810190610456919061138c565b610b5e565b005b5f60065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6060600380546104b2906116bd565b80601f01602080910402602001604051908101604052809291908181526020018280546104de906116bd565b80156105295780601f1061050057610100808354040283529160200191610529565b820191905f5260205f20905b81548152906001019060200180831161050c57829003601f168201915b5050505050905090565b5f8061053d610be2565b905061054a818585610be9565b600191505092915050565b5f600254905090565b606481565b60075f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156105ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e490611737565b60405180910390fd5b5f4290505f60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490505f61070890505f80831461064757603261064a565b60645b905081836106589190611782565b84101561069a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069190611825565b60405180910390fd5b5f6106a48661094d565b90505f61271083836106b69190611843565b6106c091906118b1565b90505f8111610704576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106fb90611951565b60405180910390fd5b61070e8782610bfb565b8560065f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508673ffffffffffffffffffffffffffffffffffffffff167f58bf7c60da62057db17b75a24998eab2903273b46525cf630a619fa5171607488260405161079691906113cf565b60405180910390a250505050505050565b5f806107b1610be2565b90506107be858285610c7a565b6107c9858585610d0c565b60019150509392505050565b6007602052805f5260405f205f915054906101000a900460ff1681565b5f6012905090565b610802610dfc565b8060075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055507f919027332498db197859be033cf9878efe8b150b71d2949d07c8146cc147c1ae828260405161088792919061196f565b60405180910390a15050565b61089b610dfc565b5f81116108dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d490611a06565b60405180910390fd5b6108e73382610bfb565b3373ffffffffffffffffffffffffffffffffffffffff167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58260405161092d91906113cf565b60405180910390a250565b6006602052805f5260405f205f915090505481565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f60075f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b6109ec610dfc565b6109f55f610e83565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61070881565b606060048054610a34906116bd565b80601f0160208091040260200160405190810160405280929190818152602001828054610a60906116bd565b8015610aab5780601f10610a8257610100808354040283529160200191610aab565b820191905f5260205f20905b815481529060010190602001808311610a8e57829003601f168201915b5050505050905090565b5f80610abf610be2565b9050610acc818585610d0c565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b603281565b610b66610dfc565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610bd6575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610bcd9190611639565b60405180910390fd5b610bdf81610e83565b50565b5f33905090565b610bf68383836001610f46565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c6b575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610c629190611639565b60405180910390fd5b610c76825f83611115565b5050565b5f610c858484610ad7565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610d065781811015610cf7578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610cee93929190611a24565b60405180910390fd5b610d0584848484035f610f46565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d7c575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610d739190611639565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610dec575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610de39190611639565b60405180910390fd5b610df7838383611115565b505050565b610e04610be2565b73ffffffffffffffffffffffffffffffffffffffff16610e226109f7565b73ffffffffffffffffffffffffffffffffffffffff1614610e8157610e45610be2565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610e789190611639565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610fb6575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610fad9190611639565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611026575f6040517f94280d6200000000000000000000000000000000000000000000000000000000815260040161101d9190611639565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550801561110f578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161110691906113cf565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611165578060025f8282546111599190611782565b92505081905550611233565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156111ee578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016111e593929190611a24565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361127a578060025f82825403925050819055506112c4565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161132191906113cf565b60405180910390a3505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61135b82611332565b9050919050565b61136b81611351565b8114611375575f80fd5b50565b5f8135905061138681611362565b92915050565b5f602082840312156113a1576113a061132e565b5b5f6113ae84828501611378565b91505092915050565b5f819050919050565b6113c9816113b7565b82525050565b5f6020820190506113e25f8301846113c0565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61142a826113e8565b61143481856113f2565b9350611444818560208601611402565b61144d81611410565b840191505092915050565b5f6020820190508181035f8301526114708184611420565b905092915050565b611481816113b7565b811461148b575f80fd5b50565b5f8135905061149c81611478565b92915050565b5f80604083850312156114b8576114b761132e565b5b5f6114c585828601611378565b92505060206114d68582860161148e565b9150509250929050565b5f8115159050919050565b6114f4816114e0565b82525050565b5f60208201905061150d5f8301846114eb565b92915050565b5f805f6060848603121561152a5761152961132e565b5b5f61153786828701611378565b935050602061154886828701611378565b92505060406115598682870161148e565b9150509250925092565b5f60ff82169050919050565b61157881611563565b82525050565b5f6020820190506115915f83018461156f565b92915050565b6115a0816114e0565b81146115aa575f80fd5b50565b5f813590506115bb81611597565b92915050565b5f80604083850312156115d7576115d661132e565b5b5f6115e485828601611378565b92505060206115f5858286016115ad565b9150509250929050565b5f602082840312156116145761161361132e565b5b5f6116218482850161148e565b91505092915050565b61163381611351565b82525050565b5f60208201905061164c5f83018461162a565b92915050565b5f80604083850312156116685761166761132e565b5b5f61167585828601611378565b925050602061168685828601611378565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806116d457607f821691505b6020821081036116e7576116e6611690565b5b50919050565b7f546172676574206973206578636c756465642066726f6d2064656261736500005f82015250565b5f611721601e836113f2565b915061172c826116ed565b602082019050919050565b5f6020820190508181035f83015261174e81611715565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61178c826113b7565b9150611797836113b7565b92508282019050808211156117af576117ae611755565b5b92915050565b7f44656261736520636f6f6c646f776e20706572696f6420686173206e6f7420705f8201527f6173736564000000000000000000000000000000000000000000000000000000602082015250565b5f61180f6025836113f2565b915061181a826117b5565b604082019050919050565b5f6020820190508181035f83015261183c81611803565b9050919050565b5f61184d826113b7565b9150611858836113b7565b9250828202611866816113b7565b9150828204841483151761187d5761187c611755565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6118bb826113b7565b91506118c6836113b7565b9250826118d6576118d5611884565b5b828204905092915050565b7f44656261736520616d6f756e74206d75737420626520677265617465722074685f8201527f616e207a65726f00000000000000000000000000000000000000000000000000602082015250565b5f61193b6027836113f2565b9150611946826118e1565b604082019050919050565b5f6020820190508181035f8301526119688161192f565b9050919050565b5f6040820190506119825f83018561162a565b61198f60208301846114eb565b9392505050565b7f4275726e20616d6f756e74206d7573742062652067726561746572207468616e5f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6119f06025836113f2565b91506119fb82611996565b604082019050919050565b5f6020820190508181035f830152611a1d816119e4565b9050919050565b5f606082019050611a375f83018661162a565b611a4460208301856113c0565b611a5160408301846113c0565b94935050505056fea26469706673582212209607987eab97bf9e9b69a0d4223cb296100aa026006285232b786a3eb037ca7664736f6c63430008190033

Deployed Bytecode

0x608060405234801561000f575f80fd5b506004361061013f575f3560e01c80634d1ad8c5116100b6578063930c91d11161007a578063930c91d11461038757806395d89b41146103a5578063a9059cbb146103c3578063dd62ed3e146103f3578063ee51865614610423578063f2fde38b146104415761013f565b80634d1ad8c5146102cf57806370a08231146102ff578063712e8d481461032f578063715018a61461035f5780638da5cb5b146103695761013f565b80631de29b8f116101085780631de29b8f146101fd57806323b872dd146102195780632e6d6e1714610249578063313ce56714610279578063339be72e1461029757806342966c68146102b35761013f565b8062db2b421461014357806306fdde0314610173578063095ea7b31461019157806318160ddd146101c15780631db0459f146101df575b5f80fd5b61015d6004803603810190610158919061138c565b61045d565b60405161016a91906113cf565b60405180910390f35b61017b6104a3565b6040516101889190611458565b60405180910390f35b6101ab60048036038101906101a691906114a2565b610533565b6040516101b891906114fa565b60405180910390f35b6101c9610555565b6040516101d691906113cf565b60405180910390f35b6101e761055e565b6040516101f491906113cf565b60405180910390f35b6102176004803603810190610212919061138c565b610563565b005b610233600480360381019061022e9190611513565b6107a7565b60405161024091906114fa565b60405180910390f35b610263600480360381019061025e919061138c565b6107d5565b60405161027091906114fa565b60405180910390f35b6102816107f2565b60405161028e919061157e565b60405180910390f35b6102b160048036038101906102ac91906115c1565b6107fa565b005b6102cd60048036038101906102c891906115ff565b610893565b005b6102e960048036038101906102e4919061138c565b610938565b6040516102f691906113cf565b60405180910390f35b6103196004803603810190610314919061138c565b61094d565b60405161032691906113cf565b60405180910390f35b6103496004803603810190610344919061138c565b610992565b60405161035691906114fa565b60405180910390f35b6103676109e4565b005b6103716109f7565b60405161037e9190611639565b60405180910390f35b61038f610a1f565b60405161039c91906113cf565b60405180910390f35b6103ad610a25565b6040516103ba9190611458565b60405180910390f35b6103dd60048036038101906103d891906114a2565b610ab5565b6040516103ea91906114fa565b60405180910390f35b61040d60048036038101906104089190611652565b610ad7565b60405161041a91906113cf565b60405180910390f35b61042b610b59565b60405161043891906113cf565b60405180910390f35b61045b6004803603810190610456919061138c565b610b5e565b005b5f60065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6060600380546104b2906116bd565b80601f01602080910402602001604051908101604052809291908181526020018280546104de906116bd565b80156105295780601f1061050057610100808354040283529160200191610529565b820191905f5260205f20905b81548152906001019060200180831161050c57829003601f168201915b5050505050905090565b5f8061053d610be2565b905061054a818585610be9565b600191505092915050565b5f600254905090565b606481565b60075f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156105ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e490611737565b60405180910390fd5b5f4290505f60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490505f61070890505f80831461064757603261064a565b60645b905081836106589190611782565b84101561069a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069190611825565b60405180910390fd5b5f6106a48661094d565b90505f61271083836106b69190611843565b6106c091906118b1565b90505f8111610704576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106fb90611951565b60405180910390fd5b61070e8782610bfb565b8560065f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508673ffffffffffffffffffffffffffffffffffffffff167f58bf7c60da62057db17b75a24998eab2903273b46525cf630a619fa5171607488260405161079691906113cf565b60405180910390a250505050505050565b5f806107b1610be2565b90506107be858285610c7a565b6107c9858585610d0c565b60019150509392505050565b6007602052805f5260405f205f915054906101000a900460ff1681565b5f6012905090565b610802610dfc565b8060075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055507f919027332498db197859be033cf9878efe8b150b71d2949d07c8146cc147c1ae828260405161088792919061196f565b60405180910390a15050565b61089b610dfc565b5f81116108dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d490611a06565b60405180910390fd5b6108e73382610bfb565b3373ffffffffffffffffffffffffffffffffffffffff167fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca58260405161092d91906113cf565b60405180910390a250565b6006602052805f5260405f205f915090505481565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f60075f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b6109ec610dfc565b6109f55f610e83565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61070881565b606060048054610a34906116bd565b80601f0160208091040260200160405190810160405280929190818152602001828054610a60906116bd565b8015610aab5780601f10610a8257610100808354040283529160200191610aab565b820191905f5260205f20905b815481529060010190602001808311610a8e57829003601f168201915b5050505050905090565b5f80610abf610be2565b9050610acc818585610d0c565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b603281565b610b66610dfc565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610bd6575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610bcd9190611639565b60405180910390fd5b610bdf81610e83565b50565b5f33905090565b610bf68383836001610f46565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c6b575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610c629190611639565b60405180910390fd5b610c76825f83611115565b5050565b5f610c858484610ad7565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610d065781811015610cf7578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610cee93929190611a24565b60405180910390fd5b610d0584848484035f610f46565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d7c575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610d739190611639565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610dec575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610de39190611639565b60405180910390fd5b610df7838383611115565b505050565b610e04610be2565b73ffffffffffffffffffffffffffffffffffffffff16610e226109f7565b73ffffffffffffffffffffffffffffffffffffffff1614610e8157610e45610be2565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610e789190611639565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610fb6575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610fad9190611639565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611026575f6040517f94280d6200000000000000000000000000000000000000000000000000000000815260040161101d9190611639565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550801561110f578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161110691906113cf565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611165578060025f8282546111599190611782565b92505081905550611233565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156111ee578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016111e593929190611a24565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361127a578060025f82825403925050819055506112c4565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161132191906113cf565b60405180910390a3505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61135b82611332565b9050919050565b61136b81611351565b8114611375575f80fd5b50565b5f8135905061138681611362565b92915050565b5f602082840312156113a1576113a061132e565b5b5f6113ae84828501611378565b91505092915050565b5f819050919050565b6113c9816113b7565b82525050565b5f6020820190506113e25f8301846113c0565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61142a826113e8565b61143481856113f2565b9350611444818560208601611402565b61144d81611410565b840191505092915050565b5f6020820190508181035f8301526114708184611420565b905092915050565b611481816113b7565b811461148b575f80fd5b50565b5f8135905061149c81611478565b92915050565b5f80604083850312156114b8576114b761132e565b5b5f6114c585828601611378565b92505060206114d68582860161148e565b9150509250929050565b5f8115159050919050565b6114f4816114e0565b82525050565b5f60208201905061150d5f8301846114eb565b92915050565b5f805f6060848603121561152a5761152961132e565b5b5f61153786828701611378565b935050602061154886828701611378565b92505060406115598682870161148e565b9150509250925092565b5f60ff82169050919050565b61157881611563565b82525050565b5f6020820190506115915f83018461156f565b92915050565b6115a0816114e0565b81146115aa575f80fd5b50565b5f813590506115bb81611597565b92915050565b5f80604083850312156115d7576115d661132e565b5b5f6115e485828601611378565b92505060206115f5858286016115ad565b9150509250929050565b5f602082840312156116145761161361132e565b5b5f6116218482850161148e565b91505092915050565b61163381611351565b82525050565b5f60208201905061164c5f83018461162a565b92915050565b5f80604083850312156116685761166761132e565b5b5f61167585828601611378565b925050602061168685828601611378565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806116d457607f821691505b6020821081036116e7576116e6611690565b5b50919050565b7f546172676574206973206578636c756465642066726f6d2064656261736500005f82015250565b5f611721601e836113f2565b915061172c826116ed565b602082019050919050565b5f6020820190508181035f83015261174e81611715565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61178c826113b7565b9150611797836113b7565b92508282019050808211156117af576117ae611755565b5b92915050565b7f44656261736520636f6f6c646f776e20706572696f6420686173206e6f7420705f8201527f6173736564000000000000000000000000000000000000000000000000000000602082015250565b5f61180f6025836113f2565b915061181a826117b5565b604082019050919050565b5f6020820190508181035f83015261183c81611803565b9050919050565b5f61184d826113b7565b9150611858836113b7565b9250828202611866816113b7565b9150828204841483151761187d5761187c611755565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6118bb826113b7565b91506118c6836113b7565b9250826118d6576118d5611884565b5b828204905092915050565b7f44656261736520616d6f756e74206d75737420626520677265617465722074685f8201527f616e207a65726f00000000000000000000000000000000000000000000000000602082015250565b5f61193b6027836113f2565b9150611946826118e1565b604082019050919050565b5f6020820190508181035f8301526119688161192f565b9050919050565b5f6040820190506119825f83018561162a565b61198f60208301846114eb565b9392505050565b7f4275726e20616d6f756e74206d7573742062652067726561746572207468616e5f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6119f06025836113f2565b91506119fb82611996565b604082019050919050565b5f6020820190508181035f830152611a1d816119e4565b9050919050565b5f606082019050611a375f83018661162a565b611a4460208301856113c0565b611a5160408301846113c0565b94935050505056fea26469706673582212209607987eab97bf9e9b69a0d4223cb296100aa026006285232b786a3eb037ca7664736f6c63430008190033

Deployed Bytecode Sourcemap

26004:2550:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28288:125;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16615:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18908:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17717:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26313:55;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27052:860;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19676:249;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26171:51;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17568:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26828:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27994:204;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26115:49;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17879:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28421:130;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10228:103;;;:::i;:::-;;9553:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26402:52;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16825:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18202:182;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18447:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26231:46;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10486:220;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28288:125;28355:7;28382:14;:23;28397:7;28382:23;;;;;;;;;;;;;;;;28375:30;;28288:125;;;:::o;16615:91::-;16660:13;16693:5;16686:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16615:91;:::o;18908:190::-;18981:4;18998:13;19014:12;:10;:12::i;:::-;18998:28;;19037:31;19046:5;19053:7;19062:5;19037:8;:31::i;:::-;19086:4;19079:11;;;18908:190;;;;:::o;17717:99::-;17769:7;17796:12;;17789:19;;17717:99;:::o;26313:55::-;26365:3;26313:55;:::o;27052:860::-;27113:19;:27;27133:6;27113:27;;;;;;;;;;;;;;;;;;;;;;;;;27112:28;27104:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;27188:19;27210:15;27188:37;;27236:18;27257:14;:22;27272:6;27257:22;;;;;;;;;;;;;;;;27236:43;;27292:22;26444:10;27292:40;;27343:24;27385:1;27371:10;:15;27370:65;;26275:2;27370:65;;;26365:3;27370:65;27343:92;;27484:14;27471:10;:27;;;;:::i;:::-;27456:11;:42;;27448:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;27553:15;27571:17;27581:6;27571:9;:17::i;:::-;27553:35;;27599:20;27653:5;27633:16;27623:7;:26;;;;:::i;:::-;27622:36;;;;:::i;:::-;27599:59;;27725:1;27710:12;:16;27702:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27783:27;27789:6;27797:12;27783:5;:27::i;:::-;27848:11;27823:14;:22;27838:6;27823:22;;;;;;;;;;;;;;;:36;;;;27883:6;27875:29;;;27891:12;27875:29;;;;;;:::i;:::-;;;;;;;;27093:819;;;;;;27052:860;:::o;19676:249::-;19763:4;19780:15;19798:12;:10;:12::i;:::-;19780:30;;19821:37;19837:4;19843:7;19852:5;19821:15;:37::i;:::-;19869:26;19879:4;19885:2;19889:5;19869:9;:26::i;:::-;19913:4;19906:11;;;19676:249;;;;;:::o;26171:51::-;;;;;;;;;;;;;;;;;;;;;;:::o;17568:84::-;17617:5;17642:2;17635:9;;17568:84;:::o;26828:185::-;9439:13;:11;:13::i;:::-;26947:7:::1;26916:19;:28;26936:7;26916:28;;;;;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;26970:35;26988:7;26997;26970:35;;;;;;;:::i;:::-;;;;;;;;26828:185:::0;;:::o;27994:204::-;9439:13;:11;:13::i;:::-;28071:1:::1;28062:6;:10;28054:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;28125:25;28131:10;28143:6;28125:5;:25::i;:::-;28171:10;28166:24;;;28183:6;28166:24;;;;;;:::i;:::-;;;;;;;;27994:204:::0;:::o;26115:49::-;;;;;;;;;;;;;;;;;:::o;17879:118::-;17944:7;17971:9;:18;17981:7;17971:18;;;;;;;;;;;;;;;;17964:25;;17879:118;;;:::o;28421:130::-;28491:4;28515:19;:28;28535:7;28515:28;;;;;;;;;;;;;;;;;;;;;;;;;28508:35;;28421:130;;;:::o;10228:103::-;9439:13;:11;:13::i;:::-;10293:30:::1;10320:1;10293:18;:30::i;:::-;10228:103::o:0;9553:87::-;9599:7;9626:6;;;;;;;;;;;9619:13;;9553:87;:::o;26402:52::-;26444:10;26402:52;:::o;16825:95::-;16872:13;16905:7;16898:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16825:95;:::o;18202:182::-;18271:4;18288:13;18304:12;:10;:12::i;:::-;18288:28;;18327:27;18337:5;18344:2;18348:5;18327:9;:27::i;:::-;18372:4;18365:11;;;18202:182;;;;:::o;18447:142::-;18527:7;18554:11;:18;18566:5;18554:18;;;;;;;;;;;;;;;:27;18573:7;18554:27;;;;;;;;;;;;;;;;18547:34;;18447:142;;;;:::o;26231:46::-;26275:2;26231:46;:::o;10486:220::-;9439:13;:11;:13::i;:::-;10591:1:::1;10571:22;;:8;:22;;::::0;10567:93:::1;;10645:1;10617:31;;;;;;;;;;;:::i;:::-;;;;;;;;10567:93;10670:28;10689:8;10670:18;:28::i;:::-;10486:220:::0;:::o;7669:98::-;7722:7;7749:10;7742:17;;7669:98;:::o;23735:130::-;23820:37;23829:5;23836:7;23845:5;23852:4;23820:8;:37::i;:::-;23735:130;;;:::o;22971:211::-;23061:1;23042:21;;:7;:21;;;23038:91;;23114:1;23087:30;;;;;;;;;;;:::i;:::-;;;;;;;;23038:91;23139:35;23147:7;23164:1;23168:5;23139:7;:35::i;:::-;22971:211;;:::o;25451:487::-;25551:24;25578:25;25588:5;25595:7;25578:9;:25::i;:::-;25551:52;;25638:17;25618:16;:37;25614:317;;25695:5;25676:16;:24;25672:132;;;25755:7;25764:16;25782:5;25728:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;25672:132;25847:57;25856:5;25863:7;25891:5;25872:16;:24;25898:5;25847:8;:57::i;:::-;25614:317;25540:398;25451:487;;;:::o;20310:308::-;20410:1;20394:18;;:4;:18;;;20390:88;;20463:1;20436:30;;;;;;;;;;;:::i;:::-;;;;;;;;20390:88;20506:1;20492:16;;:2;:16;;;20488:88;;20561:1;20532:32;;;;;;;;;;;:::i;:::-;;;;;;;;20488:88;20586:24;20594:4;20600:2;20604:5;20586:7;:24::i;:::-;20310:308;;;:::o;9718:166::-;9789:12;:10;:12::i;:::-;9778:23;;:7;:5;:7::i;:::-;:23;;;9774:103;;9852:12;:10;:12::i;:::-;9825:40;;;;;;;;;;;:::i;:::-;;;;;;;;9774:103;9718:166::o;10866:191::-;10940:16;10959:6;;;;;;;;;;;10940:25;;10985:8;10976:6;;:17;;;;;;;;;;;;;;;;;;11040:8;11009:40;;11030:8;11009:40;;;;;;;;;;;;10929:128;10866:191;:::o;24716:443::-;24846:1;24829:19;;:5;:19;;;24825:91;;24901:1;24872:32;;;;;;;;;;;:::i;:::-;;;;;;;;24825:91;24949:1;24930:21;;:7;:21;;;24926:92;;25003:1;24975:31;;;;;;;;;;;:::i;:::-;;;;;;;;24926:92;25058:5;25028:11;:18;25040:5;25028:18;;;;;;;;;;;;;;;:27;25047:7;25028:27;;;;;;;;;;;;;;;:35;;;;25078:9;25074:78;;;25125:7;25109:31;;25118:5;25109:31;;;25134:5;25109:31;;;;;;:::i;:::-;;;;;;;;25074:78;24716:443;;;;:::o;20942:1135::-;21048:1;21032:18;;:4;:18;;;21028:552;;21186:5;21170:12;;:21;;;;;;;:::i;:::-;;;;;;;;21028:552;;;21224:19;21246:9;:15;21256:4;21246:15;;;;;;;;;;;;;;;;21224:37;;21294:5;21280:11;:19;21276:117;;;21352:4;21358:11;21371:5;21327:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;21276:117;21548:5;21534:11;:19;21516:9;:15;21526:4;21516:15;;;;;;;;;;;;;;;:37;;;;21209:371;21028:552;21610:1;21596:16;;:2;:16;;;21592:435;;21778:5;21762:12;;:21;;;;;;;;;;;21592:435;;;21995:5;21978:9;:13;21988:2;21978:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;21592:435;22059:2;22044:25;;22053:4;22044:25;;;22063:5;22044:25;;;;;;:::i;:::-;;;;;;;;20942:1135;;;:::o;88:117:1:-;197:1;194;187:12;334:126;371:7;411:42;404:5;400:54;389:65;;334:126;;;:::o;466:96::-;503:7;532:24;550:5;532:24;:::i;:::-;521:35;;466:96;;;:::o;568:122::-;641:24;659:5;641:24;:::i;:::-;634:5;631:35;621:63;;680:1;677;670:12;621:63;568:122;:::o;696:139::-;742:5;780:6;767:20;758:29;;796:33;823:5;796:33;:::i;:::-;696:139;;;;:::o;841:329::-;900:6;949:2;937:9;928:7;924:23;920:32;917:119;;;955:79;;:::i;:::-;917:119;1075:1;1100:53;1145:7;1136:6;1125:9;1121:22;1100:53;:::i;:::-;1090:63;;1046:117;841:329;;;;:::o;1176:77::-;1213:7;1242:5;1231:16;;1176:77;;;:::o;1259:118::-;1346:24;1364:5;1346:24;:::i;:::-;1341:3;1334:37;1259:118;;:::o;1383:222::-;1476:4;1514:2;1503:9;1499:18;1491:26;;1527:71;1595:1;1584:9;1580:17;1571:6;1527:71;:::i;:::-;1383:222;;;;:::o;1611:99::-;1663:6;1697:5;1691:12;1681:22;;1611:99;;;:::o;1716:169::-;1800:11;1834:6;1829:3;1822:19;1874:4;1869:3;1865:14;1850:29;;1716:169;;;;:::o;1891:139::-;1980:6;1975:3;1970;1964:23;2021:1;2012:6;2007:3;2003:16;1996:27;1891:139;;;:::o;2036:102::-;2077:6;2128:2;2124:7;2119:2;2112:5;2108:14;2104:28;2094:38;;2036:102;;;:::o;2144:377::-;2232:3;2260:39;2293:5;2260:39;:::i;:::-;2315:71;2379:6;2374:3;2315:71;:::i;:::-;2308:78;;2395:65;2453:6;2448:3;2441:4;2434:5;2430:16;2395:65;:::i;:::-;2485:29;2507:6;2485:29;:::i;:::-;2480:3;2476:39;2469:46;;2236:285;2144:377;;;;:::o;2527:313::-;2640:4;2678:2;2667:9;2663:18;2655:26;;2727:9;2721:4;2717:20;2713:1;2702:9;2698:17;2691:47;2755:78;2828:4;2819:6;2755:78;:::i;:::-;2747:86;;2527:313;;;;:::o;2846:122::-;2919:24;2937:5;2919:24;:::i;:::-;2912:5;2909:35;2899:63;;2958:1;2955;2948:12;2899:63;2846:122;:::o;2974:139::-;3020:5;3058:6;3045:20;3036:29;;3074:33;3101:5;3074:33;:::i;:::-;2974:139;;;;:::o;3119:474::-;3187:6;3195;3244:2;3232:9;3223:7;3219:23;3215:32;3212:119;;;3250:79;;:::i;:::-;3212:119;3370:1;3395:53;3440:7;3431:6;3420:9;3416:22;3395:53;:::i;:::-;3385:63;;3341:117;3497:2;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3468:118;3119:474;;;;;:::o;3599:90::-;3633:7;3676:5;3669:13;3662:21;3651:32;;3599:90;;;:::o;3695:109::-;3776:21;3791:5;3776:21;:::i;:::-;3771:3;3764:34;3695:109;;:::o;3810:210::-;3897:4;3935:2;3924:9;3920:18;3912:26;;3948:65;4010:1;3999:9;3995:17;3986:6;3948:65;:::i;:::-;3810:210;;;;:::o;4026:619::-;4103:6;4111;4119;4168:2;4156:9;4147:7;4143:23;4139:32;4136:119;;;4174:79;;:::i;:::-;4136:119;4294:1;4319:53;4364:7;4355:6;4344:9;4340:22;4319:53;:::i;:::-;4309:63;;4265:117;4421:2;4447:53;4492:7;4483:6;4472:9;4468:22;4447:53;:::i;:::-;4437:63;;4392:118;4549:2;4575:53;4620:7;4611:6;4600:9;4596:22;4575:53;:::i;:::-;4565:63;;4520:118;4026:619;;;;;:::o;4651:86::-;4686:7;4726:4;4719:5;4715:16;4704:27;;4651:86;;;:::o;4743:112::-;4826:22;4842:5;4826:22;:::i;:::-;4821:3;4814:35;4743:112;;:::o;4861:214::-;4950:4;4988:2;4977:9;4973:18;4965:26;;5001:67;5065:1;5054:9;5050:17;5041:6;5001:67;:::i;:::-;4861:214;;;;:::o;5081:116::-;5151:21;5166:5;5151:21;:::i;:::-;5144:5;5141:32;5131:60;;5187:1;5184;5177:12;5131:60;5081:116;:::o;5203:133::-;5246:5;5284:6;5271:20;5262:29;;5300:30;5324:5;5300:30;:::i;:::-;5203:133;;;;:::o;5342:468::-;5407:6;5415;5464:2;5452:9;5443:7;5439:23;5435:32;5432:119;;;5470:79;;:::i;:::-;5432:119;5590:1;5615:53;5660:7;5651:6;5640:9;5636:22;5615:53;:::i;:::-;5605:63;;5561:117;5717:2;5743:50;5785:7;5776:6;5765:9;5761:22;5743:50;:::i;:::-;5733:60;;5688:115;5342:468;;;;;:::o;5816:329::-;5875:6;5924:2;5912:9;5903:7;5899:23;5895:32;5892:119;;;5930:79;;:::i;:::-;5892:119;6050:1;6075:53;6120:7;6111:6;6100:9;6096:22;6075:53;:::i;:::-;6065:63;;6021:117;5816:329;;;;:::o;6151:118::-;6238:24;6256:5;6238:24;:::i;:::-;6233:3;6226:37;6151:118;;:::o;6275:222::-;6368:4;6406:2;6395:9;6391:18;6383:26;;6419:71;6487:1;6476:9;6472:17;6463:6;6419:71;:::i;:::-;6275:222;;;;:::o;6503:474::-;6571:6;6579;6628:2;6616:9;6607:7;6603:23;6599:32;6596:119;;;6634:79;;:::i;:::-;6596:119;6754:1;6779:53;6824:7;6815:6;6804:9;6800:22;6779:53;:::i;:::-;6769:63;;6725:117;6881:2;6907:53;6952:7;6943:6;6932:9;6928:22;6907:53;:::i;:::-;6897:63;;6852:118;6503:474;;;;;:::o;6983:180::-;7031:77;7028:1;7021:88;7128:4;7125:1;7118:15;7152:4;7149:1;7142:15;7169:320;7213:6;7250:1;7244:4;7240:12;7230:22;;7297:1;7291:4;7287:12;7318:18;7308:81;;7374:4;7366:6;7362:17;7352:27;;7308:81;7436:2;7428:6;7425:14;7405:18;7402:38;7399:84;;7455:18;;:::i;:::-;7399:84;7220:269;7169:320;;;:::o;7495:180::-;7635:32;7631:1;7623:6;7619:14;7612:56;7495:180;:::o;7681:366::-;7823:3;7844:67;7908:2;7903:3;7844:67;:::i;:::-;7837:74;;7920:93;8009:3;7920:93;:::i;:::-;8038:2;8033:3;8029:12;8022:19;;7681:366;;;:::o;8053:419::-;8219:4;8257:2;8246:9;8242:18;8234:26;;8306:9;8300:4;8296:20;8292:1;8281:9;8277:17;8270:47;8334:131;8460:4;8334:131;:::i;:::-;8326:139;;8053:419;;;:::o;8478:180::-;8526:77;8523:1;8516:88;8623:4;8620:1;8613:15;8647:4;8644:1;8637:15;8664:191;8704:3;8723:20;8741:1;8723:20;:::i;:::-;8718:25;;8757:20;8775:1;8757:20;:::i;:::-;8752:25;;8800:1;8797;8793:9;8786:16;;8821:3;8818:1;8815:10;8812:36;;;8828:18;;:::i;:::-;8812:36;8664:191;;;;:::o;8861:224::-;9001:34;8997:1;8989:6;8985:14;8978:58;9070:7;9065:2;9057:6;9053:15;9046:32;8861:224;:::o;9091:366::-;9233:3;9254:67;9318:2;9313:3;9254:67;:::i;:::-;9247:74;;9330:93;9419:3;9330:93;:::i;:::-;9448:2;9443:3;9439:12;9432:19;;9091:366;;;:::o;9463:419::-;9629:4;9667:2;9656:9;9652:18;9644:26;;9716:9;9710:4;9706:20;9702:1;9691:9;9687:17;9680:47;9744:131;9870:4;9744:131;:::i;:::-;9736:139;;9463:419;;;:::o;9888:410::-;9928:7;9951:20;9969:1;9951:20;:::i;:::-;9946:25;;9985:20;10003:1;9985:20;:::i;:::-;9980:25;;10040:1;10037;10033:9;10062:30;10080:11;10062:30;:::i;:::-;10051:41;;10241:1;10232:7;10228:15;10225:1;10222:22;10202:1;10195:9;10175:83;10152:139;;10271:18;;:::i;:::-;10152:139;9936:362;9888:410;;;;:::o;10304:180::-;10352:77;10349:1;10342:88;10449:4;10446:1;10439:15;10473:4;10470:1;10463:15;10490:185;10530:1;10547:20;10565:1;10547:20;:::i;:::-;10542:25;;10581:20;10599:1;10581:20;:::i;:::-;10576:25;;10620:1;10610:35;;10625:18;;:::i;:::-;10610:35;10667:1;10664;10660:9;10655:14;;10490:185;;;;:::o;10681:226::-;10821:34;10817:1;10809:6;10805:14;10798:58;10890:9;10885:2;10877:6;10873:15;10866:34;10681:226;:::o;10913:366::-;11055:3;11076:67;11140:2;11135:3;11076:67;:::i;:::-;11069:74;;11152:93;11241:3;11152:93;:::i;:::-;11270:2;11265:3;11261:12;11254:19;;10913:366;;;:::o;11285:419::-;11451:4;11489:2;11478:9;11474:18;11466:26;;11538:9;11532:4;11528:20;11524:1;11513:9;11509:17;11502:47;11566:131;11692:4;11566:131;:::i;:::-;11558:139;;11285:419;;;:::o;11710:320::-;11825:4;11863:2;11852:9;11848:18;11840:26;;11876:71;11944:1;11933:9;11929:17;11920:6;11876:71;:::i;:::-;11957:66;12019:2;12008:9;12004:18;11995:6;11957:66;:::i;:::-;11710:320;;;;;:::o;12036:224::-;12176:34;12172:1;12164:6;12160:14;12153:58;12245:7;12240:2;12232:6;12228:15;12221:32;12036:224;:::o;12266:366::-;12408:3;12429:67;12493:2;12488:3;12429:67;:::i;:::-;12422:74;;12505:93;12594:3;12505:93;:::i;:::-;12623:2;12618:3;12614:12;12607:19;;12266:366;;;:::o;12638:419::-;12804:4;12842:2;12831:9;12827:18;12819:26;;12891:9;12885:4;12881:20;12877:1;12866:9;12862:17;12855:47;12919:131;13045:4;12919:131;:::i;:::-;12911:139;;12638:419;;;:::o;13063:442::-;13212:4;13250:2;13239:9;13235:18;13227:26;;13263:71;13331:1;13320:9;13316:17;13307:6;13263:71;:::i;:::-;13344:72;13412:2;13401:9;13397:18;13388:6;13344:72;:::i;:::-;13426;13494:2;13483:9;13479:18;13470:6;13426:72;:::i;:::-;13063:442;;;;;;:::o

Swarm Source

ipfs://9607987eab97bf9e9b69a0d4223cb296100aa026006285232b786a3eb037ca76
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.