ETH Price: $3,058.01 (+1.60%)
Gas: 3 Gwei

Token

AlphaNova (ANVA)
 

Overview

Max Total Supply

1,000,000,000 ANVA

Holders

544

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000000000000226669 ANVA

Value
$0.00
0x48eaf2ffe4ce52e43a162a7f751814b0f918c425
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:
AlphaGenesis

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// Created on 24/12/2023
/* THE FUTURE IS ALPHA - When CRYPTO, GOLD and FOREX meet AI - EXPERIENCE THE FUSION OF CUTTING-EDGE TECHNOLOGY AND MARKET EXPERTISE - Our AI algorithms are fine-tuned to analyze market trends and make predictive moves that are always ahead of the curve. Opening up a world to you of CFDs in Gold and Forex with pay outs in crypto. The dream solution is here! - A unique solution that expands traditional markets into crypto
/* Q: What is the meaning of life?
/* A:  This age-old question has left even the brightest minds, from Aristotle to Einstein, scratching their heads. It's been a muse for poets, a puzzle for theologians, and a riddle for scientists, spanning cultures and epochs without a definitive answer. But here come the Alphanauts, not your average finance explorers. These are the virtuosos of the financial universe, navigating the enigmatic seas of investment with the poise of a seasoned captain. LiquidAlpha, their flagship, is no mere vessel; it's a marvel of AI trading technology, executing trades with the precision of a Swiss watch and the flair of a maestro. LiquidAlpha isn’t about guessing games; it’s about precision, power, and potential. It's a sophisticated symphony of artificial intelligence, evolutionary finance, and decentralized currency, all fine-tuned to the rhythm of the market's heartbeat. This platform isn't just trading; it's a masterclass in financial finesse, offering insights into forex, gold (CFDs), and the exciting world of cryptocurrency. Think of LiquidAlpha as the golden bridge between the rock-solid reliability of tangible assets and the thrilling prospects of earning in Bitcoin and Ethereum. It's a unique, proprietary solution, seamlessly blending extreme liquidity with the exponential growth potential of crypto compounding.

/* Now, while we may not have answered the age-old question of  "what is the meaning of life" we did manage to grab your attention long enough to introduce you to the wonders of LiquidAlpha.  And hey, if that doesn't earn us a slow clap in gif form or our very own meme in the annals of internet glory, what will? Now get ready to become a philosopher gazing at the stars, only to find a shining LiquidAlpha logo where the moon should be – because sometimes, the answers we seek are not in the stars, but in the savvy moves we make right here on Earth.
/* ... So, what does this mean for you?  It means joining a community where precision meets opportunity, where each trade is a step towards redefining your financial destiny. LiquidAlpha isn’t just a platform; it’s a revolution in your pocket, a toolkit for the modern investor who seeks the thrill of the chase with the assurance of excellence. Become an Alphanaut. Embrace the fusion of solidity and growth. Register today, and be part of a community that's charting a new course in the cosmos of finance. With LiquidAlpha, you're not just trading; you're transforming the very essence of investment.

Telegram: https://t.me/liquidalpha
Twitter: https://twitter.com/LiquidAlphaAI
Website: https://www.liquidlpha.ai

*/
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.19;

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

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

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

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

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

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


contract AlphaGenesis is ERC20 {
    address payable public marketingWallet;
    address payable owner;
    uint256 public tokenCurrentPrice=1;
    uint256 public constant MAX_SUPPLY = 1000000000 * 10**18; // 1 billion tokens

    constructor(
        string memory name,
        string memory symbol,
        address payable _marketingWallet
    ) ERC20(name, symbol) {
        marketingWallet = payable(_marketingWallet);
        owner = payable(msg.sender);
        _mint(owner, 1000000000 * (10 ** decimals()));
    }

    function mint(uint256 amount) external onlyOwner {
        require(totalSupply() + amount <= MAX_SUPPLY, "Exceeds max supply");
        _mint(owner, amount);
    }

    modifier onlyOwner {
        require(msg.sender == owner, "Only the owner can call this function");
        _;
    }

    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal override {
        require(amount > 0, "Transfer amount must be greater than zero");
        
       if (sender != owner || recipient != owner) {
        // Regular transfer between user accounts, no fees
        super._transfer(sender, recipient, amount);
       } else {
        uint256 fees= calcfees();
        uint256 feeAmount = amount * fees/100;
        uint256 transferAmount = calcTransfer(amount, feeAmount);
        uint256 burn=feeAmount * calcburn()/100;
        uint256 deduct=feeAmount-burn;
        // Burn half of the fee
        if(burn>0){
            _burn(sender, burn);
        }
        

        // Transfer the other half of the fee to the marketing wallet
        super._transfer(sender, marketingWallet, deduct);

        // Transfer the remaining amount to the recipient
        super._transfer(sender, recipient, transferAmount);
       }
    }

    function calcfees() public view returns (uint256){
    // Fee percentages
    uint8 fee25M = 35;
    uint8 fee100M = 15;
    uint8 fee500M = 30;
    uint8 fee1B = 1;
    uint8 _fee=5;

    // Market cap thresholds
    uint256 threshold10M = 10_000_000 * 10**decimals();
    uint256 threshold25M = 25_000_000 * 10**decimals();
    uint256 threshold50M = 50_000_000 * 10**decimals();
    uint256 threshold100M = 100_000_000 * 10**decimals();
    uint256 threshold500M = 500_000_000 * 10**decimals();
    uint256 threshold1B = 1_000_000_000 * 10**decimals();
    uint256 totalSupply = totalSupply();
    uint256 marketCap = totalSupply * tokenPrice();
    if (marketCap >= threshold1B) {
            _fee= fee1B/100;
        } else if (marketCap >= threshold500M) {
            _fee= fee500M/100;
        } else if (marketCap >= threshold100M) {
            _fee= fee100M/10;
        } else if (marketCap >= threshold50M) {
            _fee= 3;
        }else if (marketCap >= threshold25M) {
            _fee= fee25M/10;
        }else if (marketCap >= threshold10M) {
            _fee= 4;
        }else {
            _fee= 5;
        }
    if(tokenPrice()==1){
        _fee=5;
    }
    return _fee;
    }


    function calcburn() public view returns (uint256){
    uint8 _fee=50;

    // Market cap thresholds
    uint256 threshold10M = 10_000_000 * 10**decimals();
    uint256 threshold25M = 25_000_000 * 10**decimals();
    uint256 threshold50M = 50_000_000 * 10**decimals();
    uint256 threshold100M = 100_000_000 * 10**decimals();
    uint256 threshold500M = 500_000_000 * 10**decimals();
    uint256 threshold1B = 1_000_000_000 * 10**decimals();
    uint256 totalSupply = totalSupply();
    uint256 marketCap = totalSupply * tokenPrice();
    if (marketCap >= threshold1B) {
            _fee= 0;
        } else if (marketCap >= threshold500M) {
            _fee= 10;
        } else if (marketCap >= threshold100M) {
            _fee= 30;
        } else if (marketCap >= threshold50M) {
            _fee= 30;
        }else if (marketCap >= threshold25M) {
            _fee= 30;
        }else if (marketCap >= threshold10M) {
            _fee= 30;
        }else {
            _fee= 50;
        }

    return _fee;
    }

    function calcTransfer(uint256 amount,uint256 fee) public pure returns (uint256){
        return amount - fee;
    }

    // Owner can change the marketing wallet address
    function setMarketingWallet(address payable _marketingWallet) external onlyOwner {
        marketingWallet = payable(_marketingWallet);
    }

    function setCurrentPrice(uint256 _currentPrice) external onlyOwner {
        tokenCurrentPrice = _currentPrice;
    }

    function tokenPrice() public view returns (uint256) {
        // Implement logic to get the current price of one token from an oracle or other source
        // For simplicity, you can replace this with a fixed value or an external data source.
        // Remember to handle decimals appropriately.
        // This is just a placeholder and should be adapted to your specific use case.
        return tokenCurrentPrice; // Replace with actual price retrieval logic
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"address payable","name":"_marketingWallet","type":"address"}],"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"},{"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":"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":"MAX_SUPPLY","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"},{"internalType":"uint256","name":"fee","type":"uint256"}],"name":"calcTransfer","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"calcburn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"calcfees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[{"internalType":"uint256","name":"_currentPrice","type":"uint256"}],"name":"setCurrentPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_marketingWallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenCurrentPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"}]

608060405260016007553480156200001657600080fd5b5060405162002b5c38038062002b5c83398181016040528101906200003c91906200060f565b828281600390816200004f9190620008f4565b508060049081620000619190620008f4565b50505080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555033600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000148600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166200011d6200015160201b60201c565b600a6200012b919062000b6b565b633b9aca006200013c919062000bbc565b6200015a60201b60201c565b50505062000cef565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620001cf5760006040517fec442f05000000000000000000000000000000000000000000000000000000008152600401620001c6919062000c2c565b60405180910390fd5b620001e360008383620001e760201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036200023d57806002600082825462000230919062000c49565b9250508190555062000313565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015620002cc578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401620002c39392919062000c95565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200035e5780600260008282540392505081905550620003ab565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200040a919062000cd2565b60405180910390a3505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620004808262000435565b810181811067ffffffffffffffff82111715620004a257620004a162000446565b5b80604052505050565b6000620004b762000417565b9050620004c5828262000475565b919050565b600067ffffffffffffffff821115620004e857620004e762000446565b5b620004f38262000435565b9050602081019050919050565b60005b838110156200052057808201518184015260208101905062000503565b60008484015250505050565b6000620005436200053d84620004ca565b620004ab565b90508281526020810184848401111562000562576200056162000430565b5b6200056f84828562000500565b509392505050565b600082601f8301126200058f576200058e6200042b565b5b8151620005a18482602086016200052c565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620005d782620005aa565b9050919050565b620005e981620005ca565b8114620005f557600080fd5b50565b6000815190506200060981620005de565b92915050565b6000806000606084860312156200062b576200062a62000421565b5b600084015167ffffffffffffffff8111156200064c576200064b62000426565b5b6200065a8682870162000577565b935050602084015167ffffffffffffffff8111156200067e576200067d62000426565b5b6200068c8682870162000577565b92505060406200069f86828701620005f8565b9150509250925092565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620006fc57607f821691505b602082108103620007125762000711620006b4565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200077c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200073d565b6200078886836200073d565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620007d5620007cf620007c984620007a0565b620007aa565b620007a0565b9050919050565b6000819050919050565b620007f183620007b4565b620008096200080082620007dc565b8484546200074a565b825550505050565b600090565b6200082062000811565b6200082d818484620007e6565b505050565b5b8181101562000855576200084960008262000816565b60018101905062000833565b5050565b601f821115620008a4576200086e8162000718565b62000879846200072d565b8101602085101562000889578190505b620008a162000898856200072d565b83018262000832565b50505b505050565b600082821c905092915050565b6000620008c960001984600802620008a9565b1980831691505092915050565b6000620008e48383620008b6565b9150826002028217905092915050565b620008ff82620006a9565b67ffffffffffffffff8111156200091b576200091a62000446565b5b620009278254620006e3565b6200093482828562000859565b600060209050601f8311600181146200096c576000841562000957578287015190505b620009638582620008d6565b865550620009d3565b601f1984166200097c8662000718565b60005b82811015620009a6578489015182556001820191506020850194506020810190506200097f565b86831015620009c65784890151620009c2601f891682620008b6565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000a695780860481111562000a415762000a40620009db565b5b600185161562000a515780820291505b808102905062000a618562000a0a565b945062000a21565b94509492505050565b60008262000a84576001905062000b57565b8162000a94576000905062000b57565b816001811462000aad576002811462000ab85762000aee565b600191505062000b57565b60ff84111562000acd5762000acc620009db565b5b8360020a91508482111562000ae75762000ae6620009db565b5b5062000b57565b5060208310610133831016604e8410600b841016171562000b285782820a90508381111562000b225762000b21620009db565b5b62000b57565b62000b37848484600162000a17565b9250905081840481111562000b515762000b50620009db565b5b81810290505b9392505050565b600060ff82169050919050565b600062000b7882620007a0565b915062000b858362000b5e565b925062000bb47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000a72565b905092915050565b600062000bc982620007a0565b915062000bd683620007a0565b925082820262000be681620007a0565b9150828204841483151762000c005762000bff620009db565b5b5092915050565b600062000c1482620005aa565b9050919050565b62000c268162000c07565b82525050565b600060208201905062000c43600083018462000c1b565b92915050565b600062000c5682620007a0565b915062000c6383620007a0565b925082820190508082111562000c7e5762000c7d620009db565b5b92915050565b62000c8f81620007a0565b82525050565b600060608201905062000cac600083018662000c1b565b62000cbb602083018562000c84565b62000cca604083018462000c84565b949350505050565b600060208201905062000ce9600083018462000c84565b92915050565b611e5d8062000cff6000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c806344ffe8d5116100ad5780638800b86d116100715780638800b86d146102fc57806395d89b411461032c578063a0712d681461034a578063a9059cbb14610366578063dd62ed3e1461039657610121565b806344ffe8d5146102565780635d098b381461027457806370a082311461029057806375f0a874146102c05780637ff9b596146102de57610121565b806318b20071116100f457806318b20071146101b057806323b872dd146101cc578063313ce567146101fc57806332cb6b0c1461021a5780633864ca591461023857610121565b806306fdde0314610126578063095ea7b3146101445780630e1d6a581461017457806318160ddd14610192575b600080fd5b61012e6103c6565b60405161013b919061159a565b60405180910390f35b61015e60048036038101906101599190611655565b610458565b60405161016b91906116b0565b60405180910390f35b61017c61047b565b60405161018991906116da565b60405180910390f35b61019a61060a565b6040516101a791906116da565b60405180910390f35b6101ca60048036038101906101c591906116f5565b610614565b005b6101e660048036038101906101e19190611722565b6106ae565b6040516101f391906116b0565b60405180910390f35b6102046106dd565b6040516102119190611791565b60405180910390f35b6102226106e6565b60405161022f91906116da565b60405180910390f35b6102406106f6565b60405161024d91906116da565b60405180910390f35b61025e6108e1565b60405161026b91906116da565b60405180910390f35b61028e600480360381019061028991906117ea565b6108e7565b005b6102aa60048036038101906102a59190611817565b6109bb565b6040516102b791906116da565b60405180910390f35b6102c8610a03565b6040516102d59190611853565b60405180910390f35b6102e6610a29565b6040516102f391906116da565b60405180910390f35b6103166004803603810190610311919061186e565b610a33565b60405161032391906116da565b60405180910390f35b610334610a49565b604051610341919061159a565b60405180910390f35b610364600480360381019061035f91906116f5565b610adb565b005b610380600480360381019061037b9190611655565b610bfb565b60405161038d91906116b0565b60405180910390f35b6103b060048036038101906103ab91906118ae565b610c1e565b6040516103bd91906116da565b60405180910390f35b6060600380546103d59061191d565b80601f01602080910402602001604051908101604052809291908181526020018280546104019061191d565b801561044e5780601f106104235761010080835404028352916020019161044e565b820191906000526020600020905b81548152906001019060200180831161043157829003601f168201915b5050505050905090565b600080610463610ca5565b9050610470818585610cad565b600191505092915050565b60008060329050600061048c6106dd565b600a6104989190611ab0565b629896806104a69190611afb565b905060006104b26106dd565b600a6104be9190611ab0565b63017d78406104cd9190611afb565b905060006104d96106dd565b600a6104e59190611ab0565b6302faf0806104f49190611afb565b905060006105006106dd565b600a61050c9190611ab0565b6305f5e10061051b9190611afb565b905060006105276106dd565b600a6105339190611ab0565b631dcd65006105429190611afb565b9050600061054e6106dd565b600a61055a9190611ab0565b633b9aca006105699190611afb565b9050600061057561060a565b90506000610581610a29565b8261058c9190611afb565b905082811061059e57600098506105f8565b8381106105ae57600a98506105f7565b8481106105be57601e98506105f6565b8581106105ce57601e98506105f5565b8681106105de57601e98506105f4565b8781106105ee57601e98506105f3565b603298505b5b5b5b5b5b8860ff16995050505050505050505090565b6000600254905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146106a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069b90611baf565b60405180910390fd5b8060078190555050565b6000806106b9610ca5565b90506106c6858285610cbf565b6106d1858585610d53565b60019150509392505050565b60006012905090565b6b033b2e3c9fd0803ce800000081565b600080602390506000600f90506000601e9050600060019050600060059050600061071f6106dd565b600a61072b9190611ab0565b629896806107399190611afb565b905060006107456106dd565b600a6107519190611ab0565b63017d78406107609190611afb565b9050600061076c6106dd565b600a6107789190611ab0565b6302faf0806107879190611afb565b905060006107936106dd565b600a61079f9190611ab0565b6305f5e1006107ae9190611afb565b905060006107ba6106dd565b600a6107c69190611ab0565b631dcd65006107d59190611afb565b905060006107e16106dd565b600a6107ed9190611ab0565b633b9aca006107fc9190611afb565b9050600061080861060a565b90506000610814610a29565b8261081f9190611afb565b905082811061083c5760648a6108359190611bfe565b98506108b7565b8381106108575760648b6108509190611bfe565b98506108b6565b84811061087257600a8c61086b9190611bfe565b98506108b5565b85811061088257600398506108b4565b86811061089d57600a8d6108969190611bfe565b98506108b3565b8781106108ad57600498506108b2565b600598505b5b5b5b5b5b60016108c1610a29565b036108cb57600598505b8860ff169d505050505050505050505050505090565b60075481565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610977576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096e90611baf565b60405180910390fd5b80600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600754905090565b60008183610a419190611c2f565b905092915050565b606060048054610a589061191d565b80601f0160208091040260200160405190810160405280929190818152602001828054610a849061191d565b8015610ad15780601f10610aa657610100808354040283529160200191610ad1565b820191906000526020600020905b815481529060010190602001808311610ab457829003601f168201915b5050505050905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610b6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6290611baf565b60405180910390fd5b6b033b2e3c9fd0803ce800000081610b8161060a565b610b8b9190611c63565b1115610bcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc390611ce3565b60405180910390fd5b610bf8600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682610f16565b50565b600080610c06610ca5565b9050610c13818585610d53565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b610cba8383836001610f98565b505050565b6000610ccb8484610c1e565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610d4d5781811015610d3d578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610d3493929190611d12565b60405180910390fd5b610d4c84848484036000610f98565b5b50505050565b60008111610d96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8d90611dbb565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580610e415750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15610e5657610e5183838361116f565b610f11565b6000610e606106f6565b9050600060648284610e729190611afb565b610e7c9190611ddb565b90506000610e8a8483610a33565b905060006064610e9861047b565b84610ea39190611afb565b610ead9190611ddb565b905060008184610ebd9190611c2f565b90506000821115610ed357610ed28883611263565b5b610f0088600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168361116f565b610f0b88888561116f565b50505050505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f885760006040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610f7f9190611e0c565b60405180910390fd5b610f94600083836112e5565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361100a5760006040517fe602df050000000000000000000000000000000000000000000000000000000081526004016110019190611e0c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361107c5760006040517f94280d620000000000000000000000000000000000000000000000000000000081526004016110739190611e0c565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508015611169578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161116091906116da565b60405180910390a35b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111e15760006040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016111d89190611e0c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112535760006040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161124a9190611e0c565b60405180910390fd5b61125e8383836112e5565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112d55760006040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016112cc9190611e0c565b60405180910390fd5b6112e1826000836112e5565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361133757806002600082825461132b9190611c63565b9250508190555061140a565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156113c3578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016113ba93929190611d12565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361145357806002600082825403925050819055506114a0565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516114fd91906116da565b60405180910390a3505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611544578082015181840152602081019050611529565b60008484015250505050565b6000601f19601f8301169050919050565b600061156c8261150a565b6115768185611515565b9350611586818560208601611526565b61158f81611550565b840191505092915050565b600060208201905081810360008301526115b48184611561565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006115ec826115c1565b9050919050565b6115fc816115e1565b811461160757600080fd5b50565b600081359050611619816115f3565b92915050565b6000819050919050565b6116328161161f565b811461163d57600080fd5b50565b60008135905061164f81611629565b92915050565b6000806040838503121561166c5761166b6115bc565b5b600061167a8582860161160a565b925050602061168b85828601611640565b9150509250929050565b60008115159050919050565b6116aa81611695565b82525050565b60006020820190506116c560008301846116a1565b92915050565b6116d48161161f565b82525050565b60006020820190506116ef60008301846116cb565b92915050565b60006020828403121561170b5761170a6115bc565b5b600061171984828501611640565b91505092915050565b60008060006060848603121561173b5761173a6115bc565b5b60006117498682870161160a565b935050602061175a8682870161160a565b925050604061176b86828701611640565b9150509250925092565b600060ff82169050919050565b61178b81611775565b82525050565b60006020820190506117a66000830184611782565b92915050565b60006117b7826115c1565b9050919050565b6117c7816117ac565b81146117d257600080fd5b50565b6000813590506117e4816117be565b92915050565b600060208284031215611800576117ff6115bc565b5b600061180e848285016117d5565b91505092915050565b60006020828403121561182d5761182c6115bc565b5b600061183b8482850161160a565b91505092915050565b61184d816117ac565b82525050565b60006020820190506118686000830184611844565b92915050565b60008060408385031215611885576118846115bc565b5b600061189385828601611640565b92505060206118a485828601611640565b9150509250929050565b600080604083850312156118c5576118c46115bc565b5b60006118d38582860161160a565b92505060206118e48582860161160a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061193557607f821691505b602082108103611948576119476118ee565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156119d4578086048111156119b0576119af61194e565b5b60018516156119bf5780820291505b80810290506119cd8561197d565b9450611994565b94509492505050565b6000826119ed5760019050611aa9565b816119fb5760009050611aa9565b8160018114611a115760028114611a1b57611a4a565b6001915050611aa9565b60ff841115611a2d57611a2c61194e565b5b8360020a915084821115611a4457611a4361194e565b5b50611aa9565b5060208310610133831016604e8410600b8410161715611a7f5782820a905083811115611a7a57611a7961194e565b5b611aa9565b611a8c848484600161198a565b92509050818404811115611aa357611aa261194e565b5b81810290505b9392505050565b6000611abb8261161f565b9150611ac683611775565b9250611af37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846119dd565b905092915050565b6000611b068261161f565b9150611b118361161f565b9250828202611b1f8161161f565b91508282048414831517611b3657611b3561194e565b5b5092915050565b7f4f6e6c7920746865206f776e65722063616e2063616c6c20746869732066756e60008201527f6374696f6e000000000000000000000000000000000000000000000000000000602082015250565b6000611b99602583611515565b9150611ba482611b3d565b604082019050919050565b60006020820190508181036000830152611bc881611b8c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611c0982611775565b9150611c1483611775565b925082611c2457611c23611bcf565b5b828204905092915050565b6000611c3a8261161f565b9150611c458361161f565b9250828203905081811115611c5d57611c5c61194e565b5b92915050565b6000611c6e8261161f565b9150611c798361161f565b9250828201905080821115611c9157611c9061194e565b5b92915050565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b6000611ccd601283611515565b9150611cd882611c97565b602082019050919050565b60006020820190508181036000830152611cfc81611cc0565b9050919050565b611d0c816115e1565b82525050565b6000606082019050611d276000830186611d03565b611d3460208301856116cb565b611d4160408301846116cb565b949350505050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b6000611da5602983611515565b9150611db082611d49565b604082019050919050565b60006020820190508181036000830152611dd481611d98565b9050919050565b6000611de68261161f565b9150611df18361161f565b925082611e0157611e00611bcf565b5b828204905092915050565b6000602082019050611e216000830184611d03565b9291505056fea264697066735822122029001dc1c22e9e1cd959686efd5166f5a012c325f754060d2f4d8579a94b897b64736f6c63430008130033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000857d6bbcef2cf3ec3797e6551ae1f6cdf41e35a20000000000000000000000000000000000000000000000000000000000000009416c7068614e6f766100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004414e564100000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101215760003560e01c806344ffe8d5116100ad5780638800b86d116100715780638800b86d146102fc57806395d89b411461032c578063a0712d681461034a578063a9059cbb14610366578063dd62ed3e1461039657610121565b806344ffe8d5146102565780635d098b381461027457806370a082311461029057806375f0a874146102c05780637ff9b596146102de57610121565b806318b20071116100f457806318b20071146101b057806323b872dd146101cc578063313ce567146101fc57806332cb6b0c1461021a5780633864ca591461023857610121565b806306fdde0314610126578063095ea7b3146101445780630e1d6a581461017457806318160ddd14610192575b600080fd5b61012e6103c6565b60405161013b919061159a565b60405180910390f35b61015e60048036038101906101599190611655565b610458565b60405161016b91906116b0565b60405180910390f35b61017c61047b565b60405161018991906116da565b60405180910390f35b61019a61060a565b6040516101a791906116da565b60405180910390f35b6101ca60048036038101906101c591906116f5565b610614565b005b6101e660048036038101906101e19190611722565b6106ae565b6040516101f391906116b0565b60405180910390f35b6102046106dd565b6040516102119190611791565b60405180910390f35b6102226106e6565b60405161022f91906116da565b60405180910390f35b6102406106f6565b60405161024d91906116da565b60405180910390f35b61025e6108e1565b60405161026b91906116da565b60405180910390f35b61028e600480360381019061028991906117ea565b6108e7565b005b6102aa60048036038101906102a59190611817565b6109bb565b6040516102b791906116da565b60405180910390f35b6102c8610a03565b6040516102d59190611853565b60405180910390f35b6102e6610a29565b6040516102f391906116da565b60405180910390f35b6103166004803603810190610311919061186e565b610a33565b60405161032391906116da565b60405180910390f35b610334610a49565b604051610341919061159a565b60405180910390f35b610364600480360381019061035f91906116f5565b610adb565b005b610380600480360381019061037b9190611655565b610bfb565b60405161038d91906116b0565b60405180910390f35b6103b060048036038101906103ab91906118ae565b610c1e565b6040516103bd91906116da565b60405180910390f35b6060600380546103d59061191d565b80601f01602080910402602001604051908101604052809291908181526020018280546104019061191d565b801561044e5780601f106104235761010080835404028352916020019161044e565b820191906000526020600020905b81548152906001019060200180831161043157829003601f168201915b5050505050905090565b600080610463610ca5565b9050610470818585610cad565b600191505092915050565b60008060329050600061048c6106dd565b600a6104989190611ab0565b629896806104a69190611afb565b905060006104b26106dd565b600a6104be9190611ab0565b63017d78406104cd9190611afb565b905060006104d96106dd565b600a6104e59190611ab0565b6302faf0806104f49190611afb565b905060006105006106dd565b600a61050c9190611ab0565b6305f5e10061051b9190611afb565b905060006105276106dd565b600a6105339190611ab0565b631dcd65006105429190611afb565b9050600061054e6106dd565b600a61055a9190611ab0565b633b9aca006105699190611afb565b9050600061057561060a565b90506000610581610a29565b8261058c9190611afb565b905082811061059e57600098506105f8565b8381106105ae57600a98506105f7565b8481106105be57601e98506105f6565b8581106105ce57601e98506105f5565b8681106105de57601e98506105f4565b8781106105ee57601e98506105f3565b603298505b5b5b5b5b5b8860ff16995050505050505050505090565b6000600254905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146106a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161069b90611baf565b60405180910390fd5b8060078190555050565b6000806106b9610ca5565b90506106c6858285610cbf565b6106d1858585610d53565b60019150509392505050565b60006012905090565b6b033b2e3c9fd0803ce800000081565b600080602390506000600f90506000601e9050600060019050600060059050600061071f6106dd565b600a61072b9190611ab0565b629896806107399190611afb565b905060006107456106dd565b600a6107519190611ab0565b63017d78406107609190611afb565b9050600061076c6106dd565b600a6107789190611ab0565b6302faf0806107879190611afb565b905060006107936106dd565b600a61079f9190611ab0565b6305f5e1006107ae9190611afb565b905060006107ba6106dd565b600a6107c69190611ab0565b631dcd65006107d59190611afb565b905060006107e16106dd565b600a6107ed9190611ab0565b633b9aca006107fc9190611afb565b9050600061080861060a565b90506000610814610a29565b8261081f9190611afb565b905082811061083c5760648a6108359190611bfe565b98506108b7565b8381106108575760648b6108509190611bfe565b98506108b6565b84811061087257600a8c61086b9190611bfe565b98506108b5565b85811061088257600398506108b4565b86811061089d57600a8d6108969190611bfe565b98506108b3565b8781106108ad57600498506108b2565b600598505b5b5b5b5b5b60016108c1610a29565b036108cb57600598505b8860ff169d505050505050505050505050505090565b60075481565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610977576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096e90611baf565b60405180910390fd5b80600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600754905090565b60008183610a419190611c2f565b905092915050565b606060048054610a589061191d565b80601f0160208091040260200160405190810160405280929190818152602001828054610a849061191d565b8015610ad15780601f10610aa657610100808354040283529160200191610ad1565b820191906000526020600020905b815481529060010190602001808311610ab457829003601f168201915b5050505050905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610b6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6290611baf565b60405180910390fd5b6b033b2e3c9fd0803ce800000081610b8161060a565b610b8b9190611c63565b1115610bcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc390611ce3565b60405180910390fd5b610bf8600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682610f16565b50565b600080610c06610ca5565b9050610c13818585610d53565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b610cba8383836001610f98565b505050565b6000610ccb8484610c1e565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610d4d5781811015610d3d578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610d3493929190611d12565b60405180910390fd5b610d4c84848484036000610f98565b5b50505050565b60008111610d96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8d90611dbb565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580610e415750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15610e5657610e5183838361116f565b610f11565b6000610e606106f6565b9050600060648284610e729190611afb565b610e7c9190611ddb565b90506000610e8a8483610a33565b905060006064610e9861047b565b84610ea39190611afb565b610ead9190611ddb565b905060008184610ebd9190611c2f565b90506000821115610ed357610ed28883611263565b5b610f0088600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168361116f565b610f0b88888561116f565b50505050505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f885760006040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610f7f9190611e0c565b60405180910390fd5b610f94600083836112e5565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361100a5760006040517fe602df050000000000000000000000000000000000000000000000000000000081526004016110019190611e0c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361107c5760006040517f94280d620000000000000000000000000000000000000000000000000000000081526004016110739190611e0c565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508015611169578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161116091906116da565b60405180910390a35b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111e15760006040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016111d89190611e0c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112535760006040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161124a9190611e0c565b60405180910390fd5b61125e8383836112e5565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112d55760006040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016112cc9190611e0c565b60405180910390fd5b6112e1826000836112e5565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361133757806002600082825461132b9190611c63565b9250508190555061140a565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156113c3578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016113ba93929190611d12565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361145357806002600082825403925050819055506114a0565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516114fd91906116da565b60405180910390a3505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611544578082015181840152602081019050611529565b60008484015250505050565b6000601f19601f8301169050919050565b600061156c8261150a565b6115768185611515565b9350611586818560208601611526565b61158f81611550565b840191505092915050565b600060208201905081810360008301526115b48184611561565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006115ec826115c1565b9050919050565b6115fc816115e1565b811461160757600080fd5b50565b600081359050611619816115f3565b92915050565b6000819050919050565b6116328161161f565b811461163d57600080fd5b50565b60008135905061164f81611629565b92915050565b6000806040838503121561166c5761166b6115bc565b5b600061167a8582860161160a565b925050602061168b85828601611640565b9150509250929050565b60008115159050919050565b6116aa81611695565b82525050565b60006020820190506116c560008301846116a1565b92915050565b6116d48161161f565b82525050565b60006020820190506116ef60008301846116cb565b92915050565b60006020828403121561170b5761170a6115bc565b5b600061171984828501611640565b91505092915050565b60008060006060848603121561173b5761173a6115bc565b5b60006117498682870161160a565b935050602061175a8682870161160a565b925050604061176b86828701611640565b9150509250925092565b600060ff82169050919050565b61178b81611775565b82525050565b60006020820190506117a66000830184611782565b92915050565b60006117b7826115c1565b9050919050565b6117c7816117ac565b81146117d257600080fd5b50565b6000813590506117e4816117be565b92915050565b600060208284031215611800576117ff6115bc565b5b600061180e848285016117d5565b91505092915050565b60006020828403121561182d5761182c6115bc565b5b600061183b8482850161160a565b91505092915050565b61184d816117ac565b82525050565b60006020820190506118686000830184611844565b92915050565b60008060408385031215611885576118846115bc565b5b600061189385828601611640565b92505060206118a485828601611640565b9150509250929050565b600080604083850312156118c5576118c46115bc565b5b60006118d38582860161160a565b92505060206118e48582860161160a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061193557607f821691505b602082108103611948576119476118ee565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156119d4578086048111156119b0576119af61194e565b5b60018516156119bf5780820291505b80810290506119cd8561197d565b9450611994565b94509492505050565b6000826119ed5760019050611aa9565b816119fb5760009050611aa9565b8160018114611a115760028114611a1b57611a4a565b6001915050611aa9565b60ff841115611a2d57611a2c61194e565b5b8360020a915084821115611a4457611a4361194e565b5b50611aa9565b5060208310610133831016604e8410600b8410161715611a7f5782820a905083811115611a7a57611a7961194e565b5b611aa9565b611a8c848484600161198a565b92509050818404811115611aa357611aa261194e565b5b81810290505b9392505050565b6000611abb8261161f565b9150611ac683611775565b9250611af37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846119dd565b905092915050565b6000611b068261161f565b9150611b118361161f565b9250828202611b1f8161161f565b91508282048414831517611b3657611b3561194e565b5b5092915050565b7f4f6e6c7920746865206f776e65722063616e2063616c6c20746869732066756e60008201527f6374696f6e000000000000000000000000000000000000000000000000000000602082015250565b6000611b99602583611515565b9150611ba482611b3d565b604082019050919050565b60006020820190508181036000830152611bc881611b8c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611c0982611775565b9150611c1483611775565b925082611c2457611c23611bcf565b5b828204905092915050565b6000611c3a8261161f565b9150611c458361161f565b9250828203905081811115611c5d57611c5c61194e565b5b92915050565b6000611c6e8261161f565b9150611c798361161f565b9250828201905080821115611c9157611c9061194e565b5b92915050565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b6000611ccd601283611515565b9150611cd882611c97565b602082019050919050565b60006020820190508181036000830152611cfc81611cc0565b9050919050565b611d0c816115e1565b82525050565b6000606082019050611d276000830186611d03565b611d3460208301856116cb565b611d4160408301846116cb565b949350505050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b6000611da5602983611515565b9150611db082611d49565b604082019050919050565b60006020820190508181036000830152611dd481611d98565b9050919050565b6000611de68261161f565b9150611df18361161f565b925082611e0157611e00611bcf565b5b828204905092915050565b6000602082019050611e216000830184611d03565b9291505056fea264697066735822122029001dc1c22e9e1cd959686efd5166f5a012c325f754060d2f4d8579a94b897b64736f6c63430008130033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000857d6bbcef2cf3ec3797e6551ae1f6cdf41e35a20000000000000000000000000000000000000000000000000000000000000009416c7068614e6f766100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004414e564100000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): AlphaNova
Arg [1] : symbol (string): ANVA
Arg [2] : _marketingWallet (address): 0x857D6bBCEF2cF3ec3797E6551AE1F6CDf41E35a2

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 000000000000000000000000857d6bbcef2cf3ec3797e6551ae1f6cdf41e35a2
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [4] : 416c7068614e6f76610000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 414e564100000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

25878:5097:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14016:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16309:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28989:1042;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15118:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30369:119;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17077:249;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14969:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26030:56;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27741:1238;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25989:34;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30218:143;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15280:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25916:38;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30496:476;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30039:117;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14226:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26421:166;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15603:182;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15848:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14016:91;14061:13;14094:5;14087:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14016:91;:::o;16309:190::-;16382:4;16399:13;16415:12;:10;:12::i;:::-;16399:28;;16438:31;16447:5;16454:7;16463:5;16438:8;:31::i;:::-;16487:4;16480:11;;;16309:190;;;;:::o;28989:1042::-;29030:7;29045:10;29056:2;29045:13;;29097:20;29137:10;:8;:10::i;:::-;29133:2;:14;;;;:::i;:::-;29120:10;:27;;;;:::i;:::-;29097:50;;29154:20;29194:10;:8;:10::i;:::-;29190:2;:14;;;;:::i;:::-;29177:10;:27;;;;:::i;:::-;29154:50;;29211:20;29251:10;:8;:10::i;:::-;29247:2;:14;;;;:::i;:::-;29234:10;:27;;;;:::i;:::-;29211:50;;29268:21;29310:10;:8;:10::i;:::-;29306:2;:14;;;;:::i;:::-;29292:11;:28;;;;:::i;:::-;29268:52;;29327:21;29369:10;:8;:10::i;:::-;29365:2;:14;;;;:::i;:::-;29351:11;:28;;;;:::i;:::-;29327:52;;29386:19;29428:10;:8;:10::i;:::-;29424:2;:14;;;;:::i;:::-;29408:13;:30;;;;:::i;:::-;29386:52;;29445:19;29467:13;:11;:13::i;:::-;29445:35;;29487:17;29521:12;:10;:12::i;:::-;29507:11;:26;;;;:::i;:::-;29487:46;;29557:11;29544:9;:24;29540:464;;29591:1;29585:7;;29540:464;;;29627:13;29614:9;:26;29610:394;;29663:2;29657:8;;29610:394;;;29700:13;29687:9;:26;29683:321;;29736:2;29730:8;;29683:321;;;29773:12;29760:9;:25;29756:248;;29808:2;29802:8;;29756:248;;;29844:12;29831:9;:25;29827:177;;29879:2;29873:8;;29827:177;;;29915:12;29902:9;:25;29898:106;;29950:2;29944:8;;29898:106;;;29990:2;29984:8;;29898:106;29827:177;29756:248;29683:321;29610:394;29540:464;30019:4;30012:11;;;;;;;;;;;;;28989:1042;:::o;15118:99::-;15170:7;15197:12;;15190:19;;15118:99;:::o;30369:119::-;26647:5;;;;;;;;;;;26633:19;;:10;:19;;;26625:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;30467:13:::1;30447:17;:33;;;;30369:119:::0;:::o;17077:249::-;17164:4;17181:15;17199:12;:10;:12::i;:::-;17181:30;;17222:37;17238:4;17244:7;17253:5;17222:15;:37::i;:::-;17270:26;17280:4;17286:2;17290:5;17270:9;:26::i;:::-;17314:4;17307:11;;;17077:249;;;;;:::o;14969:84::-;15018:5;15043:2;15036:9;;14969:84;:::o;26030:56::-;26067:19;26030:56;:::o;27741:1238::-;27782:7;27821:12;27836:2;27821:17;;27845:13;27861:2;27845:18;;27870:13;27886:2;27870:18;;27895:11;27909:1;27895:15;;27917:10;27928:1;27917:12;;27968:20;28008:10;:8;:10::i;:::-;28004:2;:14;;;;:::i;:::-;27991:10;:27;;;;:::i;:::-;27968:50;;28025:20;28065:10;:8;:10::i;:::-;28061:2;:14;;;;:::i;:::-;28048:10;:27;;;;:::i;:::-;28025:50;;28082:20;28122:10;:8;:10::i;:::-;28118:2;:14;;;;:::i;:::-;28105:10;:27;;;;:::i;:::-;28082:50;;28139:21;28181:10;:8;:10::i;:::-;28177:2;:14;;;;:::i;:::-;28163:11;:28;;;;:::i;:::-;28139:52;;28198:21;28240:10;:8;:10::i;:::-;28236:2;:14;;;;:::i;:::-;28222:11;:28;;;;:::i;:::-;28198:52;;28257:19;28299:10;:8;:10::i;:::-;28295:2;:14;;;;:::i;:::-;28279:13;:30;;;;:::i;:::-;28257:52;;28316:19;28338:13;:11;:13::i;:::-;28316:35;;28358:17;28392:12;:10;:12::i;:::-;28378:11;:26;;;;:::i;:::-;28358:46;;28428:11;28415:9;:24;28411:493;;28468:3;28462:5;:9;;;;:::i;:::-;28456:15;;28411:493;;;28506:13;28493:9;:26;28489:415;;28550:3;28542:7;:11;;;;:::i;:::-;28536:17;;28489:415;;;28588:13;28575:9;:26;28571:333;;28632:2;28624:7;:10;;;;:::i;:::-;28618:16;;28571:333;;;28669:12;28656:9;:25;28652:252;;28704:1;28698:7;;28652:252;;;28739:12;28726:9;:25;28722:182;;28781:2;28774:6;:9;;;;:::i;:::-;28768:15;;28722:182;;;28817:12;28804:9;:25;28800:104;;28852:1;28846:7;;28800:104;;;28891:1;28885:7;;28800:104;28722:182;28652:252;28571:333;28489:415;28411:493;28927:1;28913:12;:10;:12::i;:::-;:15;28910:44;;28945:1;28940:6;;28910:44;28967:4;28960:11;;;;;;;;;;;;;;;;;27741:1238;:::o;25989:34::-;;;;:::o;30218:143::-;26647:5;;;;;;;;;;;26633:19;;:10;:19;;;26625:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;30336:16:::1;30310:15;;:43;;;;;;;;;;;;;;;;;;30218:143:::0;:::o;15280:118::-;15345:7;15372:9;:18;15382:7;15372:18;;;;;;;;;;;;;;;;15365:25;;15280:118;;;:::o;25916:38::-;;;;;;;;;;;;;:::o;30496:476::-;30539:7;30902:17;;30895:24;;30496:476;:::o;30039:117::-;30110:7;30145:3;30136:6;:12;;;;:::i;:::-;30129:19;;30039:117;;;;:::o;14226:95::-;14273:13;14306:7;14299:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14226:95;:::o;26421:166::-;26647:5;;;;;;;;;;;26633:19;;:10;:19;;;26625:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;26067:19:::1;26505:6;26489:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:36;;26481:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;26559:20;26565:5;;;;;;;;;;;26572:6;26559:5;:20::i;:::-;26421:166:::0;:::o;15603:182::-;15672:4;15689:13;15705:12;:10;:12::i;:::-;15689:28;;15728:27;15738:5;15745:2;15749:5;15728:9;:27::i;:::-;15773:4;15766:11;;;15603:182;;;;:::o;15848:142::-;15928:7;15955:11;:18;15967:5;15955:18;;;;;;;;;;;;;;;:27;15974:7;15955:27;;;;;;;;;;;;;;;;15948:34;;15848:142;;;;:::o;6445:98::-;6498:7;6525:10;6518:17;;6445:98;:::o;21144:130::-;21229:37;21238:5;21245:7;21254:5;21261:4;21229:8;:37::i;:::-;21144:130;;;:::o;22860:487::-;22960:24;22987:25;22997:5;23004:7;22987:9;:25::i;:::-;22960:52;;23047:17;23027:16;:37;23023:317;;23104:5;23085:16;:24;23081:132;;;23164:7;23173:16;23191:5;23137:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;23081:132;23256:57;23265:5;23272:7;23300:5;23281:16;:24;23307:5;23256:8;:57::i;:::-;23023:317;22949:398;22860:487;;;:::o;26722:1011::-;26872:1;26863:6;:10;26855:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;26953:5;;;;;;;;;;;26943:15;;:6;:15;;;;:37;;;;26975:5;;;;;;;;;;;26962:18;;:9;:18;;;;26943:37;26939:787;;;27053:42;27069:6;27077:9;27088:6;27053:15;:42::i;:::-;26939:787;;;27123:12;27137:10;:8;:10::i;:::-;27123:24;;27158:17;27192:3;27187:4;27178:6;:13;;;;:::i;:::-;:17;;;;:::i;:::-;27158:37;;27206:22;27231:31;27244:6;27252:9;27231:12;:31::i;:::-;27206:56;;27273:12;27309:3;27298:10;:8;:10::i;:::-;27286:9;:22;;;;:::i;:::-;:26;;;;:::i;:::-;27273:39;;27323:14;27348:4;27338:9;:14;;;;:::i;:::-;27323:29;;27404:1;27399:4;:6;27396:56;;;27421:19;27427:6;27435:4;27421:5;:19::i;:::-;27396:56;27545:48;27561:6;27569:15;;;;;;;;;;;27586:6;27545:15;:48::i;:::-;27665:50;27681:6;27689:9;27700:14;27665:15;:50::i;:::-;27112:614;;;;;26939:787;26722:1011;;;:::o;19839:213::-;19929:1;19910:21;;:7;:21;;;19906:93;;19984:1;19955:32;;;;;;;;;;;:::i;:::-;;;;;;;;19906:93;20009:35;20025:1;20029:7;20038:5;20009:7;:35::i;:::-;19839:213;;:::o;22125:443::-;22255:1;22238:19;;:5;:19;;;22234:91;;22310:1;22281:32;;;;;;;;;;;:::i;:::-;;;;;;;;22234:91;22358:1;22339:21;;:7;:21;;;22335:92;;22412:1;22384:31;;;;;;;;;;;:::i;:::-;;;;;;;;22335:92;22467:5;22437:11;:18;22449:5;22437:18;;;;;;;;;;;;;;;:27;22456:7;22437:27;;;;;;;;;;;;;;;:35;;;;22487:9;22483:78;;;22534:7;22518:31;;22527:5;22518:31;;;22543:5;22518:31;;;;;;:::i;:::-;;;;;;;;22483:78;22125:443;;;;:::o;17711:316::-;17819:1;17803:18;;:4;:18;;;17799:88;;17872:1;17845:30;;;;;;;;;;;:::i;:::-;;;;;;;;17799:88;17915:1;17901:16;;:2;:16;;;17897:88;;17970:1;17941:32;;;;;;;;;;;:::i;:::-;;;;;;;;17897:88;17995:24;18003:4;18009:2;18013:5;17995:7;:24::i;:::-;17711:316;;;:::o;20380:211::-;20470:1;20451:21;;:7;:21;;;20447:91;;20523:1;20496:30;;;;;;;;;;;:::i;:::-;;;;;;;;20447:91;20548:35;20556:7;20573:1;20577:5;20548:7;:35::i;:::-;20380:211;;:::o;18351:1135::-;18457:1;18441:18;;:4;:18;;;18437:552;;18595:5;18579:12;;:21;;;;;;;:::i;:::-;;;;;;;;18437:552;;;18633:19;18655:9;:15;18665:4;18655:15;;;;;;;;;;;;;;;;18633:37;;18703:5;18689:11;:19;18685:117;;;18761:4;18767:11;18780:5;18736:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;18685:117;18957:5;18943:11;:19;18925:9;:15;18935:4;18925:15;;;;;;;;;;;;;;;:37;;;;18618:371;18437:552;19019:1;19005:16;;:2;:16;;;19001:435;;19187:5;19171:12;;:21;;;;;;;;;;;19001:435;;;19404:5;19387:9;:13;19397:2;19387:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;19001:435;19468:2;19453:25;;19462:4;19453:25;;;19472:5;19453:25;;;;;;:::i;:::-;;;;;;;;18351: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:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:329::-;3857:6;3906:2;3894:9;3885:7;3881:23;3877:32;3874:119;;;3912:79;;:::i;:::-;3874:119;4032:1;4057:53;4102:7;4093:6;4082:9;4078:22;4057:53;:::i;:::-;4047:63;;4003:117;3798:329;;;;:::o;4133:619::-;4210:6;4218;4226;4275:2;4263:9;4254:7;4250:23;4246:32;4243:119;;;4281:79;;:::i;:::-;4243:119;4401:1;4426:53;4471:7;4462:6;4451:9;4447:22;4426:53;:::i;:::-;4416:63;;4372:117;4528:2;4554:53;4599:7;4590:6;4579:9;4575:22;4554:53;:::i;:::-;4544:63;;4499:118;4656:2;4682:53;4727:7;4718:6;4707:9;4703:22;4682:53;:::i;:::-;4672:63;;4627:118;4133:619;;;;;:::o;4758:86::-;4793:7;4833:4;4826:5;4822:16;4811:27;;4758:86;;;:::o;4850:112::-;4933:22;4949:5;4933:22;:::i;:::-;4928:3;4921:35;4850:112;;:::o;4968:214::-;5057:4;5095:2;5084:9;5080:18;5072:26;;5108:67;5172:1;5161:9;5157:17;5148:6;5108:67;:::i;:::-;4968:214;;;;:::o;5188:104::-;5233:7;5262:24;5280:5;5262:24;:::i;:::-;5251:35;;5188:104;;;:::o;5298:138::-;5379:32;5405:5;5379:32;:::i;:::-;5372:5;5369:43;5359:71;;5426:1;5423;5416:12;5359:71;5298:138;:::o;5442:155::-;5496:5;5534:6;5521:20;5512:29;;5550:41;5585:5;5550:41;:::i;:::-;5442:155;;;;:::o;5603:345::-;5670:6;5719:2;5707:9;5698:7;5694:23;5690:32;5687:119;;;5725:79;;:::i;:::-;5687:119;5845:1;5870:61;5923:7;5914:6;5903:9;5899:22;5870:61;:::i;:::-;5860:71;;5816:125;5603:345;;;;:::o;5954:329::-;6013:6;6062:2;6050:9;6041:7;6037:23;6033:32;6030:119;;;6068:79;;:::i;:::-;6030:119;6188:1;6213:53;6258:7;6249:6;6238:9;6234:22;6213:53;:::i;:::-;6203:63;;6159:117;5954:329;;;;:::o;6289:142::-;6392:32;6418:5;6392:32;:::i;:::-;6387:3;6380:45;6289:142;;:::o;6437:254::-;6546:4;6584:2;6573:9;6569:18;6561:26;;6597:87;6681:1;6670:9;6666:17;6657:6;6597:87;:::i;:::-;6437:254;;;;:::o;6697:474::-;6765:6;6773;6822:2;6810:9;6801:7;6797:23;6793:32;6790:119;;;6828:79;;:::i;:::-;6790:119;6948:1;6973:53;7018:7;7009:6;6998:9;6994:22;6973:53;:::i;:::-;6963:63;;6919:117;7075:2;7101:53;7146:7;7137:6;7126:9;7122:22;7101:53;:::i;:::-;7091:63;;7046:118;6697:474;;;;;:::o;7177:::-;7245:6;7253;7302:2;7290:9;7281:7;7277:23;7273:32;7270:119;;;7308:79;;:::i;:::-;7270:119;7428:1;7453:53;7498:7;7489:6;7478:9;7474:22;7453:53;:::i;:::-;7443:63;;7399:117;7555:2;7581:53;7626:7;7617:6;7606:9;7602:22;7581:53;:::i;:::-;7571:63;;7526:118;7177:474;;;;;:::o;7657:180::-;7705:77;7702:1;7695:88;7802:4;7799:1;7792:15;7826:4;7823:1;7816:15;7843:320;7887:6;7924:1;7918:4;7914:12;7904:22;;7971:1;7965:4;7961:12;7992:18;7982:81;;8048:4;8040:6;8036:17;8026:27;;7982:81;8110:2;8102:6;8099:14;8079:18;8076:38;8073:84;;8129:18;;:::i;:::-;8073:84;7894:269;7843:320;;;:::o;8169:180::-;8217:77;8214:1;8207:88;8314:4;8311:1;8304:15;8338:4;8335:1;8328:15;8355:102;8397:8;8444:5;8441:1;8437:13;8416:34;;8355:102;;;:::o;8463:848::-;8524:5;8531:4;8555:6;8546:15;;8579:5;8570:14;;8593:712;8614:1;8604:8;8601:15;8593:712;;;8709:4;8704:3;8700:14;8694:4;8691:24;8688:50;;;8718:18;;:::i;:::-;8688:50;8768:1;8758:8;8754:16;8751:451;;;9183:4;9176:5;9172:16;9163:25;;8751:451;9233:4;9227;9223:15;9215:23;;9263:32;9286:8;9263:32;:::i;:::-;9251:44;;8593:712;;;8463:848;;;;;;;:::o;9317:1073::-;9371:5;9562:8;9552:40;;9583:1;9574:10;;9585:5;;9552:40;9611:4;9601:36;;9628:1;9619:10;;9630:5;;9601:36;9697:4;9745:1;9740:27;;;;9781:1;9776:191;;;;9690:277;;9740:27;9758:1;9749:10;;9760:5;;;9776:191;9821:3;9811:8;9808:17;9805:43;;;9828:18;;:::i;:::-;9805:43;9877:8;9874:1;9870:16;9861:25;;9912:3;9905:5;9902:14;9899:40;;;9919:18;;:::i;:::-;9899:40;9952:5;;;9690:277;;10076:2;10066:8;10063:16;10057:3;10051:4;10048:13;10044:36;10026:2;10016:8;10013:16;10008:2;10002:4;9999:12;9995:35;9979:111;9976:246;;;10132:8;10126:4;10122:19;10113:28;;10167:3;10160:5;10157:14;10154:40;;;10174:18;;:::i;:::-;10154:40;10207:5;;9976:246;10247:42;10285:3;10275:8;10269:4;10266:1;10247:42;:::i;:::-;10232:57;;;;10321:4;10316:3;10312:14;10305:5;10302:25;10299:51;;;10330:18;;:::i;:::-;10299:51;10379:4;10372:5;10368:16;10359:25;;9317:1073;;;;;;:::o;10396:281::-;10454:5;10478:23;10496:4;10478:23;:::i;:::-;10470:31;;10522:25;10538:8;10522:25;:::i;:::-;10510:37;;10566:104;10603:66;10593:8;10587:4;10566:104;:::i;:::-;10557:113;;10396:281;;;;:::o;10683:410::-;10723:7;10746:20;10764:1;10746:20;:::i;:::-;10741:25;;10780:20;10798:1;10780:20;:::i;:::-;10775:25;;10835:1;10832;10828:9;10857:30;10875:11;10857:30;:::i;:::-;10846:41;;11036:1;11027:7;11023:15;11020:1;11017:22;10997:1;10990:9;10970:83;10947:139;;11066:18;;:::i;:::-;10947:139;10731:362;10683:410;;;;:::o;11099:224::-;11239:34;11235:1;11227:6;11223:14;11216:58;11308:7;11303:2;11295:6;11291:15;11284:32;11099:224;:::o;11329:366::-;11471:3;11492:67;11556:2;11551:3;11492:67;:::i;:::-;11485:74;;11568:93;11657:3;11568:93;:::i;:::-;11686:2;11681:3;11677:12;11670:19;;11329:366;;;:::o;11701:419::-;11867:4;11905:2;11894:9;11890:18;11882:26;;11954:9;11948:4;11944:20;11940:1;11929:9;11925:17;11918:47;11982:131;12108:4;11982:131;:::i;:::-;11974:139;;11701:419;;;:::o;12126:180::-;12174:77;12171:1;12164:88;12271:4;12268:1;12261:15;12295:4;12292:1;12285:15;12312:179;12350:1;12367:18;12383:1;12367:18;:::i;:::-;12362:23;;12399:18;12415:1;12399:18;:::i;:::-;12394:23;;12436:1;12426:35;;12441:18;;:::i;:::-;12426:35;12483:1;12480;12476:9;12471:14;;12312:179;;;;:::o;12497:194::-;12537:4;12557:20;12575:1;12557:20;:::i;:::-;12552:25;;12591:20;12609:1;12591:20;:::i;:::-;12586:25;;12635:1;12632;12628:9;12620:17;;12659:1;12653:4;12650:11;12647:37;;;12664:18;;:::i;:::-;12647:37;12497:194;;;;:::o;12697:191::-;12737:3;12756:20;12774:1;12756:20;:::i;:::-;12751:25;;12790:20;12808:1;12790:20;:::i;:::-;12785:25;;12833:1;12830;12826:9;12819:16;;12854:3;12851:1;12848:10;12845:36;;;12861:18;;:::i;:::-;12845:36;12697:191;;;;:::o;12894:168::-;13034:20;13030:1;13022:6;13018:14;13011:44;12894:168;:::o;13068:366::-;13210:3;13231:67;13295:2;13290:3;13231:67;:::i;:::-;13224:74;;13307:93;13396:3;13307:93;:::i;:::-;13425:2;13420:3;13416:12;13409:19;;13068:366;;;:::o;13440:419::-;13606:4;13644:2;13633:9;13629:18;13621:26;;13693:9;13687:4;13683:20;13679:1;13668:9;13664:17;13657:47;13721:131;13847:4;13721:131;:::i;:::-;13713:139;;13440:419;;;:::o;13865:118::-;13952:24;13970:5;13952:24;:::i;:::-;13947:3;13940:37;13865:118;;:::o;13989:442::-;14138:4;14176:2;14165:9;14161:18;14153:26;;14189:71;14257:1;14246:9;14242:17;14233:6;14189:71;:::i;:::-;14270:72;14338:2;14327:9;14323:18;14314:6;14270:72;:::i;:::-;14352;14420:2;14409:9;14405:18;14396:6;14352:72;:::i;:::-;13989:442;;;;;;:::o;14437:228::-;14577:34;14573:1;14565:6;14561:14;14554:58;14646:11;14641:2;14633:6;14629:15;14622:36;14437:228;:::o;14671:366::-;14813:3;14834:67;14898:2;14893:3;14834:67;:::i;:::-;14827:74;;14910:93;14999:3;14910:93;:::i;:::-;15028:2;15023:3;15019:12;15012:19;;14671:366;;;:::o;15043:419::-;15209:4;15247:2;15236:9;15232:18;15224:26;;15296:9;15290:4;15286:20;15282:1;15271:9;15267:17;15260:47;15324:131;15450:4;15324:131;:::i;:::-;15316:139;;15043:419;;;:::o;15468:185::-;15508:1;15525:20;15543:1;15525:20;:::i;:::-;15520:25;;15559:20;15577:1;15559:20;:::i;:::-;15554:25;;15598:1;15588:35;;15603:18;;:::i;:::-;15588:35;15645:1;15642;15638:9;15633:14;;15468:185;;;;:::o;15659:222::-;15752:4;15790:2;15779:9;15775:18;15767:26;;15803:71;15871:1;15860:9;15856:17;15847:6;15803:71;:::i;:::-;15659:222;;;;:::o

Swarm Source

ipfs://29001dc1c22e9e1cd959686efd5166f5a012c325f754060d2f4d8579a94b897b
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.