ETH Price: $3,509.10 (+2.77%)
Gas: 4 Gwei

Token

Frictionless (FRIC)
 

Overview

Max Total Supply

500,000,000 FRIC

Holders

619

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
500,000 FRIC

Value
$0.00
0x1395AE295cc73fD5c2ce49c639405B6009F4f7B5
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Frictionless is a revolutionary platform that empowers projects and investors to securely and efficiently transfer Cryptocurrency in a unique, decentralized and trustless manner using smart contracts, that circumvent assets market price impacts.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
FRIC

Compiler Version
v0.8.22+commit.4fc1097e

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

// Sources flattened with hardhat v2.19.4 https://hardhat.org

// SPDX-License-Identifier: MIT AND UNLICENSED

// File @openzeppelin/contracts/utils/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

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

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

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


// File @openzeppelin/contracts/access/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;

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

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

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

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

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

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

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(newOwner);
    }

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


// File @openzeppelin/contracts/interfaces/[email protected]

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC20/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}


// File @openzeppelin/contracts/token/ERC20/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;




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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

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

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

        emit Transfer(from, to, value);
    }

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

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

    /**
     * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

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

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


// File contracts/FRIC.sol

// Original license: SPDX_License_Identifier: UNLICENSED
pragma solidity ^0.8.20;
contract FRIC is ERC20, Ownable {
    address public router;

    uint256 public sellFee = 20;
    uint256 public transferFee = 20;
    uint256 public maxTxAmount;
    uint256 public maxWalletAmount;

    mapping(address => bool) public isExcludedFromFee;
    mapping(address => bool) public isExcludedFromMaxTx;
    mapping(address => bool) public isExcludedFromMaxWallet;

    constructor(uint256 initialTotalSupply) ERC20("Frictionless", "FRIC") Ownable(msg.sender) {
        isExcludedFromFee[msg.sender] = true;
        isExcludedFromFee[address(0)] = true;
        isExcludedFromFee[address(this)] = true;

        isExcludedFromMaxTx[msg.sender] = true;
        isExcludedFromMaxTx[address(0)] = true;
        isExcludedFromMaxTx[address(this)] = true;

        isExcludedFromMaxWallet[msg.sender] = true;
        isExcludedFromMaxWallet[address(0)] = true;
        isExcludedFromMaxWallet[address(this)] = true;

        initialTotalSupply *= 10 ** 18;
        maxWalletAmount = initialTotalSupply * 2 / 100;
        _mint(msg.sender, initialTotalSupply);
    }

    function _update(address from, address to, uint256 value) internal override {
        if (!isExcludedFromMaxTx[from]) {
            require(value <= maxTxAmount, "Transfer amount exceeds the maxTxAmount.");
        }

        if (!isExcludedFromFee[from]) {
            if (to == router) {
                if (sellFee > 0) {
                    uint256 fee = value * sellFee / 100;
                    value -= fee;
                    super._update(from, address(this), fee);
                }
            } else if (transferFee > 0) {
                uint256 fee = value * transferFee / 100;
                value -= fee;
                super._update(from, address(this), fee);
            }
        }

        super._update(from, to, value);

        if (!isExcludedFromMaxWallet[to]) {
            require(balanceOf(to) <= maxWalletAmount, "Wallet balance exceeds the maxWalletAmount.");
        }
    }

    function excludeFromFee(address account, bool newState) external onlyOwner {
        isExcludedFromFee[account] = newState;
    }

    function excludeFromMaxTx(address account, bool newState) external onlyOwner {
        isExcludedFromMaxTx[account] = newState;
    }

    function excludeFromMaxWallet(address account, bool newState) external onlyOwner {
        isExcludedFromMaxWallet[account] = newState;
    }

    function setRouter(address newRouter) external onlyOwner {
        require(newRouter != router, "The router already has that address.");

        isExcludedFromFee[router] = false;
        isExcludedFromMaxTx[router] = false;
        isExcludedFromMaxWallet[router] = false;

        isExcludedFromFee[newRouter] = true;
        isExcludedFromMaxTx[newRouter] = true;
        isExcludedFromMaxWallet[newRouter] = true;
        router = newRouter;
    }

    function setSellFee(uint256 newFee) external onlyOwner {
        require(newFee <= 20, "Sell fee cannot be greater than 20%.");
        sellFee = newFee;
    }

    function setTransferFee(uint256 newFee) external onlyOwner {
        require(newFee <= 20, "Transfer fee cannot be greater than 20%.");
        transferFee = newFee;
    }

    function setMaxTxAmount(uint256 newPercentage) external onlyOwner {
        require(newPercentage > 0, "Max tx amount must be greater than 0.1%.");
        maxTxAmount = totalSupply() * newPercentage / 1000;
    }

    function setMaxWalletAmount(uint256 newPercentage) external onlyOwner {
        require(newPercentage > 20, "Max wallet amount must be greater than 2%.");
        maxWalletAmount = totalSupply() * newPercentage / 1000;
    }

    function withdraw(address to, uint256 value) external onlyOwner {
        super._update(address(this), to, value);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"initialTotalSupply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"newState","type":"bool"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"newState","type":"bool"}],"name":"excludeFromMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"newState","type":"bool"}],"name":"excludeFromMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromMaxTx","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromMaxWallet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPercentage","type":"uint256"}],"name":"setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPercentage","type":"uint256"}],"name":"setMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRouter","type":"address"}],"name":"setRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newFee","type":"uint256"}],"name":"setSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newFee","type":"uint256"}],"name":"setTransferFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052601460075560146008553480156200001a575f80fd5b50604051620033f9380380620033f9833981810160405281019062000040919062000b41565b336040518060400160405280600c81526020017f4672696374696f6e6c65737300000000000000000000000000000000000000008152506040518060400160405280600481526020017f46524943000000000000000000000000000000000000000000000000000000008152508160039081620000be919062000dcc565b508060049081620000d0919062000dcc565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000146575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016200013d919062000ef3565b60405180910390fd5b6200015781620004a960201b60201c565b506001600b5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600b5f8073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600b5f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600c5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600c5f8073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600c5f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600d5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600d5f8073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600d5f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550670de0b6b3a7640000816200046b919062000f3b565b905060646002826200047e919062000f3b565b6200048a919062000fb2565b600a81905550620004a233826200056c60201b60201c565b50620011fc565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620005df575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401620005d6919062000ef3565b60405180910390fd5b620005f25f8383620005f660201b60201c565b5050565b600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166200068e576009548111156200068d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000684906200106d565b60405180910390fd5b5b600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16620007dc5760065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000789575f600754111562000783575f60646007548362000750919062000f3b565b6200075c919062000fb2565b905080826200076c91906200108d565b9150620007818430836200089c60201b60201c565b505b620007db565b5f6008541115620007da575f606460085483620007a7919062000f3b565b620007b3919062000fb2565b90508082620007c391906200108d565b9150620007d88430836200089c60201b60201c565b505b5b5b620007ef8383836200089c60201b60201c565b600d5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166200089757600a54620008528362000ac060201b60201c565b111562000896576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200088d906200113b565b60405180910390fd5b5b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603620008f0578060025f828254620008e391906200115b565b92505081905550620009c1565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156200097c578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016200097393929190620011a6565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000a0a578060025f828254039250508190555062000a54565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000ab39190620011e1565b60405180910390a3505050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f80fd5b5f819050919050565b62000b1d8162000b09565b811462000b28575f80fd5b50565b5f8151905062000b3b8162000b12565b92915050565b5f6020828403121562000b595762000b5862000b05565b5b5f62000b688482850162000b2b565b91505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168062000bed57607f821691505b60208210810362000c035762000c0262000ba8565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830262000c677fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000c2a565b62000c73868362000c2a565b95508019841693508086168417925050509392505050565b5f819050919050565b5f62000cb462000cae62000ca88462000b09565b62000c8b565b62000b09565b9050919050565b5f819050919050565b62000ccf8362000c94565b62000ce762000cde8262000cbb565b84845462000c36565b825550505050565b5f90565b62000cfd62000cef565b62000d0a81848462000cc4565b505050565b5b8181101562000d315762000d255f8262000cf3565b60018101905062000d10565b5050565b601f82111562000d805762000d4a8162000c09565b62000d558462000c1b565b8101602085101562000d65578190505b62000d7d62000d748562000c1b565b83018262000d0f565b50505b505050565b5f82821c905092915050565b5f62000da25f198460080262000d85565b1980831691505092915050565b5f62000dbc838362000d91565b9150826002028217905092915050565b62000dd78262000b71565b67ffffffffffffffff81111562000df35762000df262000b7b565b5b62000dff825462000bd5565b62000e0c82828562000d35565b5f60209050601f83116001811462000e42575f841562000e2d578287015190505b62000e39858262000daf565b86555062000ea8565b601f19841662000e528662000c09565b5f5b8281101562000e7b5784890151825560018201915060208501945060208101905062000e54565b8683101562000e9b578489015162000e97601f89168262000d91565b8355505b6001600288020188555050505b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000edb8262000eb0565b9050919050565b62000eed8162000ecf565b82525050565b5f60208201905062000f085f83018462000ee2565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f62000f478262000b09565b915062000f548362000b09565b925082820262000f648162000b09565b9150828204841483151762000f7e5762000f7d62000f0e565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f62000fbe8262000b09565b915062000fcb8362000b09565b92508262000fde5762000fdd62000f85565b5b828204905092915050565b5f82825260208201905092915050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d6178545f8201527f78416d6f756e742e000000000000000000000000000000000000000000000000602082015250565b5f6200105560288362000fe9565b9150620010628262000ff9565b604082019050919050565b5f6020820190508181035f830152620010868162001047565b9050919050565b5f620010998262000b09565b9150620010a68362000b09565b9250828203905081811115620010c157620010c062000f0e565b5b92915050565b7f57616c6c65742062616c616e6365206578636565647320746865206d617857615f8201527f6c6c6574416d6f756e742e000000000000000000000000000000000000000000602082015250565b5f62001123602b8362000fe9565b91506200113082620010c7565b604082019050919050565b5f6020820190508181035f830152620011548162001115565b9050919050565b5f620011678262000b09565b9150620011748362000b09565b92508282019050808211156200118f576200118e62000f0e565b5b92915050565b620011a08162000b09565b82525050565b5f606082019050620011bb5f83018662000ee2565b620011ca602083018562001195565b620011d9604083018462001195565b949350505050565b5f602082019050620011f65f83018462001195565b92915050565b6121ef806200120a5f395ff3fe608060405234801561000f575f80fd5b50600436106101cd575f3560e01c80638da5cb5b11610102578063d2fcc001116100a0578063ec28438a1161006f578063ec28438a1461052d578063f2fde38b14610549578063f3fef3a314610565578063f887ea4014610581576101cd565b8063d2fcc001146104a9578063d4c989d3146104c5578063dd62ed3e146104e1578063df8408fe14610511576101cd565b8063a9059cbb116100dc578063a9059cbb14610421578063aa4bde2814610451578063acb2ad6f1461046f578063c0d786551461048d576101cd565b80638da5cb5b146103c95780638f02bb5b146103e757806395d89b4114610403576101cd565b80635342acb41161016f57806370a082311161014957806370a0823114610355578063715018a6146103855780638b4cee081461038f5780638c0b5e22146103ab576101cd565b80635342acb4146102c5578063658c27a9146102f55780636dd3d39f14610325576101cd565b806323b872dd116101ab57806323b872dd1461023d57806327a14fc21461026d5780632b14ca5614610289578063313ce567146102a7576101cd565b806306fdde03146101d1578063095ea7b3146101ef57806318160ddd1461021f575b5f80fd5b6101d961059f565b6040516101e69190611922565b60405180910390f35b610209600480360381019061020491906119d3565b61062f565b6040516102169190611a2b565b60405180910390f35b610227610651565b6040516102349190611a53565b60405180910390f35b61025760048036038101906102529190611a6c565b61065a565b6040516102649190611a2b565b60405180910390f35b61028760048036038101906102829190611abc565b610688565b005b6102916106fc565b60405161029e9190611a53565b60405180910390f35b6102af610702565b6040516102bc9190611b02565b60405180910390f35b6102df60048036038101906102da9190611b1b565b61070a565b6040516102ec9190611a2b565b60405180910390f35b61030f600480360381019061030a9190611b1b565b610727565b60405161031c9190611a2b565b60405180910390f35b61033f600480360381019061033a9190611b1b565b610744565b60405161034c9190611a2b565b60405180910390f35b61036f600480360381019061036a9190611b1b565b610761565b60405161037c9190611a53565b60405180910390f35b61038d6107a6565b005b6103a960048036038101906103a49190611abc565b6107b9565b005b6103b361080f565b6040516103c09190611a53565b60405180910390f35b6103d1610815565b6040516103de9190611b55565b60405180910390f35b61040160048036038101906103fc9190611abc565b61083d565b005b61040b610893565b6040516104189190611922565b60405180910390f35b61043b600480360381019061043691906119d3565b610923565b6040516104489190611a2b565b60405180910390f35b610459610945565b6040516104669190611a53565b60405180910390f35b61047761094b565b6040516104849190611a53565b60405180910390f35b6104a760048036038101906104a29190611b1b565b610951565b005b6104c360048036038101906104be9190611b98565b610c89565b005b6104df60048036038101906104da9190611b98565b610ce9565b005b6104fb60048036038101906104f69190611bd6565b610d49565b6040516105089190611a53565b60405180910390f35b61052b60048036038101906105269190611b98565b610dcb565b005b61054760048036038101906105429190611abc565b610e2b565b005b610563600480360381019061055e9190611b1b565b610e9e565b005b61057f600480360381019061057a91906119d3565b610f22565b005b610589610f39565b6040516105969190611b55565b60405180910390f35b6060600380546105ae90611c41565b80601f01602080910402602001604051908101604052809291908181526020018280546105da90611c41565b80156106255780601f106105fc57610100808354040283529160200191610625565b820191905f5260205f20905b81548152906001019060200180831161060857829003601f168201915b5050505050905090565b5f80610639610f5e565b9050610646818585610f65565b600191505092915050565b5f600254905090565b5f80610664610f5e565b9050610671858285610f77565b61067c858585611009565b60019150509392505050565b6106906110f9565b601481116106d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ca90611ce1565b60405180910390fd5b6103e8816106df610651565b6106e99190611d2c565b6106f39190611d9a565b600a8190555050565b60075481565b5f6012905090565b600b602052805f5260405f205f915054906101000a900460ff1681565b600c602052805f5260405f205f915054906101000a900460ff1681565b600d602052805f5260405f205f915054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6107ae6110f9565b6107b75f611180565b565b6107c16110f9565b6014811115610805576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107fc90611e3a565b60405180910390fd5b8060078190555050565b60095481565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6108456110f9565b6014811115610889576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088090611ec8565b60405180910390fd5b8060088190555050565b6060600480546108a290611c41565b80601f01602080910402602001604051908101604052809291908181526020018280546108ce90611c41565b80156109195780601f106108f057610100808354040283529160200191610919565b820191905f5260205f20905b8154815290600101906020018083116108fc57829003601f168201915b5050505050905090565b5f8061092d610f5e565b905061093a818585611009565b600191505092915050565b600a5481565b60085481565b6109596110f9565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109df90611f56565b60405180910390fd5b5f600b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505f600c5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505f600d5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600d5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610c916110f9565b80600d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b610cf16110f9565b80600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610dd36110f9565b80600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b610e336110f9565b5f8111610e75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6c90611fe4565b60405180910390fd5b6103e881610e81610651565b610e8b9190611d2c565b610e959190611d9a565b60098190555050565b610ea66110f9565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f16575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610f0d9190611b55565b60405180910390fd5b610f1f81611180565b50565b610f2a6110f9565b610f35308383611243565b5050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f33905090565b610f72838383600161145c565b505050565b5f610f828484610d49565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110035781811015610ff4578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610feb93929190612002565b60405180910390fd5b61100284848484035f61145c565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611079575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016110709190611b55565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110e9575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016110e09190611b55565b60405180910390fd5b6110f483838361162b565b505050565b611101610f5e565b73ffffffffffffffffffffffffffffffffffffffff1661111f610815565b73ffffffffffffffffffffffffffffffffffffffff161461117e57611142610f5e565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016111759190611b55565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611293578060025f8282546112879190612037565b92505081905550611361565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561131c578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161131393929190612002565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113a8578060025f82825403925050819055506113f2565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161144f9190611a53565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036114cc575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016114c39190611b55565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361153c575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016115339190611b55565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015611625578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161161c9190611a53565b60405180910390a35b50505050565b600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166116bf576009548111156116be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b5906120da565b60405180910390fd5b5b600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166117ec5760065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117a8575f60075411156117a3575f60646007548361177c9190611d2c565b6117869190611d9a565b9050808261179491906120f8565b91506117a1843083611243565b505b6117eb565b5f60085411156117ea575f6064600854836117c39190611d2c565b6117cd9190611d9a565b905080826117db91906120f8565b91506117e8843083611243565b505b5b5b6117f7838383611243565b600d5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661189357600a5461185183610761565b1115611892576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118899061219b565b60405180910390fd5b5b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156118cf5780820151818401526020810190506118b4565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6118f482611898565b6118fe81856118a2565b935061190e8185602086016118b2565b611917816118da565b840191505092915050565b5f6020820190508181035f83015261193a81846118ea565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61196f82611946565b9050919050565b61197f81611965565b8114611989575f80fd5b50565b5f8135905061199a81611976565b92915050565b5f819050919050565b6119b2816119a0565b81146119bc575f80fd5b50565b5f813590506119cd816119a9565b92915050565b5f80604083850312156119e9576119e8611942565b5b5f6119f68582860161198c565b9250506020611a07858286016119bf565b9150509250929050565b5f8115159050919050565b611a2581611a11565b82525050565b5f602082019050611a3e5f830184611a1c565b92915050565b611a4d816119a0565b82525050565b5f602082019050611a665f830184611a44565b92915050565b5f805f60608486031215611a8357611a82611942565b5b5f611a908682870161198c565b9350506020611aa18682870161198c565b9250506040611ab2868287016119bf565b9150509250925092565b5f60208284031215611ad157611ad0611942565b5b5f611ade848285016119bf565b91505092915050565b5f60ff82169050919050565b611afc81611ae7565b82525050565b5f602082019050611b155f830184611af3565b92915050565b5f60208284031215611b3057611b2f611942565b5b5f611b3d8482850161198c565b91505092915050565b611b4f81611965565b82525050565b5f602082019050611b685f830184611b46565b92915050565b611b7781611a11565b8114611b81575f80fd5b50565b5f81359050611b9281611b6e565b92915050565b5f8060408385031215611bae57611bad611942565b5b5f611bbb8582860161198c565b9250506020611bcc85828601611b84565b9150509250929050565b5f8060408385031215611bec57611beb611942565b5b5f611bf98582860161198c565b9250506020611c0a8582860161198c565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611c5857607f821691505b602082108103611c6b57611c6a611c14565b5b50919050565b7f4d61782077616c6c657420616d6f756e74206d757374206265206772656174655f8201527f72207468616e2032252e00000000000000000000000000000000000000000000602082015250565b5f611ccb602a836118a2565b9150611cd682611c71565b604082019050919050565b5f6020820190508181035f830152611cf881611cbf565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611d36826119a0565b9150611d41836119a0565b9250828202611d4f816119a0565b91508282048414831517611d6657611d65611cff565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f611da4826119a0565b9150611daf836119a0565b925082611dbf57611dbe611d6d565b5b828204905092915050565b7f53656c6c206665652063616e6e6f742062652067726561746572207468616e205f8201527f3230252e00000000000000000000000000000000000000000000000000000000602082015250565b5f611e246024836118a2565b9150611e2f82611dca565b604082019050919050565b5f6020820190508181035f830152611e5181611e18565b9050919050565b7f5472616e73666572206665652063616e6e6f74206265206772656174657220745f8201527f68616e203230252e000000000000000000000000000000000000000000000000602082015250565b5f611eb26028836118a2565b9150611ebd82611e58565b604082019050919050565b5f6020820190508181035f830152611edf81611ea6565b9050919050565b7f54686520726f7574657220616c726561647920686173207468617420616464725f8201527f6573732e00000000000000000000000000000000000000000000000000000000602082015250565b5f611f406024836118a2565b9150611f4b82611ee6565b604082019050919050565b5f6020820190508181035f830152611f6d81611f34565b9050919050565b7f4d617820747820616d6f756e74206d75737420626520677265617465722074685f8201527f616e20302e31252e000000000000000000000000000000000000000000000000602082015250565b5f611fce6028836118a2565b9150611fd982611f74565b604082019050919050565b5f6020820190508181035f830152611ffb81611fc2565b9050919050565b5f6060820190506120155f830186611b46565b6120226020830185611a44565b61202f6040830184611a44565b949350505050565b5f612041826119a0565b915061204c836119a0565b925082820190508082111561206457612063611cff565b5b92915050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d6178545f8201527f78416d6f756e742e000000000000000000000000000000000000000000000000602082015250565b5f6120c46028836118a2565b91506120cf8261206a565b604082019050919050565b5f6020820190508181035f8301526120f1816120b8565b9050919050565b5f612102826119a0565b915061210d836119a0565b925082820390508181111561212557612124611cff565b5b92915050565b7f57616c6c65742062616c616e6365206578636565647320746865206d617857615f8201527f6c6c6574416d6f756e742e000000000000000000000000000000000000000000602082015250565b5f612185602b836118a2565b91506121908261212b565b604082019050919050565b5f6020820190508181035f8301526121b281612179565b905091905056fea264697066735822122045ce465d1b694ee358dd5cc164e388682f4663497e41cc45f40b09e729d127c864736f6c63430008160033000000000000000000000000000000000000000000000000000000001dcd6500

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106101cd575f3560e01c80638da5cb5b11610102578063d2fcc001116100a0578063ec28438a1161006f578063ec28438a1461052d578063f2fde38b14610549578063f3fef3a314610565578063f887ea4014610581576101cd565b8063d2fcc001146104a9578063d4c989d3146104c5578063dd62ed3e146104e1578063df8408fe14610511576101cd565b8063a9059cbb116100dc578063a9059cbb14610421578063aa4bde2814610451578063acb2ad6f1461046f578063c0d786551461048d576101cd565b80638da5cb5b146103c95780638f02bb5b146103e757806395d89b4114610403576101cd565b80635342acb41161016f57806370a082311161014957806370a0823114610355578063715018a6146103855780638b4cee081461038f5780638c0b5e22146103ab576101cd565b80635342acb4146102c5578063658c27a9146102f55780636dd3d39f14610325576101cd565b806323b872dd116101ab57806323b872dd1461023d57806327a14fc21461026d5780632b14ca5614610289578063313ce567146102a7576101cd565b806306fdde03146101d1578063095ea7b3146101ef57806318160ddd1461021f575b5f80fd5b6101d961059f565b6040516101e69190611922565b60405180910390f35b610209600480360381019061020491906119d3565b61062f565b6040516102169190611a2b565b60405180910390f35b610227610651565b6040516102349190611a53565b60405180910390f35b61025760048036038101906102529190611a6c565b61065a565b6040516102649190611a2b565b60405180910390f35b61028760048036038101906102829190611abc565b610688565b005b6102916106fc565b60405161029e9190611a53565b60405180910390f35b6102af610702565b6040516102bc9190611b02565b60405180910390f35b6102df60048036038101906102da9190611b1b565b61070a565b6040516102ec9190611a2b565b60405180910390f35b61030f600480360381019061030a9190611b1b565b610727565b60405161031c9190611a2b565b60405180910390f35b61033f600480360381019061033a9190611b1b565b610744565b60405161034c9190611a2b565b60405180910390f35b61036f600480360381019061036a9190611b1b565b610761565b60405161037c9190611a53565b60405180910390f35b61038d6107a6565b005b6103a960048036038101906103a49190611abc565b6107b9565b005b6103b361080f565b6040516103c09190611a53565b60405180910390f35b6103d1610815565b6040516103de9190611b55565b60405180910390f35b61040160048036038101906103fc9190611abc565b61083d565b005b61040b610893565b6040516104189190611922565b60405180910390f35b61043b600480360381019061043691906119d3565b610923565b6040516104489190611a2b565b60405180910390f35b610459610945565b6040516104669190611a53565b60405180910390f35b61047761094b565b6040516104849190611a53565b60405180910390f35b6104a760048036038101906104a29190611b1b565b610951565b005b6104c360048036038101906104be9190611b98565b610c89565b005b6104df60048036038101906104da9190611b98565b610ce9565b005b6104fb60048036038101906104f69190611bd6565b610d49565b6040516105089190611a53565b60405180910390f35b61052b60048036038101906105269190611b98565b610dcb565b005b61054760048036038101906105429190611abc565b610e2b565b005b610563600480360381019061055e9190611b1b565b610e9e565b005b61057f600480360381019061057a91906119d3565b610f22565b005b610589610f39565b6040516105969190611b55565b60405180910390f35b6060600380546105ae90611c41565b80601f01602080910402602001604051908101604052809291908181526020018280546105da90611c41565b80156106255780601f106105fc57610100808354040283529160200191610625565b820191905f5260205f20905b81548152906001019060200180831161060857829003601f168201915b5050505050905090565b5f80610639610f5e565b9050610646818585610f65565b600191505092915050565b5f600254905090565b5f80610664610f5e565b9050610671858285610f77565b61067c858585611009565b60019150509392505050565b6106906110f9565b601481116106d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ca90611ce1565b60405180910390fd5b6103e8816106df610651565b6106e99190611d2c565b6106f39190611d9a565b600a8190555050565b60075481565b5f6012905090565b600b602052805f5260405f205f915054906101000a900460ff1681565b600c602052805f5260405f205f915054906101000a900460ff1681565b600d602052805f5260405f205f915054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6107ae6110f9565b6107b75f611180565b565b6107c16110f9565b6014811115610805576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107fc90611e3a565b60405180910390fd5b8060078190555050565b60095481565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6108456110f9565b6014811115610889576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088090611ec8565b60405180910390fd5b8060088190555050565b6060600480546108a290611c41565b80601f01602080910402602001604051908101604052809291908181526020018280546108ce90611c41565b80156109195780601f106108f057610100808354040283529160200191610919565b820191905f5260205f20905b8154815290600101906020018083116108fc57829003601f168201915b5050505050905090565b5f8061092d610f5e565b905061093a818585611009565b600191505092915050565b600a5481565b60085481565b6109596110f9565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109df90611f56565b60405180910390fd5b5f600b5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505f600c5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505f600d5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600d5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610c916110f9565b80600d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b610cf16110f9565b80600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610dd36110f9565b80600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b610e336110f9565b5f8111610e75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6c90611fe4565b60405180910390fd5b6103e881610e81610651565b610e8b9190611d2c565b610e959190611d9a565b60098190555050565b610ea66110f9565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f16575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610f0d9190611b55565b60405180910390fd5b610f1f81611180565b50565b610f2a6110f9565b610f35308383611243565b5050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f33905090565b610f72838383600161145c565b505050565b5f610f828484610d49565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110035781811015610ff4578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610feb93929190612002565b60405180910390fd5b61100284848484035f61145c565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611079575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016110709190611b55565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110e9575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016110e09190611b55565b60405180910390fd5b6110f483838361162b565b505050565b611101610f5e565b73ffffffffffffffffffffffffffffffffffffffff1661111f610815565b73ffffffffffffffffffffffffffffffffffffffff161461117e57611142610f5e565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016111759190611b55565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611293578060025f8282546112879190612037565b92505081905550611361565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561131c578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161131393929190612002565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113a8578060025f82825403925050819055506113f2565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161144f9190611a53565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036114cc575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016114c39190611b55565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361153c575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016115339190611b55565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015611625578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161161c9190611a53565b60405180910390a35b50505050565b600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166116bf576009548111156116be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b5906120da565b60405180910390fd5b5b600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166117ec5760065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117a8575f60075411156117a3575f60646007548361177c9190611d2c565b6117869190611d9a565b9050808261179491906120f8565b91506117a1843083611243565b505b6117eb565b5f60085411156117ea575f6064600854836117c39190611d2c565b6117cd9190611d9a565b905080826117db91906120f8565b91506117e8843083611243565b505b5b5b6117f7838383611243565b600d5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661189357600a5461185183610761565b1115611892576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118899061219b565b60405180910390fd5b5b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156118cf5780820151818401526020810190506118b4565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6118f482611898565b6118fe81856118a2565b935061190e8185602086016118b2565b611917816118da565b840191505092915050565b5f6020820190508181035f83015261193a81846118ea565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61196f82611946565b9050919050565b61197f81611965565b8114611989575f80fd5b50565b5f8135905061199a81611976565b92915050565b5f819050919050565b6119b2816119a0565b81146119bc575f80fd5b50565b5f813590506119cd816119a9565b92915050565b5f80604083850312156119e9576119e8611942565b5b5f6119f68582860161198c565b9250506020611a07858286016119bf565b9150509250929050565b5f8115159050919050565b611a2581611a11565b82525050565b5f602082019050611a3e5f830184611a1c565b92915050565b611a4d816119a0565b82525050565b5f602082019050611a665f830184611a44565b92915050565b5f805f60608486031215611a8357611a82611942565b5b5f611a908682870161198c565b9350506020611aa18682870161198c565b9250506040611ab2868287016119bf565b9150509250925092565b5f60208284031215611ad157611ad0611942565b5b5f611ade848285016119bf565b91505092915050565b5f60ff82169050919050565b611afc81611ae7565b82525050565b5f602082019050611b155f830184611af3565b92915050565b5f60208284031215611b3057611b2f611942565b5b5f611b3d8482850161198c565b91505092915050565b611b4f81611965565b82525050565b5f602082019050611b685f830184611b46565b92915050565b611b7781611a11565b8114611b81575f80fd5b50565b5f81359050611b9281611b6e565b92915050565b5f8060408385031215611bae57611bad611942565b5b5f611bbb8582860161198c565b9250506020611bcc85828601611b84565b9150509250929050565b5f8060408385031215611bec57611beb611942565b5b5f611bf98582860161198c565b9250506020611c0a8582860161198c565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611c5857607f821691505b602082108103611c6b57611c6a611c14565b5b50919050565b7f4d61782077616c6c657420616d6f756e74206d757374206265206772656174655f8201527f72207468616e2032252e00000000000000000000000000000000000000000000602082015250565b5f611ccb602a836118a2565b9150611cd682611c71565b604082019050919050565b5f6020820190508181035f830152611cf881611cbf565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611d36826119a0565b9150611d41836119a0565b9250828202611d4f816119a0565b91508282048414831517611d6657611d65611cff565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f611da4826119a0565b9150611daf836119a0565b925082611dbf57611dbe611d6d565b5b828204905092915050565b7f53656c6c206665652063616e6e6f742062652067726561746572207468616e205f8201527f3230252e00000000000000000000000000000000000000000000000000000000602082015250565b5f611e246024836118a2565b9150611e2f82611dca565b604082019050919050565b5f6020820190508181035f830152611e5181611e18565b9050919050565b7f5472616e73666572206665652063616e6e6f74206265206772656174657220745f8201527f68616e203230252e000000000000000000000000000000000000000000000000602082015250565b5f611eb26028836118a2565b9150611ebd82611e58565b604082019050919050565b5f6020820190508181035f830152611edf81611ea6565b9050919050565b7f54686520726f7574657220616c726561647920686173207468617420616464725f8201527f6573732e00000000000000000000000000000000000000000000000000000000602082015250565b5f611f406024836118a2565b9150611f4b82611ee6565b604082019050919050565b5f6020820190508181035f830152611f6d81611f34565b9050919050565b7f4d617820747820616d6f756e74206d75737420626520677265617465722074685f8201527f616e20302e31252e000000000000000000000000000000000000000000000000602082015250565b5f611fce6028836118a2565b9150611fd982611f74565b604082019050919050565b5f6020820190508181035f830152611ffb81611fc2565b9050919050565b5f6060820190506120155f830186611b46565b6120226020830185611a44565b61202f6040830184611a44565b949350505050565b5f612041826119a0565b915061204c836119a0565b925082820190508082111561206457612063611cff565b5b92915050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d6178545f8201527f78416d6f756e742e000000000000000000000000000000000000000000000000602082015250565b5f6120c46028836118a2565b91506120cf8261206a565b604082019050919050565b5f6020820190508181035f8301526120f1816120b8565b9050919050565b5f612102826119a0565b915061210d836119a0565b925082820390508181111561212557612124611cff565b5b92915050565b7f57616c6c65742062616c616e6365206578636565647320746865206d617857615f8201527f6c6c6574416d6f756e742e000000000000000000000000000000000000000000602082015250565b5f612185602b836118a2565b91506121908261212b565b604082019050919050565b5f6020820190508181035f8301526121b281612179565b905091905056fea264697066735822122045ce465d1b694ee358dd5cc164e388682f4663497e41cc45f40b09e729d127c864736f6c63430008160033

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

000000000000000000000000000000000000000000000000000000001dcd6500

-----Decoded View---------------
Arg [0] : initialTotalSupply (uint256): 500000000

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000001dcd6500


Deployed Bytecode Sourcemap

26382:3885:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16936:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19229:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18038:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19997:249;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29907:227;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26451:27;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17889:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26595:49;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26651:51;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26709:55;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18200:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3586:103;;;:::i;:::-;;29331:162;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26523:26;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2911:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29501:174;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17146:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18523:182;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26556:30;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26485:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28860:463;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28709:143;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28566:135;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18768:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28427:131;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29683:216;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3844:220;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30142:122;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26421:21;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16936:91;16981:13;17014:5;17007:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16936:91;:::o;19229:190::-;19302:4;19319:13;19335:12;:10;:12::i;:::-;19319:28;;19358:31;19367:5;19374:7;19383:5;19358:8;:31::i;:::-;19407:4;19400:11;;;19229:190;;;;:::o;18038:99::-;18090:7;18117:12;;18110:19;;18038:99;:::o;19997:249::-;20084:4;20101:15;20119:12;:10;:12::i;:::-;20101:30;;20142:37;20158:4;20164:7;20173:5;20142:15;:37::i;:::-;20190:26;20200:4;20206:2;20210:5;20190:9;:26::i;:::-;20234:4;20227:11;;;19997:249;;;;;:::o;29907:227::-;2797:13;:11;:13::i;:::-;30012:2:::1;29996:13;:18;29988:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;30122:4;30106:13;30090;:11;:13::i;:::-;:29;;;;:::i;:::-;:36;;;;:::i;:::-;30072:15;:54;;;;29907:227:::0;:::o;26451:27::-;;;;:::o;17889:84::-;17938:5;17963:2;17956:9;;17889:84;:::o;26595:49::-;;;;;;;;;;;;;;;;;;;;;;:::o;26651:51::-;;;;;;;;;;;;;;;;;;;;;;:::o;26709:55::-;;;;;;;;;;;;;;;;;;;;;;:::o;18200:118::-;18265:7;18292:9;:18;18302:7;18292:18;;;;;;;;;;;;;;;;18285:25;;18200:118;;;:::o;3586:103::-;2797:13;:11;:13::i;:::-;3651:30:::1;3678:1;3651:18;:30::i;:::-;3586:103::o:0;29331:162::-;2797:13;:11;:13::i;:::-;29415:2:::1;29405:6;:12;;29397:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;29479:6;29469:7;:16;;;;29331:162:::0;:::o;26523:26::-;;;;:::o;2911:87::-;2957:7;2984:6;;;;;;;;;;;2977:13;;2911:87;:::o;29501:174::-;2797:13;:11;:13::i;:::-;29589:2:::1;29579:6;:12;;29571:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;29661:6;29647:11;:20;;;;29501:174:::0;:::o;17146:95::-;17193:13;17226:7;17219:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17146:95;:::o;18523:182::-;18592:4;18609:13;18625:12;:10;:12::i;:::-;18609:28;;18648:27;18658:5;18665:2;18669:5;18648:9;:27::i;:::-;18693:4;18686:11;;;18523:182;;;;:::o;26556:30::-;;;;:::o;26485:31::-;;;;:::o;28860:463::-;2797:13;:11;:13::i;:::-;28949:6:::1;;;;;;;;;;;28936:19;;:9;:19;;::::0;28928:68:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;29037:5;29009:17;:25;29027:6;;;;;;;;;;;29009:25;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;29083:5;29053:19;:27;29073:6;;;;;;;;;;;29053:27;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;29133:5;29099:23;:31;29123:6;;;;;;;;;;;29099:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;29182:4;29151:17;:28;29169:9;29151:28;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;29230:4;29197:19;:30;29217:9;29197:30;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;29282:4;29245:23;:34;29269:9;29245:34;;;;;;;;;;;;;;;;:41;;;;;;;;;;;;;;;;;;29306:9;29297:6;;:18;;;;;;;;;;;;;;;;;;28860:463:::0;:::o;28709:143::-;2797:13;:11;:13::i;:::-;28836:8:::1;28801:23;:32;28825:7;28801:32;;;;;;;;;;;;;;;;:43;;;;;;;;;;;;;;;;;;28709:143:::0;;:::o;28566:135::-;2797:13;:11;:13::i;:::-;28685:8:::1;28654:19;:28;28674:7;28654:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;28566:135:::0;;:::o;18768:142::-;18848:7;18875:11;:18;18887:5;18875:18;;;;;;;;;;;;;;;:27;18894:7;18875:27;;;;;;;;;;;;;;;;18868:34;;18768:142;;;;:::o;28427:131::-;2797:13;:11;:13::i;:::-;28542:8:::1;28513:17;:26;28531:7;28513:26;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;28427:131:::0;;:::o;29683:216::-;2797:13;:11;:13::i;:::-;29784:1:::1;29768:13;:17;29760:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;29887:4;29871:13;29855;:11;:13::i;:::-;:29;;;;:::i;:::-;:36;;;;:::i;:::-;29841:11;:50;;;;29683:216:::0;:::o;3844:220::-;2797:13;:11;:13::i;:::-;3949:1:::1;3929:22;;:8;:22;;::::0;3925:93:::1;;4003:1;3975:31;;;;;;;;;;;:::i;:::-;;;;;;;;3925:93;4028:28;4047:8;4028:18;:28::i;:::-;3844:220:::0;:::o;30142:122::-;2797:13;:11;:13::i;:::-;30217:39:::1;30239:4;30246:2;30250:5;30217:13;:39::i;:::-;30142:122:::0;;:::o;26421:21::-;;;;;;;;;;;;;:::o;865:98::-;918:7;945:10;938:17;;865:98;:::o;24056:130::-;24141:37;24150:5;24157:7;24166:5;24173:4;24141:8;:37::i;:::-;24056:130;;;:::o;25772:487::-;25872:24;25899:25;25909:5;25916:7;25899:9;:25::i;:::-;25872:52;;25959:17;25939:16;:37;25935:317;;26016:5;25997:16;:24;25993:132;;;26076:7;26085:16;26103:5;26049:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;25993:132;26168:57;26177:5;26184:7;26212:5;26193:16;:24;26219:5;26168:8;:57::i;:::-;25935:317;25861:398;25772:487;;;:::o;20631:308::-;20731:1;20715:18;;:4;:18;;;20711:88;;20784:1;20757:30;;;;;;;;;;;:::i;:::-;;;;;;;;20711:88;20827:1;20813:16;;:2;:16;;;20809:88;;20882:1;20853:32;;;;;;;;;;;:::i;:::-;;;;;;;;20809:88;20907:24;20915:4;20921:2;20925:5;20907:7;:24::i;:::-;20631:308;;;:::o;3076:166::-;3147:12;:10;:12::i;:::-;3136:23;;:7;:5;:7::i;:::-;:23;;;3132:103;;3210:12;:10;:12::i;:::-;3183:40;;;;;;;;;;;:::i;:::-;;;;;;;;3132:103;3076:166::o;4224:191::-;4298:16;4317:6;;;;;;;;;;;4298:25;;4343:8;4334:6;;:17;;;;;;;;;;;;;;;;;;4398:8;4367:40;;4388:8;4367:40;;;;;;;;;;;;4287:128;4224:191;:::o;21263:1135::-;21369:1;21353:18;;:4;:18;;;21349:552;;21507:5;21491:12;;:21;;;;;;;:::i;:::-;;;;;;;;21349:552;;;21545:19;21567:9;:15;21577:4;21567:15;;;;;;;;;;;;;;;;21545:37;;21615:5;21601:11;:19;21597:117;;;21673:4;21679:11;21692:5;21648:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;21597:117;21869:5;21855:11;:19;21837:9;:15;21847:4;21837:15;;;;;;;;;;;;;;;:37;;;;21530:371;21349:552;21931:1;21917:16;;:2;:16;;;21913:435;;22099:5;22083:12;;:21;;;;;;;;;;;21913:435;;;22316:5;22299:9;:13;22309:2;22299:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;21913:435;22380:2;22365:25;;22374:4;22365:25;;;22384:5;22365:25;;;;;;:::i;:::-;;;;;;;;21263:1135;;;:::o;25037:443::-;25167:1;25150:19;;:5;:19;;;25146:91;;25222:1;25193:32;;;;;;;;;;;:::i;:::-;;;;;;;;25146:91;25270:1;25251:21;;:7;:21;;;25247:92;;25324:1;25296:31;;;;;;;;;;;:::i;:::-;;;;;;;;25247:92;25379:5;25349:11;:18;25361:5;25349:18;;;;;;;;;;;;;;;:27;25368:7;25349:27;;;;;;;;;;;;;;;:35;;;;25399:9;25395:78;;;25446:7;25430:31;;25439:5;25430:31;;;25455:5;25430:31;;;;;;:::i;:::-;;;;;;;;25395:78;25037:443;;;;:::o;27487:932::-;27579:19;:25;27599:4;27579:25;;;;;;;;;;;;;;;;;;;;;;;;;27574:132;;27638:11;;27629:5;:20;;27621:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27574:132;27723:17;:23;27741:4;27723:23;;;;;;;;;;;;;;;;;;;;;;;;;27718:490;;27773:6;;;;;;;;;;;27767:12;;:2;:12;;;27763:434;;27814:1;27804:7;;:11;27800:192;;;27840:11;27872:3;27862:7;;27854:5;:15;;;;:::i;:::-;:21;;;;:::i;:::-;27840:35;;27907:3;27898:12;;;;;:::i;:::-;;;27933:39;27947:4;27961;27968:3;27933:13;:39::i;:::-;27817:175;27800:192;27763:434;;;28031:1;28017:11;;:15;28013:184;;;28053:11;28089:3;28075:11;;28067:5;:19;;;;:::i;:::-;:25;;;;:::i;:::-;28053:39;;28120:3;28111:12;;;;;:::i;:::-;;;28142:39;28156:4;28170;28177:3;28142:13;:39::i;:::-;28034:163;28013:184;27763:434;27718:490;28220:30;28234:4;28240:2;28244:5;28220:13;:30::i;:::-;28268:23;:27;28292:2;28268:27;;;;;;;;;;;;;;;;;;;;;;;;;28263:149;;28337:15;;28320:13;28330:2;28320:9;:13::i;:::-;:32;;28312:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;28263:149;27487:932;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:329::-;4482:6;4531:2;4519:9;4510:7;4506:23;4502:32;4499:119;;;4537:79;;:::i;:::-;4499:119;4657:1;4682:53;4727:7;4718:6;4707:9;4703:22;4682:53;:::i;:::-;4672:63;;4628:117;4423:329;;;;:::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:329::-;5247:6;5296:2;5284:9;5275:7;5271:23;5267:32;5264:119;;;5302:79;;:::i;:::-;5264:119;5422:1;5447:53;5492:7;5483:6;5472:9;5468:22;5447:53;:::i;:::-;5437:63;;5393:117;5188:329;;;;:::o;5523:118::-;5610:24;5628:5;5610:24;:::i;:::-;5605:3;5598:37;5523:118;;:::o;5647:222::-;5740:4;5778:2;5767:9;5763:18;5755:26;;5791:71;5859:1;5848:9;5844:17;5835:6;5791:71;:::i;:::-;5647:222;;;;:::o;5875:116::-;5945:21;5960:5;5945:21;:::i;:::-;5938:5;5935:32;5925:60;;5981:1;5978;5971:12;5925:60;5875:116;:::o;5997:133::-;6040:5;6078:6;6065:20;6056:29;;6094:30;6118:5;6094:30;:::i;:::-;5997:133;;;;:::o;6136:468::-;6201:6;6209;6258:2;6246:9;6237:7;6233:23;6229:32;6226:119;;;6264:79;;:::i;:::-;6226:119;6384:1;6409:53;6454:7;6445:6;6434:9;6430:22;6409:53;:::i;:::-;6399:63;;6355:117;6511:2;6537:50;6579:7;6570:6;6559:9;6555:22;6537:50;:::i;:::-;6527:60;;6482:115;6136:468;;;;;:::o;6610:474::-;6678:6;6686;6735:2;6723:9;6714:7;6710:23;6706:32;6703:119;;;6741:79;;:::i;:::-;6703:119;6861:1;6886:53;6931:7;6922:6;6911:9;6907:22;6886:53;:::i;:::-;6876:63;;6832:117;6988:2;7014:53;7059:7;7050:6;7039:9;7035:22;7014:53;:::i;:::-;7004:63;;6959:118;6610:474;;;;;:::o;7090:180::-;7138:77;7135:1;7128:88;7235:4;7232:1;7225:15;7259:4;7256:1;7249:15;7276:320;7320:6;7357:1;7351:4;7347:12;7337:22;;7404:1;7398:4;7394:12;7425:18;7415:81;;7481:4;7473:6;7469:17;7459:27;;7415:81;7543:2;7535:6;7532:14;7512:18;7509:38;7506:84;;7562:18;;:::i;:::-;7506:84;7327:269;7276:320;;;:::o;7602:229::-;7742:34;7738:1;7730:6;7726:14;7719:58;7811:12;7806:2;7798:6;7794:15;7787:37;7602:229;:::o;7837:366::-;7979:3;8000:67;8064:2;8059:3;8000:67;:::i;:::-;7993:74;;8076:93;8165:3;8076:93;:::i;:::-;8194:2;8189:3;8185:12;8178:19;;7837:366;;;:::o;8209:419::-;8375:4;8413:2;8402:9;8398:18;8390:26;;8462:9;8456:4;8452:20;8448:1;8437:9;8433:17;8426:47;8490:131;8616:4;8490:131;:::i;:::-;8482:139;;8209:419;;;:::o;8634:180::-;8682:77;8679:1;8672:88;8779:4;8776:1;8769:15;8803:4;8800:1;8793:15;8820:410;8860:7;8883:20;8901:1;8883:20;:::i;:::-;8878:25;;8917:20;8935:1;8917:20;:::i;:::-;8912:25;;8972:1;8969;8965:9;8994:30;9012:11;8994:30;:::i;:::-;8983:41;;9173:1;9164:7;9160:15;9157:1;9154:22;9134:1;9127:9;9107:83;9084:139;;9203:18;;:::i;:::-;9084:139;8868:362;8820:410;;;;:::o;9236:180::-;9284:77;9281:1;9274:88;9381:4;9378:1;9371:15;9405:4;9402:1;9395:15;9422:185;9462:1;9479:20;9497:1;9479:20;:::i;:::-;9474:25;;9513:20;9531:1;9513:20;:::i;:::-;9508:25;;9552:1;9542:35;;9557:18;;:::i;:::-;9542:35;9599:1;9596;9592:9;9587:14;;9422:185;;;;:::o;9613:223::-;9753:34;9749:1;9741:6;9737:14;9730:58;9822:6;9817:2;9809:6;9805:15;9798:31;9613:223;:::o;9842:366::-;9984:3;10005:67;10069:2;10064:3;10005:67;:::i;:::-;9998:74;;10081:93;10170:3;10081:93;:::i;:::-;10199:2;10194:3;10190:12;10183:19;;9842:366;;;:::o;10214:419::-;10380:4;10418:2;10407:9;10403:18;10395:26;;10467:9;10461:4;10457:20;10453:1;10442:9;10438:17;10431:47;10495:131;10621:4;10495:131;:::i;:::-;10487:139;;10214:419;;;:::o;10639:227::-;10779:34;10775:1;10767:6;10763:14;10756:58;10848:10;10843:2;10835:6;10831:15;10824:35;10639:227;:::o;10872:366::-;11014:3;11035:67;11099:2;11094:3;11035:67;:::i;:::-;11028:74;;11111:93;11200:3;11111:93;:::i;:::-;11229:2;11224:3;11220:12;11213:19;;10872:366;;;:::o;11244:419::-;11410:4;11448:2;11437:9;11433:18;11425:26;;11497:9;11491:4;11487:20;11483:1;11472:9;11468:17;11461:47;11525:131;11651:4;11525:131;:::i;:::-;11517:139;;11244:419;;;:::o;11669:223::-;11809:34;11805:1;11797:6;11793:14;11786:58;11878:6;11873:2;11865:6;11861:15;11854:31;11669:223;:::o;11898:366::-;12040:3;12061:67;12125:2;12120:3;12061:67;:::i;:::-;12054:74;;12137:93;12226:3;12137:93;:::i;:::-;12255:2;12250:3;12246:12;12239:19;;11898:366;;;:::o;12270:419::-;12436:4;12474:2;12463:9;12459:18;12451:26;;12523:9;12517:4;12513:20;12509:1;12498:9;12494:17;12487:47;12551:131;12677:4;12551:131;:::i;:::-;12543:139;;12270:419;;;:::o;12695:227::-;12835:34;12831:1;12823:6;12819:14;12812:58;12904:10;12899:2;12891:6;12887:15;12880:35;12695:227;:::o;12928:366::-;13070:3;13091:67;13155:2;13150:3;13091:67;:::i;:::-;13084:74;;13167:93;13256:3;13167:93;:::i;:::-;13285:2;13280:3;13276:12;13269:19;;12928:366;;;:::o;13300:419::-;13466:4;13504:2;13493:9;13489:18;13481:26;;13553:9;13547:4;13543:20;13539:1;13528:9;13524:17;13517:47;13581:131;13707:4;13581:131;:::i;:::-;13573:139;;13300:419;;;:::o;13725:442::-;13874:4;13912:2;13901:9;13897:18;13889:26;;13925:71;13993:1;13982:9;13978:17;13969:6;13925:71;:::i;:::-;14006:72;14074:2;14063:9;14059:18;14050:6;14006:72;:::i;:::-;14088;14156:2;14145:9;14141:18;14132:6;14088:72;:::i;:::-;13725:442;;;;;;:::o;14173:191::-;14213:3;14232:20;14250:1;14232:20;:::i;:::-;14227:25;;14266:20;14284:1;14266:20;:::i;:::-;14261:25;;14309:1;14306;14302:9;14295:16;;14330:3;14327:1;14324:10;14321:36;;;14337:18;;:::i;:::-;14321:36;14173:191;;;;:::o;14370:227::-;14510:34;14506:1;14498:6;14494:14;14487:58;14579:10;14574:2;14566:6;14562:15;14555:35;14370:227;:::o;14603:366::-;14745:3;14766:67;14830:2;14825:3;14766:67;:::i;:::-;14759:74;;14842:93;14931:3;14842:93;:::i;:::-;14960:2;14955:3;14951:12;14944:19;;14603:366;;;:::o;14975:419::-;15141:4;15179:2;15168:9;15164:18;15156:26;;15228:9;15222:4;15218:20;15214:1;15203:9;15199:17;15192:47;15256:131;15382:4;15256:131;:::i;:::-;15248:139;;14975:419;;;:::o;15400:194::-;15440:4;15460:20;15478:1;15460:20;:::i;:::-;15455:25;;15494:20;15512:1;15494:20;:::i;:::-;15489:25;;15538:1;15535;15531:9;15523:17;;15562:1;15556:4;15553:11;15550:37;;;15567:18;;:::i;:::-;15550:37;15400:194;;;;:::o;15600:230::-;15740:34;15736:1;15728:6;15724:14;15717:58;15809:13;15804:2;15796:6;15792:15;15785:38;15600:230;:::o;15836:366::-;15978:3;15999:67;16063:2;16058:3;15999:67;:::i;:::-;15992:74;;16075:93;16164:3;16075:93;:::i;:::-;16193:2;16188:3;16184:12;16177:19;;15836:366;;;:::o;16208:419::-;16374:4;16412:2;16401:9;16397:18;16389:26;;16461:9;16455:4;16451:20;16447:1;16436:9;16432:17;16425:47;16489:131;16615:4;16489:131;:::i;:::-;16481:139;;16208:419;;;:::o

Swarm Source

ipfs://45ce465d1b694ee358dd5cc164e388682f4663497e41cc45f40b09e729d127c8
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.