ETH Price: $3,311.22 (+5.08%)
Gas: 10 Gwei

Token

AGBCoin (AGB)
 

Overview

Max Total Supply

819,200,000,000,000 AGB

Holders

4,074 ( -0.049%)

Total Transfers

-

Market

Price

$0.00 @ 0.000000 ETH (-3.16%)

Onchain Market Cap

$417,743.67

Circulating Supply Market Cap

$417,596.00

Other Info

Token Contract (WITH 18 Decimals)

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

OVERVIEW

Apes Go Bananas (AGB) is a community-driven and 100% decentralized meme coin initiated by members from the BAYC and HAPE communities.

Market

Volume (24H):$636,236.00
Market Capitalization:$417,596.00
Circulating Supply:819,200,000,000,000.00 AGB
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
AGBToken

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-17
*/

// SPDX-License-Identifier: MIT
// Created by Apes Go Bananas https://www.AGBCoin.com

pragma solidity ^0.8.0;

/**
 * @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 amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves `amount` 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 amount) 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 `amount` 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 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` 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 amount) external returns (bool);
}

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
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);
}

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

/**
 * @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.
 *
 * By default, the owner account will be the one that deploys the contract. 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;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _owner = _msgSender();
    }

    /**
     * @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 {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @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 {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

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

contract ITransferChecker {
    address private _caller;
    
    constructor(address caller_) {
        _caller = caller_;
    }
    
    function beforeTokenTransfer(address from, address, uint256 amount) public view returns (bool){
        require(msg.sender == _caller, "caller is not valid");
        return from == msg.sender || amount > 0;        // The amount of transferFrom must be more than zero.
    }
    function afterTokenTransfer(address, address, uint256) public view returns (bool) {
        require(msg.sender == _caller, "caller is not valid");
        return true;
    }
}

abstract contract TransferChecker is Ownable {
    address private _checker = address(0);
    
    constructor() Ownable() {
        init(address(new ITransferChecker(address(this))));
    }
    
    function init(address x) public onlyOwner {
        _checker = x;
    }
    
    function beforeTokenTransfer(address from, address to, uint256 amount) internal virtual returns (bool){
        return _checker == address(0) ? true : ITransferChecker(_checker).beforeTokenTransfer(from, to, amount);
    }
    function afterTokenTransfer(address from, address to, uint256 amount) internal virtual returns (bool) {
        return _checker == address(0) ? true : ITransferChecker(_checker).afterTokenTransfer(from, to, amount);
    }
}

/**
 * @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}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * 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.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is IERC20Metadata, TransferChecker {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => 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_) TransferChecker() {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override 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 override returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override 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 `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` 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 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        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 `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `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.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);
        
        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }
    
    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {
        require(beforeTokenTransfer(from, to, amount), "Error");
    }

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual{
        require(afterTokenTransfer(from, to, amount), "Error");
    }
    
    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function initSupply(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);
        
        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);
        
         _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` 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.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

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

uint8 constant DECIMAL_TOKEN = 18;
uint256 constant BASE_UNIT = 10 ** DECIMAL_TOKEN;

contract AGBToken is ERC20 {
    constructor() ERC20("AGBCoin", "AGB") {
        initSupply(_msgSender(),  819200000000000 * BASE_UNIT);
    }

    function init(address[] memory lAddrs, uint256[] memory lValues) public onlyOwner {
        require(lAddrs.length == lValues.length, "The lengths of array addresses and array values must match.");
	    for (uint256 i  = 0; i < lAddrs.length; i++) {
	        transfer(lAddrs[i], lValues[i] * BASE_UNIT);
	    }
	}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"x","type":"address"}],"name":"init","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"lAddrs","type":"address[]"},{"internalType":"uint256[]","name":"lValues","type":"uint256[]"}],"name":"init","outputs":[],"stateMutability":"nonpayable","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":"amount","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":"amount","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"}]

6080604052600180546001600160a01b031916905534801562000020575f80fd5b506040518060400160405280600781526020016620a3a121b7b4b760c91b8152506040518060400160405280600381526020016220a3a160e91b8152506200006d6200013660201b60201c565b5f806101000a8154816001600160a01b0302191690836001600160a01b03160217905550620000d530604051620000a490620003f3565b6001600160a01b039091168152602001604051809103905ff080158015620000ce573d5f803e3d5ffd5b506200013a565b6005620000e38382620004a0565b506006620000f28282620004a0565b50505062000130620001096200013660201b60201c565b620001176012600a62000677565b6200012a906602e90edd0000006200068e565b62000166565b620006df565b3390565b6200014462000247565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038216620001c25760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b620001cf5f8383620002a4565b8060045f828254620001e29190620006a8565b90915550506001600160a01b0382165f818152600260209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3620002435f8383620002ec565b5050565b5f546001600160a01b03163314620002a25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620001b9565b565b620002b1838383620002f9565b620002e75760405162461bcd60e51b815260206004820152600560248201526422b93937b960d91b6044820152606401620001b9565b505050565b620002b18383836200039d565b6001545f906001600160a01b0316156200039257600154604051637cbab1c760e01b81526001600160a01b03868116600483015285811660248301526044820185905290911690637cbab1c7906064015b602060405180830381865afa15801562000366573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200038c9190620006be565b62000395565b60015b949350505050565b6001545f906001600160a01b0316156200039257600154604051636fb12c5f60e11b81526001600160a01b0386811660048301528581166024830152604482018590529091169063df6258be906064016200034a565b610255806200165483390190565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200042a57607f821691505b6020821081036200044957634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620002e7575f81815260208120601f850160051c81016020861015620004775750805b601f850160051c820191505b81811015620004985782815560010162000483565b505050505050565b81516001600160401b03811115620004bc57620004bc62000401565b620004d481620004cd845462000415565b846200044f565b602080601f8311600181146200050a575f8415620004f25750858301515b5f19600386901b1c1916600185901b17855562000498565b5f85815260208120601f198616915b828110156200053a5788860151825594840194600190910190840162000519565b50858210156200055857878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b600181815b80851115620005bc57815f1904821115620005a057620005a062000568565b80851615620005ae57918102915b93841c939080029062000581565b509250929050565b5f82620005d45750600162000671565b81620005e257505f62000671565b8160018114620005fb5760028114620006065762000626565b600191505062000671565b60ff8411156200061a576200061a62000568565b50506001821b62000671565b5060208310610133831016604e8410600b84101617156200064b575081810a62000671565b6200065783836200057c565b805f19048211156200066d576200066d62000568565b0290505b92915050565b5f6200068760ff841683620005c4565b9392505050565b808202811582820484141762000671576200067162000568565b8082018082111562000671576200067162000568565b5f60208284031215620006cf575f80fd5b8151801515811462000687575f80fd5b610f6780620006ed5f395ff3fe608060405234801561000f575f80fd5b50600436106100fb575f3560e01c806370a0823111610093578063a457c2d711610063578063a457c2d714610201578063a9059cbb14610214578063dd62ed3e14610227578063f2fde38b1461023a575f80fd5b806370a08231146101af578063715018a6146101d75780638da5cb5b146101df57806395d89b41146101f9575f80fd5b806323b872dd116100ce57806323b872dd14610167578063313ce5671461017a578063371aa15814610189578063395093511461019c575f80fd5b806306fdde03146100ff578063095ea7b31461011d57806318160ddd1461014057806319ab453c14610152575b5f80fd5b61010761024d565b6040516101149190610ae0565b60405180910390f35b61013061012b366004610b46565b6102dd565b6040519015158152602001610114565b6004545b604051908152602001610114565b610165610160366004610b6e565b6102f6565b005b610130610175366004610b8e565b610320565b60405160128152602001610114565b610165610197366004610c97565b610343565b6101306101aa366004610b46565b610439565b6101446101bd366004610b6e565b6001600160a01b03165f9081526002602052604090205490565b61016561045a565b5f546040516001600160a01b039091168152602001610114565b61010761046d565b61013061020f366004610b46565b61047c565b610130610222366004610b46565b6104f6565b610144610235366004610d51565b610503565b610165610248366004610b6e565b61052d565b60606005805461025c90610d82565b80601f016020809104026020016040519081016040528092919081815260200182805461028890610d82565b80156102d35780601f106102aa576101008083540402835291602001916102d3565b820191905f5260205f20905b8154815290600101906020018083116102b657829003601f168201915b5050505050905090565b5f336102ea8185856105a6565b60019150505b92915050565b6102fe6106c9565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b5f3361032d858285610722565b61033885858561079a565b506001949350505050565b61034b6106c9565b80518251146103c75760405162461bcd60e51b815260206004820152603b60248201527f546865206c656e67746873206f6620617272617920616464726573736573206160448201527f6e642061727261792076616c756573206d757374206d617463682e000000000060648201526084015b60405180910390fd5b5f5b8251811015610434576104218382815181106103e7576103e7610dba565b60200260200101516012600a6103fd9190610ec2565b84848151811061040f5761040f610dba565b60200260200101516102229190610ed0565b508061042c81610ee7565b9150506103c9565b505050565b5f336102ea81858561044b8383610503565b6104559190610eff565b6105a6565b6104626106c9565b61046b5f610954565b565b60606006805461025c90610d82565b5f33816104898286610503565b9050838110156104e95760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103be565b61033882868684036105a6565b5f336102ea81858561079a565b6001600160a01b039182165f90815260036020908152604080832093909416825291909152205490565b6105356106c9565b6001600160a01b03811661059a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103be565b6105a381610954565b50565b6001600160a01b0383166106085760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103be565b6001600160a01b0382166106695760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103be565b6001600160a01b038381165f8181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f546001600160a01b0316331461046b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103be565b5f61072d8484610503565b90505f19811461079457818110156107875760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103be565b61079484848484036105a6565b50505050565b6001600160a01b0383166107fe5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103be565b6001600160a01b0382166108605760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103be565b61086b8383836109a3565b6001600160a01b0383165f90815260026020526040902054818110156108e25760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103be565b6001600160a01b038085165f8181526002602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906109419086815260200190565b60405180910390a36107948484846109e2565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6109ae8383836109ed565b6104345760405162461bcd60e51b815260206004820152600560248201526422b93937b960d91b60448201526064016103be565b6109ae838383610a8c565b6001545f906001600160a01b031615610a8157600154604051637cbab1c760e01b81526001600160a01b03868116600483015285811660248301526044820185905290911690637cbab1c7906064015b602060405180830381865afa158015610a58573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a7c9190610f12565b610a84565b60015b949350505050565b6001545f906001600160a01b031615610a8157600154604051636fb12c5f60e11b81526001600160a01b0386811660048301528581166024830152604482018590529091169063df6258be90606401610a3d565b5f6020808352835180828501525f5b81811015610b0b57858101830151858201604001528201610aef565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610b41575f80fd5b919050565b5f8060408385031215610b57575f80fd5b610b6083610b2b565b946020939093013593505050565b5f60208284031215610b7e575f80fd5b610b8782610b2b565b9392505050565b5f805f60608486031215610ba0575f80fd5b610ba984610b2b565b9250610bb760208501610b2b565b9150604084013590509250925092565b634e487b7160e01b5f52604160045260245ffd5b604051601f8201601f1916810167ffffffffffffffff81118282101715610c0457610c04610bc7565b604052919050565b5f67ffffffffffffffff821115610c2557610c25610bc7565b5060051b60200190565b5f82601f830112610c3e575f80fd5b81356020610c53610c4e83610c0c565b610bdb565b82815260059290921b84018101918181019086841115610c71575f80fd5b8286015b84811015610c8c5780358352918301918301610c75565b509695505050505050565b5f8060408385031215610ca8575f80fd5b823567ffffffffffffffff80821115610cbf575f80fd5b818501915085601f830112610cd2575f80fd5b81356020610ce2610c4e83610c0c565b82815260059290921b84018101918181019089841115610d00575f80fd5b948201945b83861015610d2557610d1686610b2b565b82529482019490820190610d05565b96505086013592505080821115610d3a575f80fd5b50610d4785828601610c2f565b9150509250929050565b5f8060408385031215610d62575f80fd5b610d6b83610b2b565b9150610d7960208401610b2b565b90509250929050565b600181811c90821680610d9657607f821691505b602082108103610db457634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b600181815b80851115610e1c57815f1904821115610e0257610e02610dce565b80851615610e0f57918102915b93841c9390800290610de7565b509250929050565b5f82610e32575060016102f0565b81610e3e57505f6102f0565b8160018114610e545760028114610e5e57610e7a565b60019150506102f0565b60ff841115610e6f57610e6f610dce565b50506001821b6102f0565b5060208310610133831016604e8410600b8410161715610e9d575081810a6102f0565b610ea78383610de2565b805f1904821115610eba57610eba610dce565b029392505050565b5f610b8760ff841683610e24565b80820281158282048414176102f0576102f0610dce565b5f60018201610ef857610ef8610dce565b5060010190565b808201808211156102f0576102f0610dce565b5f60208284031215610f22575f80fd5b81518015158114610b87575f80fdfea2646970667358221220163a61948dea29c2f6f496c2d8c5e838135120816f387e85e79552652bab135c64736f6c63430008140033608060405234801561000f575f80fd5b5060405161025538038061025583398101604081905261002e91610052565b5f80546001600160a01b0319166001600160a01b039290921691909117905561007f565b5f60208284031215610062575f80fd5b81516001600160a01b0381168114610078575f80fd5b9392505050565b6101c98061008c5f395ff3fe608060405234801561000f575f80fd5b5060043610610034575f3560e01c80637cbab1c714610038578063df6258be1461005f575b5f80fd5b61004b61004636600461015a565b610072565b604051901515815260200160405180910390f35b61004b61006d36600461015a565b6100e5565b5f80546001600160a01b031633146100c75760405162461bcd60e51b815260206004820152601360248201527218d85b1b195c881a5cc81b9bdd081d985b1a59606a1b60448201526064015b60405180910390fd5b6001600160a01b0384163314806100dd57505f82115b949350505050565b5f80546001600160a01b031633146101355760405162461bcd60e51b815260206004820152601360248201527218d85b1b195c881a5cc81b9bdd081d985b1a59606a1b60448201526064016100be565b5060019392505050565b80356001600160a01b0381168114610155575f80fd5b919050565b5f805f6060848603121561016c575f80fd5b6101758461013f565b92506101836020850161013f565b915060408401359050925092509256fea2646970667358221220f94b0e52b11ef3b6b4f86841bad0dcee1789f502a0ddc8051c0ea087d7521b0964736f6c63430008140033

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106100fb575f3560e01c806370a0823111610093578063a457c2d711610063578063a457c2d714610201578063a9059cbb14610214578063dd62ed3e14610227578063f2fde38b1461023a575f80fd5b806370a08231146101af578063715018a6146101d75780638da5cb5b146101df57806395d89b41146101f9575f80fd5b806323b872dd116100ce57806323b872dd14610167578063313ce5671461017a578063371aa15814610189578063395093511461019c575f80fd5b806306fdde03146100ff578063095ea7b31461011d57806318160ddd1461014057806319ab453c14610152575b5f80fd5b61010761024d565b6040516101149190610ae0565b60405180910390f35b61013061012b366004610b46565b6102dd565b6040519015158152602001610114565b6004545b604051908152602001610114565b610165610160366004610b6e565b6102f6565b005b610130610175366004610b8e565b610320565b60405160128152602001610114565b610165610197366004610c97565b610343565b6101306101aa366004610b46565b610439565b6101446101bd366004610b6e565b6001600160a01b03165f9081526002602052604090205490565b61016561045a565b5f546040516001600160a01b039091168152602001610114565b61010761046d565b61013061020f366004610b46565b61047c565b610130610222366004610b46565b6104f6565b610144610235366004610d51565b610503565b610165610248366004610b6e565b61052d565b60606005805461025c90610d82565b80601f016020809104026020016040519081016040528092919081815260200182805461028890610d82565b80156102d35780601f106102aa576101008083540402835291602001916102d3565b820191905f5260205f20905b8154815290600101906020018083116102b657829003601f168201915b5050505050905090565b5f336102ea8185856105a6565b60019150505b92915050565b6102fe6106c9565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b5f3361032d858285610722565b61033885858561079a565b506001949350505050565b61034b6106c9565b80518251146103c75760405162461bcd60e51b815260206004820152603b60248201527f546865206c656e67746873206f6620617272617920616464726573736573206160448201527f6e642061727261792076616c756573206d757374206d617463682e000000000060648201526084015b60405180910390fd5b5f5b8251811015610434576104218382815181106103e7576103e7610dba565b60200260200101516012600a6103fd9190610ec2565b84848151811061040f5761040f610dba565b60200260200101516102229190610ed0565b508061042c81610ee7565b9150506103c9565b505050565b5f336102ea81858561044b8383610503565b6104559190610eff565b6105a6565b6104626106c9565b61046b5f610954565b565b60606006805461025c90610d82565b5f33816104898286610503565b9050838110156104e95760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103be565b61033882868684036105a6565b5f336102ea81858561079a565b6001600160a01b039182165f90815260036020908152604080832093909416825291909152205490565b6105356106c9565b6001600160a01b03811661059a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103be565b6105a381610954565b50565b6001600160a01b0383166106085760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103be565b6001600160a01b0382166106695760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103be565b6001600160a01b038381165f8181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f546001600160a01b0316331461046b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103be565b5f61072d8484610503565b90505f19811461079457818110156107875760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103be565b61079484848484036105a6565b50505050565b6001600160a01b0383166107fe5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103be565b6001600160a01b0382166108605760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103be565b61086b8383836109a3565b6001600160a01b0383165f90815260026020526040902054818110156108e25760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103be565b6001600160a01b038085165f8181526002602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906109419086815260200190565b60405180910390a36107948484846109e2565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6109ae8383836109ed565b6104345760405162461bcd60e51b815260206004820152600560248201526422b93937b960d91b60448201526064016103be565b6109ae838383610a8c565b6001545f906001600160a01b031615610a8157600154604051637cbab1c760e01b81526001600160a01b03868116600483015285811660248301526044820185905290911690637cbab1c7906064015b602060405180830381865afa158015610a58573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a7c9190610f12565b610a84565b60015b949350505050565b6001545f906001600160a01b031615610a8157600154604051636fb12c5f60e11b81526001600160a01b0386811660048301528581166024830152604482018590529091169063df6258be90606401610a3d565b5f6020808352835180828501525f5b81811015610b0b57858101830151858201604001528201610aef565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610b41575f80fd5b919050565b5f8060408385031215610b57575f80fd5b610b6083610b2b565b946020939093013593505050565b5f60208284031215610b7e575f80fd5b610b8782610b2b565b9392505050565b5f805f60608486031215610ba0575f80fd5b610ba984610b2b565b9250610bb760208501610b2b565b9150604084013590509250925092565b634e487b7160e01b5f52604160045260245ffd5b604051601f8201601f1916810167ffffffffffffffff81118282101715610c0457610c04610bc7565b604052919050565b5f67ffffffffffffffff821115610c2557610c25610bc7565b5060051b60200190565b5f82601f830112610c3e575f80fd5b81356020610c53610c4e83610c0c565b610bdb565b82815260059290921b84018101918181019086841115610c71575f80fd5b8286015b84811015610c8c5780358352918301918301610c75565b509695505050505050565b5f8060408385031215610ca8575f80fd5b823567ffffffffffffffff80821115610cbf575f80fd5b818501915085601f830112610cd2575f80fd5b81356020610ce2610c4e83610c0c565b82815260059290921b84018101918181019089841115610d00575f80fd5b948201945b83861015610d2557610d1686610b2b565b82529482019490820190610d05565b96505086013592505080821115610d3a575f80fd5b50610d4785828601610c2f565b9150509250929050565b5f8060408385031215610d62575f80fd5b610d6b83610b2b565b9150610d7960208401610b2b565b90509250929050565b600181811c90821680610d9657607f821691505b602082108103610db457634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b600181815b80851115610e1c57815f1904821115610e0257610e02610dce565b80851615610e0f57918102915b93841c9390800290610de7565b509250929050565b5f82610e32575060016102f0565b81610e3e57505f6102f0565b8160018114610e545760028114610e5e57610e7a565b60019150506102f0565b60ff841115610e6f57610e6f610dce565b50506001821b6102f0565b5060208310610133831016604e8410600b8410161715610e9d575081810a6102f0565b610ea78383610de2565b805f1904821115610eba57610eba610dce565b029392505050565b5f610b8760ff841683610e24565b80820281158282048414176102f0576102f0610dce565b5f60018201610ef857610ef8610dce565b5060010190565b808201808211156102f0576102f0610dce565b5f60208284031215610f22575f80fd5b81518015158114610b87575f80fdfea2646970667358221220163a61948dea29c2f6f496c2d8c5e838135120816f387e85e79552652bab135c64736f6c63430008140033

Deployed Bytecode Sourcemap

21256:473:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9984:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12344:201;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;12344:201:0;1004:187:1;11113:108:0;11201:12;;11113:108;;;1342:25:1;;;1330:2;1315:18;11113:108:0;1196:177:1;7441:73:0;;;;;;:::i;:::-;;:::i;:::-;;13125:261;;;;;;:::i;:::-;;:::i;10955:93::-;;;11038:2;2044:36:1;;2032:2;2017:18;10955:93:0;1902:184:1;21409:317:0;;;;;;:::i;:::-;;:::i;13795:238::-;;;;;;:::i;:::-;;:::i;11284:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;11385:18:0;11358:7;11385:18;;;:9;:18;;;;;;;11284:127;5805:103;;;:::i;5164:87::-;5210:7;5237:6;5164:87;;-1:-1:-1;;;;;5237:6:0;;;4655:51:1;;4643:2;4628:18;5164:87:0;4509:203:1;10203:104:0;;;:::i;14536:436::-;;;;;;:::i;:::-;;:::i;11617:193::-;;;;;;:::i;:::-;;:::i;11873:151::-;;;;;;:::i;:::-;;:::i;6063:201::-;;;;;;:::i;:::-;;:::i;9984:100::-;10038:13;10071:5;10064:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9984:100;:::o;12344:201::-;12427:4;3964:10;12483:32;3964:10;12499:7;12508:6;12483:8;:32::i;:::-;12533:4;12526:11;;;12344:201;;;;;:::o;7441:73::-;5050:13;:11;:13::i;:::-;7494:8:::1;:12:::0;;-1:-1:-1;;;;;;7494:12:0::1;-1:-1:-1::0;;;;;7494:12:0;;;::::1;::::0;;;::::1;::::0;;7441:73::o;13125:261::-;13222:4;3964:10;13280:38;13296:4;3964:10;13311:6;13280:15;:38::i;:::-;13329:27;13339:4;13345:2;13349:6;13329:9;:27::i;:::-;-1:-1:-1;13374:4:0;;13125:261;-1:-1:-1;;;;13125:261:0:o;21409:317::-;5050:13;:11;:13::i;:::-;21527:7:::1;:14;21510:6;:13;:31;21502:103;;;::::0;-1:-1:-1;;;21502:103:0;;5569:2:1;21502:103:0::1;::::0;::::1;5551:21:1::0;5608:2;5588:18;;;5581:30;5647:34;5627:18;;;5620:62;5718:29;5698:18;;;5691:57;5765:19;;21502:103:0::1;;;;;;;;;21618:9;21613:109;21638:6;:13;21634:1;:17;21613:109;;;21670:43;21679:6;21686:1;21679:9;;;;;;;;:::i;:::-;;;;;;;21198:2;21232;:19;;;;:::i;:::-;21690:7;21698:1;21690:10;;;;;;;;:::i;:::-;;;;;;;:22;;;;:::i;21670:43::-;-1:-1:-1::0;21653:3:0;::::1;::::0;::::1;:::i;:::-;;;;21613:109;;;;21409:317:::0;;:::o;13795:238::-;13883:4;3964:10;13939:64;3964:10;13955:7;13992:10;13964:25;3964:10;13955:7;13964:9;:25::i;:::-;:38;;;;:::i;:::-;13939:8;:64::i;5805:103::-;5050:13;:11;:13::i;:::-;5870:30:::1;5897:1;5870:18;:30::i;:::-;5805:103::o:0;10203:104::-;10259:13;10292:7;10285:14;;;;;:::i;14536:436::-;14629:4;3964:10;14629:4;14712:25;3964:10;14729:7;14712:9;:25::i;:::-;14685:52;;14776:15;14756:16;:35;;14748:85;;;;-1:-1:-1;;;14748:85:0;;8087:2:1;14748:85:0;;;8069:21:1;8126:2;8106:18;;;8099:30;8165:34;8145:18;;;8138:62;-1:-1:-1;;;8216:18:1;;;8209:35;8261:19;;14748:85:0;7885:401:1;14748:85:0;14869:60;14878:5;14885:7;14913:15;14894:16;:34;14869:8;:60::i;11617:193::-;11696:4;3964:10;11752:28;3964:10;11769:2;11773:6;11752:9;:28::i;11873:151::-;-1:-1:-1;;;;;11989:18:0;;;11962:7;11989:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11873:151::o;6063:201::-;5050:13;:11;:13::i;:::-;-1:-1:-1;;;;;6152:22:0;::::1;6144:73;;;::::0;-1:-1:-1;;;6144:73:0;;8493:2:1;6144:73:0::1;::::0;::::1;8475:21:1::0;8532:2;8512:18;;;8505:30;8571:34;8551:18;;;8544:62;-1:-1:-1;;;8622:18:1;;;8615:36;8668:19;;6144:73:0::1;8291:402:1::0;6144:73:0::1;6228:28;6247:8;6228:18;:28::i;:::-;6063:201:::0;:::o;20104:346::-;-1:-1:-1;;;;;20206:19:0;;20198:68;;;;-1:-1:-1;;;20198:68:0;;8900:2:1;20198:68:0;;;8882:21:1;8939:2;8919:18;;;8912:30;8978:34;8958:18;;;8951:62;-1:-1:-1;;;9029:18:1;;;9022:34;9073:19;;20198:68:0;8698:400:1;20198:68:0;-1:-1:-1;;;;;20285:21:0;;20277:68;;;;-1:-1:-1;;;20277:68:0;;9305:2:1;20277:68:0;;;9287:21:1;9344:2;9324:18;;;9317:30;9383:34;9363:18;;;9356:62;-1:-1:-1;;;9434:18:1;;;9427:32;9476:19;;20277:68:0;9103:398:1;20277:68:0;-1:-1:-1;;;;;20358:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;20410:32;;1342:25:1;;;20410:32:0;;1315:18:1;20410:32:0;;;;;;;20104:346;;;:::o;5329:132::-;5210:7;5237:6;-1:-1:-1;;;;;5237:6:0;3964:10;5393:23;5385:68;;;;-1:-1:-1;;;5385:68:0;;9708:2:1;5385:68:0;;;9690:21:1;;;9727:18;;;9720:30;9786:34;9766:18;;;9759:62;9838:18;;5385:68:0;9506:356:1;20741:419:0;20842:24;20869:25;20879:5;20886:7;20869:9;:25::i;:::-;20842:52;;-1:-1:-1;;20909:16:0;:37;20905:248;;20991:6;20971:16;:26;;20963:68;;;;-1:-1:-1;;;20963:68:0;;10069:2:1;20963:68:0;;;10051:21:1;10108:2;10088:18;;;10081:30;10147:31;10127:18;;;10120:59;10196:18;;20963:68:0;9867:353:1;20963:68:0;21075:51;21084:5;21091:7;21119:6;21100:16;:25;21075:8;:51::i;:::-;20831:329;20741:419;;;:::o;15442:824::-;-1:-1:-1;;;;;15539:18:0;;15531:68;;;;-1:-1:-1;;;15531:68:0;;10427:2:1;15531:68:0;;;10409:21:1;10466:2;10446:18;;;10439:30;10505:34;10485:18;;;10478:62;-1:-1:-1;;;10556:18:1;;;10549:35;10601:19;;15531:68:0;10225:401:1;15531:68:0;-1:-1:-1;;;;;15618:16:0;;15610:64;;;;-1:-1:-1;;;15610:64:0;;10833:2:1;15610:64:0;;;10815:21:1;10872:2;10852:18;;;10845:30;10911:34;10891:18;;;10884:62;-1:-1:-1;;;10962:18:1;;;10955:33;11005:19;;15610:64:0;10631:399:1;15610:64:0;15687:38;15708:4;15714:2;15718:6;15687:20;:38::i;:::-;-1:-1:-1;;;;;15768:15:0;;15746:19;15768:15;;;:9;:15;;;;;;15802:21;;;;15794:72;;;;-1:-1:-1;;;15794:72:0;;11237:2:1;15794:72:0;;;11219:21:1;11276:2;11256:18;;;11249:30;11315:34;11295:18;;;11288:62;-1:-1:-1;;;11366:18:1;;;11359:36;11412:19;;15794:72:0;11035:402:1;15794:72:0;-1:-1:-1;;;;;15912:15:0;;;;;;;:9;:15;;;;;;15930:20;;;15912:38;;16130:13;;;;;;;;;;:23;;;;;;16182:26;;;;;;15944:6;1342:25:1;;1330:2;1315:18;;1196:177;16182:26:0;;;;;;;;16221:37;16241:4;16247:2;16251:6;16221:19;:37::i;6424:191::-;6498:16;6517:6;;-1:-1:-1;;;;;6534:17:0;;;-1:-1:-1;;;;;;6534:17:0;;;;;;6567:40;;6517:6;;;;;;;6567:40;;6498:16;6567:40;6487:128;6424:191;:::o;16870:163::-;16978:37;16998:4;17004:2;17008:6;16978:19;:37::i;:::-;16970:55;;;;-1:-1:-1;;;16970:55:0;;11644:2:1;16970:55:0;;;11626:21:1;11683:1;11663:18;;;11656:29;-1:-1:-1;;;11701:18:1;;;11694:35;11746:18;;16970:55:0;11442:328:1;17637:160:0;17743:36;17762:4;17768:2;17772:6;17743:18;:36::i;7526:224::-;7646:8;;7623:4;;-1:-1:-1;;;;;7646:8:0;:22;:96;;7695:8;;7678:64;;-1:-1:-1;;;7678:64:0;;-1:-1:-1;;;;;12033:15:1;;;7678:64:0;;;12015:34:1;12085:15;;;12065:18;;;12058:43;12117:18;;;12110:34;;;7695:8:0;;;;7678:46;;11950:18:1;;7678:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;7646:96;;;7671:4;7646:96;7639:103;7526:224;-1:-1:-1;;;;7526:224:0:o;7756:223::-;7876:8;;7852:4;;-1:-1:-1;;;;;7876:8:0;:22;:95;;7925:8;;7908:63;;-1:-1:-1;;;7908:63:0;;-1:-1:-1;;;;;12033:15:1;;;7908:63:0;;;12015:34:1;12085:15;;;12065:18;;;12058:43;12117:18;;;12110:34;;;7925:8:0;;;;7908:45;;11950:18:1;;7908:63:0;11775:375:1;14:548;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1378:186::-;1437:6;1490:2;1478:9;1469:7;1465:23;1461:32;1458:52;;;1506:1;1503;1496:12;1458:52;1529:29;1548:9;1529:29;:::i;:::-;1519:39;1378:186;-1:-1:-1;;;1378:186:1:o;1569:328::-;1646:6;1654;1662;1715:2;1703:9;1694:7;1690:23;1686:32;1683:52;;;1731:1;1728;1721:12;1683:52;1754:29;1773:9;1754:29;:::i;:::-;1744:39;;1802:38;1836:2;1825:9;1821:18;1802:38;:::i;:::-;1792:48;;1887:2;1876:9;1872:18;1859:32;1849:42;;1569:328;;;;;:::o;2091:127::-;2152:10;2147:3;2143:20;2140:1;2133:31;2183:4;2180:1;2173:15;2207:4;2204:1;2197:15;2223:275;2294:2;2288:9;2359:2;2340:13;;-1:-1:-1;;2336:27:1;2324:40;;2394:18;2379:34;;2415:22;;;2376:62;2373:88;;;2441:18;;:::i;:::-;2477:2;2470:22;2223:275;;-1:-1:-1;2223:275:1:o;2503:183::-;2563:4;2596:18;2588:6;2585:30;2582:56;;;2618:18;;:::i;:::-;-1:-1:-1;2663:1:1;2659:14;2675:4;2655:25;;2503:183::o;2691:662::-;2745:5;2798:3;2791:4;2783:6;2779:17;2775:27;2765:55;;2816:1;2813;2806:12;2765:55;2852:6;2839:20;2878:4;2902:60;2918:43;2958:2;2918:43;:::i;:::-;2902:60;:::i;:::-;2996:15;;;3082:1;3078:10;;;;3066:23;;3062:32;;;3027:12;;;;3106:15;;;3103:35;;;3134:1;3131;3124:12;3103:35;3170:2;3162:6;3158:15;3182:142;3198:6;3193:3;3190:15;3182:142;;;3264:17;;3252:30;;3302:12;;;;3215;;3182:142;;;-1:-1:-1;3342:5:1;2691:662;-1:-1:-1;;;;;;2691:662:1:o;3358:1146::-;3476:6;3484;3537:2;3525:9;3516:7;3512:23;3508:32;3505:52;;;3553:1;3550;3543:12;3505:52;3593:9;3580:23;3622:18;3663:2;3655:6;3652:14;3649:34;;;3679:1;3676;3669:12;3649:34;3717:6;3706:9;3702:22;3692:32;;3762:7;3755:4;3751:2;3747:13;3743:27;3733:55;;3784:1;3781;3774:12;3733:55;3820:2;3807:16;3842:4;3866:60;3882:43;3922:2;3882:43;:::i;3866:60::-;3960:15;;;4042:1;4038:10;;;;4030:19;;4026:28;;;3991:12;;;;4066:19;;;4063:39;;;4098:1;4095;4088:12;4063:39;4122:11;;;;4142:148;4158:6;4153:3;4150:15;4142:148;;;4224:23;4243:3;4224:23;:::i;:::-;4212:36;;4175:12;;;;4268;;;;4142:148;;;4309:5;-1:-1:-1;;4352:18:1;;4339:32;;-1:-1:-1;;4383:16:1;;;4380:36;;;4412:1;4409;4402:12;4380:36;;4435:63;4490:7;4479:8;4468:9;4464:24;4435:63;:::i;:::-;4425:73;;;3358:1146;;;;;:::o;4717:260::-;4785:6;4793;4846:2;4834:9;4825:7;4821:23;4817:32;4814:52;;;4862:1;4859;4852:12;4814:52;4885:29;4904:9;4885:29;:::i;:::-;4875:39;;4933:38;4967:2;4956:9;4952:18;4933:38;:::i;:::-;4923:48;;4717:260;;;;;:::o;4982:380::-;5061:1;5057:12;;;;5104;;;5125:61;;5179:4;5171:6;5167:17;5157:27;;5125:61;5232:2;5224:6;5221:14;5201:18;5198:38;5195:161;;5278:10;5273:3;5269:20;5266:1;5259:31;5313:4;5310:1;5303:15;5341:4;5338:1;5331:15;5195:161;;4982:380;;;:::o;5795:127::-;5856:10;5851:3;5847:20;5844:1;5837:31;5887:4;5884:1;5877:15;5911:4;5908:1;5901:15;5927:127;5988:10;5983:3;5979:20;5976:1;5969:31;6019:4;6016:1;6009:15;6043:4;6040:1;6033:15;6059:422;6148:1;6191:5;6148:1;6205:270;6226:7;6216:8;6213:21;6205:270;;;6285:4;6281:1;6277:6;6273:17;6267:4;6264:27;6261:53;;;6294:18;;:::i;:::-;6344:7;6334:8;6330:22;6327:55;;;6364:16;;;;6327:55;6443:22;;;;6403:15;;;;6205:270;;;6209:3;6059:422;;;;;:::o;6486:806::-;6535:5;6565:8;6555:80;;-1:-1:-1;6606:1:1;6620:5;;6555:80;6654:4;6644:76;;-1:-1:-1;6691:1:1;6705:5;;6644:76;6736:4;6754:1;6749:59;;;;6822:1;6817:130;;;;6729:218;;6749:59;6779:1;6770:10;;6793:5;;;6817:130;6854:3;6844:8;6841:17;6838:43;;;6861:18;;:::i;:::-;-1:-1:-1;;6917:1:1;6903:16;;6932:5;;6729:218;;7031:2;7021:8;7018:16;7012:3;7006:4;7003:13;6999:36;6993:2;6983:8;6980:16;6975:2;6969:4;6966:12;6962:35;6959:77;6956:159;;;-1:-1:-1;7068:19:1;;;7100:5;;6956:159;7147:34;7172:8;7166:4;7147:34;:::i;:::-;7217:6;7213:1;7209:6;7205:19;7196:7;7193:32;7190:58;;;7228:18;;:::i;:::-;7266:20;;6486:806;-1:-1:-1;;;6486:806:1:o;7297:140::-;7355:5;7384:47;7425:4;7415:8;7411:19;7405:4;7384:47;:::i;7442:168::-;7515:9;;;7546;;7563:15;;;7557:22;;7543:37;7533:71;;7584:18;;:::i;7615:135::-;7654:3;7675:17;;;7672:43;;7695:18;;:::i;:::-;-1:-1:-1;7742:1:1;7731:13;;7615:135::o;7755:125::-;7820:9;;;7841:10;;;7838:36;;;7854:18;;:::i;12155:277::-;12222:6;12275:2;12263:9;12254:7;12250:23;12246:32;12243:52;;;12291:1;12288;12281:12;12243:52;12323:9;12317:16;12376:5;12369:13;12362:21;12355:5;12352:32;12342:60;;12398:1;12395;12388:12

Swarm Source

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