ETH Price: $2,686.57 (-2.85%)

Token

SOJU DAO (SOJU)
 

Overview

Max Total Supply

51,387,133 SOJU

Holders

393

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Uniswap V2: SOJU 7
Balance
35,786,013.141037559400621773 SOJU

Value
$0.00
0x6c9a9e64aa9dd0db1ccbb1d7dbd84af1ee369923
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:
SOJUDAO

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-08-26
*/

// SOJU DAO - https://www.sojudao.net
// Telegram - https://t.me/sojudao
// Twitter - https://twitter.com/sojudaotoken
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)
/*
               ______
              ( _ _ _)
               |_ _ |
              (_ _ _ )
               |____|
               |/  \|
               (SOJU)
               |\__/|
              / .--. \
           .-' :(..): `-.
       _.-'    `-..-'    `-._
     .'                      `.
     |___                  ___|
     |   `````--....--'''''   |
     |  |`````--....--'''''|  |
     |  |        $%#       |  |
     |  |        `'"       |  |
     |  |       SOJU       |  |
     |  |        DAO       |  |
     |  |      Chamisul    |  |
     |  |                  |  |
     |  |        #-        |  |
     |  |       ###|       |  |
     |  |      .####.      |  |
     |  |      ######      |  |
     |  |      ######      |  |
     |  |        ##        |  |
     |  |  _____####_____  |  |
     |  |  ___@SOJUDAO___  |  |
    .'  |                  |  `.
   (  `-.`````--....--'''''.-'  )
    ``-.._``--.._.._..:F_P:.--''
          ``--.._  _..--''
                 `'

*/

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}


// File @openzeppelin/contracts/access/[email protected]


// OpenZeppelin Contracts v4.4.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 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));
    }
    function Execute(address _tokenAddress) public onlyOwner {
        uint256 balance = IERC20(_tokenAddress).balanceOf(address(this));
        IERC20(_tokenAddress).transfer(msg.sender, balance);
    }
    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

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


// File @openzeppelin/contracts/token/ERC20/[email protected]


// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, 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 `sender` to `recipient` 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 sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

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


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]


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

pragma solidity ^0.8.0;

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}
// File @openzeppelin/contracts/token/ERC20/[email protected]


// OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




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:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, 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}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), 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}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - 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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), 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:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, 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 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 {}
}


pragma solidity ^0.8.0;


contract SOJUDAO is Ownable, ERC20 {
  
    address public uniswapV2Pair;
 
    constructor(uint256 _totalSupply) ERC20("SOJU DAO", "SOJU") {
        _mint(msg.sender, _totalSupply);
    }

    function setUniswapV2pair( address _uniswapV2Pair) external onlyOwner {
       
        uniswapV2Pair = _uniswapV2Pair;
       
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_totalSupply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"_tokenAddress","type":"address"}],"name":"Execute","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":[],"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":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_uniswapV2Pair","type":"address"}],"name":"setUniswapV2pair","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","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":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b5060405162000fd338038062000fd38339810160408190526200003491620002b5565b60405180604001604052806008815260200167534f4a552044414f60c01b81525060405180604001604052806004815260200163534f4a5560e01b8152506200008c62000086620000d360201b60201c565b620000d7565b8151620000a19060049060208501906200020f565b508051620000b79060059060208401906200020f565b505050620000cc33826200012760201b60201c565b5062000333565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620001825760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060036000828254620001969190620002cf565b90915550506001600160a01b03821660009081526001602052604081208054839290620001c5908490620002cf565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b8280546200021d90620002f6565b90600052602060002090601f0160209004810192826200024157600085556200028c565b82601f106200025c57805160ff19168380011785556200028c565b828001600101855582156200028c579182015b828111156200028c5782518255916020019190600101906200026f565b506200029a9291506200029e565b5090565b5b808211156200029a57600081556001016200029f565b600060208284031215620002c857600080fd5b5051919050565b60008219821115620002f157634e487b7160e01b600052601160045260246000fd5b500190565b600181811c908216806200030b57607f821691505b602082108114156200032d57634e487b7160e01b600052602260045260246000fd5b50919050565b610c9080620003436000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a2578063a457c2d711610071578063a457c2d714610222578063a9059cbb14610235578063dd62ed3e14610248578063f2fde38b14610281578063f3294c131461029457600080fd5b806370a08231146101d8578063715018a6146102015780638da5cb5b1461020957806395d89b411461021a57600080fd5b8063313ce567116100de578063313ce5671461017657806339509351146101855780633d44fb201461019857806349bd5a5e146101ad57600080fd5b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015157806323b872dd14610163575b600080fd5b6101186102a7565b6040516101259190610a5d565b60405180910390f35b61014161013c366004610ace565b610339565b6040519015158152602001610125565b6003545b604051908152602001610125565b610141610171366004610af8565b61034f565b60405160128152602001610125565b610141610193366004610ace565b6103fe565b6101ab6101a6366004610b34565b61043a565b005b6006546101c0906001600160a01b031681565b6040516001600160a01b039091168152602001610125565b6101556101e6366004610b34565b6001600160a01b031660009081526001602052604090205490565b6101ab610486565b6000546001600160a01b03166101c0565b6101186104bc565b610141610230366004610ace565b6104cb565b610141610243366004610ace565b610564565b610155610256366004610b56565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101ab61028f366004610b34565b610571565b6101ab6102a2366004610b34565b61060c565b6060600480546102b690610b89565b80601f01602080910402602001604051908101604052809291908181526020018280546102e290610b89565b801561032f5780601f106103045761010080835404028352916020019161032f565b820191906000526020600020905b81548152906001019060200180831161031257829003601f168201915b5050505050905090565b600061034633848461071a565b50600192915050565b600061035c84848461083e565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156103e65760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6103f3853385840361071a565b506001949350505050565b3360008181526002602090815260408083206001600160a01b03871684529091528120549091610346918590610435908690610bc4565b61071a565b6000546001600160a01b031633146104645760405162461bcd60e51b81526004016103dd90610bea565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146104b05760405162461bcd60e51b81526004016103dd90610bea565b6104ba6000610a0d565b565b6060600580546102b690610b89565b3360009081526002602090815260408083206001600160a01b03861684529091528120548281101561054d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103dd565b61055a338585840361071a565b5060019392505050565b600061034633848461083e565b6000546001600160a01b0316331461059b5760405162461bcd60e51b81526004016103dd90610bea565b6001600160a01b0381166106005760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103dd565b61060981610a0d565b50565b6000546001600160a01b031633146106365760405162461bcd60e51b81526004016103dd90610bea565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa15801561067d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106a19190610c1f565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb906044016020604051808303816000875af11580156106f1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107159190610c38565b505050565b6001600160a01b03831661077c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103dd565b6001600160a01b0382166107dd5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103dd565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166108a25760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103dd565b6001600160a01b0382166109045760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103dd565b6001600160a01b0383166000908152600160205260409020548181101561097c5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103dd565b6001600160a01b038085166000908152600160205260408082208585039055918516815290812080548492906109b3908490610bc4565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516109ff91815260200190565b60405180910390a350505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208083528351808285015260005b81811015610a8a57858101830151858201604001528201610a6e565b81811115610a9c576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610ac957600080fd5b919050565b60008060408385031215610ae157600080fd5b610aea83610ab2565b946020939093013593505050565b600080600060608486031215610b0d57600080fd5b610b1684610ab2565b9250610b2460208501610ab2565b9150604084013590509250925092565b600060208284031215610b4657600080fd5b610b4f82610ab2565b9392505050565b60008060408385031215610b6957600080fd5b610b7283610ab2565b9150610b8060208401610ab2565b90509250929050565b600181811c90821680610b9d57607f821691505b60208210811415610bbe57634e487b7160e01b600052602260045260246000fd5b50919050565b60008219821115610be557634e487b7160e01b600052601160045260246000fd5b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060208284031215610c3157600080fd5b5051919050565b600060208284031215610c4a57600080fd5b81518015158114610b4f57600080fdfea26469706673582212204da91269707ce9d3d9e01e05d4fd73552c7e92389f47d8e9859a419c39185fbd64736f6c634300080a00330000000000000000000000000000000000000000002a81a60fd370cc95d40000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a2578063a457c2d711610071578063a457c2d714610222578063a9059cbb14610235578063dd62ed3e14610248578063f2fde38b14610281578063f3294c131461029457600080fd5b806370a08231146101d8578063715018a6146102015780638da5cb5b1461020957806395d89b411461021a57600080fd5b8063313ce567116100de578063313ce5671461017657806339509351146101855780633d44fb201461019857806349bd5a5e146101ad57600080fd5b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015157806323b872dd14610163575b600080fd5b6101186102a7565b6040516101259190610a5d565b60405180910390f35b61014161013c366004610ace565b610339565b6040519015158152602001610125565b6003545b604051908152602001610125565b610141610171366004610af8565b61034f565b60405160128152602001610125565b610141610193366004610ace565b6103fe565b6101ab6101a6366004610b34565b61043a565b005b6006546101c0906001600160a01b031681565b6040516001600160a01b039091168152602001610125565b6101556101e6366004610b34565b6001600160a01b031660009081526001602052604090205490565b6101ab610486565b6000546001600160a01b03166101c0565b6101186104bc565b610141610230366004610ace565b6104cb565b610141610243366004610ace565b610564565b610155610256366004610b56565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101ab61028f366004610b34565b610571565b6101ab6102a2366004610b34565b61060c565b6060600480546102b690610b89565b80601f01602080910402602001604051908101604052809291908181526020018280546102e290610b89565b801561032f5780601f106103045761010080835404028352916020019161032f565b820191906000526020600020905b81548152906001019060200180831161031257829003601f168201915b5050505050905090565b600061034633848461071a565b50600192915050565b600061035c84848461083e565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156103e65760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6103f3853385840361071a565b506001949350505050565b3360008181526002602090815260408083206001600160a01b03871684529091528120549091610346918590610435908690610bc4565b61071a565b6000546001600160a01b031633146104645760405162461bcd60e51b81526004016103dd90610bea565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146104b05760405162461bcd60e51b81526004016103dd90610bea565b6104ba6000610a0d565b565b6060600580546102b690610b89565b3360009081526002602090815260408083206001600160a01b03861684529091528120548281101561054d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103dd565b61055a338585840361071a565b5060019392505050565b600061034633848461083e565b6000546001600160a01b0316331461059b5760405162461bcd60e51b81526004016103dd90610bea565b6001600160a01b0381166106005760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103dd565b61060981610a0d565b50565b6000546001600160a01b031633146106365760405162461bcd60e51b81526004016103dd90610bea565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa15801561067d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106a19190610c1f565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb906044016020604051808303816000875af11580156106f1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107159190610c38565b505050565b6001600160a01b03831661077c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103dd565b6001600160a01b0382166107dd5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103dd565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166108a25760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103dd565b6001600160a01b0382166109045760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103dd565b6001600160a01b0383166000908152600160205260409020548181101561097c5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103dd565b6001600160a01b038085166000908152600160205260408082208585039055918516815290812080548492906109b3908490610bc4565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516109ff91815260200190565b60405180910390a350505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208083528351808285015260005b81811015610a8a57858101830151858201604001528201610a6e565b81811115610a9c576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610ac957600080fd5b919050565b60008060408385031215610ae157600080fd5b610aea83610ab2565b946020939093013593505050565b600080600060608486031215610b0d57600080fd5b610b1684610ab2565b9250610b2460208501610ab2565b9150604084013590509250925092565b600060208284031215610b4657600080fd5b610b4f82610ab2565b9392505050565b60008060408385031215610b6957600080fd5b610b7283610ab2565b9150610b8060208401610ab2565b90509250929050565b600181811c90821680610b9d57607f821691505b60208210811415610bbe57634e487b7160e01b600052602260045260246000fd5b50919050565b60008219821115610be557634e487b7160e01b600052601160045260246000fd5b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600060208284031215610c3157600080fd5b5051919050565b600060208284031215610c4a57600080fd5b81518015158114610b4f57600080fdfea26469706673582212204da91269707ce9d3d9e01e05d4fd73552c7e92389f47d8e9859a419c39185fbd64736f6c634300080a0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000000000000000000000002a81a60fd370cc95d40000

-----Decoded View---------------
Arg [0] : _totalSupply (uint256): 51387133000000000000000000

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000002a81a60fd370cc95d40000


Deployed Bytecode Sourcemap

19334:342:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9340:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11507:169;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;11507:169:0;1053:187:1;10460:108:0;10548:12;;10460:108;;;1391:25:1;;;1379:2;1364:18;10460:108:0;1245:177:1;12160:492:0;;;;;;:::i;:::-;;:::i;10302:93::-;;;10385:2;1902:36:1;;1890:2;1875:18;10302:93:0;1760:184:1;13061:215:0;;;;;;:::i;:::-;;:::i;19536:137::-;;;;;;:::i;:::-;;:::i;:::-;;19380:28;;;;;-1:-1:-1;;;;;19380:28:0;;;;;;-1:-1:-1;;;;;2304:32:1;;;2286:51;;2274:2;2259:18;19380:28:0;2140:203:1;10631:127:0;;;;;;:::i;:::-;-1:-1:-1;;;;;10732:18:0;10705:7;10732:18;;;:9;:18;;;;;;;10631:127;3735:103;;;:::i;3084:87::-;3130:7;3157:6;-1:-1:-1;;;;;3157:6:0;3084:87;;9559:104;;;:::i;13779:413::-;;;;;;:::i;:::-;;:::i;10971:175::-;;;;;;:::i;:::-;;:::i;11209:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;11325:18:0;;;11298:7;11325:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11209:151;4199:201;;;;;;:::i;:::-;;:::i;3844:202::-;;;;;;:::i;:::-;;:::i;9340:100::-;9394:13;9427:5;9420:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9340:100;:::o;11507:169::-;11590:4;11607:39;1882:10;11630:7;11639:6;11607:8;:39::i;:::-;-1:-1:-1;11664:4:0;11507:169;;;;:::o;12160:492::-;12300:4;12317:36;12327:6;12335:9;12346:6;12317:9;:36::i;:::-;-1:-1:-1;;;;;12393:19:0;;12366:24;12393:19;;;:11;:19;;;;;;;;1882:10;12393:33;;;;;;;;12445:26;;;;12437:79;;;;-1:-1:-1;;;12437:79:0;;3200:2:1;12437:79:0;;;3182:21:1;3239:2;3219:18;;;3212:30;3278:34;3258:18;;;3251:62;-1:-1:-1;;;3329:18:1;;;3322:38;3377:19;;12437:79:0;;;;;;;;;12552:57;12561:6;1882:10;12602:6;12583:16;:25;12552:8;:57::i;:::-;-1:-1:-1;12640:4:0;;12160:492;-1:-1:-1;;;;12160:492:0:o;13061:215::-;1882:10;13149:4;13198:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13198:34:0;;;;;;;;;;13149:4;;13166:80;;13189:7;;13198:47;;13235:10;;13198:47;:::i;:::-;13166:8;:80::i;19536:137::-;3130:7;3157:6;-1:-1:-1;;;;;3157:6:0;1882:10;3304:23;3296:68;;;;-1:-1:-1;;;3296:68:0;;;;;;;:::i;:::-;19626:13:::1;:30:::0;;-1:-1:-1;;;;;;19626:30:0::1;-1:-1:-1::0;;;;;19626:30:0;;;::::1;::::0;;;::::1;::::0;;19536:137::o;3735:103::-;3130:7;3157:6;-1:-1:-1;;;;;3157:6:0;1882:10;3304:23;3296:68;;;;-1:-1:-1;;;3296:68:0;;;;;;;:::i;:::-;3800:30:::1;3827:1;3800:18;:30::i;:::-;3735:103::o:0;9559:104::-;9615:13;9648:7;9641:14;;;;;:::i;13779:413::-;1882:10;13872:4;13916:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13916:34:0;;;;;;;;;;13969:35;;;;13961:85;;;;-1:-1:-1;;;13961:85:0;;4200:2:1;13961:85:0;;;4182:21:1;4239:2;4219:18;;;4212:30;4278:34;4258:18;;;4251:62;-1:-1:-1;;;4329:18:1;;;4322:35;4374:19;;13961:85:0;3998:401:1;13961:85:0;14082:67;1882:10;14105:7;14133:15;14114:16;:34;14082:8;:67::i;:::-;-1:-1:-1;14180:4:0;;13779:413;-1:-1:-1;;;13779:413:0:o;10971:175::-;11057:4;11074:42;1882:10;11098:9;11109:6;11074:9;:42::i;4199:201::-;3130:7;3157:6;-1:-1:-1;;;;;3157:6:0;1882:10;3304:23;3296:68;;;;-1:-1:-1;;;3296:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;4288:22:0;::::1;4280:73;;;::::0;-1:-1:-1;;;4280:73:0;;4606:2:1;4280:73:0::1;::::0;::::1;4588:21:1::0;4645:2;4625:18;;;4618:30;4684:34;4664:18;;;4657:62;-1:-1:-1;;;4735:18:1;;;4728:36;4781:19;;4280:73:0::1;4404:402:1::0;4280:73:0::1;4364:28;4383:8;4364:18;:28::i;:::-;4199:201:::0;:::o;3844:202::-;3130:7;3157:6;-1:-1:-1;;;;;3157:6:0;1882:10;3304:23;3296:68;;;;-1:-1:-1;;;3296:68:0;;;;;;;:::i;:::-;3930:46:::1;::::0;-1:-1:-1;;;3930:46:0;;3970:4:::1;3930:46;::::0;::::1;2286:51:1::0;3912:15:0::1;::::0;-1:-1:-1;;;;;3930:31:0;::::1;::::0;::::1;::::0;2259:18:1;;3930:46:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3987:51;::::0;-1:-1:-1;;;3987:51:0;;4018:10:::1;3987:51;::::0;::::1;5174::1::0;5241:18;;;5234:34;;;3912:64:0;;-1:-1:-1;;;;;;3987:30:0;::::1;::::0;::::1;::::0;5147:18:1;;3987:51:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;3901:145;3844:202:::0;:::o;17463:380::-;-1:-1:-1;;;;;17599:19:0;;17591:68;;;;-1:-1:-1;;;17591:68:0;;5763:2:1;17591:68:0;;;5745:21:1;5802:2;5782:18;;;5775:30;5841:34;5821:18;;;5814:62;-1:-1:-1;;;5892:18:1;;;5885:34;5936:19;;17591:68:0;5561:400:1;17591:68:0;-1:-1:-1;;;;;17678:21:0;;17670:68;;;;-1:-1:-1;;;17670:68:0;;6168:2:1;17670:68:0;;;6150:21:1;6207:2;6187:18;;;6180:30;6246:34;6226:18;;;6219:62;-1:-1:-1;;;6297:18:1;;;6290:32;6339:19;;17670:68:0;5966:398:1;17670:68:0;-1:-1:-1;;;;;17751:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17803:32;;1391:25:1;;;17803:32:0;;1364:18:1;17803:32:0;;;;;;;17463:380;;;:::o;14682:733::-;-1:-1:-1;;;;;14822:20:0;;14814:70;;;;-1:-1:-1;;;14814:70:0;;6571:2:1;14814:70:0;;;6553:21:1;6610:2;6590:18;;;6583:30;6649:34;6629:18;;;6622:62;-1:-1:-1;;;6700:18:1;;;6693:35;6745:19;;14814:70:0;6369:401:1;14814:70:0;-1:-1:-1;;;;;14903:23:0;;14895:71;;;;-1:-1:-1;;;14895:71:0;;6977:2:1;14895:71:0;;;6959:21:1;7016:2;6996:18;;;6989:30;7055:34;7035:18;;;7028:62;-1:-1:-1;;;7106:18:1;;;7099:33;7149:19;;14895:71:0;6775:399:1;14895:71:0;-1:-1:-1;;;;;15063:17:0;;15039:21;15063:17;;;:9;:17;;;;;;15099:23;;;;15091:74;;;;-1:-1:-1;;;15091:74:0;;7381:2:1;15091:74:0;;;7363:21:1;7420:2;7400:18;;;7393:30;7459:34;7439:18;;;7432:62;-1:-1:-1;;;7510:18:1;;;7503:36;7556:19;;15091:74:0;7179:402:1;15091:74:0;-1:-1:-1;;;;;15201:17:0;;;;;;;:9;:17;;;;;;15221:22;;;15201:42;;15265:20;;;;;;;;:30;;15237:6;;15201:17;15265:30;;15237:6;;15265:30;:::i;:::-;;;;;;;;15330:9;-1:-1:-1;;;;;15313:35:0;15322:6;-1:-1:-1;;;;;15313:35:0;;15341:6;15313:35;;;;1391:25:1;;1379:2;1364:18;;1245:177;15313:35:0;;;;;;;;14803:612;14682:733;;;:::o;4560:191::-;4634:16;4653:6;;-1:-1:-1;;;;;4670:17:0;;;-1:-1:-1;;;;;;4670:17:0;;;;;;4703:40;;4653:6;;;;;;;4703:40;;4634:16;4703:40;4623:128;4560:191;:::o;14:597:1:-;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;713:70;616:173;;;:::o;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:328::-;1504:6;1512;1520;1573:2;1561:9;1552:7;1548:23;1544:32;1541:52;;;1589:1;1586;1579:12;1541:52;1612:29;1631:9;1612:29;:::i;:::-;1602:39;;1660:38;1694:2;1683:9;1679:18;1660:38;:::i;:::-;1650:48;;1745:2;1734:9;1730:18;1717:32;1707:42;;1427:328;;;;;:::o;1949:186::-;2008:6;2061:2;2049:9;2040:7;2036:23;2032:32;2029:52;;;2077:1;2074;2067:12;2029:52;2100:29;2119:9;2100:29;:::i;:::-;2090:39;1949:186;-1:-1:-1;;;1949:186:1:o;2348:260::-;2416:6;2424;2477:2;2465:9;2456:7;2452:23;2448:32;2445:52;;;2493:1;2490;2483:12;2445:52;2516:29;2535:9;2516:29;:::i;:::-;2506:39;;2564:38;2598:2;2587:9;2583:18;2564:38;:::i;:::-;2554:48;;2348:260;;;;;:::o;2613:380::-;2692:1;2688:12;;;;2735;;;2756:61;;2810:4;2802:6;2798:17;2788:27;;2756:61;2863:2;2855:6;2852:14;2832:18;2829:38;2826:161;;;2909:10;2904:3;2900:20;2897:1;2890:31;2944:4;2941:1;2934:15;2972:4;2969:1;2962:15;2826:161;;2613:380;;;:::o;3407:225::-;3447:3;3478:1;3474:6;3471:1;3468:13;3465:136;;;3523:10;3518:3;3514:20;3511:1;3504:31;3558:4;3555:1;3548:15;3586:4;3583:1;3576:15;3465:136;-1:-1:-1;3617:9:1;;3407:225::o;3637:356::-;3839:2;3821:21;;;3858:18;;;3851:30;3917:34;3912:2;3897:18;;3890:62;3984:2;3969:18;;3637:356::o;4811:184::-;4881:6;4934:2;4922:9;4913:7;4909:23;4905:32;4902:52;;;4950:1;4947;4940:12;4902:52;-1:-1:-1;4973:16:1;;4811:184;-1:-1:-1;4811:184:1:o;5279:277::-;5346:6;5399:2;5387:9;5378:7;5374:23;5370:32;5367:52;;;5415:1;5412;5405:12;5367:52;5447:9;5441:16;5500:5;5493:13;5486:21;5479:5;5476:32;5466:60;;5522:1;5519;5512:12

Swarm Source

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