ETH Price: $2,451.43 (+3.69%)

Token

MammothToken (MAMMOTH)
 

Overview

Max Total Supply

311,235.629456018518528223 MAMMOTH

Holders

178

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
210.644560185185185185 MAMMOTH

Value
$0.00
0x0c3261e6bbf1fb802d69e6198771804a4150c8fb
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:
Mammoth

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-12
*/

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts 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: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.5.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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev 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/IERC20Metadata.sol


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

pragma solidity ^0.8.0;


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

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

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

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


// OpenZeppelin Contracts (last updated v4.5.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, _allowances[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 = _allowances[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 Spend `amount` form the allowance of `owner` toward `spender`.
     *
     * 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: contracts/Mammoth.sol




pragma solidity ^0.8.0;



contract Mammoth is ERC20, Ownable {

  // a mapping from an address to whether or not it can mint / burn
  mapping(address => bool) approvedAddress;

  constructor() ERC20("MammothToken", "MAMMOTH") { }

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

  function burn(address from, uint256 amount) external {
    require(approvedAddress[msg.sender], "Only controllers can burn");
    _burn(from, amount);
  }

  function addController(address owner, bool access) external onlyOwner {
    approvedAddress[owner] = access;
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"bool","name":"access","type":"bool"}],"name":"addController","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintMammoth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604080518082018252600c81526b26b0b6b6b7ba342a37b5b2b760a11b60208083019182528351808501909452600784526609a829a9a9ea8960cb1b9084015281519192916200006591600391620000f4565b5080516200007b906004906020840190620000f4565b50505062000098620000926200009e60201b60201c565b620000a2565b620001d7565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000102906200019a565b90600052602060002090601f01602090048101928262000126576000855562000171565b82601f106200014157805160ff191683800117855562000171565b8280016001018555821562000171579182015b828111156200017157825182559160200191906001019062000154565b506200017f92915062000183565b5090565b5b808211156200017f576000815560010162000184565b600181811c90821680620001af57607f821691505b60208210811415620001d157634e487b7160e01b600052602260045260246000fd5b50919050565b610ea580620001e76000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d714610214578063a9059cbb14610227578063b35086541461023a578063dd62ed3e1461024d578063f2fde38b1461028657600080fd5b8063715018a6146101d65780638da5cb5b146101de57806395d89b41146101f95780639dc29fac1461020157600080fd5b806323b872dd116100de57806323b872dd14610178578063313ce5671461018b578063395093511461019a57806370a08231146101ad57600080fd5b806305927b481461011057806306fdde0314610125578063095ea7b31461014357806318160ddd14610166575b600080fd5b61012361011e366004610d3b565b610299565b005b61012d61030b565b60405161013a9190610d65565b60405180910390f35b610156610151366004610d3b565b61039d565b604051901515815260200161013a565b6002545b60405190815260200161013a565b610156610186366004610cc3565b6103b5565b6040516012815260200161013a565b6101566101a8366004610d3b565b6103d9565b61016a6101bb366004610c6e565b6001600160a01b031660009081526020819052604090205490565b610123610418565b6005546040516001600160a01b03909116815260200161013a565b61012d61044e565b61012361020f366004610d3b565b61045d565b610156610222366004610d3b565b6104c6565b610156610235366004610d3b565b610558565b610123610248366004610cff565b610566565b61016a61025b366004610c90565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610123610294366004610c6e565b6105bb565b3360009081526006602052604090205460ff166102fd5760405162461bcd60e51b815260206004820152601960248201527f4f6e6c7920636f6e74726f6c6c6572732063616e206d696e740000000000000060448201526064015b60405180910390fd5b6103078282610656565b5050565b60606003805461031a90610e1e565b80601f016020809104026020016040519081016040528092919081815260200182805461034690610e1e565b80156103935780601f1061036857610100808354040283529160200191610393565b820191906000526020600020905b81548152906001019060200180831161037657829003601f168201915b5050505050905090565b6000336103ab818585610735565b5060019392505050565b6000336103c385828561085a565b6103ce8585856108ec565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091906103ab9082908690610413908790610def565b610735565b6005546001600160a01b031633146104425760405162461bcd60e51b81526004016102f490610dba565b61044c6000610aba565b565b60606004805461031a90610e1e565b3360009081526006602052604090205460ff166104bc5760405162461bcd60e51b815260206004820152601960248201527f4f6e6c7920636f6e74726f6c6c6572732063616e206275726e0000000000000060448201526064016102f4565b6103078282610b0c565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091908381101561054b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016102f4565b6103ce8286868403610735565b6000336103ab8185856108ec565b6005546001600160a01b031633146105905760405162461bcd60e51b81526004016102f490610dba565b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146105e55760405162461bcd60e51b81526004016102f490610dba565b6001600160a01b03811661064a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016102f4565b61065381610aba565b50565b6001600160a01b0382166106ac5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016102f4565b80600260008282546106be9190610def565b90915550506001600160a01b038216600090815260208190526040812080548392906106eb908490610def565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b0383166107975760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016102f4565b6001600160a01b0382166107f85760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016102f4565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383811660009081526001602090815260408083209386168352929052205460001981146108e657818110156108d95760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016102f4565b6108e68484848403610735565b50505050565b6001600160a01b0383166109505760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016102f4565b6001600160a01b0382166109b25760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016102f4565b6001600160a01b03831660009081526020819052604090205481811015610a2a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016102f4565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610a61908490610def565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610aad91815260200190565b60405180910390a36108e6565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216610b6c5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016102f4565b6001600160a01b03821660009081526020819052604090205481811015610be05760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016102f4565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610c0f908490610e07565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200161084d565b80356001600160a01b0381168114610c6957600080fd5b919050565b600060208284031215610c8057600080fd5b610c8982610c52565b9392505050565b60008060408385031215610ca357600080fd5b610cac83610c52565b9150610cba60208401610c52565b90509250929050565b600080600060608486031215610cd857600080fd5b610ce184610c52565b9250610cef60208501610c52565b9150604084013590509250925092565b60008060408385031215610d1257600080fd5b610d1b83610c52565b915060208301358015158114610d3057600080fd5b809150509250929050565b60008060408385031215610d4e57600080fd5b610d5783610c52565b946020939093013593505050565b600060208083528351808285015260005b81811015610d9257858101830151858201604001528201610d76565b81811115610da4576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115610e0257610e02610e59565b500190565b600082821015610e1957610e19610e59565b500390565b600181811c90821680610e3257607f821691505b60208210811415610e5357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220604d6c61eeb0c7284720f1be4a4c2bf5e33c8a17a9ad0c7fdcc2eddc496d8e5f64736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d714610214578063a9059cbb14610227578063b35086541461023a578063dd62ed3e1461024d578063f2fde38b1461028657600080fd5b8063715018a6146101d65780638da5cb5b146101de57806395d89b41146101f95780639dc29fac1461020157600080fd5b806323b872dd116100de57806323b872dd14610178578063313ce5671461018b578063395093511461019a57806370a08231146101ad57600080fd5b806305927b481461011057806306fdde0314610125578063095ea7b31461014357806318160ddd14610166575b600080fd5b61012361011e366004610d3b565b610299565b005b61012d61030b565b60405161013a9190610d65565b60405180910390f35b610156610151366004610d3b565b61039d565b604051901515815260200161013a565b6002545b60405190815260200161013a565b610156610186366004610cc3565b6103b5565b6040516012815260200161013a565b6101566101a8366004610d3b565b6103d9565b61016a6101bb366004610c6e565b6001600160a01b031660009081526020819052604090205490565b610123610418565b6005546040516001600160a01b03909116815260200161013a565b61012d61044e565b61012361020f366004610d3b565b61045d565b610156610222366004610d3b565b6104c6565b610156610235366004610d3b565b610558565b610123610248366004610cff565b610566565b61016a61025b366004610c90565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610123610294366004610c6e565b6105bb565b3360009081526006602052604090205460ff166102fd5760405162461bcd60e51b815260206004820152601960248201527f4f6e6c7920636f6e74726f6c6c6572732063616e206d696e740000000000000060448201526064015b60405180910390fd5b6103078282610656565b5050565b60606003805461031a90610e1e565b80601f016020809104026020016040519081016040528092919081815260200182805461034690610e1e565b80156103935780601f1061036857610100808354040283529160200191610393565b820191906000526020600020905b81548152906001019060200180831161037657829003601f168201915b5050505050905090565b6000336103ab818585610735565b5060019392505050565b6000336103c385828561085a565b6103ce8585856108ec565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091906103ab9082908690610413908790610def565b610735565b6005546001600160a01b031633146104425760405162461bcd60e51b81526004016102f490610dba565b61044c6000610aba565b565b60606004805461031a90610e1e565b3360009081526006602052604090205460ff166104bc5760405162461bcd60e51b815260206004820152601960248201527f4f6e6c7920636f6e74726f6c6c6572732063616e206275726e0000000000000060448201526064016102f4565b6103078282610b0c565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091908381101561054b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016102f4565b6103ce8286868403610735565b6000336103ab8185856108ec565b6005546001600160a01b031633146105905760405162461bcd60e51b81526004016102f490610dba565b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146105e55760405162461bcd60e51b81526004016102f490610dba565b6001600160a01b03811661064a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016102f4565b61065381610aba565b50565b6001600160a01b0382166106ac5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016102f4565b80600260008282546106be9190610def565b90915550506001600160a01b038216600090815260208190526040812080548392906106eb908490610def565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b0383166107975760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016102f4565b6001600160a01b0382166107f85760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016102f4565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383811660009081526001602090815260408083209386168352929052205460001981146108e657818110156108d95760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016102f4565b6108e68484848403610735565b50505050565b6001600160a01b0383166109505760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016102f4565b6001600160a01b0382166109b25760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016102f4565b6001600160a01b03831660009081526020819052604090205481811015610a2a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016102f4565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610a61908490610def565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610aad91815260200190565b60405180910390a36108e6565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216610b6c5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016102f4565b6001600160a01b03821660009081526020819052604090205481811015610be05760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016102f4565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610c0f908490610e07565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200161084d565b80356001600160a01b0381168114610c6957600080fd5b919050565b600060208284031215610c8057600080fd5b610c8982610c52565b9392505050565b60008060408385031215610ca357600080fd5b610cac83610c52565b9150610cba60208401610c52565b90509250929050565b600080600060608486031215610cd857600080fd5b610ce184610c52565b9250610cef60208501610c52565b9150604084013590509250925092565b60008060408385031215610d1257600080fd5b610d1b83610c52565b915060208301358015158114610d3057600080fd5b809150509250929050565b60008060408385031215610d4e57600080fd5b610d5783610c52565b946020939093013593505050565b600060208083528351808285015260005b81811015610d9257858101830151858201604001528201610d76565b81811115610da4576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115610e0257610e02610e59565b500190565b600082821015610e1957610e19610e59565b500390565b600181811c90821680610e3257607f821691505b60208210811415610e5357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220604d6c61eeb0c7284720f1be4a4c2bf5e33c8a17a9ad0c7fdcc2eddc496d8e5f64736f6c63430008070033

Deployed Bytecode Sourcemap

20049:660:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20263:160;;;;;;:::i;:::-;;:::i;:::-;;9183:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11534:201;;;;;;:::i;:::-;;:::i;:::-;;;1965:14:1;;1958:22;1940:41;;1928:2;1913:18;11534:201:0;1800:187:1;10303:108:0;10391:12;;10303:108;;;8170:25:1;;;8158:2;8143:18;10303:108:0;8024:177:1;12315:295:0;;;;;;:::i;:::-;;:::i;10145:93::-;;;10228:2;8348:36:1;;8336:2;8321:18;10145:93:0;8206:184:1;13019:240:0;;;;;;:::i;:::-;;:::i;10474:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;10575:18:0;10548:7;10575:18;;;;;;;;;;;;10474:127;2606:103;;;:::i;1955:87::-;2028:6;;1955:87;;-1:-1:-1;;;;;2028:6:0;;;1738:51:1;;1726:2;1711:18;1955:87:0;1592:203:1;9402:104:0;;;:::i;20429:157::-;;;;;;:::i;:::-;;:::i;13762:438::-;;;;;;:::i;:::-;;:::i;10807:193::-;;;;;;:::i;:::-;;:::i;20592:114::-;;;;;;:::i;:::-;;:::i;11063:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;11179:18:0;;;11152:7;11179:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11063:151;2864:201;;;;;;:::i;:::-;;:::i;20263:160::-;20352:10;20336:27;;;;:15;:27;;;;;;;;20328:65;;;;-1:-1:-1;;;20328:65:0;;5178:2:1;20328:65:0;;;5160:21:1;5217:2;5197:18;;;5190:30;5256:27;5236:18;;;5229:55;5301:18;;20328:65:0;;;;;;;;;20400:17;20406:2;20410:6;20400:5;:17::i;:::-;20263:160;;:::o;9183:100::-;9237:13;9270:5;9263:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9183:100;:::o;11534:201::-;11617:4;759:10;11673:32;759:10;11689:7;11698:6;11673:8;:32::i;:::-;-1:-1:-1;11723:4:0;;11534:201;-1:-1:-1;;;11534:201:0:o;12315:295::-;12446:4;759:10;12504:38;12520:4;759:10;12535:6;12504:15;:38::i;:::-;12553:27;12563:4;12569:2;12573:6;12553:9;:27::i;:::-;-1:-1:-1;12598:4:0;;12315:295;-1:-1:-1;;;;12315:295:0:o;13019:240::-;759:10;13107:4;13188:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;13188:27:0;;;;;;;;;;13107:4;;759:10;13163:66;;759:10;;13188:27;;:40;;13218:10;;13188:40;:::i;:::-;13163:8;:66::i;2606:103::-;2028:6;;-1:-1:-1;;;;;2028:6:0;759:10;2175:23;2167:68;;;;-1:-1:-1;;;2167:68:0;;;;;;;:::i;:::-;2671:30:::1;2698:1;2671:18;:30::i;:::-;2606:103::o:0;9402:104::-;9458:13;9491:7;9484:14;;;;;:::i;20429:157::-;20513:10;20497:27;;;;:15;:27;;;;;;;;20489:65;;;;-1:-1:-1;;;20489:65:0;;5532:2:1;20489:65:0;;;5514:21:1;5571:2;5551:18;;;5544:30;5610:27;5590:18;;;5583:55;5655:18;;20489:65:0;5330:349:1;20489:65:0;20561:19;20567:4;20573:6;20561:5;:19::i;13762:438::-;759:10;13855:4;13938:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;13938:27:0;;;;;;;;;;13855:4;;759:10;13984:35;;;;13976:85;;;;-1:-1:-1;;;13976:85:0;;7460:2:1;13976:85:0;;;7442:21:1;7499:2;7479:18;;;7472:30;7538:34;7518:18;;;7511:62;-1:-1:-1;;;7589:18:1;;;7582:35;7634:19;;13976:85:0;7258:401:1;13976:85:0;14097:60;14106:5;14113:7;14141:15;14122:16;:34;14097:8;:60::i;10807:193::-;10886:4;759:10;10942:28;759:10;10959:2;10963:6;10942:9;:28::i;20592:114::-;2028:6;;-1:-1:-1;;;;;2028:6:0;759:10;2175:23;2167:68;;;;-1:-1:-1;;;2167:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;20669:22:0;;;::::1;;::::0;;;:15:::1;:22;::::0;;;;:31;;-1:-1:-1;;20669:31:0::1;::::0;::::1;;::::0;;;::::1;::::0;;20592:114::o;2864:201::-;2028:6;;-1:-1:-1;;;;;2028:6:0;759:10;2175:23;2167:68;;;;-1:-1:-1;;;2167:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2953:22:0;::::1;2945:73;;;::::0;-1:-1:-1;;;2945:73:0;;3603:2:1;2945:73:0::1;::::0;::::1;3585:21:1::0;3642:2;3622:18;;;3615:30;3681:34;3661:18;;;3654:62;-1:-1:-1;;;3732:18:1;;;3725:36;3778:19;;2945:73:0::1;3401:402:1::0;2945:73:0::1;3029:28;3048:8;3029:18;:28::i;:::-;2864:201:::0;:::o;15637:399::-;-1:-1:-1;;;;;15721:21:0;;15713:65;;;;-1:-1:-1;;;15713:65:0;;7866:2:1;15713:65:0;;;7848:21:1;7905:2;7885:18;;;7878:30;7944:33;7924:18;;;7917:61;7995:18;;15713:65:0;7664:355:1;15713:65:0;15869:6;15853:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;15886:18:0;;:9;:18;;;;;;;;;;:28;;15908:6;;15886:9;:28;;15908:6;;15886:28;:::i;:::-;;;;-1:-1:-1;;15930:37:0;;8170:25:1;;;-1:-1:-1;;;;;15930:37:0;;;15947:1;;15930:37;;8158:2:1;8143:18;15930:37:0;;;;;;;20263:160;;:::o;17398:380::-;-1:-1:-1;;;;;17534:19:0;;17526:68;;;;-1:-1:-1;;;17526:68:0;;7055:2:1;17526:68:0;;;7037:21:1;7094:2;7074:18;;;7067:30;7133:34;7113:18;;;7106:62;-1:-1:-1;;;7184:18:1;;;7177:34;7228:19;;17526:68:0;6853:400:1;17526:68:0;-1:-1:-1;;;;;17613:21:0;;17605:68;;;;-1:-1:-1;;;17605:68:0;;4010:2:1;17605:68:0;;;3992:21:1;4049:2;4029:18;;;4022:30;4088:34;4068:18;;;4061:62;-1:-1:-1;;;4139:18:1;;;4132:32;4181:19;;17605:68:0;3808:398:1;17605:68:0;-1:-1:-1;;;;;17686:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17738:32;;8170:25:1;;;17738:32:0;;8143:18:1;17738:32:0;;;;;;;;17398:380;;;:::o;18065:453::-;-1:-1:-1;;;;;11179:18:0;;;18200:24;11179:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;18267:37:0;;18263:248;;18349:6;18329:16;:26;;18321:68;;;;-1:-1:-1;;;18321:68:0;;4413:2:1;18321:68:0;;;4395:21:1;4452:2;4432:18;;;4425:30;4491:31;4471:18;;;4464:59;4540:18;;18321:68:0;4211:353:1;18321:68:0;18433:51;18442:5;18449:7;18477:6;18458:16;:25;18433:8;:51::i;:::-;18189:329;18065:453;;;:::o;14679:671::-;-1:-1:-1;;;;;14810:18:0;;14802:68;;;;-1:-1:-1;;;14802:68:0;;6649:2:1;14802:68:0;;;6631:21:1;6688:2;6668:18;;;6661:30;6727:34;6707:18;;;6700:62;-1:-1:-1;;;6778:18:1;;;6771:35;6823:19;;14802:68:0;6447:401:1;14802:68:0;-1:-1:-1;;;;;14889:16:0;;14881:64;;;;-1:-1:-1;;;14881:64:0;;2796:2:1;14881:64:0;;;2778:21:1;2835:2;2815:18;;;2808:30;2874:34;2854:18;;;2847:62;-1:-1:-1;;;2925:18:1;;;2918:33;2968:19;;14881:64:0;2594:399:1;14881:64:0;-1:-1:-1;;;;;15031:15:0;;15009:19;15031:15;;;;;;;;;;;15065:21;;;;15057:72;;;;-1:-1:-1;;;15057:72:0;;4771:2:1;15057:72:0;;;4753:21:1;4810:2;4790:18;;;4783:30;4849:34;4829:18;;;4822:62;-1:-1:-1;;;4900:18:1;;;4893:36;4946:19;;15057:72:0;4569:402:1;15057:72:0;-1:-1:-1;;;;;15165:15:0;;;:9;:15;;;;;;;;;;;15183:20;;;15165:38;;15225:13;;;;;;;;:23;;15197:6;;15165:9;15225:23;;15197:6;;15225:23;:::i;:::-;;;;;;;;15281:2;-1:-1:-1;;;;;15266:26:0;15275:4;-1:-1:-1;;;;;15266:26:0;;15285:6;15266:26;;;;8170:25:1;;8158:2;8143:18;;8024:177;15266:26:0;;;;;;;;15305:37;16369:591;3225:191;3318:6;;;-1:-1:-1;;;;;3335:17:0;;;-1:-1:-1;;;;;;3335:17:0;;;;;;;3368:40;;3318:6;;;3335:17;3318:6;;3368:40;;3299:16;;3368:40;3288:128;3225:191;:::o;16369:591::-;-1:-1:-1;;;;;16453:21:0;;16445:67;;;;-1:-1:-1;;;16445:67:0;;6247:2:1;16445:67:0;;;6229:21:1;6286:2;6266:18;;;6259:30;6325:34;6305:18;;;6298:62;-1:-1:-1;;;6376:18:1;;;6369:31;6417:19;;16445:67:0;6045:397:1;16445:67:0;-1:-1:-1;;;;;16612:18:0;;16587:22;16612:18;;;;;;;;;;;16649:24;;;;16641:71;;;;-1:-1:-1;;;16641:71:0;;3200:2:1;16641:71:0;;;3182:21:1;3239:2;3219:18;;;3212:30;3278:34;3258:18;;;3251:62;-1:-1:-1;;;3329:18:1;;;3322:32;3371:19;;16641:71:0;2998:398:1;16641:71:0;-1:-1:-1;;;;;16748:18:0;;:9;:18;;;;;;;;;;16769:23;;;16748:44;;16814:12;:22;;16786:6;;16748:9;16814:22;;16786:6;;16814:22;:::i;:::-;;;;-1:-1:-1;;16854:37:0;;8170:25:1;;;16880:1:0;;-1:-1:-1;;;;;16854:37:0;;;;;8158:2:1;8143:18;16854:37:0;8024:177:1;14:173;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;:::-;333:39;192:186;-1:-1:-1;;;192:186:1:o;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:347::-;1046:6;1054;1107:2;1095:9;1086:7;1082:23;1078:32;1075:52;;;1123:1;1120;1113:12;1075:52;1146:29;1165:9;1146:29;:::i;:::-;1136:39;;1225:2;1214:9;1210:18;1197:32;1272:5;1265:13;1258:21;1251:5;1248:32;1238:60;;1294:1;1291;1284:12;1238:60;1317:5;1307:15;;;981:347;;;;;:::o;1333:254::-;1401:6;1409;1462:2;1450:9;1441:7;1437:23;1433:32;1430:52;;;1478:1;1475;1468:12;1430:52;1501:29;1520:9;1501:29;:::i;:::-;1491:39;1577:2;1562:18;;;;1549:32;;-1:-1:-1;;;1333:254:1:o;1992:597::-;2104:4;2133:2;2162;2151:9;2144:21;2194:6;2188:13;2237:6;2232:2;2221:9;2217:18;2210:34;2262:1;2272:140;2286:6;2283:1;2280:13;2272:140;;;2381:14;;;2377:23;;2371:30;2347:17;;;2366:2;2343:26;2336:66;2301:10;;2272:140;;;2430:6;2427:1;2424:13;2421:91;;;2500:1;2495:2;2486:6;2475:9;2471:22;2467:31;2460:42;2421:91;-1:-1:-1;2573:2:1;2552:15;-1:-1:-1;;2548:29:1;2533:45;;;;2580:2;2529:54;;1992:597;-1:-1:-1;;;1992:597:1:o;5684:356::-;5886:2;5868:21;;;5905:18;;;5898:30;5964:34;5959:2;5944:18;;5937:62;6031:2;6016:18;;5684:356::o;8395:128::-;8435:3;8466:1;8462:6;8459:1;8456:13;8453:39;;;8472:18;;:::i;:::-;-1:-1:-1;8508:9:1;;8395:128::o;8528:125::-;8568:4;8596:1;8593;8590:8;8587:34;;;8601:18;;:::i;:::-;-1:-1:-1;8638:9:1;;8528:125::o;8658:380::-;8737:1;8733:12;;;;8780;;;8801:61;;8855:4;8847:6;8843:17;8833:27;;8801:61;8908:2;8900:6;8897:14;8877:18;8874:38;8871:161;;;8954:10;8949:3;8945:20;8942:1;8935:31;8989:4;8986:1;8979:15;9017:4;9014:1;9007:15;8871:161;;8658:380;;;:::o;9043:127::-;9104:10;9099:3;9095:20;9092:1;9085:31;9135:4;9132:1;9125:15;9159:4;9156:1;9149:15

Swarm Source

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