ETH Price: $2,357.56 (+0.70%)

Token

Ser Doge Token (SerDoge)
 

Overview

Max Total Supply

420,690,000,000,000 SerDoge

Holders

69

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
3mandarins.eth
Balance
124,850,641,816.907515120807239084 SerDoge

Value
$0.00
0xD9438b70844D74FfD91b7208D0813a9b289F7216
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:
SerDogeToken

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-04-21
*/

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/IERC20.sol


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

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol


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

pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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}.
     *
     * 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 default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}

// File: serdoge.sol


pragma solidity 0.8.13;


contract SerDogeToken is ERC20 {
    address private _owner;
    mapping(address => bool) private _blacklist;
    uint256 public constant MAX_SUPPLY = 420690000000000;

    constructor() ERC20("Ser Doge Token", "SerDoge") {
        _owner = msg.sender; // set the contract creator as the owner
        uint256 initialSupply = 420690000000000 * 10 ** decimals();
        _mint(msg.sender, initialSupply);
    }

    function mint(address account, uint256 amount) public {
        require(msg.sender == _owner, "Only the contract owner can mint new tokens");
        require(totalSupply() + amount <= MAX_SUPPLY, "Exceeds max supply");
        _mint(account, amount);
    }

    function burn(uint256 amount) public {
        require(balanceOf(msg.sender) >= amount, "Not enough balance to burn");
        _burn(msg.sender, amount);
    }

    function transferOwnership(address newOwner) public {
        require(newOwner != address(0), "New owner cannot be zero address");
        require(msg.sender == _owner, "Only the contract owner can transfer ownership");
        _owner = newOwner;
    }

    function addToBlacklist(address wallet) public {
        require(msg.sender == _owner, "Only the contract owner can add to blacklist");
        _blacklist[wallet] = true;
    }

    function removeFromBlacklist(address wallet) public {
        require(msg.sender == _owner, "Only the contract owner can remove from blacklist");
        _blacklist[wallet] = false;
    }

    function isBlacklisted(address wallet) public view returns (bool) {
        return _blacklist[wallet];
    }

    function transfer(address recipient, uint256 amount) public override returns (bool) {
        require(!isBlacklisted(msg.sender), "Sender is blacklisted");
        require(!isBlacklisted(recipient), "Recipient is blacklisted");
        return super.transfer(recipient, amount);
    }

    function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
        require(!isBlacklisted(sender), "Sender is blacklisted");
        require(!isBlacklisted(recipient), "Recipient is blacklisted");
        return super.transferFrom(sender, recipient, amount);
    }
}

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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"addToBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":"wallet","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"removeFromBlacklist","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"}]

60806040523480156200001157600080fd5b50604080518082018252600e81526d29b2b9102237b3b2902a37b5b2b760911b602080830191825283518085019094526007845266536572446f676560c81b908401528151919291620000679160039162000198565b5080516200007d90600490602084019062000198565b5050600580546001600160a01b031916331790555060006200009d601290565b620000aa90600a62000353565b620000bd9066017e9d8602b4006200036b565b9050620000cb3382620000d2565b50620003e4565b6001600160a01b0382166200012d5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600260008282546200014191906200038d565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b828054620001a690620003a8565b90600052602060002090601f016020900481019282620001ca576000855562000215565b82601f10620001e557805160ff191683800117855562000215565b8280016001018555821562000215579182015b8281111562000215578251825591602001919060010190620001f8565b506200022392915062000227565b5090565b5b8082111562000223576000815560010162000228565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620002955781600019048211156200027957620002796200023e565b808516156200028757918102915b93841c939080029062000259565b509250929050565b600082620002ae575060016200034d565b81620002bd575060006200034d565b8160018114620002d65760028114620002e15762000301565b60019150506200034d565b60ff841115620002f557620002f56200023e565b50506001821b6200034d565b5060208310610133831016604e8410600b841016171562000326575081810a6200034d565b62000332838362000254565b80600019048211156200034957620003496200023e565b0290505b92915050565b60006200036460ff8416836200029d565b9392505050565b60008160001904831182151516156200038857620003886200023e565b500290565b60008219821115620003a357620003a36200023e565b500190565b600181811c90821680620003bd57607f821691505b602082108103620003de57634e487b7160e01b600052602260045260246000fd5b50919050565b61102380620003f46000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c806344337ea1116100a2578063a457c2d711610071578063a457c2d714610230578063a9059cbb14610243578063dd62ed3e14610256578063f2fde38b14610269578063fe575a871461027c57600080fd5b806344337ea1146101d9578063537df3b6146101ec57806370a08231146101ff57806395d89b411461022857600080fd5b8063313ce567116100e9578063313ce5671461018157806332cb6b0c14610190578063395093511461019e57806340c10f19146101b157806342966c68146101c657600080fd5b806306fdde031461011b578063095ea7b31461013957806318160ddd1461015c57806323b872dd1461016e575b600080fd5b61012361028f565b6040516101309190610e4f565b60405180910390f35b61014c610147366004610ec0565b610321565b6040519015158152602001610130565b6002545b604051908152602001610130565b61014c61017c366004610eea565b610339565b60405160128152602001610130565b61016066017e9d8602b40081565b61014c6101ac366004610ec0565b6103f2565b6101c46101bf366004610ec0565b610414565b005b6101c46101d4366004610f26565b6104ef565b6101c46101e7366004610f3f565b61055b565b6101c46101fa366004610f3f565b6105ee565b61016061020d366004610f3f565b6001600160a01b031660009081526020819052604090205490565b610123610683565b61014c61023e366004610ec0565b610692565b61014c610251366004610ec0565b610718565b610160610264366004610f5a565b6107ca565b6101c4610277366004610f3f565b6107f5565b61014c61028a366004610f3f565b6108de565b60606003805461029e90610f8d565b80601f01602080910402602001604051908101604052809291908181526020018280546102ca90610f8d565b80156103175780601f106102ec57610100808354040283529160200191610317565b820191906000526020600020905b8154815290600101906020018083116102fa57829003601f168201915b5050505050905090565b60003361032f8185856108fc565b5060019392505050565b6000610344846108de565b1561038e5760405162461bcd60e51b815260206004820152601560248201527414d95b99195c881a5cc8189b1858dadb1a5cdd1959605a1b60448201526064015b60405180910390fd5b610397836108de565b156103df5760405162461bcd60e51b8152602060048201526018602482015277149958da5c1a595b9d081a5cc8189b1858dadb1a5cdd195960421b6044820152606401610385565b6103ea848484610a21565b949350505050565b60003361032f81858561040583836107ca565b61040f9190610fc7565b6108fc565b6005546001600160a01b031633146104825760405162461bcd60e51b815260206004820152602b60248201527f4f6e6c792074686520636f6e7472616374206f776e65722063616e206d696e7460448201526a206e657720746f6b656e7360a81b6064820152608401610385565b66017e9d8602b4008161049460025490565b61049e9190610fc7565b11156104e15760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610385565b6104eb8282610a3a565b5050565b3360009081526020819052604090205481111561054e5760405162461bcd60e51b815260206004820152601a60248201527f4e6f7420656e6f7567682062616c616e636520746f206275726e0000000000006044820152606401610385565b6105583382610af9565b50565b6005546001600160a01b031633146105ca5760405162461bcd60e51b815260206004820152602c60248201527f4f6e6c792074686520636f6e7472616374206f776e65722063616e206164642060448201526b1d1bc8189b1858dadb1a5cdd60a21b6064820152608401610385565b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6005546001600160a01b031633146106625760405162461bcd60e51b815260206004820152603160248201527f4f6e6c792074686520636f6e7472616374206f776e65722063616e2072656d6f6044820152701d9948199c9bdb48189b1858dadb1a5cdd607a1b6064820152608401610385565b6001600160a01b03166000908152600660205260409020805460ff19169055565b60606004805461029e90610f8d565b600033816106a082866107ca565b9050838110156107005760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610385565b61070d82868684036108fc565b506001949350505050565b6000610723336108de565b156107685760405162461bcd60e51b815260206004820152601560248201527414d95b99195c881a5cc8189b1858dadb1a5cdd1959605a1b6044820152606401610385565b610771836108de565b156107b95760405162461bcd60e51b8152602060048201526018602482015277149958da5c1a595b9d081a5cc8189b1858dadb1a5cdd195960421b6044820152606401610385565b6107c38383610c23565b9392505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b03811661084b5760405162461bcd60e51b815260206004820181905260248201527f4e6577206f776e65722063616e6e6f74206265207a65726f20616464726573736044820152606401610385565b6005546001600160a01b031633146108bc5760405162461bcd60e51b815260206004820152602e60248201527f4f6e6c792074686520636f6e7472616374206f776e65722063616e207472616e60448201526d073666572206f776e6572736869760941b6064820152608401610385565b600580546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b031660009081526006602052604090205460ff1690565b6001600160a01b03831661095e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610385565b6001600160a01b0382166109bf5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610385565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b600033610a2f858285610c31565b61070d858585610cab565b6001600160a01b038216610a905760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610385565b8060026000828254610aa29190610fc7565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b038216610b595760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610385565b6001600160a01b03821660009081526020819052604090205481811015610bcd5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610385565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610a14565b60003361032f818585610cab565b6000610c3d84846107ca565b90506000198114610ca55781811015610c985760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610385565b610ca584848484036108fc565b50505050565b6001600160a01b038316610d0f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610385565b6001600160a01b038216610d715760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610385565b6001600160a01b03831660009081526020819052604090205481811015610de95760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610385565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610ca5565b600060208083528351808285015260005b81811015610e7c57858101830151858201604001528201610e60565b81811115610e8e576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610ebb57600080fd5b919050565b60008060408385031215610ed357600080fd5b610edc83610ea4565b946020939093013593505050565b600080600060608486031215610eff57600080fd5b610f0884610ea4565b9250610f1660208501610ea4565b9150604084013590509250925092565b600060208284031215610f3857600080fd5b5035919050565b600060208284031215610f5157600080fd5b6107c382610ea4565b60008060408385031215610f6d57600080fd5b610f7683610ea4565b9150610f8460208401610ea4565b90509250929050565b600181811c90821680610fa157607f821691505b602082108103610fc157634e487b7160e01b600052602260045260246000fd5b50919050565b60008219821115610fe857634e487b7160e01b600052601160045260246000fd5b50019056fea2646970667358221220eb3a0ccf5094e696658dacdd491fd5f161b129261cb824ae26975691012f36f264736f6c634300080d0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101165760003560e01c806344337ea1116100a2578063a457c2d711610071578063a457c2d714610230578063a9059cbb14610243578063dd62ed3e14610256578063f2fde38b14610269578063fe575a871461027c57600080fd5b806344337ea1146101d9578063537df3b6146101ec57806370a08231146101ff57806395d89b411461022857600080fd5b8063313ce567116100e9578063313ce5671461018157806332cb6b0c14610190578063395093511461019e57806340c10f19146101b157806342966c68146101c657600080fd5b806306fdde031461011b578063095ea7b31461013957806318160ddd1461015c57806323b872dd1461016e575b600080fd5b61012361028f565b6040516101309190610e4f565b60405180910390f35b61014c610147366004610ec0565b610321565b6040519015158152602001610130565b6002545b604051908152602001610130565b61014c61017c366004610eea565b610339565b60405160128152602001610130565b61016066017e9d8602b40081565b61014c6101ac366004610ec0565b6103f2565b6101c46101bf366004610ec0565b610414565b005b6101c46101d4366004610f26565b6104ef565b6101c46101e7366004610f3f565b61055b565b6101c46101fa366004610f3f565b6105ee565b61016061020d366004610f3f565b6001600160a01b031660009081526020819052604090205490565b610123610683565b61014c61023e366004610ec0565b610692565b61014c610251366004610ec0565b610718565b610160610264366004610f5a565b6107ca565b6101c4610277366004610f3f565b6107f5565b61014c61028a366004610f3f565b6108de565b60606003805461029e90610f8d565b80601f01602080910402602001604051908101604052809291908181526020018280546102ca90610f8d565b80156103175780601f106102ec57610100808354040283529160200191610317565b820191906000526020600020905b8154815290600101906020018083116102fa57829003601f168201915b5050505050905090565b60003361032f8185856108fc565b5060019392505050565b6000610344846108de565b1561038e5760405162461bcd60e51b815260206004820152601560248201527414d95b99195c881a5cc8189b1858dadb1a5cdd1959605a1b60448201526064015b60405180910390fd5b610397836108de565b156103df5760405162461bcd60e51b8152602060048201526018602482015277149958da5c1a595b9d081a5cc8189b1858dadb1a5cdd195960421b6044820152606401610385565b6103ea848484610a21565b949350505050565b60003361032f81858561040583836107ca565b61040f9190610fc7565b6108fc565b6005546001600160a01b031633146104825760405162461bcd60e51b815260206004820152602b60248201527f4f6e6c792074686520636f6e7472616374206f776e65722063616e206d696e7460448201526a206e657720746f6b656e7360a81b6064820152608401610385565b66017e9d8602b4008161049460025490565b61049e9190610fc7565b11156104e15760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610385565b6104eb8282610a3a565b5050565b3360009081526020819052604090205481111561054e5760405162461bcd60e51b815260206004820152601a60248201527f4e6f7420656e6f7567682062616c616e636520746f206275726e0000000000006044820152606401610385565b6105583382610af9565b50565b6005546001600160a01b031633146105ca5760405162461bcd60e51b815260206004820152602c60248201527f4f6e6c792074686520636f6e7472616374206f776e65722063616e206164642060448201526b1d1bc8189b1858dadb1a5cdd60a21b6064820152608401610385565b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6005546001600160a01b031633146106625760405162461bcd60e51b815260206004820152603160248201527f4f6e6c792074686520636f6e7472616374206f776e65722063616e2072656d6f6044820152701d9948199c9bdb48189b1858dadb1a5cdd607a1b6064820152608401610385565b6001600160a01b03166000908152600660205260409020805460ff19169055565b60606004805461029e90610f8d565b600033816106a082866107ca565b9050838110156107005760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610385565b61070d82868684036108fc565b506001949350505050565b6000610723336108de565b156107685760405162461bcd60e51b815260206004820152601560248201527414d95b99195c881a5cc8189b1858dadb1a5cdd1959605a1b6044820152606401610385565b610771836108de565b156107b95760405162461bcd60e51b8152602060048201526018602482015277149958da5c1a595b9d081a5cc8189b1858dadb1a5cdd195960421b6044820152606401610385565b6107c38383610c23565b9392505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b03811661084b5760405162461bcd60e51b815260206004820181905260248201527f4e6577206f776e65722063616e6e6f74206265207a65726f20616464726573736044820152606401610385565b6005546001600160a01b031633146108bc5760405162461bcd60e51b815260206004820152602e60248201527f4f6e6c792074686520636f6e7472616374206f776e65722063616e207472616e60448201526d073666572206f776e6572736869760941b6064820152608401610385565b600580546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b031660009081526006602052604090205460ff1690565b6001600160a01b03831661095e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610385565b6001600160a01b0382166109bf5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610385565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b600033610a2f858285610c31565b61070d858585610cab565b6001600160a01b038216610a905760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610385565b8060026000828254610aa29190610fc7565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b038216610b595760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610385565b6001600160a01b03821660009081526020819052604090205481811015610bcd5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610385565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610a14565b60003361032f818585610cab565b6000610c3d84846107ca565b90506000198114610ca55781811015610c985760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610385565b610ca584848484036108fc565b50505050565b6001600160a01b038316610d0f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610385565b6001600160a01b038216610d715760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610385565b6001600160a01b03831660009081526020819052604090205481811015610de95760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610385565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610ca5565b600060208083528351808285015260005b81811015610e7c57858101830151858201604001528201610e60565b81811115610e8e576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610ebb57600080fd5b919050565b60008060408385031215610ed357600080fd5b610edc83610ea4565b946020939093013593505050565b600080600060608486031215610eff57600080fd5b610f0884610ea4565b9250610f1660208501610ea4565b9150604084013590509250925092565b600060208284031215610f3857600080fd5b5035919050565b600060208284031215610f5157600080fd5b6107c382610ea4565b60008060408385031215610f6d57600080fd5b610f7683610ea4565b9150610f8460208401610ea4565b90509250929050565b600181811c90821680610fa157607f821691505b602082108103610fc157634e487b7160e01b600052602260045260246000fd5b50919050565b60008219821115610fe857634e487b7160e01b600052601160045260246000fd5b50019056fea2646970667358221220eb3a0ccf5094e696658dacdd491fd5f161b129261cb824ae26975691012f36f264736f6c634300080d0033

Deployed Bytecode Sourcemap

17881:2244:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6833:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9193:201;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;9193:201:0;1053:187:1;7962:108:0;8050:12;;7962:108;;;1391:25:1;;;1379:2;1364:18;7962:108:0;1245:177:1;19807:315:0;;;;;;:::i;:::-;;:::i;7804:93::-;;;7887:2;1902:36:1;;1890:2;1875:18;7804:93:0;1760:184:1;17998:52:0;;18035:15;17998:52;;10644:238;;;;;;:::i;:::-;;:::i;18307:260::-;;;;;;:::i;:::-;;:::i;:::-;;18575:162;;;;;;:::i;:::-;;:::i;19009:179::-;;;;;;:::i;:::-;;:::i;19196:190::-;;;;;;:::i;:::-;;:::i;8133:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;8234:18:0;8207:7;8234:18;;;;;;;;;;;;8133:127;7052:104;;;:::i;11385:436::-;;;;;;:::i;:::-;;:::i;19512:287::-;;;;;;:::i;:::-;;:::i;8722:151::-;;;;;;:::i;:::-;;:::i;18745:256::-;;;;;;:::i;:::-;;:::i;19394:110::-;;;;;;:::i;:::-;;:::i;6833:100::-;6887:13;6920:5;6913:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6833:100;:::o;9193:201::-;9276:4;812:10;9332:32;812:10;9348:7;9357:6;9332:8;:32::i;:::-;-1:-1:-1;9382:4:0;;9193:201;-1:-1:-1;;;9193:201:0:o;19807:315::-;19905:4;19931:21;19945:6;19931:13;:21::i;:::-;19930:22;19922:56;;;;-1:-1:-1;;;19922:56:0;;3177:2:1;19922:56:0;;;3159:21:1;3216:2;3196:18;;;3189:30;-1:-1:-1;;;3235:18:1;;;3228:51;3296:18;;19922:56:0;;;;;;;;;19998:24;20012:9;19998:13;:24::i;:::-;19997:25;19989:62;;;;-1:-1:-1;;;19989:62:0;;3527:2:1;19989:62:0;;;3509:21:1;3566:2;3546:18;;;3539:30;-1:-1:-1;;;3585:18:1;;;3578:54;3649:18;;19989:62:0;3325:348:1;19989:62:0;20069:45;20088:6;20096:9;20107:6;20069:18;:45::i;:::-;20062:52;19807:315;-1:-1:-1;;;;19807:315:0:o;10644:238::-;10732:4;812:10;10788:64;812:10;10804:7;10841:10;10813:25;812:10;10804:7;10813:9;:25::i;:::-;:38;;;;:::i;:::-;10788:8;:64::i;18307:260::-;18394:6;;-1:-1:-1;;;;;18394:6:0;18380:10;:20;18372:76;;;;-1:-1:-1;;;18372:76:0;;4110:2:1;18372:76:0;;;4092:21:1;4149:2;4129:18;;;4122:30;4188:34;4168:18;;;4161:62;-1:-1:-1;;;4239:18:1;;;4232:41;4290:19;;18372:76:0;3908:407:1;18372:76:0;18035:15;18483:6;18467:13;8050:12;;;7962:108;18467:13;:22;;;;:::i;:::-;:36;;18459:67;;;;-1:-1:-1;;;18459:67:0;;4522:2:1;18459:67:0;;;4504:21:1;4561:2;4541:18;;;4534:30;-1:-1:-1;;;4580:18:1;;;4573:48;4638:18;;18459:67:0;4320:342:1;18459:67:0;18537:22;18543:7;18552:6;18537:5;:22::i;:::-;18307:260;;:::o;18575:162::-;18641:10;8207:7;8234:18;;;;;;;;;;;18656:6;-1:-1:-1;18631:31:0;18623:70;;;;-1:-1:-1;;;18623:70:0;;4869:2:1;18623:70:0;;;4851:21:1;4908:2;4888:18;;;4881:30;4947:28;4927:18;;;4920:56;4993:18;;18623:70:0;4667:350:1;18623:70:0;18704:25;18710:10;18722:6;18704:5;:25::i;:::-;18575:162;:::o;19009:179::-;19089:6;;-1:-1:-1;;;;;19089:6:0;19075:10;:20;19067:77;;;;-1:-1:-1;;;19067:77:0;;5224:2:1;19067:77:0;;;5206:21:1;5263:2;5243:18;;;5236:30;5302:34;5282:18;;;5275:62;-1:-1:-1;;;5353:18:1;;;5346:42;5405:19;;19067:77:0;5022:408:1;19067:77:0;-1:-1:-1;;;;;19155:18:0;;;;;:10;:18;;;;;:25;;-1:-1:-1;;19155:25:0;19176:4;19155:25;;;19009:179::o;19196:190::-;19281:6;;-1:-1:-1;;;;;19281:6:0;19267:10;:20;19259:82;;;;-1:-1:-1;;;19259:82:0;;5637:2:1;19259:82:0;;;5619:21:1;5676:2;5656:18;;;5649:30;5715:34;5695:18;;;5688:62;-1:-1:-1;;;5766:18:1;;;5759:47;5823:19;;19259:82:0;5435:413:1;19259:82:0;-1:-1:-1;;;;;19352:18:0;19373:5;19352:18;;;:10;:18;;;;;:26;;-1:-1:-1;;19352:26:0;;;19196:190::o;7052:104::-;7108:13;7141:7;7134:14;;;;;:::i;11385:436::-;11478:4;812:10;11478:4;11561:25;812:10;11578:7;11561:9;:25::i;:::-;11534:52;;11625:15;11605:16;:35;;11597:85;;;;-1:-1:-1;;;11597:85:0;;6055:2:1;11597:85:0;;;6037:21:1;6094:2;6074:18;;;6067:30;6133:34;6113:18;;;6106:62;-1:-1:-1;;;6184:18:1;;;6177:35;6229:19;;11597:85:0;5853:401:1;11597:85:0;11718:60;11727:5;11734:7;11762:15;11743:16;:34;11718:8;:60::i;:::-;-1:-1:-1;11809:4:0;;11385:436;-1:-1:-1;;;;11385:436:0:o;19512:287::-;19590:4;19616:25;19630:10;19616:13;:25::i;:::-;19615:26;19607:60;;;;-1:-1:-1;;;19607:60:0;;3177:2:1;19607:60:0;;;3159:21:1;3216:2;3196:18;;;3189:30;-1:-1:-1;;;3235:18:1;;;3228:51;3296:18;;19607:60:0;2975:345:1;19607:60:0;19687:24;19701:9;19687:13;:24::i;:::-;19686:25;19678:62;;;;-1:-1:-1;;;19678:62:0;;3527:2:1;19678:62:0;;;3509:21:1;3566:2;3546:18;;;3539:30;-1:-1:-1;;;3585:18:1;;;3578:54;3649:18;;19678:62:0;3325:348:1;19678:62:0;19758:33;19773:9;19784:6;19758:14;:33::i;:::-;19751:40;19512:287;-1:-1:-1;;;19512:287:0:o;8722:151::-;-1:-1:-1;;;;;8838:18:0;;;8811:7;8838:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8722:151::o;18745:256::-;-1:-1:-1;;;;;18816:22:0;;18808:67;;;;-1:-1:-1;;;18808:67:0;;6461:2:1;18808:67:0;;;6443:21:1;;;6480:18;;;6473:30;6539:34;6519:18;;;6512:62;6591:18;;18808:67:0;6259:356:1;18808:67:0;18908:6;;-1:-1:-1;;;;;18908:6:0;18894:10;:20;18886:79;;;;-1:-1:-1;;;18886:79:0;;6822:2:1;18886:79:0;;;6804:21:1;6861:2;6841:18;;;6834:30;6900:34;6880:18;;;6873:62;-1:-1:-1;;;6951:18:1;;;6944:44;7005:19;;18886:79:0;6620:410:1;18886:79:0;18976:6;:17;;-1:-1:-1;;;;;;18976:17:0;-1:-1:-1;;;;;18976:17:0;;;;;;;;;;18745:256::o;19394:110::-;-1:-1:-1;;;;;19478:18:0;19454:4;19478:18;;;:10;:18;;;;;;;;;19394:110::o;15378:346::-;-1:-1:-1;;;;;15480:19:0;;15472:68;;;;-1:-1:-1;;;15472:68:0;;7237:2:1;15472:68:0;;;7219:21:1;7276:2;7256:18;;;7249:30;7315:34;7295:18;;;7288:62;-1:-1:-1;;;7366:18:1;;;7359:34;7410:19;;15472:68:0;7035:400:1;15472:68:0;-1:-1:-1;;;;;15559:21:0;;15551:68;;;;-1:-1:-1;;;15551:68:0;;7642:2:1;15551:68:0;;;7624:21:1;7681:2;7661:18;;;7654:30;7720:34;7700:18;;;7693:62;-1:-1:-1;;;7771:18:1;;;7764:32;7813:19;;15551:68:0;7440:398:1;15551:68:0;-1:-1:-1;;;;;15632:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15684:32;;1391:25:1;;;15684:32:0;;1364:18:1;15684:32:0;;;;;;;;15378:346;;;:::o;9974:261::-;10071:4;812:10;10129:38;10145:4;812:10;10160:6;10129:15;:38::i;:::-;10178:27;10188:4;10194:2;10198:6;10178:9;:27::i;13384:548::-;-1:-1:-1;;;;;13468:21:0;;13460:65;;;;-1:-1:-1;;;13460:65:0;;8045:2:1;13460:65:0;;;8027:21:1;8084:2;8064:18;;;8057:30;8123:33;8103:18;;;8096:61;8174:18;;13460:65:0;7843:355:1;13460:65:0;13616:6;13600:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;13771:18:0;;:9;:18;;;;;;;;;;;:28;;;;;;13826:37;1391:25:1;;;13826:37:0;;1364:18:1;13826:37:0;;;;;;;18307:260;;:::o;14265:675::-;-1:-1:-1;;;;;14349:21:0;;14341:67;;;;-1:-1:-1;;;14341:67:0;;8405:2:1;14341:67:0;;;8387:21:1;8444:2;8424:18;;;8417:30;8483:34;8463:18;;;8456:62;-1:-1:-1;;;8534:18:1;;;8527:31;8575:19;;14341:67:0;8203:397:1;14341:67:0;-1:-1:-1;;;;;14508:18:0;;14483:22;14508:18;;;;;;;;;;;14545:24;;;;14537:71;;;;-1:-1:-1;;;14537:71:0;;8807:2:1;14537:71:0;;;8789:21:1;8846:2;8826:18;;;8819:30;8885:34;8865:18;;;8858:62;-1:-1:-1;;;8936:18:1;;;8929:32;8978:19;;14537:71:0;8605:398:1;14537:71:0;-1:-1:-1;;;;;14644:18:0;;:9;:18;;;;;;;;;;;14665:23;;;14644:44;;14783:12;:22;;;;;;;14834:37;1391:25:1;;;14644:9:0;;:18;14834:37;;1364:18:1;14834:37:0;1245:177:1;8466:193:0;8545:4;812:10;8601:28;812:10;8618:2;8622:6;8601:9;:28::i;16015:419::-;16116:24;16143:25;16153:5;16160:7;16143:9;:25::i;:::-;16116:52;;-1:-1:-1;;16183:16:0;:37;16179:248;;16265:6;16245:16;:26;;16237:68;;;;-1:-1:-1;;;16237:68:0;;9210:2:1;16237:68:0;;;9192:21:1;9249:2;9229:18;;;9222:30;9288:31;9268:18;;;9261:59;9337:18;;16237:68:0;9008:353:1;16237:68:0;16349:51;16358:5;16365:7;16393:6;16374:16;:25;16349:8;:51::i;:::-;16105:329;16015:419;;;:::o;12291:806::-;-1:-1:-1;;;;;12388:18:0;;12380:68;;;;-1:-1:-1;;;12380:68:0;;9568:2:1;12380:68:0;;;9550:21:1;9607:2;9587:18;;;9580:30;9646:34;9626:18;;;9619:62;-1:-1:-1;;;9697:18:1;;;9690:35;9742:19;;12380:68:0;9366:401:1;12380:68:0;-1:-1:-1;;;;;12467:16:0;;12459:64;;;;-1:-1:-1;;;12459:64:0;;9974:2:1;12459:64:0;;;9956:21:1;10013:2;9993:18;;;9986:30;10052:34;10032:18;;;10025:62;-1:-1:-1;;;10103:18:1;;;10096:33;10146:19;;12459:64:0;9772:399:1;12459:64:0;-1:-1:-1;;;;;12609:15:0;;12587:19;12609:15;;;;;;;;;;;12643:21;;;;12635:72;;;;-1:-1:-1;;;12635:72:0;;10378:2:1;12635:72:0;;;10360:21:1;10417:2;10397:18;;;10390:30;10456:34;10436:18;;;10429:62;-1:-1:-1;;;10507:18:1;;;10500:36;10553:19;;12635:72:0;10176:402:1;12635:72:0;-1:-1:-1;;;;;12743:15:0;;;:9;:15;;;;;;;;;;;12761:20;;;12743:38;;12961:13;;;;;;;;;;:23;;;;;;13013:26;;1391:25:1;;;12961:13:0;;13013:26;;1364:18:1;13013:26:0;;;;;;;13052:37;14265:675;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:180::-;2008:6;2061:2;2049:9;2040:7;2036:23;2032:32;2029:52;;;2077:1;2074;2067:12;2029:52;-1:-1:-1;2100:23:1;;1949:180;-1:-1:-1;1949:180:1:o;2134:186::-;2193:6;2246:2;2234:9;2225:7;2221:23;2217:32;2214:52;;;2262:1;2259;2252:12;2214:52;2285:29;2304:9;2285:29;:::i;2325:260::-;2393:6;2401;2454:2;2442:9;2433:7;2429:23;2425:32;2422:52;;;2470:1;2467;2460:12;2422:52;2493:29;2512:9;2493:29;:::i;:::-;2483:39;;2541:38;2575:2;2564:9;2560:18;2541:38;:::i;:::-;2531:48;;2325:260;;;;;:::o;2590:380::-;2669:1;2665:12;;;;2712;;;2733:61;;2787:4;2779:6;2775:17;2765:27;;2733:61;2840:2;2832:6;2829:14;2809:18;2806:38;2803:161;;2886:10;2881:3;2877:20;2874:1;2867:31;2921:4;2918:1;2911:15;2949:4;2946:1;2939:15;2803:161;;2590:380;;;:::o;3678:225::-;3718:3;3749:1;3745:6;3742:1;3739:13;3736:136;;;3794:10;3789:3;3785:20;3782:1;3775:31;3829:4;3826:1;3819:15;3857:4;3854:1;3847:15;3736:136;-1:-1:-1;3888:9:1;;3678:225::o

Swarm Source

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