ETH Price: $3,336.58 (-1.15%)
Gas: 10 Gwei

Token

DeltaWovlesReward (DW)
 

Overview

Max Total Supply

5,241,086,811,709,976.55079253465557006 DW

Holders

36

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
100,000,000 DW

Value
$0.00
0xe481e9397bc809ef667395d90e2909c252da73c6
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:
DeltaWovlesReward

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-03-25
*/

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


// OpenZeppelin Contracts (last updated v4.8.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.openzeppelin.com/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;
            // 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 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;
        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);
            }
        }
    }

    /**
     * @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: @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: contracts/DeltaWovlesReward.sol


pragma solidity ^0.8.11;





contract DeltaWovlesReward is ERC20, ERC20Burnable, Ownable {

  mapping(address => bool) controllers;

  bool public IsBuyingAllowed = false;
  uint256 public DW_Price = 0.1 ether;
  uint256 public AmountPerTx = 100;
  
  constructor() ERC20("DeltaWovlesReward", "DW") { }

  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 buyDW(uint256 amount) external payable{
    require(IsBuyingAllowed, "Buying is not available");
    require(msg.value >= DW_Price, "Insufficient payment");
    _mint(msg.sender, amount);
  }

  function toggleSale() external onlyOwner {
    IsBuyingAllowed = !IsBuyingAllowed;
  }

  function setAmount(uint256 _amount) external onlyOwner {
    AmountPerTx = _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":"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":[],"name":"AmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DW_Price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"IsBuyingAllowed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"buyDW","outputs":[],"stateMutability":"payable","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":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","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"}]

60806040526000600760006101000a81548160ff02191690831515021790555067016345785d8a000060085560646009553480156200003d57600080fd5b506040518060400160405280601181526020017f44656c7461576f766c65735265776172640000000000000000000000000000008152506040518060400160405280600281526020017f44570000000000000000000000000000000000000000000000000000000000008152508160039081620000bb91906200043e565b508060049081620000cd91906200043e565b505050620000f0620000e4620000f660201b60201c565b620000fe60201b60201c565b62000525565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200024657607f821691505b6020821081036200025c576200025b620001fe565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620002c67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000287565b620002d2868362000287565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200031f620003196200031384620002ea565b620002f4565b620002ea565b9050919050565b6000819050919050565b6200033b83620002fe565b620003536200034a8262000326565b84845462000294565b825550505050565b600090565b6200036a6200035b565b6200037781848462000330565b505050565b5b818110156200039f576200039360008262000360565b6001810190506200037d565b5050565b601f821115620003ee57620003b88162000262565b620003c38462000277565b81016020851015620003d3578190505b620003eb620003e28562000277565b8301826200037c565b50505b505050565b600082821c905092915050565b60006200041360001984600802620003f3565b1980831691505092915050565b60006200042e838362000400565b9150826002028217905092915050565b6200044982620001c4565b67ffffffffffffffff811115620004655762000464620001cf565b5b6200047182546200022d565b6200047e828285620003a3565b600060209050601f831160018114620004b65760008415620004a1578287015190505b620004ad858262000420565b8655506200051d565b601f198416620004c68662000262565b60005b82811015620004f057848901518255600182019150602085019450602081019050620004c9565b868310156200051057848901516200050c601f89168262000400565b8355505b6001600288020188555050505b505050505050565b6121eb80620005356000396000f3fe6080604052600436106101665760003560e01c806379cc6790116100d1578063a457c2d71161008a578063db9e49ef11610064578063db9e49ef1461051d578063dd62ed3e14610548578063f2fde38b14610585578063f6a74ed7146105ae57610166565b8063a457c2d71461047a578063a7fc7a07146104b7578063a9059cbb146104e057610166565b806379cc67901461039d5780637d8966e4146103c6578063819cf484146103dd5780638da5cb5b146103f957806395d89b4114610424578063a360812c1461044f57610166565b80633950935111610123578063395093511461028f57806340c10f19146102cc57806342966c68146102f5578063534fa8901461031e57806370a0823114610349578063715018a61461038657610166565b806306fdde031461016b578063095ea7b31461019657806318160ddd146101d357806323b872dd146101fe578063271f88b41461023b578063313ce56714610264575b600080fd5b34801561017757600080fd5b506101806105d7565b60405161018d919061169f565b60405180910390f35b3480156101a257600080fd5b506101bd60048036038101906101b8919061175a565b610669565b6040516101ca91906117b5565b60405180910390f35b3480156101df57600080fd5b506101e861068c565b6040516101f591906117df565b60405180910390f35b34801561020a57600080fd5b50610225600480360381019061022091906117fa565b610696565b60405161023291906117b5565b60405180910390f35b34801561024757600080fd5b50610262600480360381019061025d919061184d565b6106c5565b005b34801561027057600080fd5b506102796106d7565b6040516102869190611896565b60405180910390f35b34801561029b57600080fd5b506102b660048036038101906102b1919061175a565b6106e0565b6040516102c391906117b5565b60405180910390f35b3480156102d857600080fd5b506102f360048036038101906102ee919061175a565b610717565b005b34801561030157600080fd5b5061031c6004803603810190610317919061184d565b6107b1565b005b34801561032a57600080fd5b506103336107c5565b60405161034091906117b5565b60405180910390f35b34801561035557600080fd5b50610370600480360381019061036b91906118b1565b6107d8565b60405161037d91906117df565b60405180910390f35b34801561039257600080fd5b5061039b610820565b005b3480156103a957600080fd5b506103c460048036038101906103bf919061175a565b610834565b005b3480156103d257600080fd5b506103db6108a4565b005b6103f760048036038101906103f2919061184d565b6108d8565b005b34801561040557600080fd5b5061040e610979565b60405161041b91906118ed565b60405180910390f35b34801561043057600080fd5b506104396109a3565b604051610446919061169f565b60405180910390f35b34801561045b57600080fd5b50610464610a35565b60405161047191906117df565b60405180910390f35b34801561048657600080fd5b506104a1600480360381019061049c919061175a565b610a3b565b6040516104ae91906117b5565b60405180910390f35b3480156104c357600080fd5b506104de60048036038101906104d991906118b1565b610ab2565b005b3480156104ec57600080fd5b506105076004803603810190610502919061175a565b610b15565b60405161051491906117b5565b60405180910390f35b34801561052957600080fd5b50610532610b38565b60405161053f91906117df565b60405180910390f35b34801561055457600080fd5b5061056f600480360381019061056a9190611908565b610b3e565b60405161057c91906117df565b60405180910390f35b34801561059157600080fd5b506105ac60048036038101906105a791906118b1565b610bc5565b005b3480156105ba57600080fd5b506105d560048036038101906105d091906118b1565b610c48565b005b6060600380546105e690611977565b80601f016020809104026020016040519081016040528092919081815260200182805461061290611977565b801561065f5780601f106106345761010080835404028352916020019161065f565b820191906000526020600020905b81548152906001019060200180831161064257829003601f168201915b5050505050905090565b600080610674610cab565b9050610681818585610cb3565b600191505092915050565b6000600254905090565b6000806106a1610cab565b90506106ae858285610e7c565b6106b9858585610f08565b60019150509392505050565b6106cd61117e565b8060098190555050565b60006012905090565b6000806106eb610cab565b905061070c8185856106fd8589610b3e565b61070791906119d7565b610cb3565b600191505092915050565b600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166107a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079a90611a57565b60405180910390fd5b6107ad82826111fc565b5050565b6107c26107bc610cab565b82611352565b50565b600760009054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61082861117e565b610832600061151f565b565b600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610895576108908282611352565b6108a0565b61089f82826115e5565b5b5050565b6108ac61117e565b600760009054906101000a900460ff1615600760006101000a81548160ff021916908315150217905550565b600760009054906101000a900460ff16610927576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091e90611ac3565b60405180910390fd5b60085434101561096c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096390611b2f565b60405180910390fd5b61097633826111fc565b50565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546109b290611977565b80601f01602080910402602001604051908101604052809291908181526020018280546109de90611977565b8015610a2b5780601f10610a0057610100808354040283529160200191610a2b565b820191906000526020600020905b815481529060010190602001808311610a0e57829003601f168201915b5050505050905090565b60095481565b600080610a46610cab565b90506000610a548286610b3e565b905083811015610a99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9090611bc1565b60405180910390fd5b610aa68286868403610cb3565b60019250505092915050565b610aba61117e565b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600080610b20610cab565b9050610b2d818585610f08565b600191505092915050565b60085481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610bcd61117e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3390611c53565b60405180910390fd5b610c458161151f565b50565b610c5061117e565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1990611ce5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8890611d77565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e6f91906117df565b60405180910390a3505050565b6000610e888484610b3e565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610f025781811015610ef4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eeb90611de3565b60405180910390fd5b610f018484848403610cb3565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6e90611e75565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fe6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdd90611f07565b60405180910390fd5b610ff1838383611605565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611077576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106e90611f99565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161116591906117df565b60405180910390a361117884848461160a565b50505050565b611186610cab565b73ffffffffffffffffffffffffffffffffffffffff166111a4610979565b73ffffffffffffffffffffffffffffffffffffffff16146111fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f190612005565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361126b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126290612071565b60405180910390fd5b61127760008383611605565b806002600082825461128991906119d7565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161133a91906117df565b60405180910390a361134e6000838361160a565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b890612103565b60405180910390fd5b6113cd82600083611605565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611453576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144a90612195565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161150691906117df565b60405180910390a361151a8360008461160a565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6115f7826115f1610cab565b83610e7c565b6116018282611352565b5050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561164957808201518184015260208101905061162e565b60008484015250505050565b6000601f19601f8301169050919050565b60006116718261160f565b61167b818561161a565b935061168b81856020860161162b565b61169481611655565b840191505092915050565b600060208201905081810360008301526116b98184611666565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006116f1826116c6565b9050919050565b611701816116e6565b811461170c57600080fd5b50565b60008135905061171e816116f8565b92915050565b6000819050919050565b61173781611724565b811461174257600080fd5b50565b6000813590506117548161172e565b92915050565b60008060408385031215611771576117706116c1565b5b600061177f8582860161170f565b925050602061179085828601611745565b9150509250929050565b60008115159050919050565b6117af8161179a565b82525050565b60006020820190506117ca60008301846117a6565b92915050565b6117d981611724565b82525050565b60006020820190506117f460008301846117d0565b92915050565b600080600060608486031215611813576118126116c1565b5b60006118218682870161170f565b93505060206118328682870161170f565b925050604061184386828701611745565b9150509250925092565b600060208284031215611863576118626116c1565b5b600061187184828501611745565b91505092915050565b600060ff82169050919050565b6118908161187a565b82525050565b60006020820190506118ab6000830184611887565b92915050565b6000602082840312156118c7576118c66116c1565b5b60006118d58482850161170f565b91505092915050565b6118e7816116e6565b82525050565b600060208201905061190260008301846118de565b92915050565b6000806040838503121561191f5761191e6116c1565b5b600061192d8582860161170f565b925050602061193e8582860161170f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061198f57607f821691505b6020821081036119a2576119a1611948565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006119e282611724565b91506119ed83611724565b9250828201905080821115611a0557611a046119a8565b5b92915050565b7f4f6e6c7920636f6e74726f6c6c6572732063616e206d696e7400000000000000600082015250565b6000611a4160198361161a565b9150611a4c82611a0b565b602082019050919050565b60006020820190508181036000830152611a7081611a34565b9050919050565b7f427579696e67206973206e6f7420617661696c61626c65000000000000000000600082015250565b6000611aad60178361161a565b9150611ab882611a77565b602082019050919050565b60006020820190508181036000830152611adc81611aa0565b9050919050565b7f496e73756666696369656e74207061796d656e74000000000000000000000000600082015250565b6000611b1960148361161a565b9150611b2482611ae3565b602082019050919050565b60006020820190508181036000830152611b4881611b0c565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611bab60258361161a565b9150611bb682611b4f565b604082019050919050565b60006020820190508181036000830152611bda81611b9e565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611c3d60268361161a565b9150611c4882611be1565b604082019050919050565b60006020820190508181036000830152611c6c81611c30565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611ccf60248361161a565b9150611cda82611c73565b604082019050919050565b60006020820190508181036000830152611cfe81611cc2565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611d6160228361161a565b9150611d6c82611d05565b604082019050919050565b60006020820190508181036000830152611d9081611d54565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611dcd601d8361161a565b9150611dd882611d97565b602082019050919050565b60006020820190508181036000830152611dfc81611dc0565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611e5f60258361161a565b9150611e6a82611e03565b604082019050919050565b60006020820190508181036000830152611e8e81611e52565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611ef160238361161a565b9150611efc82611e95565b604082019050919050565b60006020820190508181036000830152611f2081611ee4565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611f8360268361161a565b9150611f8e82611f27565b604082019050919050565b60006020820190508181036000830152611fb281611f76565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611fef60208361161a565b9150611ffa82611fb9565b602082019050919050565b6000602082019050818103600083015261201e81611fe2565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600061205b601f8361161a565b915061206682612025565b602082019050919050565b6000602082019050818103600083015261208a8161204e565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006120ed60218361161a565b91506120f882612091565b604082019050919050565b6000602082019050818103600083015261211c816120e0565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061217f60228361161a565b915061218a82612123565b604082019050919050565b600060208201905081810360008301526121ae81612172565b905091905056fea264697066735822122062c1dbc57b39a6b7a716945eb48169b2c8fddc3c17e17dc5d6f09ce97370d7cc64736f6c63430008120033

Deployed Bytecode

0x6080604052600436106101665760003560e01c806379cc6790116100d1578063a457c2d71161008a578063db9e49ef11610064578063db9e49ef1461051d578063dd62ed3e14610548578063f2fde38b14610585578063f6a74ed7146105ae57610166565b8063a457c2d71461047a578063a7fc7a07146104b7578063a9059cbb146104e057610166565b806379cc67901461039d5780637d8966e4146103c6578063819cf484146103dd5780638da5cb5b146103f957806395d89b4114610424578063a360812c1461044f57610166565b80633950935111610123578063395093511461028f57806340c10f19146102cc57806342966c68146102f5578063534fa8901461031e57806370a0823114610349578063715018a61461038657610166565b806306fdde031461016b578063095ea7b31461019657806318160ddd146101d357806323b872dd146101fe578063271f88b41461023b578063313ce56714610264575b600080fd5b34801561017757600080fd5b506101806105d7565b60405161018d919061169f565b60405180910390f35b3480156101a257600080fd5b506101bd60048036038101906101b8919061175a565b610669565b6040516101ca91906117b5565b60405180910390f35b3480156101df57600080fd5b506101e861068c565b6040516101f591906117df565b60405180910390f35b34801561020a57600080fd5b50610225600480360381019061022091906117fa565b610696565b60405161023291906117b5565b60405180910390f35b34801561024757600080fd5b50610262600480360381019061025d919061184d565b6106c5565b005b34801561027057600080fd5b506102796106d7565b6040516102869190611896565b60405180910390f35b34801561029b57600080fd5b506102b660048036038101906102b1919061175a565b6106e0565b6040516102c391906117b5565b60405180910390f35b3480156102d857600080fd5b506102f360048036038101906102ee919061175a565b610717565b005b34801561030157600080fd5b5061031c6004803603810190610317919061184d565b6107b1565b005b34801561032a57600080fd5b506103336107c5565b60405161034091906117b5565b60405180910390f35b34801561035557600080fd5b50610370600480360381019061036b91906118b1565b6107d8565b60405161037d91906117df565b60405180910390f35b34801561039257600080fd5b5061039b610820565b005b3480156103a957600080fd5b506103c460048036038101906103bf919061175a565b610834565b005b3480156103d257600080fd5b506103db6108a4565b005b6103f760048036038101906103f2919061184d565b6108d8565b005b34801561040557600080fd5b5061040e610979565b60405161041b91906118ed565b60405180910390f35b34801561043057600080fd5b506104396109a3565b604051610446919061169f565b60405180910390f35b34801561045b57600080fd5b50610464610a35565b60405161047191906117df565b60405180910390f35b34801561048657600080fd5b506104a1600480360381019061049c919061175a565b610a3b565b6040516104ae91906117b5565b60405180910390f35b3480156104c357600080fd5b506104de60048036038101906104d991906118b1565b610ab2565b005b3480156104ec57600080fd5b506105076004803603810190610502919061175a565b610b15565b60405161051491906117b5565b60405180910390f35b34801561052957600080fd5b50610532610b38565b60405161053f91906117df565b60405180910390f35b34801561055457600080fd5b5061056f600480360381019061056a9190611908565b610b3e565b60405161057c91906117df565b60405180910390f35b34801561059157600080fd5b506105ac60048036038101906105a791906118b1565b610bc5565b005b3480156105ba57600080fd5b506105d560048036038101906105d091906118b1565b610c48565b005b6060600380546105e690611977565b80601f016020809104026020016040519081016040528092919081815260200182805461061290611977565b801561065f5780601f106106345761010080835404028352916020019161065f565b820191906000526020600020905b81548152906001019060200180831161064257829003601f168201915b5050505050905090565b600080610674610cab565b9050610681818585610cb3565b600191505092915050565b6000600254905090565b6000806106a1610cab565b90506106ae858285610e7c565b6106b9858585610f08565b60019150509392505050565b6106cd61117e565b8060098190555050565b60006012905090565b6000806106eb610cab565b905061070c8185856106fd8589610b3e565b61070791906119d7565b610cb3565b600191505092915050565b600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166107a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079a90611a57565b60405180910390fd5b6107ad82826111fc565b5050565b6107c26107bc610cab565b82611352565b50565b600760009054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61082861117e565b610832600061151f565b565b600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610895576108908282611352565b6108a0565b61089f82826115e5565b5b5050565b6108ac61117e565b600760009054906101000a900460ff1615600760006101000a81548160ff021916908315150217905550565b600760009054906101000a900460ff16610927576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091e90611ac3565b60405180910390fd5b60085434101561096c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096390611b2f565b60405180910390fd5b61097633826111fc565b50565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546109b290611977565b80601f01602080910402602001604051908101604052809291908181526020018280546109de90611977565b8015610a2b5780601f10610a0057610100808354040283529160200191610a2b565b820191906000526020600020905b815481529060010190602001808311610a0e57829003601f168201915b5050505050905090565b60095481565b600080610a46610cab565b90506000610a548286610b3e565b905083811015610a99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9090611bc1565b60405180910390fd5b610aa68286868403610cb3565b60019250505092915050565b610aba61117e565b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600080610b20610cab565b9050610b2d818585610f08565b600191505092915050565b60085481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610bcd61117e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3390611c53565b60405180910390fd5b610c458161151f565b50565b610c5061117e565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1990611ce5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8890611d77565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e6f91906117df565b60405180910390a3505050565b6000610e888484610b3e565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610f025781811015610ef4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eeb90611de3565b60405180910390fd5b610f018484848403610cb3565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6e90611e75565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fe6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdd90611f07565b60405180910390fd5b610ff1838383611605565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611077576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106e90611f99565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161116591906117df565b60405180910390a361117884848461160a565b50505050565b611186610cab565b73ffffffffffffffffffffffffffffffffffffffff166111a4610979565b73ffffffffffffffffffffffffffffffffffffffff16146111fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f190612005565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361126b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126290612071565b60405180910390fd5b61127760008383611605565b806002600082825461128991906119d7565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161133a91906117df565b60405180910390a361134e6000838361160a565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b890612103565b60405180910390fd5b6113cd82600083611605565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611453576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144a90612195565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161150691906117df565b60405180910390a361151a8360008461160a565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6115f7826115f1610cab565b83610e7c565b6116018282611352565b5050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561164957808201518184015260208101905061162e565b60008484015250505050565b6000601f19601f8301169050919050565b60006116718261160f565b61167b818561161a565b935061168b81856020860161162b565b61169481611655565b840191505092915050565b600060208201905081810360008301526116b98184611666565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006116f1826116c6565b9050919050565b611701816116e6565b811461170c57600080fd5b50565b60008135905061171e816116f8565b92915050565b6000819050919050565b61173781611724565b811461174257600080fd5b50565b6000813590506117548161172e565b92915050565b60008060408385031215611771576117706116c1565b5b600061177f8582860161170f565b925050602061179085828601611745565b9150509250929050565b60008115159050919050565b6117af8161179a565b82525050565b60006020820190506117ca60008301846117a6565b92915050565b6117d981611724565b82525050565b60006020820190506117f460008301846117d0565b92915050565b600080600060608486031215611813576118126116c1565b5b60006118218682870161170f565b93505060206118328682870161170f565b925050604061184386828701611745565b9150509250925092565b600060208284031215611863576118626116c1565b5b600061187184828501611745565b91505092915050565b600060ff82169050919050565b6118908161187a565b82525050565b60006020820190506118ab6000830184611887565b92915050565b6000602082840312156118c7576118c66116c1565b5b60006118d58482850161170f565b91505092915050565b6118e7816116e6565b82525050565b600060208201905061190260008301846118de565b92915050565b6000806040838503121561191f5761191e6116c1565b5b600061192d8582860161170f565b925050602061193e8582860161170f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061198f57607f821691505b6020821081036119a2576119a1611948565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006119e282611724565b91506119ed83611724565b9250828201905080821115611a0557611a046119a8565b5b92915050565b7f4f6e6c7920636f6e74726f6c6c6572732063616e206d696e7400000000000000600082015250565b6000611a4160198361161a565b9150611a4c82611a0b565b602082019050919050565b60006020820190508181036000830152611a7081611a34565b9050919050565b7f427579696e67206973206e6f7420617661696c61626c65000000000000000000600082015250565b6000611aad60178361161a565b9150611ab882611a77565b602082019050919050565b60006020820190508181036000830152611adc81611aa0565b9050919050565b7f496e73756666696369656e74207061796d656e74000000000000000000000000600082015250565b6000611b1960148361161a565b9150611b2482611ae3565b602082019050919050565b60006020820190508181036000830152611b4881611b0c565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611bab60258361161a565b9150611bb682611b4f565b604082019050919050565b60006020820190508181036000830152611bda81611b9e565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611c3d60268361161a565b9150611c4882611be1565b604082019050919050565b60006020820190508181036000830152611c6c81611c30565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611ccf60248361161a565b9150611cda82611c73565b604082019050919050565b60006020820190508181036000830152611cfe81611cc2565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611d6160228361161a565b9150611d6c82611d05565b604082019050919050565b60006020820190508181036000830152611d9081611d54565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611dcd601d8361161a565b9150611dd882611d97565b602082019050919050565b60006020820190508181036000830152611dfc81611dc0565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611e5f60258361161a565b9150611e6a82611e03565b604082019050919050565b60006020820190508181036000830152611e8e81611e52565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611ef160238361161a565b9150611efc82611e95565b604082019050919050565b60006020820190508181036000830152611f2081611ee4565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611f8360268361161a565b9150611f8e82611f27565b604082019050919050565b60006020820190508181036000830152611fb281611f76565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611fef60208361161a565b9150611ffa82611fb9565b602082019050919050565b6000602082019050818103600083015261201e81611fe2565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600061205b601f8361161a565b915061206682612025565b602082019050919050565b6000602082019050818103600083015261208a8161204e565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006120ed60218361161a565b91506120f882612091565b604082019050919050565b6000602082019050818103600083015261211c816120e0565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061217f60228361161a565b915061218a82612123565b604082019050919050565b600060208201905081810360008301526121ae81612172565b905091905056fea264697066735822122062c1dbc57b39a6b7a716945eb48169b2c8fddc3c17e17dc5d6f09ce97370d7cc64736f6c63430008120033

Deployed Bytecode Sourcemap

21785:1292:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6651:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9002:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7771:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9783:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22759:89;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7613:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10487:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22072:149;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18422:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21895:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7942:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20886:103;;;;;;;;;;;;;:::i;:::-;;22227:222;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22665:88;;;;;;;;;;;;;:::i;:::-;;22455:204;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20238:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6870:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21975:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11228:436;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22854:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8275:193;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21935:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8531:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21144:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22965:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6651:100;6705:13;6738:5;6731:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6651:100;:::o;9002:201::-;9085:4;9102:13;9118:12;:10;:12::i;:::-;9102:28;;9141:32;9150:5;9157:7;9166:6;9141:8;:32::i;:::-;9191:4;9184:11;;;9002:201;;;;:::o;7771:108::-;7832:7;7859:12;;7852:19;;7771:108;:::o;9783:295::-;9914:4;9931:15;9949:12;:10;:12::i;:::-;9931:30;;9972:38;9988:4;9994:7;10003:6;9972:15;:38::i;:::-;10021:27;10031:4;10037:2;10041:6;10021:9;:27::i;:::-;10066:4;10059:11;;;9783:295;;;;;:::o;22759:89::-;20124:13;:11;:13::i;:::-;22835:7:::1;22821:11;:21;;;;22759:89:::0;:::o;7613:93::-;7671:5;7696:2;7689:9;;7613:93;:::o;10487:238::-;10575:4;10592:13;10608:12;:10;:12::i;:::-;10592:28;;10631:64;10640:5;10647:7;10684:10;10656:25;10666:5;10673:7;10656:9;:25::i;:::-;:38;;;;:::i;:::-;10631:8;:64::i;:::-;10713:4;10706:11;;;10487:238;;;;:::o;22072:149::-;22138:11;:23;22150:10;22138:23;;;;;;;;;;;;;;;;;;;;;;;;;22130:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;22198:17;22204:2;22208:6;22198:5;:17::i;:::-;22072:149;;:::o;18422:91::-;18478:27;18484:12;:10;:12::i;:::-;18498:6;18478:5;:27::i;:::-;18422:91;:::o;21895:35::-;;;;;;;;;;;;;:::o;7942:127::-;8016:7;8043:9;:18;8053:7;8043:18;;;;;;;;;;;;;;;;8036:25;;7942:127;;;:::o;20886:103::-;20124:13;:11;:13::i;:::-;20951:30:::1;20978:1;20951:18;:30::i;:::-;20886:103::o:0;22227:222::-;22307:11;:23;22319:10;22307:23;;;;;;;;;;;;;;;;;;;;;;;;;22303:141;;;22345:22;22351:7;22360:6;22345:5;:22::i;:::-;22303:141;;;22403:31;22418:7;22427:6;22403:14;:31::i;:::-;22303:141;22227:222;;:::o;22665:88::-;20124:13;:11;:13::i;:::-;22732:15:::1;;;;;;;;;;;22731:16;22713:15;;:34;;;;;;;;;;;;;;;;;;22665:88::o:0;22455:204::-;22517:15;;;;;;;;;;;22509:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;22588:8;;22575:9;:21;;22567:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;22628:25;22634:10;22646:6;22628:5;:25::i;:::-;22455:204;:::o;20238:87::-;20284:7;20311:6;;;;;;;;;;;20304:13;;20238:87;:::o;6870:104::-;6926:13;6959:7;6952:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6870:104;:::o;21975:32::-;;;;:::o;11228:436::-;11321:4;11338:13;11354:12;:10;:12::i;:::-;11338:28;;11377:24;11404:25;11414:5;11421:7;11404:9;:25::i;:::-;11377:52;;11468:15;11448:16;:35;;11440:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11561:60;11570:5;11577:7;11605:15;11586:16;:34;11561:8;:60::i;:::-;11652:4;11645:11;;;;11228:436;;;;:::o;22854:105::-;20124:13;:11;:13::i;:::-;22949:4:::1;22923:11;:23;22935:10;22923:23;;;;;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;22854:105:::0;:::o;8275:193::-;8354:4;8371:13;8387:12;:10;:12::i;:::-;8371:28;;8410;8420:5;8427:2;8431:6;8410:9;:28::i;:::-;8456:4;8449:11;;;8275:193;;;;:::o;21935:35::-;;;;:::o;8531:151::-;8620:7;8647:11;:18;8659:5;8647:18;;;;;;;;;;;;;;;:27;8666:7;8647:27;;;;;;;;;;;;;;;;8640:34;;8531:151;;;;:::o;21144:201::-;20124:13;:11;:13::i;:::-;21253:1:::1;21233:22;;:8;:22;;::::0;21225:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;21309:28;21328:8;21309:18;:28::i;:::-;21144:201:::0;:::o;22965:109::-;20124:13;:11;:13::i;:::-;23063:5:::1;23037:11;:23;23049:10;23037:23;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;22965:109:::0;:::o;4293:98::-;4346:7;4373:10;4366:17;;4293:98;:::o;15255:380::-;15408:1;15391:19;;:5;:19;;;15383:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15489:1;15470:21;;:7;:21;;;15462:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15573:6;15543:11;:18;15555:5;15543:18;;;;;;;;;;;;;;;:27;15562:7;15543:27;;;;;;;;;;;;;;;:36;;;;15611:7;15595:32;;15604:5;15595:32;;;15620:6;15595:32;;;;;;:::i;:::-;;;;;;;;15255:380;;;:::o;15926:453::-;16061:24;16088:25;16098:5;16105:7;16088:9;:25::i;:::-;16061:52;;16148:17;16128:16;:37;16124:248;;16210:6;16190:16;:26;;16182:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16294:51;16303:5;16310:7;16338:6;16319:16;:25;16294:8;:51::i;:::-;16124:248;16050:329;15926:453;;;:::o;12134:840::-;12281:1;12265:18;;:4;:18;;;12257:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12358:1;12344:16;;:2;:16;;;12336:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;12413:38;12434:4;12440:2;12444:6;12413:20;:38::i;:::-;12464:19;12486:9;:15;12496:4;12486:15;;;;;;;;;;;;;;;;12464:37;;12535:6;12520:11;:21;;12512:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;12652:6;12638:11;:20;12620:9;:15;12630:4;12620:15;;;;;;;;;;;;;;;:38;;;;12855:6;12838:9;:13;12848:2;12838:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;12905:2;12890:26;;12899:4;12890:26;;;12909:6;12890:26;;;;;;:::i;:::-;;;;;;;;12929:37;12949:4;12955:2;12959:6;12929:19;:37::i;:::-;12246:728;12134:840;;;:::o;20403:132::-;20478:12;:10;:12::i;:::-;20467:23;;:7;:5;:7::i;:::-;:23;;;20459:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20403:132::o;13261:548::-;13364:1;13345:21;;:7;:21;;;13337:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;13415:49;13444:1;13448:7;13457:6;13415:20;:49::i;:::-;13493:6;13477:12;;:22;;;;;;;:::i;:::-;;;;;;;;13670:6;13648:9;:18;13658:7;13648:18;;;;;;;;;;;;;;;;:28;;;;;;;;;;;13724:7;13703:37;;13720:1;13703:37;;;13733:6;13703:37;;;;;;:::i;:::-;;;;;;;;13753:48;13781:1;13785:7;13794:6;13753:19;:48::i;:::-;13261:548;;:::o;14142:675::-;14245:1;14226:21;;:7;:21;;;14218:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;14298:49;14319:7;14336:1;14340:6;14298:20;:49::i;:::-;14360:22;14385:9;:18;14395:7;14385:18;;;;;;;;;;;;;;;;14360:43;;14440:6;14422:14;:24;;14414:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14559:6;14542:14;:23;14521:9;:18;14531:7;14521:18;;;;;;;;;;;;;;;:44;;;;14676:6;14660:12;;:22;;;;;;;;;;;14737:1;14711:37;;14720:7;14711:37;;;14741:6;14711:37;;;;;;:::i;:::-;;;;;;;;14761:48;14781:7;14798:1;14802:6;14761:19;:48::i;:::-;14207:610;14142:675;;:::o;21505:191::-;21579:16;21598:6;;;;;;;;;;;21579:25;;21624:8;21615:6;;:17;;;;;;;;;;;;;;;;;;21679:8;21648:40;;21669:8;21648:40;;;;;;;;;;;;21568:128;21505:191;:::o;18832:164::-;18909:46;18925:7;18934:12;:10;:12::i;:::-;18948:6;18909:15;:46::i;:::-;18966:22;18972:7;18981:6;18966:5;:22::i;:::-;18832:164;;:::o;16979:125::-;;;;:::o;17708:124::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:329::-;4482:6;4531:2;4519:9;4510:7;4506:23;4502:32;4499:119;;;4537:79;;:::i;:::-;4499:119;4657:1;4682:53;4727:7;4718:6;4707:9;4703:22;4682:53;:::i;:::-;4672:63;;4628:117;4423:329;;;;:::o;4758:86::-;4793:7;4833:4;4826:5;4822:16;4811:27;;4758:86;;;:::o;4850:112::-;4933:22;4949:5;4933:22;:::i;:::-;4928:3;4921:35;4850:112;;:::o;4968:214::-;5057:4;5095:2;5084:9;5080:18;5072:26;;5108:67;5172:1;5161:9;5157:17;5148:6;5108:67;:::i;:::-;4968:214;;;;:::o;5188:329::-;5247:6;5296:2;5284:9;5275:7;5271:23;5267:32;5264:119;;;5302:79;;:::i;:::-;5264:119;5422:1;5447:53;5492:7;5483:6;5472:9;5468:22;5447:53;:::i;:::-;5437:63;;5393:117;5188:329;;;;:::o;5523:118::-;5610:24;5628:5;5610:24;:::i;:::-;5605:3;5598:37;5523:118;;:::o;5647:222::-;5740:4;5778:2;5767:9;5763:18;5755:26;;5791:71;5859:1;5848:9;5844:17;5835:6;5791:71;:::i;:::-;5647:222;;;;:::o;5875:474::-;5943:6;5951;6000:2;5988:9;5979:7;5975:23;5971:32;5968:119;;;6006:79;;:::i;:::-;5968:119;6126:1;6151:53;6196:7;6187:6;6176:9;6172:22;6151:53;:::i;:::-;6141:63;;6097:117;6253:2;6279:53;6324:7;6315:6;6304:9;6300:22;6279:53;:::i;:::-;6269:63;;6224:118;5875:474;;;;;:::o;6355:180::-;6403:77;6400:1;6393:88;6500:4;6497:1;6490:15;6524:4;6521:1;6514:15;6541:320;6585:6;6622:1;6616:4;6612:12;6602:22;;6669:1;6663:4;6659:12;6690:18;6680:81;;6746:4;6738:6;6734:17;6724:27;;6680:81;6808:2;6800:6;6797:14;6777:18;6774:38;6771:84;;6827:18;;:::i;:::-;6771:84;6592:269;6541:320;;;:::o;6867:180::-;6915:77;6912:1;6905:88;7012:4;7009:1;7002:15;7036:4;7033:1;7026:15;7053:191;7093:3;7112:20;7130:1;7112:20;:::i;:::-;7107:25;;7146:20;7164:1;7146:20;:::i;:::-;7141:25;;7189:1;7186;7182:9;7175:16;;7210:3;7207:1;7204:10;7201:36;;;7217:18;;:::i;:::-;7201:36;7053:191;;;;:::o;7250:175::-;7390:27;7386:1;7378:6;7374:14;7367:51;7250:175;:::o;7431:366::-;7573:3;7594:67;7658:2;7653:3;7594:67;:::i;:::-;7587:74;;7670:93;7759:3;7670:93;:::i;:::-;7788:2;7783:3;7779:12;7772:19;;7431:366;;;:::o;7803:419::-;7969:4;8007:2;7996:9;7992:18;7984:26;;8056:9;8050:4;8046:20;8042:1;8031:9;8027:17;8020:47;8084:131;8210:4;8084:131;:::i;:::-;8076:139;;7803:419;;;:::o;8228:173::-;8368:25;8364:1;8356:6;8352:14;8345:49;8228:173;:::o;8407:366::-;8549:3;8570:67;8634:2;8629:3;8570:67;:::i;:::-;8563:74;;8646:93;8735:3;8646:93;:::i;:::-;8764:2;8759:3;8755:12;8748:19;;8407:366;;;:::o;8779:419::-;8945:4;8983:2;8972:9;8968:18;8960:26;;9032:9;9026:4;9022:20;9018:1;9007:9;9003:17;8996:47;9060:131;9186:4;9060:131;:::i;:::-;9052:139;;8779:419;;;:::o;9204:170::-;9344:22;9340:1;9332:6;9328:14;9321:46;9204:170;:::o;9380:366::-;9522:3;9543:67;9607:2;9602:3;9543:67;:::i;:::-;9536:74;;9619:93;9708:3;9619:93;:::i;:::-;9737:2;9732:3;9728:12;9721:19;;9380:366;;;:::o;9752:419::-;9918:4;9956:2;9945:9;9941:18;9933:26;;10005:9;9999:4;9995:20;9991:1;9980:9;9976:17;9969:47;10033:131;10159:4;10033:131;:::i;:::-;10025:139;;9752:419;;;:::o;10177:224::-;10317:34;10313:1;10305:6;10301:14;10294:58;10386:7;10381:2;10373:6;10369:15;10362:32;10177:224;:::o;10407:366::-;10549:3;10570:67;10634:2;10629:3;10570:67;:::i;:::-;10563:74;;10646:93;10735:3;10646:93;:::i;:::-;10764:2;10759:3;10755:12;10748:19;;10407:366;;;:::o;10779:419::-;10945:4;10983:2;10972:9;10968:18;10960:26;;11032:9;11026:4;11022:20;11018:1;11007:9;11003:17;10996:47;11060:131;11186:4;11060:131;:::i;:::-;11052:139;;10779:419;;;:::o;11204:225::-;11344:34;11340:1;11332:6;11328:14;11321:58;11413:8;11408:2;11400:6;11396:15;11389:33;11204:225;:::o;11435:366::-;11577:3;11598:67;11662:2;11657:3;11598:67;:::i;:::-;11591:74;;11674:93;11763:3;11674:93;:::i;:::-;11792:2;11787:3;11783:12;11776:19;;11435:366;;;:::o;11807:419::-;11973:4;12011:2;12000:9;11996:18;11988:26;;12060:9;12054:4;12050:20;12046:1;12035:9;12031:17;12024:47;12088:131;12214:4;12088:131;:::i;:::-;12080:139;;11807:419;;;:::o;12232:223::-;12372:34;12368:1;12360:6;12356:14;12349:58;12441:6;12436:2;12428:6;12424:15;12417:31;12232:223;:::o;12461:366::-;12603:3;12624:67;12688:2;12683:3;12624:67;:::i;:::-;12617:74;;12700:93;12789:3;12700:93;:::i;:::-;12818:2;12813:3;12809:12;12802:19;;12461:366;;;:::o;12833:419::-;12999:4;13037:2;13026:9;13022:18;13014:26;;13086:9;13080:4;13076:20;13072:1;13061:9;13057:17;13050:47;13114:131;13240:4;13114:131;:::i;:::-;13106:139;;12833:419;;;:::o;13258:221::-;13398:34;13394:1;13386:6;13382:14;13375:58;13467:4;13462:2;13454:6;13450:15;13443:29;13258:221;:::o;13485:366::-;13627:3;13648:67;13712:2;13707:3;13648:67;:::i;:::-;13641:74;;13724:93;13813:3;13724:93;:::i;:::-;13842:2;13837:3;13833:12;13826:19;;13485:366;;;:::o;13857:419::-;14023:4;14061:2;14050:9;14046:18;14038:26;;14110:9;14104:4;14100:20;14096:1;14085:9;14081:17;14074:47;14138:131;14264:4;14138:131;:::i;:::-;14130:139;;13857:419;;;:::o;14282:179::-;14422:31;14418:1;14410:6;14406:14;14399:55;14282:179;:::o;14467:366::-;14609:3;14630:67;14694:2;14689:3;14630:67;:::i;:::-;14623:74;;14706:93;14795:3;14706:93;:::i;:::-;14824:2;14819:3;14815:12;14808:19;;14467:366;;;:::o;14839:419::-;15005:4;15043:2;15032:9;15028:18;15020:26;;15092:9;15086:4;15082:20;15078:1;15067:9;15063:17;15056:47;15120:131;15246:4;15120:131;:::i;:::-;15112:139;;14839:419;;;:::o;15264:224::-;15404:34;15400:1;15392:6;15388:14;15381:58;15473:7;15468:2;15460:6;15456:15;15449:32;15264:224;:::o;15494:366::-;15636:3;15657:67;15721:2;15716:3;15657:67;:::i;:::-;15650:74;;15733:93;15822:3;15733:93;:::i;:::-;15851:2;15846:3;15842:12;15835:19;;15494:366;;;:::o;15866:419::-;16032:4;16070:2;16059:9;16055:18;16047:26;;16119:9;16113:4;16109:20;16105:1;16094:9;16090:17;16083:47;16147:131;16273:4;16147:131;:::i;:::-;16139:139;;15866:419;;;:::o;16291:222::-;16431:34;16427:1;16419:6;16415:14;16408:58;16500:5;16495:2;16487:6;16483:15;16476:30;16291:222;:::o;16519:366::-;16661:3;16682:67;16746:2;16741:3;16682:67;:::i;:::-;16675:74;;16758:93;16847:3;16758:93;:::i;:::-;16876:2;16871:3;16867:12;16860:19;;16519:366;;;:::o;16891:419::-;17057:4;17095:2;17084:9;17080:18;17072:26;;17144:9;17138:4;17134:20;17130:1;17119:9;17115:17;17108:47;17172:131;17298:4;17172:131;:::i;:::-;17164:139;;16891:419;;;:::o;17316:225::-;17456:34;17452:1;17444:6;17440:14;17433:58;17525:8;17520:2;17512:6;17508:15;17501:33;17316:225;:::o;17547:366::-;17689:3;17710:67;17774:2;17769:3;17710:67;:::i;:::-;17703:74;;17786:93;17875:3;17786:93;:::i;:::-;17904:2;17899:3;17895:12;17888:19;;17547:366;;;:::o;17919:419::-;18085:4;18123:2;18112:9;18108:18;18100:26;;18172:9;18166:4;18162:20;18158:1;18147:9;18143:17;18136:47;18200:131;18326:4;18200:131;:::i;:::-;18192:139;;17919:419;;;:::o;18344:182::-;18484:34;18480:1;18472:6;18468:14;18461:58;18344:182;:::o;18532:366::-;18674:3;18695:67;18759:2;18754:3;18695:67;:::i;:::-;18688:74;;18771:93;18860:3;18771:93;:::i;:::-;18889:2;18884:3;18880:12;18873:19;;18532:366;;;:::o;18904:419::-;19070:4;19108:2;19097:9;19093:18;19085:26;;19157:9;19151:4;19147:20;19143:1;19132:9;19128:17;19121:47;19185:131;19311:4;19185:131;:::i;:::-;19177:139;;18904:419;;;:::o;19329:181::-;19469:33;19465:1;19457:6;19453:14;19446:57;19329:181;:::o;19516:366::-;19658:3;19679:67;19743:2;19738:3;19679:67;:::i;:::-;19672:74;;19755:93;19844:3;19755:93;:::i;:::-;19873:2;19868:3;19864:12;19857:19;;19516:366;;;:::o;19888:419::-;20054:4;20092:2;20081:9;20077:18;20069:26;;20141:9;20135:4;20131:20;20127:1;20116:9;20112:17;20105:47;20169:131;20295:4;20169:131;:::i;:::-;20161:139;;19888:419;;;:::o;20313:220::-;20453:34;20449:1;20441:6;20437:14;20430:58;20522:3;20517:2;20509:6;20505:15;20498:28;20313:220;:::o;20539:366::-;20681:3;20702:67;20766:2;20761:3;20702:67;:::i;:::-;20695:74;;20778:93;20867:3;20778:93;:::i;:::-;20896:2;20891:3;20887:12;20880:19;;20539:366;;;:::o;20911:419::-;21077:4;21115:2;21104:9;21100:18;21092:26;;21164:9;21158:4;21154:20;21150:1;21139:9;21135:17;21128:47;21192:131;21318:4;21192:131;:::i;:::-;21184:139;;20911:419;;;:::o;21336:221::-;21476:34;21472:1;21464:6;21460:14;21453:58;21545:4;21540:2;21532:6;21528:15;21521:29;21336:221;:::o;21563:366::-;21705:3;21726:67;21790:2;21785:3;21726:67;:::i;:::-;21719:74;;21802:93;21891:3;21802:93;:::i;:::-;21920:2;21915:3;21911:12;21904:19;;21563:366;;;:::o;21935:419::-;22101:4;22139:2;22128:9;22124:18;22116:26;;22188:9;22182:4;22178:20;22174:1;22163:9;22159:17;22152:47;22216:131;22342:4;22216:131;:::i;:::-;22208:139;;21935:419;;;:::o

Swarm Source

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