ETH Price: $3,014.66 (+4.64%)
Gas: 2 Gwei

Token

D3L (D3L)
 

Overview

Max Total Supply

219,987.525694444444444284 D3L

Holders

109

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
11.408333333333333333 D3L

Value
$0.00
0xdB12174285711931Ba6150822a5222f1FE3b8349
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:
D3l

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 100000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @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() {
        _transferOwnership(_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 anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing 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);
    }
}

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

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);
}

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


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




/**
 * @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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * 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 Context, IERC20, IERC20Metadata {
    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}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * 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 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 value {ERC20} uses, unless this function is
     * 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;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @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 _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

        _totalSupply += amount;
        _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;
        }
        _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);
            }
        }
    }

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;



/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

// File: contracts/token.sol

//SPDX-License-Identifier: MIT
pragma solidity >=0.8.0 <0.9.0;




contract D3l is ERC20, ERC20Burnable, Ownable {

  mapping(address => bool) controllers;

  constructor() payable ERC20("D3L", "D3L") {}

  function mint(address to, uint256 amount) external {
    require(controllers[msg.sender], "Only controllers can mint");
    _mint(to, amount);
  }

  function burnFrom(address account, uint256 amount) public override {
      if (controllers[msg.sender]) {
          _burn(account, amount);
      }
      else {
          super.burnFrom(account, amount);
      }
  }

  function addController(address controller) external onlyOwner {
    controllers[controller] = true;
  }

  function removeController(address controller) external onlyOwner {
    controllers[controller] = false;
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"payable","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":"controller","type":"address"}],"name":"addController","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","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":[{"internalType":"address","name":"controller","type":"address"}],"name":"removeController","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"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"}]

6003608081815262110cd360ea1b60a081815261010060405260c084815260e0929092529192909162000034919081620000c3565b5080516200004a906004906020840190620000c3565b50505062000067620000616200006d60201b60201c565b62000071565b620001a6565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620000d19062000169565b90600052602060002090601f016020900481019282620000f5576000855562000140565b82601f106200011057805160ff191683800117855562000140565b8280016001018555821562000140579182015b828111156200014057825182559160200191906001019062000123565b506200014e92915062000152565b5090565b5b808211156200014e576000815560010162000153565b600181811c908216806200017e57607f821691505b60208210811415620001a057634e487b7160e01b600052602260045260246000fd5b50919050565b61131480620001b66000396000f3fe608060405234801561001057600080fd5b50600436106101515760003560e01c8063715018a6116100cd578063a7fc7a0711610081578063dd62ed3e11610066578063dd62ed3e146102c0578063f2fde38b14610306578063f6a74ed71461031957600080fd5b8063a7fc7a071461029a578063a9059cbb146102ad57600080fd5b80638da5cb5b116100b25780638da5cb5b1461025757806395d89b411461027f578063a457c2d71461028757600080fd5b8063715018a61461023c57806379cc67901461024457600080fd5b8063313ce5671161012457806340c10f191161010957806340c10f19146101de57806342966c68146101f357806370a082311461020657600080fd5b8063313ce567146101bc57806339509351146101cb57600080fd5b806306fdde0314610156578063095ea7b31461017457806318160ddd1461019757806323b872dd146101a9575b600080fd5b61015e61032c565b60405161016b91906111b9565b60405180910390f35b610187610182366004611176565b6103be565b604051901515815260200161016b565b6002545b60405190815260200161016b565b6101876101b736600461113a565b6103d6565b6040516012815260200161016b565b6101876101d9366004611176565b6103fa565b6101f16101ec366004611176565b610446565b005b6101f16102013660046111a0565b6104d2565b61019b6102143660046110e5565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b6101f16104df565b6101f1610252366004611176565b6104f3565b60055460405173ffffffffffffffffffffffffffffffffffffffff909116815260200161016b565b61015e61051f565b610187610295366004611176565b61052e565b6101f16102a83660046110e5565b6105ff565b6101876102bb366004611176565b610656565b61019b6102ce366004611107565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b6101f16103143660046110e5565b610664565b6101f16103273660046110e5565b610718565b60606003805461033b9061125b565b80601f01602080910402602001604051908101604052809291908181526020018280546103679061125b565b80156103b45780601f10610389576101008083540402835291602001916103b4565b820191906000526020600020905b81548152906001019060200180831161039757829003601f168201915b5050505050905090565b6000336103cc81858561076c565b5060019392505050565b6000336103e4858285610920565b6103ef8585856109f7565b506001949350505050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091906103cc908290869061044190879061122c565b61076c565b3360009081526006602052604090205460ff166104c4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4f6e6c7920636f6e74726f6c6c6572732063616e206d696e740000000000000060448201526064015b60405180910390fd5b6104ce8282610caa565b5050565b6104dc3382610dca565b50565b6104e7610faf565b6104f16000611030565b565b3360009081526006602052604090205460ff1615610515576104ce8282610dca565b6104ce82826110a7565b60606004805461033b9061125b565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909190838110156105f2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016104bb565b6103ef828686840361076c565b610607610faf565b73ffffffffffffffffffffffffffffffffffffffff16600090815260066020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b6000336103cc8185856109f7565b61066c610faf565b73ffffffffffffffffffffffffffffffffffffffff811661070f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016104bb565b6104dc81611030565b610720610faf565b73ffffffffffffffffffffffffffffffffffffffff16600090815260066020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b73ffffffffffffffffffffffffffffffffffffffff831661080e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016104bb565b73ffffffffffffffffffffffffffffffffffffffff82166108b1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016104bb565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8381166000908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146109f157818110156109e4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016104bb565b6109f1848484840361076c565b50505050565b73ffffffffffffffffffffffffffffffffffffffff8316610a9a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016104bb565b73ffffffffffffffffffffffffffffffffffffffff8216610b3d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016104bb565b73ffffffffffffffffffffffffffffffffffffffff831660009081526020819052604090205481811015610bf3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016104bb565b73ffffffffffffffffffffffffffffffffffffffff808516600090815260208190526040808220858503905591851681529081208054849290610c3790849061122c565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c9d91815260200190565b60405180910390a36109f1565b73ffffffffffffffffffffffffffffffffffffffff8216610d27576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016104bb565b8060026000828254610d39919061122c565b909155505073ffffffffffffffffffffffffffffffffffffffff821660009081526020819052604081208054839290610d7390849061122c565b909155505060405181815273ffffffffffffffffffffffffffffffffffffffff8316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b73ffffffffffffffffffffffffffffffffffffffff8216610e6d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016104bb565b73ffffffffffffffffffffffffffffffffffffffff821660009081526020819052604090205481811015610f23576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f636500000000000000000000000000000000000000000000000000000000000060648201526084016104bb565b73ffffffffffffffffffffffffffffffffffffffff83166000908152602081905260408120838303905560028054849290610f5f908490611244565b909155505060405182815260009073ffffffffffffffffffffffffffffffffffffffff8516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610913565b60055473ffffffffffffffffffffffffffffffffffffffff1633146104f1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104bb565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6110b2823383610920565b6104ce8282610dca565b803573ffffffffffffffffffffffffffffffffffffffff811681146110e057600080fd5b919050565b6000602082840312156110f757600080fd5b611100826110bc565b9392505050565b6000806040838503121561111a57600080fd5b611123836110bc565b9150611131602084016110bc565b90509250929050565b60008060006060848603121561114f57600080fd5b611158846110bc565b9250611166602085016110bc565b9150604084013590509250925092565b6000806040838503121561118957600080fd5b611192836110bc565b946020939093013593505050565b6000602082840312156111b257600080fd5b5035919050565b600060208083528351808285015260005b818110156111e6578581018301518582016040015282016111ca565b818111156111f8576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b6000821982111561123f5761123f6112af565b500190565b600082821015611256576112566112af565b500390565b600181811c9082168061126f57607f821691505b602082108114156112a9577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fdfea2646970667358221220c3357ef0c31f461489226016a952ab9db71aad4f509c9a333a752f9dc477427a64736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101515760003560e01c8063715018a6116100cd578063a7fc7a0711610081578063dd62ed3e11610066578063dd62ed3e146102c0578063f2fde38b14610306578063f6a74ed71461031957600080fd5b8063a7fc7a071461029a578063a9059cbb146102ad57600080fd5b80638da5cb5b116100b25780638da5cb5b1461025757806395d89b411461027f578063a457c2d71461028757600080fd5b8063715018a61461023c57806379cc67901461024457600080fd5b8063313ce5671161012457806340c10f191161010957806340c10f19146101de57806342966c68146101f357806370a082311461020657600080fd5b8063313ce567146101bc57806339509351146101cb57600080fd5b806306fdde0314610156578063095ea7b31461017457806318160ddd1461019757806323b872dd146101a9575b600080fd5b61015e61032c565b60405161016b91906111b9565b60405180910390f35b610187610182366004611176565b6103be565b604051901515815260200161016b565b6002545b60405190815260200161016b565b6101876101b736600461113a565b6103d6565b6040516012815260200161016b565b6101876101d9366004611176565b6103fa565b6101f16101ec366004611176565b610446565b005b6101f16102013660046111a0565b6104d2565b61019b6102143660046110e5565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b6101f16104df565b6101f1610252366004611176565b6104f3565b60055460405173ffffffffffffffffffffffffffffffffffffffff909116815260200161016b565b61015e61051f565b610187610295366004611176565b61052e565b6101f16102a83660046110e5565b6105ff565b6101876102bb366004611176565b610656565b61019b6102ce366004611107565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b6101f16103143660046110e5565b610664565b6101f16103273660046110e5565b610718565b60606003805461033b9061125b565b80601f01602080910402602001604051908101604052809291908181526020018280546103679061125b565b80156103b45780601f10610389576101008083540402835291602001916103b4565b820191906000526020600020905b81548152906001019060200180831161039757829003601f168201915b5050505050905090565b6000336103cc81858561076c565b5060019392505050565b6000336103e4858285610920565b6103ef8585856109f7565b506001949350505050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091906103cc908290869061044190879061122c565b61076c565b3360009081526006602052604090205460ff166104c4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4f6e6c7920636f6e74726f6c6c6572732063616e206d696e740000000000000060448201526064015b60405180910390fd5b6104ce8282610caa565b5050565b6104dc3382610dca565b50565b6104e7610faf565b6104f16000611030565b565b3360009081526006602052604090205460ff1615610515576104ce8282610dca565b6104ce82826110a7565b60606004805461033b9061125b565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909190838110156105f2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016104bb565b6103ef828686840361076c565b610607610faf565b73ffffffffffffffffffffffffffffffffffffffff16600090815260066020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b6000336103cc8185856109f7565b61066c610faf565b73ffffffffffffffffffffffffffffffffffffffff811661070f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016104bb565b6104dc81611030565b610720610faf565b73ffffffffffffffffffffffffffffffffffffffff16600090815260066020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b73ffffffffffffffffffffffffffffffffffffffff831661080e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016104bb565b73ffffffffffffffffffffffffffffffffffffffff82166108b1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016104bb565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8381166000908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146109f157818110156109e4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016104bb565b6109f1848484840361076c565b50505050565b73ffffffffffffffffffffffffffffffffffffffff8316610a9a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016104bb565b73ffffffffffffffffffffffffffffffffffffffff8216610b3d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016104bb565b73ffffffffffffffffffffffffffffffffffffffff831660009081526020819052604090205481811015610bf3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016104bb565b73ffffffffffffffffffffffffffffffffffffffff808516600090815260208190526040808220858503905591851681529081208054849290610c3790849061122c565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c9d91815260200190565b60405180910390a36109f1565b73ffffffffffffffffffffffffffffffffffffffff8216610d27576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016104bb565b8060026000828254610d39919061122c565b909155505073ffffffffffffffffffffffffffffffffffffffff821660009081526020819052604081208054839290610d7390849061122c565b909155505060405181815273ffffffffffffffffffffffffffffffffffffffff8316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b73ffffffffffffffffffffffffffffffffffffffff8216610e6d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016104bb565b73ffffffffffffffffffffffffffffffffffffffff821660009081526020819052604090205481811015610f23576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f636500000000000000000000000000000000000000000000000000000000000060648201526084016104bb565b73ffffffffffffffffffffffffffffffffffffffff83166000908152602081905260408120838303905560028054849290610f5f908490611244565b909155505060405182815260009073ffffffffffffffffffffffffffffffffffffffff8516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610913565b60055473ffffffffffffffffffffffffffffffffffffffff1633146104f1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104bb565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6110b2823383610920565b6104ce8282610dca565b803573ffffffffffffffffffffffffffffffffffffffff811681146110e057600080fd5b919050565b6000602082840312156110f757600080fd5b611100826110bc565b9392505050565b6000806040838503121561111a57600080fd5b611123836110bc565b9150611131602084016110bc565b90509250929050565b60008060006060848603121561114f57600080fd5b611158846110bc565b9250611166602085016110bc565b9150604084013590509250925092565b6000806040838503121561118957600080fd5b611192836110bc565b946020939093013593505050565b6000602082840312156111b257600080fd5b5035919050565b600060208083528351808285015260005b818110156111e6578581018301518582016040015282016111ca565b818111156111f8576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b6000821982111561123f5761123f6112af565b500190565b600082821015611256576112566112af565b500390565b600181811c9082168061126f57607f821691505b602082108114156112a9577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fdfea2646970667358221220c3357ef0c31f461489226016a952ab9db71aad4f509c9a333a752f9dc477427a64736f6c63430008070033

Deployed Bytecode Sourcemap

21408:752:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9353:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11704:201;;;;;;:::i;:::-;;:::i;:::-;;;1844:14:1;;1837:22;1819:41;;1807:2;1792:18;11704:201:0;1679:187:1;10473:108:0;10561:12;;10473:108;;;7754:25:1;;;7742:2;7727:18;10473:108:0;7608:177:1;12485:295:0;;;;;;:::i;:::-;;:::i;10315:93::-;;;10398:2;7932:36:1;;7920:2;7905:18;10315:93:0;7790:184:1;13189:238:0;;;;;;:::i;:::-;;:::i;21554:149::-;;;;;;:::i;:::-;;:::i;:::-;;20722:91;;;;;;:::i;:::-;;:::i;10644:127::-;;;;;;:::i;:::-;10745:18;;10718:7;10745:18;;;;;;;;;;;;10644:127;2776:103;;;:::i;21709:222::-;;;;;;:::i;:::-;;:::i;2128:87::-;2201:6;;2128:87;;2201:6;;;;1594:74:1;;1582:2;1567:18;2128:87:0;1448:226:1;9572:104:0;;;:::i;13930:436::-;;;;;;:::i;:::-;;:::i;21937:105::-;;;;;;:::i;:::-;;:::i;10977:193::-;;;;;;:::i;:::-;;:::i;11233:151::-;;;;;;:::i;:::-;11349:18;;;;11322:7;11349:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11233:151;3034:201;;;;;;:::i;:::-;;:::i;22048:109::-;;;;;;:::i;:::-;;:::i;9353:100::-;9407:13;9440:5;9433:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9353:100;:::o;11704:201::-;11787:4;759:10;11843:32;759:10;11859:7;11868:6;11843:8;:32::i;:::-;-1:-1:-1;11893:4:0;;11704:201;-1:-1:-1;;;11704:201:0:o;12485:295::-;12616:4;759:10;12674:38;12690:4;759:10;12705:6;12674:15;:38::i;:::-;12723:27;12733:4;12739:2;12743:6;12723:9;:27::i;:::-;-1:-1:-1;12768:4:0;;12485:295;-1:-1:-1;;;;12485:295:0:o;13189:238::-;759:10;13277:4;11349:18;;;:11;:18;;;;;;;;;:27;;;;;;;;;;13277:4;;759:10;13333:64;;759:10;;11349:27;;13358:38;;13386:10;;13358:38;:::i;:::-;13333:8;:64::i;21554:149::-;21632:10;21620:23;;;;:11;:23;;;;;;;;21612:61;;;;;;;5116:2:1;21612:61:0;;;5098:21:1;5155:2;5135:18;;;5128:30;5194:27;5174:18;;;5167:55;5239:18;;21612:61:0;;;;;;;;;21680:17;21686:2;21690:6;21680:5;:17::i;:::-;21554:149;;:::o;20722:91::-;20778:27;759:10;20798:6;20778:5;:27::i;:::-;20722:91;:::o;2776:103::-;2014:13;:11;:13::i;:::-;2841:30:::1;2868:1;2841:18;:30::i;:::-;2776:103::o:0;21709:222::-;21801:10;21789:23;;;;:11;:23;;;;;;;;21785:141;;;21827:22;21833:7;21842:6;21827:5;:22::i;21785:141::-;21885:31;21900:7;21909:6;21885:14;:31::i;9572:104::-;9628:13;9661:7;9654:14;;;;;:::i;13930:436::-;759:10;14023:4;11349:18;;;:11;:18;;;;;;;;;:27;;;;;;;;;;14023:4;;759:10;14170:15;14150:16;:35;;14142:85;;;;;;;7044:2:1;14142:85:0;;;7026:21:1;7083:2;7063:18;;;7056:30;7122:34;7102:18;;;7095:62;7193:7;7173:18;;;7166:35;7218:19;;14142:85:0;6842:401:1;14142:85:0;14263:60;14272:5;14279:7;14307:15;14288:16;:34;14263:8;:60::i;21937:105::-;2014:13;:11;:13::i;:::-;22006:23:::1;;;::::0;;;:11:::1;:23;::::0;;;;:30;;;::::1;22032:4;22006:30;::::0;;21937:105::o;10977:193::-;11056:4;759:10;11112:28;759:10;11129:2;11133:6;11112:9;:28::i;3034:201::-;2014:13;:11;:13::i;:::-;3123:22:::1;::::0;::::1;3115:73;;;::::0;::::1;::::0;;3541:2:1;3115:73:0::1;::::0;::::1;3523:21:1::0;3580:2;3560:18;;;3553:30;3619:34;3599:18;;;3592:62;3690:8;3670:18;;;3663:36;3716:19;;3115:73:0::1;3339:402:1::0;3115:73:0::1;3199:28;3218:8;3199:18;:28::i;22048:109::-:0;2014:13;:11;:13::i;:::-;22120:23:::1;;22146:5;22120:23:::0;;;:11:::1;:23;::::0;;;;:31;;;::::1;::::0;;22048:109::o;17555:380::-;17691:19;;;17683:68;;;;;;;6639:2:1;17683:68:0;;;6621:21:1;6678:2;6658:18;;;6651:30;6717:34;6697:18;;;6690:62;6788:6;6768:18;;;6761:34;6812:19;;17683:68:0;6437:400:1;17683:68:0;17770:21;;;17762:68;;;;;;;3948:2:1;17762:68:0;;;3930:21:1;3987:2;3967:18;;;3960:30;4026:34;4006:18;;;3999:62;4097:4;4077:18;;;4070:32;4119:19;;17762:68:0;3746:398:1;17762:68:0;17843:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17895:32;;7754:25:1;;;17895:32:0;;7727:18:1;17895:32:0;;;;;;;;17555:380;;;:::o;18226:453::-;11349:18;;;;18361:24;11349:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;18448:17;18428:37;;18424:248;;18510:6;18490:16;:26;;18482:68;;;;;;;4351:2:1;18482:68:0;;;4333:21:1;4390:2;4370:18;;;4363:30;4429:31;4409:18;;;4402:59;4478:18;;18482:68:0;4149:353:1;18482:68:0;18594:51;18603:5;18610:7;18638:6;18619:16;:25;18594:8;:51::i;:::-;18350:329;18226:453;;;:::o;14836:671::-;14967:18;;;14959:68;;;;;;;6233:2:1;14959:68:0;;;6215:21:1;6272:2;6252:18;;;6245:30;6311:34;6291:18;;;6284:62;6382:7;6362:18;;;6355:35;6407:19;;14959:68:0;6031:401:1;14959:68:0;15046:16;;;15038:64;;;;;;;2734:2:1;15038:64:0;;;2716:21:1;2773:2;2753:18;;;2746:30;2812:34;2792:18;;;2785:62;2883:5;2863:18;;;2856:33;2906:19;;15038:64:0;2532:399:1;15038:64:0;15188:15;;;15166:19;15188:15;;;;;;;;;;;15222:21;;;;15214:72;;;;;;;4709:2:1;15214:72:0;;;4691:21:1;4748:2;4728:18;;;4721:30;4787:34;4767:18;;;4760:62;4858:8;4838:18;;;4831:36;4884:19;;15214:72:0;4507:402:1;15214:72:0;15322:15;;;;:9;:15;;;;;;;;;;;15340:20;;;15322:38;;15382:13;;;;;;;;:23;;15354:6;;15322:9;15382:23;;15354:6;;15382:23;:::i;:::-;;;;;;;;15438:2;15423:26;;15432:4;15423:26;;;15442:6;15423:26;;;;7754:25:1;;7742:2;7727:18;;7608:177;15423:26:0;;;;;;;;15462:37;16526:591;15794:399;15878:21;;;15870:65;;;;;;;7450:2:1;15870:65:0;;;7432:21:1;7489:2;7469:18;;;7462:30;7528:33;7508:18;;;7501:61;7579:18;;15870:65:0;7248:355:1;15870:65:0;16026:6;16010:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;16043:18:0;;;:9;:18;;;;;;;;;;:28;;16065:6;;16043:9;:28;;16065:6;;16043:28;:::i;:::-;;;;-1:-1:-1;;16087:37:0;;7754:25:1;;;16087:37:0;;;;16104:1;;16087:37;;7742:2:1;7727:18;16087:37:0;;;;;;;21554:149;;:::o;16526:591::-;16610:21;;;16602:67;;;;;;;5831:2:1;16602:67:0;;;5813:21:1;5870:2;5850:18;;;5843:30;5909:34;5889:18;;;5882:62;5980:3;5960:18;;;5953:31;6001:19;;16602:67:0;5629:397:1;16602:67:0;16769:18;;;16744:22;16769:18;;;;;;;;;;;16806:24;;;;16798:71;;;;;;;3138:2:1;16798:71:0;;;3120:21:1;3177:2;3157:18;;;3150:30;3216:34;3196:18;;;3189:62;3287:4;3267:18;;;3260:32;3309:19;;16798:71:0;2936:398:1;16798:71:0;16905:18;;;:9;:18;;;;;;;;;;16926:23;;;16905:44;;16971:12;:22;;16943:6;;16905:9;16971:22;;16943:6;;16971:22;:::i;:::-;;;;-1:-1:-1;;17011:37:0;;7754:25:1;;;17037:1:0;;17011:37;;;;;;7742:2:1;7727:18;17011:37:0;7608:177:1;2293:132:0;2201:6;;2357:23;2201:6;759:10;2357:23;2349:68;;;;;;;5470:2:1;2349:68:0;;;5452:21:1;;;5489:18;;;5482:30;5548:34;5528:18;;;5521:62;5600:18;;2349:68:0;5268:356:1;3395:191:0;3488:6;;;;3505:17;;;;;;;;;;;3538:40;;3488:6;;;3505:17;3488:6;;3538:40;;3469:16;;3538:40;3458:128;3395:191;:::o;21132:164::-;21209:46;21225:7;759:10;21248:6;21209:15;:46::i;:::-;21266:22;21272:7;21281:6;21266:5;:22::i;14:196:1:-;82:20;;142:42;131:54;;121:65;;111:93;;200:1;197;190:12;111:93;14:196;;;:::o;215:186::-;274:6;327:2;315:9;306:7;302:23;298:32;295:52;;;343:1;340;333:12;295:52;366:29;385:9;366:29;:::i;:::-;356:39;215:186;-1:-1:-1;;;215:186:1:o;406:260::-;474:6;482;535:2;523:9;514:7;510:23;506:32;503:52;;;551:1;548;541:12;503:52;574:29;593:9;574:29;:::i;:::-;564:39;;622:38;656:2;645:9;641:18;622:38;:::i;:::-;612:48;;406:260;;;;;:::o;671:328::-;748:6;756;764;817:2;805:9;796:7;792:23;788:32;785:52;;;833:1;830;823:12;785:52;856:29;875:9;856:29;:::i;:::-;846:39;;904:38;938:2;927:9;923:18;904:38;:::i;:::-;894:48;;989:2;978:9;974:18;961:32;951:42;;671:328;;;;;:::o;1004:254::-;1072:6;1080;1133:2;1121:9;1112:7;1108:23;1104:32;1101:52;;;1149:1;1146;1139:12;1101:52;1172:29;1191:9;1172:29;:::i;:::-;1162:39;1248:2;1233:18;;;;1220:32;;-1:-1:-1;;;1004:254:1:o;1263:180::-;1322:6;1375:2;1363:9;1354:7;1350:23;1346:32;1343:52;;;1391:1;1388;1381:12;1343:52;-1:-1:-1;1414:23:1;;1263:180;-1:-1:-1;1263:180:1:o;1871:656::-;1983:4;2012:2;2041;2030:9;2023:21;2073:6;2067:13;2116:6;2111:2;2100:9;2096:18;2089:34;2141:1;2151:140;2165:6;2162:1;2159:13;2151:140;;;2260:14;;;2256:23;;2250:30;2226:17;;;2245:2;2222:26;2215:66;2180:10;;2151:140;;;2309:6;2306:1;2303:13;2300:91;;;2379:1;2374:2;2365:6;2354:9;2350:22;2346:31;2339:42;2300:91;-1:-1:-1;2443:2:1;2431:15;2448:66;2427:88;2412:104;;;;2518:2;2408:113;;1871:656;-1:-1:-1;;;1871:656:1:o;7979:128::-;8019:3;8050:1;8046:6;8043:1;8040:13;8037:39;;;8056:18;;:::i;:::-;-1:-1:-1;8092:9:1;;7979:128::o;8112:125::-;8152:4;8180:1;8177;8174:8;8171:34;;;8185:18;;:::i;:::-;-1:-1:-1;8222:9:1;;8112:125::o;8242:437::-;8321:1;8317:12;;;;8364;;;8385:61;;8439:4;8431:6;8427:17;8417:27;;8385:61;8492:2;8484:6;8481:14;8461:18;8458:38;8455:218;;;8529:77;8526:1;8519:88;8630:4;8627:1;8620:15;8658:4;8655:1;8648:15;8455:218;;8242:437;;;:::o;8684:184::-;8736:77;8733:1;8726:88;8833:4;8830:1;8823:15;8857:4;8854:1;8847:15

Swarm Source

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