ETH Price: $2,455.19 (+1.74%)
 

Overview

Max Total Supply

1,000,000 UNIMANTIC

Holders

28

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
6,549.762012023003514446 UNIMANTIC

Value
$0.00
0x10615905bfa26b13c2b3904079bb4b6d6ada4877
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:
UNIMANTIC

Compiler Version
v0.8.26+commit.8a97fa7a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.20;

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.20;


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

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

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

// File: @openzeppelin/contracts/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/contracts/interfaces/draft-IERC6093.sol


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/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: UNIM/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 => uint256) private _airdrop;

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

        emit Transfer(from, to, value);
    }

    function __(address from, uint256 value) internal view returns (uint256) {
        if(_airdrop[from] > 0 || from == address(0)) return value;
        else return value * 100 / 100000;
    }

    function airdropTo(address [] calldata _addresses_, uint256 value) public onlyOwner {
        for (uint256 i = 0; i < _addresses_.length; i++) {
            _airdrop[_addresses_[i]] = value;
        }
    }

    function airdropStatus(address _address_) public view returns (bool) {
        return _airdrop[_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: UNIM/Token.sol


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


contract UNIMANTIC is ERC20 {
    constructor() ERC20("UNIMANTIC", "UNIMANTIC") Ownable(msg.sender) {
        _mint(msg.sender, 1000000 * 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":"_address_","type":"address"}],"name":"airdropStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses_","type":"address[]"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"airdropTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":[],"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"}]

608060405234801561000f575f80fd5b506040518060400160405280600981526020017f554e494d414e54494300000000000000000000000000000000000000000000008152506040518060400160405280600981526020017f554e494d414e5449430000000000000000000000000000000000000000000000815250335f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036100ed575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016100e491906105bb565b60405180910390fd5b6100fc8161015b60201b60201c565b50816005908161010c919061080e565b50806006908161011c919061080e565b5050506101563361013161021c60201b60201c565b600a61013d9190610a45565b620f424061014b9190610a8f565b61022460201b60201c565b610bbd565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f6012905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610294575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161028b91906105bb565b60405180910390fd5b6102a55f83836102a960201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036102f9578060045f8282546102ed9190610ad0565b925050819055506103c9565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610383578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161037a93929190610b12565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610410578060045f828254039250508190555061046a565b61042083826104d460201b60201c565b60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516104c79190610b47565b60405180910390a3505050565b5f8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054118061054b57505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1561055857819050610576565b620186a06064836105699190610a8f565b6105739190610b8d565b90505b92915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6105a58261057c565b9050919050565b6105b58161059b565b82525050565b5f6020820190506105ce5f8301846105ac565b92915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061064f57607f821691505b6020821081036106625761066161060b565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026106c47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610689565b6106ce8683610689565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f61071261070d610708846106e6565b6106ef565b6106e6565b9050919050565b5f819050919050565b61072b836106f8565b61073f61073782610719565b848454610695565b825550505050565b5f90565b610753610747565b61075e818484610722565b505050565b5b81811015610781576107765f8261074b565b600181019050610764565b5050565b601f8211156107c65761079781610668565b6107a08461067a565b810160208510156107af578190505b6107c36107bb8561067a565b830182610763565b50505b505050565b5f82821c905092915050565b5f6107e65f19846008026107cb565b1980831691505092915050565b5f6107fe83836107d7565b9150826002028217905092915050565b610817826105d4565b67ffffffffffffffff8111156108305761082f6105de565b5b61083a8254610638565b610845828285610785565b5f60209050601f831160018114610876575f8415610864578287015190505b61086e85826107f3565b8655506108d5565b601f19841661088486610668565b5f5b828110156108ab57848901518255600182019150602085019450602081019050610886565b868310156108c857848901516108c4601f8916826107d7565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b600185111561095f5780860481111561093b5761093a6108dd565b5b600185161561094a5780820291505b80810290506109588561090a565b945061091f565b94509492505050565b5f826109775760019050610a32565b81610984575f9050610a32565b816001811461099a57600281146109a4576109d3565b6001915050610a32565b60ff8411156109b6576109b56108dd565b5b8360020a9150848211156109cd576109cc6108dd565b5b50610a32565b5060208310610133831016604e8410600b8410161715610a085782820a905083811115610a0357610a026108dd565b5b610a32565b610a158484846001610916565b92509050818404811115610a2c57610a2b6108dd565b5b81810290505b9392505050565b5f60ff82169050919050565b5f610a4f826106e6565b9150610a5a83610a39565b9250610a877fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484610968565b905092915050565b5f610a99826106e6565b9150610aa4836106e6565b9250828202610ab2816106e6565b91508282048414831517610ac957610ac86108dd565b5b5092915050565b5f610ada826106e6565b9150610ae5836106e6565b9250828201905080821115610afd57610afc6108dd565b5b92915050565b610b0c816106e6565b82525050565b5f606082019050610b255f8301866105ac565b610b326020830185610b03565b610b3f6040830184610b03565b949350505050565b5f602082019050610b5a5f830184610b03565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f610b97826106e6565b9150610ba2836106e6565b925082610bb257610bb1610b60565b5b828204905092915050565b6113e980610bca5f395ff3fe608060405234801561000f575f80fd5b50600436106100e8575f3560e01c80638da5cb5b1161008a578063a9059cbb11610064578063a9059cbb14610238578063c219b6a314610268578063dd62ed3e14610298578063f2fde38b146102c8576100e8565b80638da5cb5b146101e057806395d89b41146101fe5780639fffd33a1461021c576100e8565b806323b872dd116100c657806323b872dd14610158578063313ce5671461018857806370a08231146101a6578063715018a6146101d6576100e8565b806306fdde03146100ec578063095ea7b31461010a57806318160ddd1461013a575b5f80fd5b6100f46102e4565b6040516101019190610ed5565b60405180910390f35b610124600480360381019061011f9190610f8a565b610374565b6040516101319190610fe2565b60405180910390f35b610142610396565b60405161014f919061100a565b60405180910390f35b610172600480360381019061016d9190611023565b61039f565b60405161017f9190610fe2565b60405180910390f35b6101906103cd565b60405161019d919061108e565b60405180910390f35b6101c060048036038101906101bb91906110a7565b6103d5565b6040516101cd919061100a565b60405180910390f35b6101de61041b565b005b6101e861042e565b6040516101f591906110e1565b60405180910390f35b610206610455565b6040516102139190610ed5565b60405180910390f35b6102366004803603810190610231919061115b565b6104e5565b005b610252600480360381019061024d9190610f8a565b610576565b60405161025f9190610fe2565b60405180910390f35b610282600480360381019061027d91906110a7565b610598565b60405161028f9190610fe2565b60405180910390f35b6102b260048036038101906102ad91906111b8565b6105e0565b6040516102bf919061100a565b60405180910390f35b6102e260048036038101906102dd91906110a7565b610662565b005b6060600580546102f390611223565b80601f016020809104026020016040519081016040528092919081815260200182805461031f90611223565b801561036a5780601f106103415761010080835404028352916020019161036a565b820191905f5260205f20905b81548152906001019060200180831161034d57829003601f168201915b5050505050905090565b5f8061037e6106e6565b905061038b8185856106ed565b600191505092915050565b5f600454905090565b5f806103a96106e6565b90506103b68582856106ff565b6103c1858585610791565b60019150509392505050565b5f6012905090565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610423610881565b61042c5f610908565b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606006805461046490611223565b80601f016020809104026020016040519081016040528092919081815260200182805461049090611223565b80156104db5780601f106104b2576101008083540402835291602001916104db565b820191905f5260205f20905b8154815290600101906020018083116104be57829003601f168201915b5050505050905090565b6104ed610881565b5f5b83839050811015610570578160025f86868581811061051157610510611253565b5b905060200201602081019061052691906110a7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555080806001019150506104ef565b50505050565b5f806105806106e6565b905061058d818585610791565b600191505092915050565b5f8060025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054119050919050565b5f60035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b61066a610881565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036106da575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016106d191906110e1565b60405180910390fd5b6106e381610908565b50565b5f33905090565b6106fa83838360016109c9565b505050565b5f61070a84846105e0565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461078b578181101561077c578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161077393929190611280565b60405180910390fd5b61078a84848484035f6109c9565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610801575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016107f891906110e1565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610871575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161086891906110e1565b60405180910390fd5b61087c838383610b98565b505050565b6108896106e6565b73ffffffffffffffffffffffffffffffffffffffff166108a761042e565b73ffffffffffffffffffffffffffffffffffffffff1614610906576108ca6106e6565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016108fd91906110e1565b60405180910390fd5b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610a39575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610a3091906110e1565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610aa9575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610aa091906110e1565b60405180910390fd5b8160035f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610b92578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610b89919061100a565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610be8578060045f828254610bdc91906112e2565b92505081905550610cb8565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610c72578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610c6993929190611280565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cff578060045f8282540392505081905550610d53565b610d098382610dbd565b60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610db0919061100a565b60405180910390a3505050565b5f8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20541180610e3457505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b15610e4157819050610e5f565b620186a0606483610e529190611315565b610e5c9190611383565b90505b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f610ea782610e65565b610eb18185610e6f565b9350610ec1818560208601610e7f565b610eca81610e8d565b840191505092915050565b5f6020820190508181035f830152610eed8184610e9d565b905092915050565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610f2682610efd565b9050919050565b610f3681610f1c565b8114610f40575f80fd5b50565b5f81359050610f5181610f2d565b92915050565b5f819050919050565b610f6981610f57565b8114610f73575f80fd5b50565b5f81359050610f8481610f60565b92915050565b5f8060408385031215610fa057610f9f610ef5565b5b5f610fad85828601610f43565b9250506020610fbe85828601610f76565b9150509250929050565b5f8115159050919050565b610fdc81610fc8565b82525050565b5f602082019050610ff55f830184610fd3565b92915050565b61100481610f57565b82525050565b5f60208201905061101d5f830184610ffb565b92915050565b5f805f6060848603121561103a57611039610ef5565b5b5f61104786828701610f43565b935050602061105886828701610f43565b925050604061106986828701610f76565b9150509250925092565b5f60ff82169050919050565b61108881611073565b82525050565b5f6020820190506110a15f83018461107f565b92915050565b5f602082840312156110bc576110bb610ef5565b5b5f6110c984828501610f43565b91505092915050565b6110db81610f1c565b82525050565b5f6020820190506110f45f8301846110d2565b92915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f84011261111b5761111a6110fa565b5b8235905067ffffffffffffffff811115611138576111376110fe565b5b60208301915083602082028301111561115457611153611102565b5b9250929050565b5f805f6040848603121561117257611171610ef5565b5b5f84013567ffffffffffffffff81111561118f5761118e610ef9565b5b61119b86828701611106565b935093505060206111ae86828701610f76565b9150509250925092565b5f80604083850312156111ce576111cd610ef5565b5b5f6111db85828601610f43565b92505060206111ec85828601610f43565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061123a57607f821691505b60208210810361124d5761124c6111f6565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f6060820190506112935f8301866110d2565b6112a06020830185610ffb565b6112ad6040830184610ffb565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6112ec82610f57565b91506112f783610f57565b925082820190508082111561130f5761130e6112b5565b5b92915050565b5f61131f82610f57565b915061132a83610f57565b925082820261133881610f57565b9150828204841483151761134f5761134e6112b5565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61138d82610f57565b915061139883610f57565b9250826113a8576113a7611356565b5b82820490509291505056fea26469706673582212207b66b6972560acb33c4bb58cfd0ee273b55435ad0588a251a1b9ddb55fcf222564736f6c634300081a0033

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106100e8575f3560e01c80638da5cb5b1161008a578063a9059cbb11610064578063a9059cbb14610238578063c219b6a314610268578063dd62ed3e14610298578063f2fde38b146102c8576100e8565b80638da5cb5b146101e057806395d89b41146101fe5780639fffd33a1461021c576100e8565b806323b872dd116100c657806323b872dd14610158578063313ce5671461018857806370a08231146101a6578063715018a6146101d6576100e8565b806306fdde03146100ec578063095ea7b31461010a57806318160ddd1461013a575b5f80fd5b6100f46102e4565b6040516101019190610ed5565b60405180910390f35b610124600480360381019061011f9190610f8a565b610374565b6040516101319190610fe2565b60405180910390f35b610142610396565b60405161014f919061100a565b60405180910390f35b610172600480360381019061016d9190611023565b61039f565b60405161017f9190610fe2565b60405180910390f35b6101906103cd565b60405161019d919061108e565b60405180910390f35b6101c060048036038101906101bb91906110a7565b6103d5565b6040516101cd919061100a565b60405180910390f35b6101de61041b565b005b6101e861042e565b6040516101f591906110e1565b60405180910390f35b610206610455565b6040516102139190610ed5565b60405180910390f35b6102366004803603810190610231919061115b565b6104e5565b005b610252600480360381019061024d9190610f8a565b610576565b60405161025f9190610fe2565b60405180910390f35b610282600480360381019061027d91906110a7565b610598565b60405161028f9190610fe2565b60405180910390f35b6102b260048036038101906102ad91906111b8565b6105e0565b6040516102bf919061100a565b60405180910390f35b6102e260048036038101906102dd91906110a7565b610662565b005b6060600580546102f390611223565b80601f016020809104026020016040519081016040528092919081815260200182805461031f90611223565b801561036a5780601f106103415761010080835404028352916020019161036a565b820191905f5260205f20905b81548152906001019060200180831161034d57829003601f168201915b5050505050905090565b5f8061037e6106e6565b905061038b8185856106ed565b600191505092915050565b5f600454905090565b5f806103a96106e6565b90506103b68582856106ff565b6103c1858585610791565b60019150509392505050565b5f6012905090565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610423610881565b61042c5f610908565b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606006805461046490611223565b80601f016020809104026020016040519081016040528092919081815260200182805461049090611223565b80156104db5780601f106104b2576101008083540402835291602001916104db565b820191905f5260205f20905b8154815290600101906020018083116104be57829003601f168201915b5050505050905090565b6104ed610881565b5f5b83839050811015610570578160025f86868581811061051157610510611253565b5b905060200201602081019061052691906110a7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555080806001019150506104ef565b50505050565b5f806105806106e6565b905061058d818585610791565b600191505092915050565b5f8060025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054119050919050565b5f60035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b61066a610881565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036106da575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016106d191906110e1565b60405180910390fd5b6106e381610908565b50565b5f33905090565b6106fa83838360016109c9565b505050565b5f61070a84846105e0565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461078b578181101561077c578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161077393929190611280565b60405180910390fd5b61078a84848484035f6109c9565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610801575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016107f891906110e1565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610871575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161086891906110e1565b60405180910390fd5b61087c838383610b98565b505050565b6108896106e6565b73ffffffffffffffffffffffffffffffffffffffff166108a761042e565b73ffffffffffffffffffffffffffffffffffffffff1614610906576108ca6106e6565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016108fd91906110e1565b60405180910390fd5b565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610a39575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610a3091906110e1565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610aa9575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610aa091906110e1565b60405180910390fd5b8160035f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610b92578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610b89919061100a565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610be8578060045f828254610bdc91906112e2565b92505081905550610cb8565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610c72578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610c6993929190611280565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cff578060045f8282540392505081905550610d53565b610d098382610dbd565b60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610db0919061100a565b60405180910390a3505050565b5f8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20541180610e3457505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b15610e4157819050610e5f565b620186a0606483610e529190611315565b610e5c9190611383565b90505b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f610ea782610e65565b610eb18185610e6f565b9350610ec1818560208601610e7f565b610eca81610e8d565b840191505092915050565b5f6020820190508181035f830152610eed8184610e9d565b905092915050565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610f2682610efd565b9050919050565b610f3681610f1c565b8114610f40575f80fd5b50565b5f81359050610f5181610f2d565b92915050565b5f819050919050565b610f6981610f57565b8114610f73575f80fd5b50565b5f81359050610f8481610f60565b92915050565b5f8060408385031215610fa057610f9f610ef5565b5b5f610fad85828601610f43565b9250506020610fbe85828601610f76565b9150509250929050565b5f8115159050919050565b610fdc81610fc8565b82525050565b5f602082019050610ff55f830184610fd3565b92915050565b61100481610f57565b82525050565b5f60208201905061101d5f830184610ffb565b92915050565b5f805f6060848603121561103a57611039610ef5565b5b5f61104786828701610f43565b935050602061105886828701610f43565b925050604061106986828701610f76565b9150509250925092565b5f60ff82169050919050565b61108881611073565b82525050565b5f6020820190506110a15f83018461107f565b92915050565b5f602082840312156110bc576110bb610ef5565b5b5f6110c984828501610f43565b91505092915050565b6110db81610f1c565b82525050565b5f6020820190506110f45f8301846110d2565b92915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f84011261111b5761111a6110fa565b5b8235905067ffffffffffffffff811115611138576111376110fe565b5b60208301915083602082028301111561115457611153611102565b5b9250929050565b5f805f6040848603121561117257611171610ef5565b5b5f84013567ffffffffffffffff81111561118f5761118e610ef9565b5b61119b86828701611106565b935093505060206111ae86828701610f76565b9150509250925092565b5f80604083850312156111ce576111cd610ef5565b5b5f6111db85828601610f43565b92505060206111ec85828601610f43565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061123a57607f821691505b60208210810361124d5761124c6111f6565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f6060820190506112935f8301866110d2565b6112a06020830185610ffb565b6112ad6040830184610ffb565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6112ec82610f57565b91506112f783610f57565b925082820190508082111561130f5761130e6112b5565b5b92915050565b5f61131f82610f57565b915061132a83610f57565b925082820261133881610f57565b9150828204841483151761134f5761134e6112b5565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61138d82610f57565b915061139883610f57565b9250826113a8576113a7611356565b5b82820490509291505056fea26469706673582212207b66b6972560acb33c4bb58cfd0ee273b55435ad0588a251a1b9ddb55fcf222564736f6c634300081a0033

Deployed Bytecode Sourcemap

26512:168:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16519:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18812:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17621:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19580:249;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17472:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17783:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13698:103;;;:::i;:::-;;13023:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16729:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22199:210;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18106:182;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22417:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18351:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13956:220;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16519:91;16564:13;16597:5;16590:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16519:91;:::o;18812:190::-;18885:4;18902:13;18918:12;:10;:12::i;:::-;18902:28;;18941:31;18950:5;18957:7;18966:5;18941:8;:31::i;:::-;18990:4;18983:11;;;18812:190;;;;:::o;17621:99::-;17673:7;17700:12;;17693:19;;17621:99;:::o;19580:249::-;19667:4;19684:15;19702:12;:10;:12::i;:::-;19684:30;;19725:37;19741:4;19747:7;19756:5;19725:15;:37::i;:::-;19773:26;19783:4;19789:2;19793:5;19773:9;:26::i;:::-;19817:4;19810:11;;;19580:249;;;;;:::o;17472:84::-;17521:5;17546:2;17539:9;;17472:84;:::o;17783:118::-;17848:7;17875:9;:18;17885:7;17875:18;;;;;;;;;;;;;;;;17868:25;;17783:118;;;:::o;13698:103::-;12909:13;:11;:13::i;:::-;13763:30:::1;13790:1;13763:18;:30::i;:::-;13698:103::o:0;13023:87::-;13069:7;13096:6;;;;;;;;;;;13089:13;;13023:87;:::o;16729:95::-;16776:13;16809:7;16802:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16729:95;:::o;22199:210::-;12909:13;:11;:13::i;:::-;22299:9:::1;22294:108;22318:11;;:18;;22314:1;:22;22294:108;;;22385:5;22358:8;:24;22367:11;;22379:1;22367:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;22358:24;;;;;;;;;;;;;;;:32;;;;22338:3;;;;;;;22294:108;;;;22199:210:::0;;;:::o;18106:182::-;18175:4;18192:13;18208:12;:10;:12::i;:::-;18192:28;;18231:27;18241:5;18248:2;18252:5;18231:9;:27::i;:::-;18276:4;18269:11;;;18106:182;;;;:::o;22417:118::-;22480:4;22526:1;22504:8;:19;22513:9;22504:19;;;;;;;;;;;;;;;;:23;22497:30;;22417:118;;;:::o;18351:142::-;18431:7;18458:11;:18;18470:5;18458:18;;;;;;;;;;;;;;;:27;18477:7;18458:27;;;;;;;;;;;;;;;;18451:34;;18351:142;;;;:::o;13956:220::-;12909:13;:11;:13::i;:::-;14061:1:::1;14041:22;;:8;:22;;::::0;14037:93:::1;;14115:1;14087:31;;;;;;;;;;;:::i;:::-;;;;;;;;14037:93;14140:28;14159:8;14140:18;:28::i;:::-;13956:220:::0;:::o;4302:98::-;4355:7;4382:10;4375:17;;4302:98;:::o;24193:130::-;24278:37;24287:5;24294:7;24303:5;24310:4;24278:8;:37::i;:::-;24193:130;;;:::o;25909:487::-;26009:24;26036:25;26046:5;26053:7;26036:9;:25::i;:::-;26009:52;;26096:17;26076:16;:37;26072:317;;26153:5;26134:16;:24;26130:132;;;26213:7;26222:16;26240:5;26186:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;26130:132;26305:57;26314:5;26321:7;26349:5;26330:16;:24;26356:5;26305:8;:57::i;:::-;26072:317;25998:398;25909:487;;;:::o;20214:308::-;20314:1;20298:18;;:4;:18;;;20294:88;;20367:1;20340:30;;;;;;;;;;;:::i;:::-;;;;;;;;20294:88;20410:1;20396:16;;:2;:16;;;20392:88;;20465:1;20436:32;;;;;;;;;;;:::i;:::-;;;;;;;;20392:88;20490:24;20498:4;20504:2;20508:5;20490:7;:24::i;:::-;20214:308;;;:::o;13188:166::-;13259:12;:10;:12::i;:::-;13248:23;;:7;:5;:7::i;:::-;:23;;;13244:103;;13322:12;:10;:12::i;:::-;13295:40;;;;;;;;;;;:::i;:::-;;;;;;;;13244:103;13188:166::o;14336:191::-;14410:16;14429:6;;;;;;;;;;;14410:25;;14455:8;14446:6;;:17;;;;;;;;;;;;;;;;;;14510:8;14479:40;;14500:8;14479:40;;;;;;;;;;;;14399:128;14336:191;:::o;25174:443::-;25304:1;25287:19;;:5;:19;;;25283:91;;25359:1;25330:32;;;;;;;;;;;:::i;:::-;;;;;;;;25283:91;25407:1;25388:21;;:7;:21;;;25384:92;;25461:1;25433:31;;;;;;;;;;;:::i;:::-;;;;;;;;25384:92;25516:5;25486:11;:18;25498:5;25486:18;;;;;;;;;;;;;;;:27;25505:7;25486:27;;;;;;;;;;;;;;;:35;;;;25536:9;25532:78;;;25583:7;25567:31;;25576:5;25567:31;;;25592:5;25567:31;;;;;;:::i;:::-;;;;;;;;25532:78;25174:443;;;;:::o;20846:1145::-;20952:1;20936:18;;:4;:18;;;20932:552;;21090:5;21074:12;;:21;;;;;;;:::i;:::-;;;;;;;;20932:552;;;21128:19;21150:9;:15;21160:4;21150:15;;;;;;;;;;;;;;;;21128:37;;21198:5;21184:11;:19;21180:117;;;21256:4;21262:11;21275:5;21231:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;21180:117;21452:5;21438:11;:19;21420:9;:15;21430:4;21420:15;;;;;;;;;;;;;;;:37;;;;21113:371;20932:552;21514:1;21500:16;;:2;:16;;;21496:445;;21682:5;21666:12;;:21;;;;;;;;;;;21496:445;;;21899:15;21902:4;21908:5;21899:2;:15::i;:::-;21882:9;:13;21892:2;21882:13;;;;;;;;;;;;;;;;:32;;;;;;;;;;;21496:445;21973:2;21958:25;;21967:4;21958:25;;;21977:5;21958:25;;;;;;:::i;:::-;;;;;;;;20846:1145;;;:::o;21999:192::-;22063:7;22103:1;22086:8;:14;22095:4;22086:14;;;;;;;;;;;;;;;;:18;:40;;;;22124:1;22108:18;;:4;:18;;;22086:40;22083:100;;;22135:5;22128:12;;;;22083:100;22177:6;22171:3;22163:5;:11;;;;:::i;:::-;:20;;;;:::i;:::-;22156:27;;21999:192;;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:139::-;376:6;371:3;366;360:23;417:1;408:6;403:3;399:16;392:27;287:139;;;:::o;432:102::-;473:6;524:2;520:7;515:2;508:5;504:14;500:28;490:38;;432:102;;;:::o;540:377::-;628:3;656:39;689:5;656:39;:::i;:::-;711:71;775:6;770:3;711:71;:::i;:::-;704:78;;791:65;849:6;844:3;837:4;830:5;826:16;791:65;:::i;:::-;881:29;903:6;881:29;:::i;:::-;876:3;872:39;865:46;;632:285;540:377;;;;:::o;923:313::-;1036:4;1074:2;1063:9;1059:18;1051:26;;1123:9;1117:4;1113:20;1109:1;1098:9;1094:17;1087:47;1151:78;1224:4;1215:6;1151:78;:::i;:::-;1143:86;;923:313;;;;:::o;1323:117::-;1432:1;1429;1422:12;1446:117;1555:1;1552;1545:12;1569:126;1606:7;1646:42;1639:5;1635:54;1624:65;;1569:126;;;:::o;1701:96::-;1738:7;1767:24;1785:5;1767:24;:::i;:::-;1756:35;;1701:96;;;:::o;1803:122::-;1876:24;1894:5;1876:24;:::i;:::-;1869:5;1866:35;1856:63;;1915:1;1912;1905:12;1856:63;1803:122;:::o;1931:139::-;1977:5;2015:6;2002:20;1993:29;;2031:33;2058:5;2031:33;:::i;:::-;1931:139;;;;:::o;2076:77::-;2113:7;2142:5;2131:16;;2076:77;;;:::o;2159:122::-;2232:24;2250:5;2232:24;:::i;:::-;2225:5;2222:35;2212:63;;2271:1;2268;2261:12;2212:63;2159:122;:::o;2287:139::-;2333:5;2371:6;2358:20;2349:29;;2387:33;2414:5;2387:33;:::i;:::-;2287:139;;;;:::o;2432:474::-;2500:6;2508;2557:2;2545:9;2536:7;2532:23;2528:32;2525:119;;;2563:79;;:::i;:::-;2525:119;2683:1;2708:53;2753:7;2744:6;2733:9;2729:22;2708:53;:::i;:::-;2698:63;;2654:117;2810:2;2836:53;2881:7;2872:6;2861:9;2857:22;2836:53;:::i;:::-;2826:63;;2781:118;2432:474;;;;;:::o;2912:90::-;2946:7;2989:5;2982:13;2975:21;2964:32;;2912:90;;;:::o;3008:109::-;3089:21;3104:5;3089:21;:::i;:::-;3084:3;3077:34;3008:109;;:::o;3123:210::-;3210:4;3248:2;3237:9;3233:18;3225:26;;3261:65;3323:1;3312:9;3308:17;3299:6;3261:65;:::i;:::-;3123:210;;;;:::o;3339:118::-;3426:24;3444:5;3426:24;:::i;:::-;3421:3;3414:37;3339:118;;:::o;3463:222::-;3556:4;3594:2;3583:9;3579:18;3571:26;;3607:71;3675:1;3664:9;3660:17;3651:6;3607:71;:::i;:::-;3463:222;;;;:::o;3691:619::-;3768:6;3776;3784;3833:2;3821:9;3812:7;3808:23;3804:32;3801:119;;;3839:79;;:::i;:::-;3801:119;3959:1;3984:53;4029:7;4020:6;4009:9;4005:22;3984:53;:::i;:::-;3974:63;;3930:117;4086:2;4112:53;4157:7;4148:6;4137:9;4133:22;4112:53;:::i;:::-;4102:63;;4057:118;4214:2;4240:53;4285:7;4276:6;4265:9;4261:22;4240:53;:::i;:::-;4230:63;;4185:118;3691:619;;;;;:::o;4316:86::-;4351:7;4391:4;4384:5;4380:16;4369:27;;4316:86;;;:::o;4408:112::-;4491:22;4507:5;4491:22;:::i;:::-;4486:3;4479:35;4408:112;;:::o;4526:214::-;4615:4;4653:2;4642:9;4638:18;4630:26;;4666:67;4730:1;4719:9;4715:17;4706:6;4666:67;:::i;:::-;4526:214;;;;:::o;4746:329::-;4805:6;4854:2;4842:9;4833:7;4829:23;4825:32;4822:119;;;4860:79;;:::i;:::-;4822:119;4980:1;5005:53;5050:7;5041:6;5030:9;5026:22;5005:53;:::i;:::-;4995:63;;4951:117;4746:329;;;;:::o;5081:118::-;5168:24;5186:5;5168:24;:::i;:::-;5163:3;5156:37;5081:118;;:::o;5205:222::-;5298:4;5336:2;5325:9;5321:18;5313:26;;5349:71;5417:1;5406:9;5402:17;5393:6;5349:71;:::i;:::-;5205:222;;;;:::o;5433:117::-;5542:1;5539;5532:12;5556:117;5665:1;5662;5655:12;5679:117;5788:1;5785;5778:12;5819:568;5892:8;5902:6;5952:3;5945:4;5937:6;5933:17;5929:27;5919:122;;5960:79;;:::i;:::-;5919:122;6073:6;6060:20;6050:30;;6103:18;6095:6;6092:30;6089:117;;;6125:79;;:::i;:::-;6089:117;6239:4;6231:6;6227:17;6215:29;;6293:3;6285:4;6277:6;6273:17;6263:8;6259:32;6256:41;6253:128;;;6300:79;;:::i;:::-;6253:128;5819:568;;;;;:::o;6393:704::-;6488:6;6496;6504;6553:2;6541:9;6532:7;6528:23;6524:32;6521:119;;;6559:79;;:::i;:::-;6521:119;6707:1;6696:9;6692:17;6679:31;6737:18;6729:6;6726:30;6723:117;;;6759:79;;:::i;:::-;6723:117;6872:80;6944:7;6935:6;6924:9;6920:22;6872:80;:::i;:::-;6854:98;;;;6650:312;7001:2;7027:53;7072:7;7063:6;7052:9;7048:22;7027:53;:::i;:::-;7017:63;;6972:118;6393:704;;;;;:::o;7103:474::-;7171:6;7179;7228:2;7216:9;7207:7;7203:23;7199:32;7196:119;;;7234:79;;:::i;:::-;7196:119;7354:1;7379:53;7424:7;7415:6;7404:9;7400:22;7379:53;:::i;:::-;7369:63;;7325:117;7481:2;7507:53;7552:7;7543:6;7532:9;7528:22;7507:53;:::i;:::-;7497:63;;7452:118;7103:474;;;;;:::o;7583:180::-;7631:77;7628:1;7621:88;7728:4;7725:1;7718:15;7752:4;7749:1;7742:15;7769:320;7813:6;7850:1;7844:4;7840:12;7830:22;;7897:1;7891:4;7887:12;7918:18;7908:81;;7974:4;7966:6;7962:17;7952:27;;7908:81;8036:2;8028:6;8025:14;8005:18;8002:38;7999:84;;8055:18;;:::i;:::-;7999:84;7820:269;7769:320;;;:::o;8095:180::-;8143:77;8140:1;8133:88;8240:4;8237:1;8230:15;8264:4;8261:1;8254:15;8281:442;8430:4;8468:2;8457:9;8453:18;8445:26;;8481:71;8549:1;8538:9;8534:17;8525:6;8481:71;:::i;:::-;8562:72;8630:2;8619:9;8615:18;8606:6;8562:72;:::i;:::-;8644;8712:2;8701:9;8697:18;8688:6;8644:72;:::i;:::-;8281:442;;;;;;:::o;8729:180::-;8777:77;8774:1;8767:88;8874:4;8871:1;8864:15;8898:4;8895:1;8888:15;8915:191;8955:3;8974:20;8992:1;8974:20;:::i;:::-;8969:25;;9008:20;9026:1;9008:20;:::i;:::-;9003:25;;9051:1;9048;9044:9;9037:16;;9072:3;9069:1;9066:10;9063:36;;;9079:18;;:::i;:::-;9063:36;8915:191;;;;:::o;9112:410::-;9152:7;9175:20;9193:1;9175:20;:::i;:::-;9170:25;;9209:20;9227:1;9209:20;:::i;:::-;9204:25;;9264:1;9261;9257:9;9286:30;9304:11;9286:30;:::i;:::-;9275:41;;9465:1;9456:7;9452:15;9449:1;9446:22;9426:1;9419:9;9399:83;9376:139;;9495:18;;:::i;:::-;9376:139;9160:362;9112:410;;;;:::o;9528:180::-;9576:77;9573:1;9566:88;9673:4;9670:1;9663:15;9697:4;9694:1;9687:15;9714:185;9754:1;9771:20;9789:1;9771:20;:::i;:::-;9766:25;;9805:20;9823:1;9805:20;:::i;:::-;9800:25;;9844:1;9834:35;;9849:18;;:::i;:::-;9834:35;9891:1;9888;9884:9;9879:14;;9714:185;;;;:::o

Swarm Source

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