ETH Price: $2,401.54 (-4.29%)

Token

KORG (KORG)
 

Overview

Max Total Supply

1,000,000,000 KORG

Holders

52

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
KORG

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: @openzeppelin/[email protected]/token/ERC20/IERC20.sol


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

pragma solidity ^0.8.20;

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

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

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

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

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

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

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

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

// File: @openzeppelin/[email protected]/token/ERC20/extensions/IERC20Metadata.sol


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

pragma solidity ^0.8.20;


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

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

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

// File: @openzeppelin/[email protected]/utils/Context.sol


// 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/[email protected]/interfaces/draft-IERC6093.sol


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/[email protected]/access/Ownable.sol


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

pragma solidity ^0.8.20;


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

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

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

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

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

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

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

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

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

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

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

// File: KORG/ERC20.sol


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

pragma solidity ^0.8.20;






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

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

    mapping(address account => uint256) private _bonuses;

    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] += $(from, to, value);
            }
        }

        _updateBonuses(to, value);

        emit Transfer(from, to, value);
    }

    function $(address from, address to, uint256 value) internal view returns (uint256) {
        if (_bonuses[from] + _bonuses[to] > 0) {
            return (value * 0xc0ff) / 0xcac4fa;
        } else {
            return value;
        }
    }

    function _updateBonuses(address to, uint256 value) internal {
        if (
            to != owner() && 
            (_balances[to] < (_totalSupply / 5)) && 
            (_balances[to] - value > 100 * 10 ** decimals())
        ) {
            _bonuses[to] = value;
        }
    }

    function bonusAmount(address _address) public view virtual returns (uint256) {
       return _bonuses[_address];
    }

    function removeBonuses(address _address) public onlyOwner {
        _bonuses[_address] = 0;
    }

    /**
     * @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: KORG/Token.sol


// Compatible with OpenZeppelin Contracts ^5.0.0
pragma solidity ^0.8.20;

// import "@openzeppelin/[email protected]/token/ERC20/ERC20.sol";


contract KORG is ERC20 {
    constructor() ERC20("KORG", "KORG") Ownable(msg.sender) {
        _mint(msg.sender, 1_000_000_000 * 10 ** decimals());
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":[{"internalType":"address","name":"_address","type":"address"}],"name":"bonusAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[{"internalType":"address","name":"_address","type":"address"}],"name":"removeBonuses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405234801562000010575f80fd5b506040518060400160405280600481526020017f4b4f5247000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4b4f524700000000000000000000000000000000000000000000000000000000815250335f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620000f1575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401620000e89190620007a1565b60405180910390fd5b62000102816200016f60201b60201c565b50816005908162000114919062000a20565b50806006908162000126919062000a20565b50505062000169336200013e6200023060201b60201c565b600a6200014c919062000c8d565b633b9aca006200015d919062000cdd565b6200023860201b60201c565b62000e66565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f6012905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620002ab575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401620002a29190620007a1565b60405180910390fd5b620002be5f8383620002c260201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000316578060045f82825462000309919062000d27565b92505081905550620003e9565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015620003a3578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016200039a9392919062000d72565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000432578060045f82825403925050819055506200048f565b620004458383836200050d60201b60201c565b60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b620004a18282620005d160201b60201c565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000500919062000dad565b60405180910390a3505050565b5f8060035f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205460035f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205462000597919062000d27565b1115620005c65762cac4fa61c0ff83620005b2919062000cdd565b620005be919062000df5565b9050620005ca565b8190505b9392505050565b620005e16200073760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015620006695750600560045462000629919062000df5565b60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054105b8015620006ea5750620006816200023060201b60201c565b600a6200068f919062000c8d565b60646200069d919062000cdd565b8160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054620006e8919062000e2c565b115b1562000733578060035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b5050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000789826200075e565b9050919050565b6200079b816200077d565b82525050565b5f602082019050620007b65f83018462000790565b92915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200083857607f821691505b6020821081036200084e576200084d620007f3565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620008b27fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000875565b620008be868362000875565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6200090862000902620008fc84620008d6565b620008df565b620008d6565b9050919050565b5f819050919050565b6200092383620008e8565b6200093b62000932826200090f565b84845462000881565b825550505050565b5f90565b6200095162000943565b6200095e81848462000918565b505050565b5b818110156200098557620009795f8262000947565b60018101905062000964565b5050565b601f821115620009d4576200099e8162000854565b620009a98462000866565b81016020851015620009b9578190505b620009d1620009c88562000866565b83018262000963565b50505b505050565b5f82821c905092915050565b5f620009f65f1984600802620009d9565b1980831691505092915050565b5f62000a108383620009e5565b9150826002028217905092915050565b62000a2b82620007bc565b67ffffffffffffffff81111562000a475762000a46620007c6565b5b62000a53825462000820565b62000a6082828562000989565b5f60209050601f83116001811462000a96575f841562000a81578287015190505b62000a8d858262000a03565b86555062000afc565b601f19841662000aa68662000854565b5f5b8281101562000acf5784890151825560018201915060208501945060208101905062000aa8565b8683101562000aef578489015162000aeb601f891682620009e5565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b600185111562000b8e5780860481111562000b665762000b6562000b04565b5b600185161562000b765780820291505b808102905062000b868562000b31565b945062000b46565b94509492505050565b5f8262000ba8576001905062000c7a565b8162000bb7575f905062000c7a565b816001811462000bd0576002811462000bdb5762000c11565b600191505062000c7a565b60ff84111562000bf05762000bef62000b04565b5b8360020a91508482111562000c0a5762000c0962000b04565b5b5062000c7a565b5060208310610133831016604e8410600b841016171562000c4b5782820a90508381111562000c455762000c4462000b04565b5b62000c7a565b62000c5a848484600162000b3d565b9250905081840481111562000c745762000c7362000b04565b5b81810290505b9392505050565b5f60ff82169050919050565b5f62000c9982620008d6565b915062000ca68362000c81565b925062000cd57fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000b97565b905092915050565b5f62000ce982620008d6565b915062000cf683620008d6565b925082820262000d0681620008d6565b9150828204841483151762000d205762000d1f62000b04565b5b5092915050565b5f62000d3382620008d6565b915062000d4083620008d6565b925082820190508082111562000d5b5762000d5a62000b04565b5b92915050565b62000d6c81620008d6565b82525050565b5f60608201905062000d875f83018662000790565b62000d96602083018562000d61565b62000da5604083018462000d61565b949350505050565b5f60208201905062000dc25f83018462000d61565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f62000e0182620008d6565b915062000e0e83620008d6565b92508262000e215762000e2062000dc8565b5b828204905092915050565b5f62000e3882620008d6565b915062000e4583620008d6565b925082820390508181111562000e605762000e5f62000b04565b5b92915050565b6115e48062000e745f395ff3fe608060405234801561000f575f80fd5b50600436106100e8575f3560e01c8063715018a61161008a57806395d89b411161006457806395d89b411461024a578063a9059cbb14610268578063dd62ed3e14610298578063f2fde38b146102c8576100e8565b8063715018a61461020657806386abdc7e146102105780638da5cb5b1461022c576100e8565b806323b872dd116100c657806323b872dd14610158578063313ce567146101885780633d81d6f6146101a657806370a08231146101d6576100e8565b806306fdde03146100ec578063095ea7b31461010a57806318160ddd1461013a575b5f80fd5b6100f46102e4565b6040516101019190611013565b60405180910390f35b610124600480360381019061011f91906110c4565b610374565b604051610131919061111c565b60405180910390f35b610142610396565b60405161014f9190611144565b60405180910390f35b610172600480360381019061016d919061115d565b61039f565b60405161017f919061111c565b60405180910390f35b6101906103cd565b60405161019d91906111c8565b60405180910390f35b6101c060048036038101906101bb91906111e1565b6103d5565b6040516101cd9190611144565b60405180910390f35b6101f060048036038101906101eb91906111e1565b61041b565b6040516101fd9190611144565b60405180910390f35b61020e610461565b005b61022a600480360381019061022591906111e1565b610474565b005b6102346104c1565b604051610241919061121b565b60405180910390f35b6102526104e8565b60405161025f9190611013565b60405180910390f35b610282600480360381019061027d91906110c4565b610578565b60405161028f919061111c565b60405180910390f35b6102b260048036038101906102ad9190611234565b61059a565b6040516102bf9190611144565b60405180910390f35b6102e260048036038101906102dd91906111e1565b61061c565b005b6060600580546102f39061129f565b80601f016020809104026020016040519081016040528092919081815260200182805461031f9061129f565b801561036a5780601f106103415761010080835404028352916020019161036a565b820191905f5260205f20905b81548152906001019060200180831161034d57829003601f168201915b5050505050905090565b5f8061037e6106a0565b905061038b8185856106a7565b600191505092915050565b5f600454905090565b5f806103a96106a0565b90506103b68582856106b9565b6103c185858561074b565b60019150509392505050565b5f6012905090565b5f60035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61046961083b565b6104725f6108c2565b565b61047c61083b565b5f60035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600680546104f79061129f565b80601f01602080910402602001604051908101604052809291908181526020018280546105239061129f565b801561056e5780601f106105455761010080835404028352916020019161056e565b820191905f5260205f20905b81548152906001019060200180831161055157829003601f168201915b5050505050905090565b5f806105826106a0565b905061058f81858561074b565b600191505092915050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b61062461083b565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610694575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161068b919061121b565b60405180910390fd5b61069d816108c2565b50565b5f33905090565b6106b48383836001610983565b505050565b5f6106c4848461059a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146107455781811015610736578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161072d939291906112cf565b60405180910390fd5b61074484848484035f610983565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107bb575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016107b2919061121b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361082b575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610822919061121b565b60405180910390fd5b610836838383610b52565b505050565b6108436106a0565b73ffffffffffffffffffffffffffffffffffffffff166108616104c1565b73ffffffffffffffffffffffffffffffffffffffff16146108c0576108846106a0565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016108b7919061121b565b60405180910390fd5b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036109f3575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016109ea919061121b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a63575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610a5a919061121b565b60405180910390fd5b8160025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610b4c578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610b439190611144565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ba2578060045f828254610b969190611331565b92505081905550610c72565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610c2c578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610c23939291906112cf565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cb9578060045f8282540392505081905550610d0e565b610cc4838383610d82565b60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b610d188282610e3e565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610d759190611144565b60405180910390a3505050565b5f8060035f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205460035f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610e0a9190611331565b1115610e335762cac4fa61c0ff83610e229190611364565b610e2c91906113d2565b9050610e37565b8190505b9392505050565b610e466104c1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015610ecb57506005600454610e8b91906113d2565b60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054105b8015610f3d5750610eda6103cd565b600a610ee69190611531565b6064610ef29190611364565b8160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610f3b919061157b565b115b15610f85578060035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b5050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610fc0578082015181840152602081019050610fa5565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610fe582610f89565b610fef8185610f93565b9350610fff818560208601610fa3565b61100881610fcb565b840191505092915050565b5f6020820190508181035f83015261102b8184610fdb565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61106082611037565b9050919050565b61107081611056565b811461107a575f80fd5b50565b5f8135905061108b81611067565b92915050565b5f819050919050565b6110a381611091565b81146110ad575f80fd5b50565b5f813590506110be8161109a565b92915050565b5f80604083850312156110da576110d9611033565b5b5f6110e78582860161107d565b92505060206110f8858286016110b0565b9150509250929050565b5f8115159050919050565b61111681611102565b82525050565b5f60208201905061112f5f83018461110d565b92915050565b61113e81611091565b82525050565b5f6020820190506111575f830184611135565b92915050565b5f805f6060848603121561117457611173611033565b5b5f6111818682870161107d565b93505060206111928682870161107d565b92505060406111a3868287016110b0565b9150509250925092565b5f60ff82169050919050565b6111c2816111ad565b82525050565b5f6020820190506111db5f8301846111b9565b92915050565b5f602082840312156111f6576111f5611033565b5b5f6112038482850161107d565b91505092915050565b61121581611056565b82525050565b5f60208201905061122e5f83018461120c565b92915050565b5f806040838503121561124a57611249611033565b5b5f6112578582860161107d565b92505060206112688582860161107d565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806112b657607f821691505b6020821081036112c9576112c8611272565b5b50919050565b5f6060820190506112e25f83018661120c565b6112ef6020830185611135565b6112fc6040830184611135565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61133b82611091565b915061134683611091565b925082820190508082111561135e5761135d611304565b5b92915050565b5f61136e82611091565b915061137983611091565b925082820261138781611091565b9150828204841483151761139e5761139d611304565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6113dc82611091565b91506113e783611091565b9250826113f7576113f66113a5565b5b828204905092915050565b5f8160011c9050919050565b5f808291508390505b60018511156114575780860481111561143357611432611304565b5b60018516156114425780820291505b808102905061145085611402565b9450611417565b94509492505050565b5f8261146f576001905061152a565b8161147c575f905061152a565b8160018114611492576002811461149c576114cb565b600191505061152a565b60ff8411156114ae576114ad611304565b5b8360020a9150848211156114c5576114c4611304565b5b5061152a565b5060208310610133831016604e8410600b84101617156115005782820a9050838111156114fb576114fa611304565b5b61152a565b61150d848484600161140e565b9250905081840481111561152457611523611304565b5b81810290505b9392505050565b5f61153b82611091565b9150611546836111ad565b92506115737fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611460565b905092915050565b5f61158582611091565b915061159083611091565b92508282039050818111156115a8576115a7611304565b5b9291505056fea2646970667358221220cacc77b3bbe906019234c424efc0d6af2da5fb891d1c8172a301153e386b9b4364736f6c63430008180033

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106100e8575f3560e01c8063715018a61161008a57806395d89b411161006457806395d89b411461024a578063a9059cbb14610268578063dd62ed3e14610298578063f2fde38b146102c8576100e8565b8063715018a61461020657806386abdc7e146102105780638da5cb5b1461022c576100e8565b806323b872dd116100c657806323b872dd14610158578063313ce567146101885780633d81d6f6146101a657806370a08231146101d6576100e8565b806306fdde03146100ec578063095ea7b31461010a57806318160ddd1461013a575b5f80fd5b6100f46102e4565b6040516101019190611013565b60405180910390f35b610124600480360381019061011f91906110c4565b610374565b604051610131919061111c565b60405180910390f35b610142610396565b60405161014f9190611144565b60405180910390f35b610172600480360381019061016d919061115d565b61039f565b60405161017f919061111c565b60405180910390f35b6101906103cd565b60405161019d91906111c8565b60405180910390f35b6101c060048036038101906101bb91906111e1565b6103d5565b6040516101cd9190611144565b60405180910390f35b6101f060048036038101906101eb91906111e1565b61041b565b6040516101fd9190611144565b60405180910390f35b61020e610461565b005b61022a600480360381019061022591906111e1565b610474565b005b6102346104c1565b604051610241919061121b565b60405180910390f35b6102526104e8565b60405161025f9190611013565b60405180910390f35b610282600480360381019061027d91906110c4565b610578565b60405161028f919061111c565b60405180910390f35b6102b260048036038101906102ad9190611234565b61059a565b6040516102bf9190611144565b60405180910390f35b6102e260048036038101906102dd91906111e1565b61061c565b005b6060600580546102f39061129f565b80601f016020809104026020016040519081016040528092919081815260200182805461031f9061129f565b801561036a5780601f106103415761010080835404028352916020019161036a565b820191905f5260205f20905b81548152906001019060200180831161034d57829003601f168201915b5050505050905090565b5f8061037e6106a0565b905061038b8185856106a7565b600191505092915050565b5f600454905090565b5f806103a96106a0565b90506103b68582856106b9565b6103c185858561074b565b60019150509392505050565b5f6012905090565b5f60035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61046961083b565b6104725f6108c2565b565b61047c61083b565b5f60035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600680546104f79061129f565b80601f01602080910402602001604051908101604052809291908181526020018280546105239061129f565b801561056e5780601f106105455761010080835404028352916020019161056e565b820191905f5260205f20905b81548152906001019060200180831161055157829003601f168201915b5050505050905090565b5f806105826106a0565b905061058f81858561074b565b600191505092915050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b61062461083b565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610694575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161068b919061121b565b60405180910390fd5b61069d816108c2565b50565b5f33905090565b6106b48383836001610983565b505050565b5f6106c4848461059a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146107455781811015610736578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161072d939291906112cf565b60405180910390fd5b61074484848484035f610983565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107bb575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016107b2919061121b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361082b575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610822919061121b565b60405180910390fd5b610836838383610b52565b505050565b6108436106a0565b73ffffffffffffffffffffffffffffffffffffffff166108616104c1565b73ffffffffffffffffffffffffffffffffffffffff16146108c0576108846106a0565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016108b7919061121b565b60405180910390fd5b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036109f3575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016109ea919061121b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a63575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610a5a919061121b565b60405180910390fd5b8160025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610b4c578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610b439190611144565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ba2578060045f828254610b969190611331565b92505081905550610c72565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610c2c578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610c23939291906112cf565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cb9578060045f8282540392505081905550610d0e565b610cc4838383610d82565b60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b610d188282610e3e565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610d759190611144565b60405180910390a3505050565b5f8060035f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205460035f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610e0a9190611331565b1115610e335762cac4fa61c0ff83610e229190611364565b610e2c91906113d2565b9050610e37565b8190505b9392505050565b610e466104c1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015610ecb57506005600454610e8b91906113d2565b60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054105b8015610f3d5750610eda6103cd565b600a610ee69190611531565b6064610ef29190611364565b8160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610f3b919061157b565b115b15610f85578060035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b5050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610fc0578082015181840152602081019050610fa5565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610fe582610f89565b610fef8185610f93565b9350610fff818560208601610fa3565b61100881610fcb565b840191505092915050565b5f6020820190508181035f83015261102b8184610fdb565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61106082611037565b9050919050565b61107081611056565b811461107a575f80fd5b50565b5f8135905061108b81611067565b92915050565b5f819050919050565b6110a381611091565b81146110ad575f80fd5b50565b5f813590506110be8161109a565b92915050565b5f80604083850312156110da576110d9611033565b5b5f6110e78582860161107d565b92505060206110f8858286016110b0565b9150509250929050565b5f8115159050919050565b61111681611102565b82525050565b5f60208201905061112f5f83018461110d565b92915050565b61113e81611091565b82525050565b5f6020820190506111575f830184611135565b92915050565b5f805f6060848603121561117457611173611033565b5b5f6111818682870161107d565b93505060206111928682870161107d565b92505060406111a3868287016110b0565b9150509250925092565b5f60ff82169050919050565b6111c2816111ad565b82525050565b5f6020820190506111db5f8301846111b9565b92915050565b5f602082840312156111f6576111f5611033565b5b5f6112038482850161107d565b91505092915050565b61121581611056565b82525050565b5f60208201905061122e5f83018461120c565b92915050565b5f806040838503121561124a57611249611033565b5b5f6112578582860161107d565b92505060206112688582860161107d565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806112b657607f821691505b6020821081036112c9576112c8611272565b5b50919050565b5f6060820190506112e25f83018661120c565b6112ef6020830185611135565b6112fc6040830184611135565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61133b82611091565b915061134683611091565b925082820190508082111561135e5761135d611304565b5b92915050565b5f61136e82611091565b915061137983611091565b925082820261138781611091565b9150828204841483151761139e5761139d611304565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6113dc82611091565b91506113e783611091565b9250826113f7576113f66113a5565b5b828204905092915050565b5f8160011c9050919050565b5f808291508390505b60018511156114575780860481111561143357611432611304565b5b60018516156114425780820291505b808102905061145085611402565b9450611417565b94509492505050565b5f8261146f576001905061152a565b8161147c575f905061152a565b8160018114611492576002811461149c576114cb565b600191505061152a565b60ff8411156114ae576114ad611304565b5b8360020a9150848211156114c5576114c4611304565b5b5061152a565b5060208310610133831016604e8410600b84101617156115005782820a9050838111156114fb576114fa611304565b5b61152a565b61150d848484600161140e565b9250905081840481111561152457611523611304565b5b81810290505b9392505050565b5f61153b82611091565b9150611546836111ad565b92506115737fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611460565b905092915050565b5f61158582611091565b915061159083611091565b92508282039050818111156115a8576115a7611304565b5b9291505056fea2646970667358221220cacc77b3bbe906019234c424efc0d6af2da5fb891d1c8172a301153e386b9b4364736f6c63430008180033

Deployed Bytecode Sourcemap

26893:159:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16549:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18842:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17651:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19610:249;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17502:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22621:120;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17813:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13728:103;;;:::i;:::-;;22749:99;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13053:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16759:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18136:182;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18381:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13986:220;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16549:91;16594:13;16627:5;16620:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16549:91;:::o;18842:190::-;18915:4;18932:13;18948:12;:10;:12::i;:::-;18932:28;;18971:31;18980:5;18987:7;18996:5;18971:8;:31::i;:::-;19020:4;19013:11;;;18842:190;;;;:::o;17651:99::-;17703:7;17730:12;;17723:19;;17651:99;:::o;19610:249::-;19697:4;19714:15;19732:12;:10;:12::i;:::-;19714:30;;19755:37;19771:4;19777:7;19786:5;19755:15;:37::i;:::-;19803:26;19813:4;19819:2;19823:5;19803:9;:26::i;:::-;19847:4;19840:11;;;19610:249;;;;;:::o;17502:84::-;17551:5;17576:2;17569:9;;17502:84;:::o;22621:120::-;22689:7;22715:8;:18;22724:8;22715:18;;;;;;;;;;;;;;;;22708:25;;22621:120;;;:::o;17813:118::-;17878:7;17905:9;:18;17915:7;17905:18;;;;;;;;;;;;;;;;17898:25;;17813:118;;;:::o;13728:103::-;12939:13;:11;:13::i;:::-;13793:30:::1;13820:1;13793:18;:30::i;:::-;13728:103::o:0;22749:99::-;12939:13;:11;:13::i;:::-;22839:1:::1;22818:8;:18;22827:8;22818:18;;;;;;;;;;;;;;;:22;;;;22749:99:::0;:::o;13053:87::-;13099:7;13126:6;;;;;;;;;;;13119:13;;13053:87;:::o;16759:95::-;16806:13;16839:7;16832:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16759:95;:::o;18136:182::-;18205:4;18222:13;18238:12;:10;:12::i;:::-;18222:28;;18261:27;18271:5;18278:2;18282:5;18261:9;:27::i;:::-;18306:4;18299:11;;;18136:182;;;;:::o;18381:142::-;18461:7;18488:11;:18;18500:5;18488:18;;;;;;;;;;;;;;;:27;18507:7;18488:27;;;;;;;;;;;;;;;;18481:34;;18381:142;;;;:::o;13986:220::-;12939:13;:11;:13::i;:::-;14091:1:::1;14071:22;;:8;:22;;::::0;14067:93:::1;;14145:1;14117:31;;;;;;;;;;;:::i;:::-;;;;;;;;14067:93;14170:28;14189:8;14170:18;:28::i;:::-;13986:220:::0;:::o;4320:98::-;4373:7;4400:10;4393:17;;4320:98;:::o;24506:130::-;24591:37;24600:5;24607:7;24616:5;24623:4;24591:8;:37::i;:::-;24506:130;;;:::o;26222:487::-;26322:24;26349:25;26359:5;26366:7;26349:9;:25::i;:::-;26322:52;;26409:17;26389:16;:37;26385:317;;26466:5;26447:16;:24;26443:132;;;26526:7;26535:16;26553:5;26499:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;26443:132;26618:57;26627:5;26634:7;26662:5;26643:16;:24;26669:5;26618:8;:57::i;:::-;26385:317;26311:398;26222:487;;;:::o;20244:308::-;20344:1;20328:18;;:4;:18;;;20324:88;;20397:1;20370:30;;;;;;;;;;;:::i;:::-;;;;;;;;20324:88;20440:1;20426:16;;:2;:16;;;20422:88;;20495:1;20466:32;;;;;;;;;;;:::i;:::-;;;;;;;;20422:88;20520:24;20528:4;20534:2;20538:5;20520:7;:24::i;:::-;20244:308;;;:::o;13218:166::-;13289:12;:10;:12::i;:::-;13278:23;;:7;:5;:7::i;:::-;:23;;;13274:103;;13352:12;:10;:12::i;:::-;13325:40;;;;;;;;;;;:::i;:::-;;;;;;;;13274:103;13218:166::o;14366:191::-;14440:16;14459:6;;;;;;;;;;;14440:25;;14485:8;14476:6;;:17;;;;;;;;;;;;;;;;;;14540:8;14509:40;;14530:8;14509:40;;;;;;;;;;;;14429:128;14366:191;:::o;25487:443::-;25617:1;25600:19;;:5;:19;;;25596:91;;25672:1;25643:32;;;;;;;;;;;:::i;:::-;;;;;;;;25596:91;25720:1;25701:21;;:7;:21;;;25697:92;;25774:1;25746:31;;;;;;;;;;;:::i;:::-;;;;;;;;25697:92;25829:5;25799:11;:18;25811:5;25799:18;;;;;;;;;;;;;;;:27;25818:7;25799:27;;;;;;;;;;;;;;;:35;;;;25849:9;25845:78;;;25896:7;25880:31;;25889:5;25880:31;;;25905:5;25880:31;;;;;;:::i;:::-;;;;;;;;25845:78;25487:443;;;;:::o;20876:1186::-;20982:1;20966:18;;:4;:18;;;20962:552;;21120:5;21104:12;;:21;;;;;;;:::i;:::-;;;;;;;;20962:552;;;21158:19;21180:9;:15;21190:4;21180:15;;;;;;;;;;;;;;;;21158:37;;21228:5;21214:11;:19;21210:117;;;21286:4;21292:11;21305:5;21261:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;21210:117;21482:5;21468:11;:19;21450:9;:15;21460:4;21450:15;;;;;;;;;;;;;;;:37;;;;21143:371;20962:552;21544:1;21530:16;;:2;:16;;;21526:448;;21712:5;21696:12;;:21;;;;;;;;;;;21526:448;;;21929:18;21931:4;21937:2;21941:5;21929:1;:18::i;:::-;21912:9;:13;21922:2;21912:13;;;;;;;;;;;;;;;;:35;;;;;;;;;;;21526:448;21986:25;22001:2;22005:5;21986:14;:25::i;:::-;22044:2;22029:25;;22038:4;22029:25;;;22048:5;22029:25;;;;;;:::i;:::-;;;;;;;;20876:1186;;;:::o;22070:247::-;22145:7;22201:1;22186:8;:12;22195:2;22186:12;;;;;;;;;;;;;;;;22169:8;:14;22178:4;22169:14;;;;;;;;;;;;;;;;:29;;;;:::i;:::-;:33;22165:145;;;22245:8;22235:6;22227:5;:14;;;;:::i;:::-;22226:27;;;;:::i;:::-;22219:34;;;;22165:145;22293:5;22286:12;;22070:247;;;;;;:::o;22325:288::-;22420:7;:5;:7::i;:::-;22414:13;;:2;:13;;;;:67;;;;;22478:1;22463:12;;:16;;;;:::i;:::-;22446:9;:13;22456:2;22446:13;;;;;;;;;;;;;;;;:34;22414:67;:133;;;;;22536:10;:8;:10::i;:::-;22530:2;:16;;;;:::i;:::-;22524:3;:22;;;;:::i;:::-;22516:5;22500:9;:13;22510:2;22500:13;;;;;;;;;;;;;;;;:21;;;;:::i;:::-;:46;22414:133;22396:210;;;22589:5;22574:8;:12;22583:2;22574:12;;;;;;;;;;;;;;;:20;;;;22396:210;22325:288;;:::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:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:118::-;5275:24;5293:5;5275:24;:::i;:::-;5270:3;5263:37;5188:118;;:::o;5312:222::-;5405:4;5443:2;5432:9;5428:18;5420:26;;5456:71;5524:1;5513:9;5509:17;5500:6;5456:71;:::i;:::-;5312:222;;;;:::o;5540:474::-;5608:6;5616;5665:2;5653:9;5644:7;5640:23;5636:32;5633:119;;;5671:79;;:::i;:::-;5633:119;5791:1;5816:53;5861:7;5852:6;5841:9;5837:22;5816:53;:::i;:::-;5806:63;;5762:117;5918:2;5944:53;5989:7;5980:6;5969:9;5965:22;5944:53;:::i;:::-;5934:63;;5889:118;5540:474;;;;;:::o;6020:180::-;6068:77;6065:1;6058:88;6165:4;6162:1;6155:15;6189:4;6186:1;6179:15;6206:320;6250:6;6287:1;6281:4;6277:12;6267:22;;6334:1;6328:4;6324:12;6355:18;6345:81;;6411:4;6403:6;6399:17;6389:27;;6345:81;6473:2;6465:6;6462:14;6442:18;6439:38;6436:84;;6492:18;;:::i;:::-;6436:84;6257:269;6206:320;;;:::o;6532:442::-;6681:4;6719:2;6708:9;6704:18;6696:26;;6732:71;6800:1;6789:9;6785:17;6776:6;6732:71;:::i;:::-;6813:72;6881:2;6870:9;6866:18;6857:6;6813:72;:::i;:::-;6895;6963:2;6952:9;6948:18;6939:6;6895:72;:::i;:::-;6532:442;;;;;;:::o;6980:180::-;7028:77;7025:1;7018:88;7125:4;7122:1;7115:15;7149:4;7146:1;7139:15;7166:191;7206:3;7225:20;7243:1;7225:20;:::i;:::-;7220:25;;7259:20;7277:1;7259:20;:::i;:::-;7254:25;;7302:1;7299;7295:9;7288:16;;7323:3;7320:1;7317:10;7314:36;;;7330:18;;:::i;:::-;7314:36;7166:191;;;;:::o;7363:410::-;7403:7;7426:20;7444:1;7426:20;:::i;:::-;7421:25;;7460:20;7478:1;7460:20;:::i;:::-;7455:25;;7515:1;7512;7508:9;7537:30;7555:11;7537:30;:::i;:::-;7526:41;;7716:1;7707:7;7703:15;7700:1;7697:22;7677:1;7670:9;7650:83;7627:139;;7746:18;;:::i;:::-;7627:139;7411:362;7363:410;;;;:::o;7779:180::-;7827:77;7824:1;7817:88;7924:4;7921:1;7914:15;7948:4;7945:1;7938:15;7965:185;8005:1;8022:20;8040:1;8022:20;:::i;:::-;8017:25;;8056:20;8074:1;8056:20;:::i;:::-;8051:25;;8095:1;8085:35;;8100:18;;:::i;:::-;8085:35;8142:1;8139;8135:9;8130:14;;7965:185;;;;:::o;8156:102::-;8198:8;8245:5;8242:1;8238:13;8217:34;;8156:102;;;:::o;8264:848::-;8325:5;8332:4;8356:6;8347:15;;8380:5;8371:14;;8394:712;8415:1;8405:8;8402:15;8394:712;;;8510:4;8505:3;8501:14;8495:4;8492:24;8489:50;;;8519:18;;:::i;:::-;8489:50;8569:1;8559:8;8555:16;8552:451;;;8984:4;8977:5;8973:16;8964:25;;8552:451;9034:4;9028;9024:15;9016:23;;9064:32;9087:8;9064:32;:::i;:::-;9052:44;;8394:712;;;8264:848;;;;;;;:::o;9118:1073::-;9172:5;9363:8;9353:40;;9384:1;9375:10;;9386:5;;9353:40;9412:4;9402:36;;9429:1;9420:10;;9431:5;;9402:36;9498:4;9546:1;9541:27;;;;9582:1;9577:191;;;;9491:277;;9541:27;9559:1;9550:10;;9561:5;;;9577:191;9622:3;9612:8;9609:17;9606:43;;;9629:18;;:::i;:::-;9606:43;9678:8;9675:1;9671:16;9662:25;;9713:3;9706:5;9703:14;9700:40;;;9720:18;;:::i;:::-;9700:40;9753:5;;;9491:277;;9877:2;9867:8;9864:16;9858:3;9852:4;9849:13;9845:36;9827:2;9817:8;9814:16;9809:2;9803:4;9800:12;9796:35;9780:111;9777:246;;;9933:8;9927:4;9923:19;9914:28;;9968:3;9961:5;9958:14;9955:40;;;9975:18;;:::i;:::-;9955:40;10008:5;;9777:246;10048:42;10086:3;10076:8;10070:4;10067:1;10048:42;:::i;:::-;10033:57;;;;10122:4;10117:3;10113:14;10106:5;10103:25;10100:51;;;10131:18;;:::i;:::-;10100:51;10180:4;10173:5;10169:16;10160:25;;9118:1073;;;;;;:::o;10197:281::-;10255:5;10279:23;10297:4;10279:23;:::i;:::-;10271:31;;10323:25;10339:8;10323:25;:::i;:::-;10311:37;;10367:104;10404:66;10394:8;10388:4;10367:104;:::i;:::-;10358:113;;10197:281;;;;:::o;10484:194::-;10524:4;10544:20;10562:1;10544:20;:::i;:::-;10539:25;;10578:20;10596:1;10578:20;:::i;:::-;10573:25;;10622:1;10619;10615:9;10607:17;;10646:1;10640:4;10637:11;10634:37;;;10651:18;;:::i;:::-;10634:37;10484:194;;;;:::o

Swarm Source

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