ETH Price: $3,112.60 (-0.02%)
Gas: 3 Gwei

Token

Mancium (MANC)
 

Overview

Max Total Supply

100,000,000 MANC

Holders

3,314 (0.00%)

Total Transfers

-

Market

Price

$0.82 @ 0.000262 ETH (+0.07%)

Onchain Market Cap

$81,520,600.00

Circulating Supply Market Cap

$8,138,158.00

Other Info

Token Contract (WITH 2 Decimals)

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

OVERVIEW

Mancium token is the utility token of Manc Games and represents our next-generation public blockchain solution. Mancium also powers the overall Manc Ecosystem, with its utility spreading from our market platform for in-app purchases, special in-game events.

Market

Volume (24H):$12,306.47
Market Capitalization:$8,138,158.00
Circulating Supply:10,000,000.00 MANC
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Mancium

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license, Audited

Contract Source Code (Solidity)Audit Report

/**
 *Submitted for verification at Etherscan.io on 2022-06-13
*/

// File: @openzeppelin/[email protected]/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/[email protected]/security/Pausable.sol


// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

// File: @openzeppelin/[email protected]/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        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: Blacklist.sol


pragma solidity ^0.8.10;


/**
 * @title Blacklist
 * @dev The Blacklist contract has a blacklist of addresses, and provides basic authorization control functions.
 * @dev This simplifies the implementation of "user permissions".
 */
contract Blacklist is Ownable {
  mapping(address => bool) blacklist;
  address[] public blacklistAddresses;

  event BlacklistedAddressAdded(address addr);
  event BlacklistedAddressRemoved(address addr);

  /**
   * @dev Throws if called by any account that's whitelist (a.k.a not blacklist)
   */
  modifier isBlacklisted() {
    require(blacklist[msg.sender]);
    _;
  }

  /**
   * @dev Throws if called by any account that's blacklist.
   */
  modifier isNotBlacklisted() {
    require(!blacklist[msg.sender]);
    _;
  }

  /**
   * @dev Add an address to the blacklist
   * @param addr address
   * @return success true if the address was added to the blacklist, false if the address was already in the blacklist
   */
  function addAddressToBlacklist(address addr) public onlyOwner returns (bool success) {
    if (!blacklist[addr]) {
      blacklistAddresses.push(addr);
      blacklist[addr] = true;
      emit BlacklistedAddressAdded(addr);
      success = true;
    }
  }

  /**
   * @dev Add addresses to the blacklist
   * @param addrs addresses
   * @return success true if at least one address was added to the blacklist,
   * false if all addresses were already in the blacklist
   */
  function addAddressesToBlacklist(address[] memory addrs) public onlyOwner returns (bool success) {
    for (uint256 i = 0; i < addrs.length; i++) {
      if (addAddressToBlacklist(addrs[i])) {
        success = true;
      }
    }
  }

  /**
   * @dev Remove an address from the blacklist
   * @param addr address
   * @return success true if the address was removed from the blacklist,
   * false if the address wasn't in the blacklist in the first place
   */
  function removeAddressFromBlacklist(address addr) public onlyOwner returns (bool success) {
    if (blacklist[addr]) {
      blacklist[addr] = false;
      for (uint256 i = 0; i < blacklistAddresses.length; i++) {
        if (addr == blacklistAddresses[i]) {
          delete blacklistAddresses[i];
        }
      }
      emit BlacklistedAddressRemoved(addr);
      success = true;
    }
  }

  /**
   * @dev Remove addresses from the blacklist
   * @param addrs addresses
   * @return success true if at least one address was removed from the blacklist,
   * false if all addresses weren't in the blacklist in the first place
   */
  function removeAddressesFromBlacklist(address[] memory addrs)
    public
    onlyOwner
    returns (bool success)
  {
    for (uint256 i = 0; i < addrs.length; i++) {
      if (removeAddressFromBlacklist(addrs[i])) {
        success = true;
      }
    }
  }

  /**
   * @dev Get all blacklist wallet addresses
   */
  function getBlacklist() public view returns (address[] memory) {
    return blacklistAddresses;
  }
}

// File: @openzeppelin/[email protected]/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/[email protected]/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/[email protected]/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.6.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 `sender` to `recipient`.
     *
     * 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: Mancium.sol


pragma solidity ^0.8.0;





uint8 constant NUM_DECIMALS = 2;

//Total Supply 100000000, 100 million tokens
uint256 constant TOTAL_AMOUNT = 100000000 * 1e2;

contract Mancium is ERC20, Pausable, Ownable, Blacklist {
    constructor() ERC20("Mancium", "MANC") {
        _mint(owner(), TOTAL_AMOUNT);
    }

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount)
        internal
        whenNotPaused
        override
    {
        // This blocks transfer, transferFrom, burn and burnFrom calls from and
        // to blacklisted addresses
        require(!blacklist[from], "From address is blacklisted");
        require(!blacklist[to], "To address is blacklisted");

        super._beforeTokenTransfer(from, to, amount);
    }

    function decimals() public view virtual override returns (uint8) {
        return NUM_DECIMALS;
    }
}

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":false,"internalType":"address","name":"addr","type":"address"}],"name":"BlacklistedAddressAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"addr","type":"address"}],"name":"BlacklistedAddressRemoved","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"addAddressToBlacklist","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addrs","type":"address[]"}],"name":"addAddressesToBlacklist","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"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":"","type":"uint256"}],"name":"blacklistAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getBlacklist","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","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":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"removeAddressFromBlacklist","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addrs","type":"address[]"}],"name":"removeAddressesFromBlacklist","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"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"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060408051808201825260078152664d616e6369756d60c81b6020808301918252835180850190945260048452634d414e4360e01b9084015281519192916200005d9160039162000345565b5080516200007390600490602084019062000345565b50506005805460ff19169055506200008b33620000b9565b620000b3620000a760055461010090046001600160a01b031690565b6402540be40062000113565b6200044f565b600580546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166200016f5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b6200017d600083836200020a565b8060026000828254620001919190620003eb565b90915550506001600160a01b03821660009081526020819052604081208054839290620001c0908490620003eb565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b60055460ff1615620002525760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640162000166565b6001600160a01b03831660009081526006602052604090205460ff1615620002bd5760405162461bcd60e51b815260206004820152601b60248201527f46726f6d206164647265737320697320626c61636b6c69737465640000000000604482015260640162000166565b6001600160a01b03821660009081526006602052604090205460ff1615620003285760405162461bcd60e51b815260206004820152601960248201527f546f206164647265737320697320626c61636b6c697374656400000000000000604482015260640162000166565b620003408383836200034060201b620009d01760201c565b505050565b828054620003539062000412565b90600052602060002090601f016020900481019282620003775760008555620003c2565b82601f106200039257805160ff1916838001178555620003c2565b82800160010185558215620003c2579182015b82811115620003c2578251825591602001919060010190620003a5565b50620003d0929150620003d4565b5090565b5b80821115620003d05760008155600101620003d5565b600082198211156200040d57634e487b7160e01b600052601160045260246000fd5b500190565b600181811c908216806200042757607f821691505b602082108114156200044957634e487b7160e01b600052602260045260246000fd5b50919050565b611333806200045f6000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c80635c975abb116100c3578063a457c2d71161007c578063a457c2d7146102ac578063a9059cbb146102bf578063ca73419e146102d2578063dd62ed3e146102e5578063f2c816ae146102f8578063f2fde38b1461030b57600080fd5b80635c975abb1461024a57806370a0823114610255578063715018a61461027e5780638456cb59146102865780638da5cb5b1461028e57806395d89b41146102a457600080fd5b8063313ce56711610115578063313ce567146101e357806332258794146101f2578063338d6c301461020557806335e82f3a1461021a578063395093511461022d5780633f4ba83a1461024057600080fd5b806306fdde0314610152578063095ea7b31461017057806318160ddd146101935780631e55a376146101a557806323b872dd146101d0575b600080fd5b61015a61031e565b6040516101679190610fcc565b60405180910390f35b61018361017e366004611038565b6103b0565b6040519015158152602001610167565b6002545b604051908152602001610167565b6101b86101b3366004611062565b6103c8565b6040516001600160a01b039091168152602001610167565b6101836101de36600461107b565b6103f2565b60405160028152602001610167565b6101836102003660046110cd565b610416565b61020d6104a2565b6040516101679190611192565b6101836102283660046111df565b610503565b61018361023b366004611038565b61063a565b61024861065c565b005b60055460ff16610183565b6101976102633660046111df565b6001600160a01b031660009081526020819052604090205490565b610248610696565b6102486106d0565b60055461010090046001600160a01b03166101b8565b61015a610708565b6101836102ba366004611038565b610717565b6101836102cd366004611038565b610792565b6101836102e03660046110cd565b6107a0565b6101976102f3366004611201565b61081d565b6101836103063660046111df565b610848565b6102486103193660046111df565b61092f565b60606003805461032d90611234565b80601f016020809104026020016040519081016040528092919081815260200182805461035990611234565b80156103a65780601f1061037b576101008083540402835291602001916103a6565b820191906000526020600020905b81548152906001019060200180831161038957829003601f168201915b5050505050905090565b6000336103be8185856109d5565b5060019392505050565b600781815481106103d857600080fd5b6000918252602090912001546001600160a01b0316905081565b600033610400858285610af9565b61040b858585610b73565b506001949350505050565b6005546000906001600160a01b036101009091041633146104525760405162461bcd60e51b815260040161044990611269565b60405180910390fd5b60005b825181101561049c576104808382815181106104735761047361129e565b6020026020010151610503565b1561048a57600191505b80610494816112ca565b915050610455565b50919050565b606060078054806020026020016040519081016040528092919081815260200182805480156103a657602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116104dc575050505050905090565b6005546000906001600160a01b036101009091041633146105365760405162461bcd60e51b815260040161044990611269565b6001600160a01b03821660009081526006602052604090205460ff1615610635576001600160a01b0382166000908152600660205260408120805460ff191690555b6007548110156105f357600781815481106105955761059561129e565b6000918252602090912001546001600160a01b03848116911614156105e157600781815481106105c7576105c761129e565b600091825260209091200180546001600160a01b03191690555b806105eb816112ca565b915050610578565b506040516001600160a01b03831681527fb9b02d6ef3069c468ac99865bad0d84ec0cf34671cb26053e5e47d415ae17564906020015b60405180910390a15060015b919050565b6000336103be81858561064d838361081d565b61065791906112e5565b6109d5565b6005546001600160a01b0361010090910416331461068c5760405162461bcd60e51b815260040161044990611269565b610694610d4c565b565b6005546001600160a01b036101009091041633146106c65760405162461bcd60e51b815260040161044990611269565b6106946000610ddf565b6005546001600160a01b036101009091041633146107005760405162461bcd60e51b815260040161044990611269565b610694610e39565b60606004805461032d90611234565b60003381610725828661081d565b9050838110156107855760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610449565b61040b82868684036109d5565b6000336103be818585610b73565b6005546000906001600160a01b036101009091041633146107d35760405162461bcd60e51b815260040161044990611269565b60005b825181101561049c576108018382815181106107f4576107f461129e565b6020026020010151610848565b1561080b57600191505b80610815816112ca565b9150506107d6565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546000906001600160a01b0361010090910416331461087b5760405162461bcd60e51b815260040161044990611269565b6001600160a01b03821660009081526006602052604090205460ff16610635576007805460018082019092557fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880180546001600160a01b0319166001600160a01b038516908117909155600081815260066020908152604091829020805460ff1916909417909355519081527fee71faa2d1e96ac74ee4023d6ffa8abfa43b7648f51e3dbd8ec561823e9df1329101610629565b6005546001600160a01b0361010090910416331461095f5760405162461bcd60e51b815260040161044990611269565b6001600160a01b0381166109c45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610449565b6109cd81610ddf565b50565b505050565b6001600160a01b038316610a375760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610449565b6001600160a01b038216610a985760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610449565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610b05848461081d565b90506000198114610b6d5781811015610b605760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610449565b610b6d84848484036109d5565b50505050565b6001600160a01b038316610bd75760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610449565b6001600160a01b038216610c395760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610449565b610c44838383610eb4565b6001600160a01b03831660009081526020819052604090205481811015610cbc5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610449565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610cf39084906112e5565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d3f91815260200190565b60405180910390a3610b6d565b60055460ff16610d955760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610449565b6005805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600580546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60055460ff1615610e7f5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610449565b6005805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610dc23390565b60055460ff1615610efa5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610449565b6001600160a01b03831660009081526006602052604090205460ff1615610f635760405162461bcd60e51b815260206004820152601b60248201527f46726f6d206164647265737320697320626c61636b6c697374656400000000006044820152606401610449565b6001600160a01b03821660009081526006602052604090205460ff16156109d05760405162461bcd60e51b815260206004820152601960248201527f546f206164647265737320697320626c61636b6c6973746564000000000000006044820152606401610449565b600060208083528351808285015260005b81811015610ff957858101830151858201604001528201610fdd565b8181111561100b576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461063557600080fd5b6000806040838503121561104b57600080fd5b61105483611021565b946020939093013593505050565b60006020828403121561107457600080fd5b5035919050565b60008060006060848603121561109057600080fd5b61109984611021565b92506110a760208501611021565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600060208083850312156110e057600080fd5b823567ffffffffffffffff808211156110f857600080fd5b818501915085601f83011261110c57600080fd5b81358181111561111e5761111e6110b7565b8060051b604051601f19603f83011681018181108582111715611143576111436110b7565b60405291825284820192508381018501918883111561116157600080fd5b938501935b828510156111865761117785611021565b84529385019392850192611166565b98975050505050505050565b6020808252825182820181905260009190848201906040850190845b818110156111d35783516001600160a01b0316835292840192918401916001016111ae565b50909695505050505050565b6000602082840312156111f157600080fd5b6111fa82611021565b9392505050565b6000806040838503121561121457600080fd5b61121d83611021565b915061122b60208401611021565b90509250929050565b600181811c9082168061124857607f821691505b6020821081141561049c57634e487b7160e01b600052602260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156112de576112de6112b4565b5060010190565b600082198211156112f8576112f86112b4565b50019056fea264697066735822122047e8be35deb6a5b0da4c1fdddb7f12c067ac6e439eb7ecd5512e559f8722ceb064736f6c634300080b0033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061014d5760003560e01c80635c975abb116100c3578063a457c2d71161007c578063a457c2d7146102ac578063a9059cbb146102bf578063ca73419e146102d2578063dd62ed3e146102e5578063f2c816ae146102f8578063f2fde38b1461030b57600080fd5b80635c975abb1461024a57806370a0823114610255578063715018a61461027e5780638456cb59146102865780638da5cb5b1461028e57806395d89b41146102a457600080fd5b8063313ce56711610115578063313ce567146101e357806332258794146101f2578063338d6c301461020557806335e82f3a1461021a578063395093511461022d5780633f4ba83a1461024057600080fd5b806306fdde0314610152578063095ea7b31461017057806318160ddd146101935780631e55a376146101a557806323b872dd146101d0575b600080fd5b61015a61031e565b6040516101679190610fcc565b60405180910390f35b61018361017e366004611038565b6103b0565b6040519015158152602001610167565b6002545b604051908152602001610167565b6101b86101b3366004611062565b6103c8565b6040516001600160a01b039091168152602001610167565b6101836101de36600461107b565b6103f2565b60405160028152602001610167565b6101836102003660046110cd565b610416565b61020d6104a2565b6040516101679190611192565b6101836102283660046111df565b610503565b61018361023b366004611038565b61063a565b61024861065c565b005b60055460ff16610183565b6101976102633660046111df565b6001600160a01b031660009081526020819052604090205490565b610248610696565b6102486106d0565b60055461010090046001600160a01b03166101b8565b61015a610708565b6101836102ba366004611038565b610717565b6101836102cd366004611038565b610792565b6101836102e03660046110cd565b6107a0565b6101976102f3366004611201565b61081d565b6101836103063660046111df565b610848565b6102486103193660046111df565b61092f565b60606003805461032d90611234565b80601f016020809104026020016040519081016040528092919081815260200182805461035990611234565b80156103a65780601f1061037b576101008083540402835291602001916103a6565b820191906000526020600020905b81548152906001019060200180831161038957829003601f168201915b5050505050905090565b6000336103be8185856109d5565b5060019392505050565b600781815481106103d857600080fd5b6000918252602090912001546001600160a01b0316905081565b600033610400858285610af9565b61040b858585610b73565b506001949350505050565b6005546000906001600160a01b036101009091041633146104525760405162461bcd60e51b815260040161044990611269565b60405180910390fd5b60005b825181101561049c576104808382815181106104735761047361129e565b6020026020010151610503565b1561048a57600191505b80610494816112ca565b915050610455565b50919050565b606060078054806020026020016040519081016040528092919081815260200182805480156103a657602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116104dc575050505050905090565b6005546000906001600160a01b036101009091041633146105365760405162461bcd60e51b815260040161044990611269565b6001600160a01b03821660009081526006602052604090205460ff1615610635576001600160a01b0382166000908152600660205260408120805460ff191690555b6007548110156105f357600781815481106105955761059561129e565b6000918252602090912001546001600160a01b03848116911614156105e157600781815481106105c7576105c761129e565b600091825260209091200180546001600160a01b03191690555b806105eb816112ca565b915050610578565b506040516001600160a01b03831681527fb9b02d6ef3069c468ac99865bad0d84ec0cf34671cb26053e5e47d415ae17564906020015b60405180910390a15060015b919050565b6000336103be81858561064d838361081d565b61065791906112e5565b6109d5565b6005546001600160a01b0361010090910416331461068c5760405162461bcd60e51b815260040161044990611269565b610694610d4c565b565b6005546001600160a01b036101009091041633146106c65760405162461bcd60e51b815260040161044990611269565b6106946000610ddf565b6005546001600160a01b036101009091041633146107005760405162461bcd60e51b815260040161044990611269565b610694610e39565b60606004805461032d90611234565b60003381610725828661081d565b9050838110156107855760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610449565b61040b82868684036109d5565b6000336103be818585610b73565b6005546000906001600160a01b036101009091041633146107d35760405162461bcd60e51b815260040161044990611269565b60005b825181101561049c576108018382815181106107f4576107f461129e565b6020026020010151610848565b1561080b57600191505b80610815816112ca565b9150506107d6565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546000906001600160a01b0361010090910416331461087b5760405162461bcd60e51b815260040161044990611269565b6001600160a01b03821660009081526006602052604090205460ff16610635576007805460018082019092557fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880180546001600160a01b0319166001600160a01b038516908117909155600081815260066020908152604091829020805460ff1916909417909355519081527fee71faa2d1e96ac74ee4023d6ffa8abfa43b7648f51e3dbd8ec561823e9df1329101610629565b6005546001600160a01b0361010090910416331461095f5760405162461bcd60e51b815260040161044990611269565b6001600160a01b0381166109c45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610449565b6109cd81610ddf565b50565b505050565b6001600160a01b038316610a375760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610449565b6001600160a01b038216610a985760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610449565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610b05848461081d565b90506000198114610b6d5781811015610b605760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610449565b610b6d84848484036109d5565b50505050565b6001600160a01b038316610bd75760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610449565b6001600160a01b038216610c395760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610449565b610c44838383610eb4565b6001600160a01b03831660009081526020819052604090205481811015610cbc5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610449565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610cf39084906112e5565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d3f91815260200190565b60405180910390a3610b6d565b60055460ff16610d955760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610449565b6005805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600580546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60055460ff1615610e7f5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610449565b6005805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610dc23390565b60055460ff1615610efa5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610449565b6001600160a01b03831660009081526006602052604090205460ff1615610f635760405162461bcd60e51b815260206004820152601b60248201527f46726f6d206164647265737320697320626c61636b6c697374656400000000006044820152606401610449565b6001600160a01b03821660009081526006602052604090205460ff16156109d05760405162461bcd60e51b815260206004820152601960248201527f546f206164647265737320697320626c61636b6c6973746564000000000000006044820152606401610449565b600060208083528351808285015260005b81811015610ff957858101830151858201604001528201610fdd565b8181111561100b576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461063557600080fd5b6000806040838503121561104b57600080fd5b61105483611021565b946020939093013593505050565b60006020828403121561107457600080fd5b5035919050565b60008060006060848603121561109057600080fd5b61109984611021565b92506110a760208501611021565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600060208083850312156110e057600080fd5b823567ffffffffffffffff808211156110f857600080fd5b818501915085601f83011261110c57600080fd5b81358181111561111e5761111e6110b7565b8060051b604051601f19603f83011681018181108582111715611143576111436110b7565b60405291825284820192508381018501918883111561116157600080fd5b938501935b828510156111865761117785611021565b84529385019392850192611166565b98975050505050505050565b6020808252825182820181905260009190848201906040850190845b818110156111d35783516001600160a01b0316835292840192918401916001016111ae565b50909695505050505050565b6000602082840312156111f157600080fd5b6111fa82611021565b9392505050565b6000806040838503121561121457600080fd5b61121d83611021565b915061122b60208401611021565b90509250929050565b600181811c9082168061124857607f821691505b6020821081141561049c57634e487b7160e01b600052602260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156112de576112de6112b4565b5060010190565b600082198211156112f8576112f86112b4565b50019056fea264697066735822122047e8be35deb6a5b0da4c1fdddb7f12c067ac6e439eb7ecd5512e559f8722ceb064736f6c634300080b0033

Deployed Bytecode Sourcemap

25621:862:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14631:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16982:201;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;16982:201:0;1053:187:1;15751:108:0;15839:12;;15751:108;;;1391:25:1;;;1379:2;1364:18;15751:108:0;1245:177:1;6103:35:0;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1776:32:1;;;1758:51;;1746:2;1731:18;6103:35:0;1612:203:1;17763:295:0;;;;;;:::i;:::-;;:::i;26377:103::-;;;25517:1;2295:36:1;;2283:2;2268:18;26377:103:0;2153:184:1;8411:268:0;;;;;;:::i;:::-;;:::i;8745:101::-;;;:::i;:::-;;;;;;;:::i;7756:403::-;;;;;;:::i;:::-;;:::i;18467:238::-;;;;;;:::i;:::-;;:::i;25847:65::-;;;:::i;:::-;;2037:86;2108:7;;;;2037:86;;15922:127;;;;;;:::i;:::-;-1:-1:-1;;;;;16023:18:0;15996:7;16023:18;;;;;;;;;;;;15922:127;4942:103;;;:::i;25778:61::-;;;:::i;4291:87::-;4364:6;;;;;-1:-1:-1;;;;;4364:6:0;4291:87;;14850:104;;;:::i;19208:436::-;;;;;;:::i;:::-;;:::i;16255:193::-;;;;;;:::i;:::-;;:::i;7278:240::-;;;;;;:::i;:::-;;:::i;16511:151::-;;;;;;:::i;:::-;;:::i;6787:262::-;;;;;;:::i;:::-;;:::i;5200:201::-;;;;;;:::i;:::-;;:::i;14631:100::-;14685:13;14718:5;14711:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14631:100;:::o;16982:201::-;17065:4;765:10;17121:32;765:10;17137:7;17146:6;17121:8;:32::i;:::-;-1:-1:-1;17171:4:0;;16982:201;-1:-1:-1;;;16982:201:0:o;6103:35::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;6103:35:0;;-1:-1:-1;6103:35:0;:::o;17763:295::-;17894:4;765:10;17952:38;17968:4;765:10;17983:6;17952:15;:38::i;:::-;18001:27;18011:4;18017:2;18021:6;18001:9;:27::i;:::-;-1:-1:-1;18046:4:0;;17763:295;-1:-1:-1;;;;17763:295:0:o;8411:268::-;4364:6;;8514:12;;-1:-1:-1;;;;;4364:6:0;;;;;765:10;4511:23;4503:68;;;;-1:-1:-1;;;4503:68:0;;;;;;;:::i;:::-;;;;;;;;;8543:9:::1;8538:136;8562:5;:12;8558:1;:16;8538:136;;;8594:36;8621:5;8627:1;8621:8;;;;;;;;:::i;:::-;;;;;;;8594:26;:36::i;:::-;8590:77;;;8653:4;8643:14;;8590:77;8576:3:::0;::::1;::::0;::::1;:::i;:::-;;;;8538:136;;;;8411:268:::0;;;:::o;8745:101::-;8790:16;8822:18;8815:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;8815:25:0;;;;;;;;;;;;;;;;;;;;;;8745:101;:::o;7756:403::-;4364:6;;7832:12;;-1:-1:-1;;;;;4364:6:0;;;;;765:10;4511:23;4503:68;;;;-1:-1:-1;;;4503:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7857:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;;::::1;;7853:301;;;-1:-1:-1::0;;;;;7883:15:0;::::1;7901:5;7883:15:::0;;;:9:::1;:15;::::0;;;;:23;;-1:-1:-1;;7883:23:0::1;::::0;;7915:164:::1;7939:18;:25:::0;7935:29;::::1;7915:164;;;7994:18;8013:1;7994:21;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;7986:29:0;;::::1;7994:21:::0;::::1;7986:29;7982:88;;;8037:18;8056:1;8037:21;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;8030:28:::0;;-1:-1:-1;;;;;;8030:28:0::1;::::0;;7982:88:::1;7966:3:::0;::::1;::::0;::::1;:::i;:::-;;;;7915:164;;;-1:-1:-1::0;8092:31:0::1;::::0;-1:-1:-1;;;;;1776:32:1;;1758:51;;8092:31:0::1;::::0;1746:2:1;1731:18;8092:31:0::1;;;;;;;;-1:-1:-1::0;8142:4:0::1;7853:301;7756:403:::0;;;:::o;18467:238::-;18555:4;765:10;18611:64;765:10;18627:7;18664:10;18636:25;765:10;18627:7;18636:9;:25::i;:::-;:38;;;;:::i;:::-;18611:8;:64::i;25847:65::-;4364:6;;-1:-1:-1;;;;;4364:6:0;;;;;765:10;4511:23;4503:68;;;;-1:-1:-1;;;4503:68:0;;;;;;;:::i;:::-;25894:10:::1;:8;:10::i;:::-;25847:65::o:0;4942:103::-;4364:6;;-1:-1:-1;;;;;4364:6:0;;;;;765:10;4511:23;4503:68;;;;-1:-1:-1;;;4503:68:0;;;;;;;:::i;:::-;5007:30:::1;5034:1;5007:18;:30::i;25778:61::-:0;4364:6;;-1:-1:-1;;;;;4364:6:0;;;;;765:10;4511:23;4503:68;;;;-1:-1:-1;;;4503:68:0;;;;;;;:::i;:::-;25823:8:::1;:6;:8::i;14850:104::-:0;14906:13;14939:7;14932:14;;;;;:::i;19208:436::-;19301:4;765:10;19301:4;19384:25;765:10;19401:7;19384:9;:25::i;:::-;19357:52;;19448:15;19428:16;:35;;19420:85;;;;-1:-1:-1;;;19420:85:0;;6204:2:1;19420:85:0;;;6186:21:1;6243:2;6223:18;;;6216:30;6282:34;6262:18;;;6255:62;-1:-1:-1;;;6333:18:1;;;6326:35;6378:19;;19420:85:0;6002:401:1;19420:85:0;19541:60;19550:5;19557:7;19585:15;19566:16;:34;19541:8;:60::i;16255:193::-;16334:4;765:10;16390:28;765:10;16407:2;16411:6;16390:9;:28::i;7278:240::-;4364:6;;7361:12;;-1:-1:-1;;;;;4364:6:0;;;;;765:10;4511:23;4503:68;;;;-1:-1:-1;;;4503:68:0;;;;;;;:::i;:::-;7387:9:::1;7382:131;7406:5;:12;7402:1;:16;7382:131;;;7438:31;7460:5;7466:1;7460:8;;;;;;;;:::i;:::-;;;;;;;7438:21;:31::i;:::-;7434:72;;;7492:4;7482:14;;7434:72;7420:3:::0;::::1;::::0;::::1;:::i;:::-;;;;7382:131;;16511:151:::0;-1:-1:-1;;;;;16627:18:0;;;16600:7;16627:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;16511:151::o;6787:262::-;4364:6;;6858:12;;-1:-1:-1;;;;;4364:6:0;;;;;765:10;4511:23;4503:68;;;;-1:-1:-1;;;4503:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6884:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;;::::1;;6879:165;;6910:18;:29:::0;;::::1;::::0;;::::1;::::0;;;;::::1;::::0;;-1:-1:-1;;;;;;6910:29:0::1;-1:-1:-1::0;;;;;6910:29:0;::::1;::::0;;::::1;::::0;;;-1:-1:-1;6948:15:0;;;:9:::1;6910:29;6948:15:::0;;;;;;;;:22;;-1:-1:-1;;6948:22:0::1;::::0;;::::1;::::0;;;6984:29;1758:51:1;;;6984:29:0::1;::::0;1731:18:1;6984:29:0::1;1612:203:1::0;5200:201:0;4364:6;;-1:-1:-1;;;;;4364:6:0;;;;;765:10;4511:23;4503:68;;;;-1:-1:-1;;;4503:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5289:22:0;::::1;5281:73;;;::::0;-1:-1:-1;;;5281:73:0;;6610:2:1;5281:73:0::1;::::0;::::1;6592:21:1::0;6649:2;6629:18;;;6622:30;6688:34;6668:18;;;6661:62;-1:-1:-1;;;6739:18:1;;;6732:36;6785:19;;5281:73:0::1;6408:402:1::0;5281:73:0::1;5365:28;5384:8;5365:18;:28::i;:::-;5200:201:::0;:::o;24566:125::-;;;;:::o;22842:380::-;-1:-1:-1;;;;;22978:19:0;;22970:68;;;;-1:-1:-1;;;22970:68:0;;7017:2:1;22970:68:0;;;6999:21:1;7056:2;7036:18;;;7029:30;7095:34;7075:18;;;7068:62;-1:-1:-1;;;7146:18:1;;;7139:34;7190:19;;22970:68:0;6815:400:1;22970:68:0;-1:-1:-1;;;;;23057:21:0;;23049:68;;;;-1:-1:-1;;;23049:68:0;;7422:2:1;23049:68:0;;;7404:21:1;7461:2;7441:18;;;7434:30;7500:34;7480:18;;;7473:62;-1:-1:-1;;;7551:18:1;;;7544:32;7593:19;;23049:68:0;7220:398:1;23049:68:0;-1:-1:-1;;;;;23130:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;23182:32;;1391:25:1;;;23182:32:0;;1364:18:1;23182:32:0;;;;;;;22842:380;;;:::o;23513:453::-;23648:24;23675:25;23685:5;23692:7;23675:9;:25::i;:::-;23648:52;;-1:-1:-1;;23715:16:0;:37;23711:248;;23797:6;23777:16;:26;;23769:68;;;;-1:-1:-1;;;23769:68:0;;7825:2:1;23769:68:0;;;7807:21:1;7864:2;7844:18;;;7837:30;7903:31;7883:18;;;7876:59;7952:18;;23769:68:0;7623:353:1;23769:68:0;23881:51;23890:5;23897:7;23925:6;23906:16;:25;23881:8;:51::i;:::-;23637:329;23513:453;;;:::o;20123:671::-;-1:-1:-1;;;;;20254:18:0;;20246:68;;;;-1:-1:-1;;;20246:68:0;;8183:2:1;20246:68:0;;;8165:21:1;8222:2;8202:18;;;8195:30;8261:34;8241:18;;;8234:62;-1:-1:-1;;;8312:18:1;;;8305:35;8357:19;;20246:68:0;7981:401:1;20246:68:0;-1:-1:-1;;;;;20333:16:0;;20325:64;;;;-1:-1:-1;;;20325:64:0;;8589:2:1;20325:64:0;;;8571:21:1;8628:2;8608:18;;;8601:30;8667:34;8647:18;;;8640:62;-1:-1:-1;;;8718:18:1;;;8711:33;8761:19;;20325:64:0;8387:399:1;20325:64:0;20402:38;20423:4;20429:2;20433:6;20402:20;:38::i;:::-;-1:-1:-1;;;;;20475:15:0;;20453:19;20475:15;;;;;;;;;;;20509:21;;;;20501:72;;;;-1:-1:-1;;;20501:72:0;;8993:2:1;20501:72:0;;;8975:21:1;9032:2;9012:18;;;9005:30;9071:34;9051:18;;;9044:62;-1:-1:-1;;;9122:18:1;;;9115:36;9168:19;;20501:72:0;8791:402:1;20501:72:0;-1:-1:-1;;;;;20609:15:0;;;:9;:15;;;;;;;;;;;20627:20;;;20609:38;;20669:13;;;;;;;;:23;;20641:6;;20609:9;20669:23;;20641:6;;20669:23;:::i;:::-;;;;;;;;20725:2;-1:-1:-1;;;;;20710:26:0;20719:4;-1:-1:-1;;;;;20710:26:0;;20729:6;20710:26;;;;1391:25:1;;1379:2;1364:18;;1245:177;20710:26:0;;;;;;;;20749:37;24566:125;3096:120;2108:7;;;;2632:41;;;;-1:-1:-1;;;2632:41:0;;9400:2:1;2632:41:0;;;9382:21:1;9439:2;9419:18;;;9412:30;-1:-1:-1;;;9458:18:1;;;9451:50;9518:18;;2632:41:0;9198:344:1;2632:41:0;3155:7:::1;:15:::0;;-1:-1:-1;;3155:15:0::1;::::0;;3186:22:::1;765:10:::0;3195:12:::1;3186:22;::::0;-1:-1:-1;;;;;1776:32:1;;;1758:51;;1746:2;1731:18;3186:22:0::1;;;;;;;3096:120::o:0;5561:191::-;5654:6;;;-1:-1:-1;;;;;5671:17:0;;;5654:6;5671:17;;;-1:-1:-1;;;;;;5671:17:0;;;;;;5704:40;;5654:6;;;;;;;;5704:40;;5635:16;;5704:40;5624:128;5561:191;:::o;2837:118::-;2108:7;;;;2362:9;2354:38;;;;-1:-1:-1;;;2354:38:0;;9749:2:1;2354:38:0;;;9731:21:1;9788:2;9768:18;;;9761:30;-1:-1:-1;;;9807:18:1;;;9800:46;9863:18;;2354:38:0;9547:340:1;2354:38:0;2897:7:::1;:14:::0;;-1:-1:-1;;2897:14:0::1;2907:4;2897:14;::::0;;2927:20:::1;2934:12;765:10:::0;;685:98;25920:449;2108:7;;;;2362:9;2354:38;;;;-1:-1:-1;;;2354:38:0;;9749:2:1;2354:38:0;;;9731:21:1;9788:2;9768:18;;;9761:30;-1:-1:-1;;;9807:18:1;;;9800:46;9863:18;;2354:38:0;9547:340:1;2354:38:0;-1:-1:-1;;;;;26194:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;;::::1;;26193:16;26185:56;;;::::0;-1:-1:-1;;;26185:56:0;;10094:2:1;26185:56:0::1;::::0;::::1;10076:21:1::0;10133:2;10113:18;;;10106:30;10172:29;10152:18;;;10145:57;10219:18;;26185:56:0::1;9892:351:1::0;26185:56:0::1;-1:-1:-1::0;;;;;26261:13:0;::::1;;::::0;;;:9:::1;:13;::::0;;;;;::::1;;26260:14;26252:52;;;::::0;-1:-1:-1;;;26252:52:0;;10450:2:1;26252:52:0::1;::::0;::::1;10432:21:1::0;10489:2;10469:18;;;10462:30;10528:27;10508:18;;;10501:55;10573:18;;26252:52:0::1;10248:349:1::0;14:597;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:173::-;684:20;;-1:-1:-1;;;;;733:31:1;;723:42;;713:70;;779:1;776;769:12;794:254;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;1038:2;1023:18;;;;1010:32;;-1:-1:-1;;;794:254:1:o;1427:180::-;1486:6;1539:2;1527:9;1518:7;1514:23;1510:32;1507:52;;;1555:1;1552;1545:12;1507:52;-1:-1:-1;1578:23:1;;1427:180;-1:-1:-1;1427:180:1:o;1820:328::-;1897:6;1905;1913;1966:2;1954:9;1945:7;1941:23;1937:32;1934:52;;;1982:1;1979;1972:12;1934:52;2005:29;2024:9;2005:29;:::i;:::-;1995:39;;2053:38;2087:2;2076:9;2072:18;2053:38;:::i;:::-;2043:48;;2138:2;2127:9;2123:18;2110:32;2100:42;;1820:328;;;;;:::o;2342:127::-;2403:10;2398:3;2394:20;2391:1;2384:31;2434:4;2431:1;2424:15;2458:4;2455:1;2448:15;2474:1121;2558:6;2589:2;2632;2620:9;2611:7;2607:23;2603:32;2600:52;;;2648:1;2645;2638:12;2600:52;2688:9;2675:23;2717:18;2758:2;2750:6;2747:14;2744:34;;;2774:1;2771;2764:12;2744:34;2812:6;2801:9;2797:22;2787:32;;2857:7;2850:4;2846:2;2842:13;2838:27;2828:55;;2879:1;2876;2869:12;2828:55;2915:2;2902:16;2937:2;2933;2930:10;2927:36;;;2943:18;;:::i;:::-;2989:2;2986:1;2982:10;3021:2;3015:9;3084:2;3080:7;3075:2;3071;3067:11;3063:25;3055:6;3051:38;3139:6;3127:10;3124:22;3119:2;3107:10;3104:18;3101:46;3098:72;;;3150:18;;:::i;:::-;3186:2;3179:22;3236:18;;;3270:15;;;;-1:-1:-1;3312:11:1;;;3308:20;;;3340:19;;;3337:39;;;3372:1;3369;3362:12;3337:39;3396:11;;;;3416:148;3432:6;3427:3;3424:15;3416:148;;;3498:23;3517:3;3498:23;:::i;:::-;3486:36;;3449:12;;;;3542;;;;3416:148;;;3583:6;2474:1121;-1:-1:-1;;;;;;;;2474:1121:1:o;3600:658::-;3771:2;3823:21;;;3893:13;;3796:18;;;3915:22;;;3742:4;;3771:2;3994:15;;;;3968:2;3953:18;;;3742:4;4037:195;4051:6;4048:1;4045:13;4037:195;;;4116:13;;-1:-1:-1;;;;;4112:39:1;4100:52;;4207:15;;;;4172:12;;;;4148:1;4066:9;4037:195;;;-1:-1:-1;4249:3:1;;3600:658;-1:-1:-1;;;;;;3600:658:1:o;4263:186::-;4322:6;4375:2;4363:9;4354:7;4350:23;4346:32;4343:52;;;4391:1;4388;4381:12;4343:52;4414:29;4433:9;4414:29;:::i;:::-;4404:39;4263:186;-1:-1:-1;;;4263:186:1:o;4454:260::-;4522:6;4530;4583:2;4571:9;4562:7;4558:23;4554:32;4551:52;;;4599:1;4596;4589:12;4551:52;4622:29;4641:9;4622:29;:::i;:::-;4612:39;;4670:38;4704:2;4693:9;4689:18;4670:38;:::i;:::-;4660:48;;4454:260;;;;;:::o;4719:380::-;4798:1;4794:12;;;;4841;;;4862:61;;4916:4;4908:6;4904:17;4894:27;;4862:61;4969:2;4961:6;4958:14;4938:18;4935:38;4932:161;;;5015:10;5010:3;5006:20;5003:1;4996:31;5050:4;5047:1;5040:15;5078:4;5075:1;5068:15;5104:356;5306:2;5288:21;;;5325:18;;;5318:30;5384:34;5379:2;5364:18;;5357:62;5451:2;5436:18;;5104:356::o;5465:127::-;5526:10;5521:3;5517:20;5514:1;5507:31;5557:4;5554:1;5547:15;5581:4;5578:1;5571:15;5597:127;5658:10;5653:3;5649:20;5646:1;5639:31;5689:4;5686:1;5679:15;5713:4;5710:1;5703:15;5729:135;5768:3;-1:-1:-1;;5789:17:1;;5786:43;;;5809:18;;:::i;:::-;-1:-1:-1;5856:1:1;5845:13;;5729:135::o;5869:128::-;5909:3;5940:1;5936:6;5933:1;5930:13;5927:39;;;5946:18;;:::i;:::-;-1:-1:-1;5982:9:1;;5869:128::o

Swarm Source

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