ETH Price: $2,423.81 (+3.03%)

Token

BullRocket (BULL)
 

Overview

Max Total Supply

77,000,000,000 BULL

Holders

20

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
798,352,713.037555911744423534 BULL

Value
$0.00
0xdcba803d02b717e291b7d04b6cfe9d2b0c3bde95
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:
BULL

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
pragma solidity 0.8.17;

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

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);
}

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);
}

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);
    }
}

interface IUniswapV2Factory {
    function createPair(address tokenA, address tokenB) external returns (address pair);
}

interface IUniswapV2Router01 {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
}

contract BULL is Context, IERC20, IERC20Metadata, Ownable {

    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    // Anti bot
    mapping(address => uint256) public _blockNumberByAddress;
    bool public antiBotsActive = false;
    mapping(address => bool) public isContractExempt;
    uint public blockCooldownAmount = 1;


    /**
     * @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() {
        _name = "BullRocket";
        _symbol = "BULL";
        uint e_totalSupply = 77_000_000_000 ether;
        
        // Anti bot
        isContractExempt[address(this)] = true;

        _mint(msg.sender, e_totalSupply);
    }

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

        // bots don't get bull
        if(antiBotsActive)
        {
            if(!isContractExempt[from] && !isContractExempt[to])
            {
                address human = ensureOneHuman(from, to);
                ensureMaxTxFrequency(human);
                _blockNumberByAddress[human] = block.number;
            }
        }
        // 

        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 {}

    // anti bot
    function isContract(address account) internal view returns (bool) {
        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    function ensureOneHuman(address _to, address _from) internal virtual returns (address) {
        require(!isContract(_to) || !isContract(_from), "No bots are allowed BULL!");
        if (isContract(_to)) return _from;
        else return _to;
    }

    function ensureMaxTxFrequency(address addr) internal virtual {
        bool isAllowed = _blockNumberByAddress[addr] == 0 ||
            ((_blockNumberByAddress[addr] + blockCooldownAmount) < (block.number + 1));
        require(isAllowed, "Max tx frequency exceeded!");
    }

    function setAntiBotsActive(bool value) external onlyOwner {
        antiBotsActive = value;
    }

    function setBlockCooldown(uint value) external onlyOwner {
        blockCooldownAmount = value;
    }

    function setContractExempt(address account, bool value) external onlyOwner {
        isContractExempt[account] = value;
    }
    // End anti bot
}

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":"","type":"address"}],"name":"_blockNumberByAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"antiBotsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"blockCooldownAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isContractExempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setAntiBotsActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setBlockCooldown","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setContractExempt","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"}]

60806040526007805460ff1916905560016009553480156200002057600080fd5b506200002c33620000c2565b60408051808201909152600a815269109d5b1b149bd8dad95d60b21b60208201526004906200005c9082620002a3565b506040805180820190915260048152631095531360e21b6020820152600590620000879082620002a3565b50306000908152600860205260409020805460ff191660011790556bf8cce83c11b69251c8000000620000bb338262000112565b5062000397565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166200016d5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600360008282546200018191906200036f565b90915550506001600160a01b03821660009081526001602052604081208054839290620001b09084906200036f565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200022a57607f821691505b6020821081036200024b57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001fa57600081815260208120601f850160051c810160208610156200027a5750805b601f850160051c820191505b818110156200029b5782815560010162000286565b505050505050565b81516001600160401b03811115620002bf57620002bf620001ff565b620002d781620002d0845462000215565b8462000251565b602080601f8311600181146200030f5760008415620002f65750858301515b600019600386901b1c1916600185901b1785556200029b565b600085815260208120601f198616915b8281101562000340578886015182559484019460019091019084016200031f565b50858210156200035f5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b808201808211156200039157634e487b7160e01b600052601160045260246000fd5b92915050565b610e3e80620003a76000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c8063715018a6116100b85780639686d3221161007c5780639686d32214610276578063a457c2d714610289578063a9059cbb1461029c578063dd62ed3e146102af578063f2fde38b146102e8578063f6887cd3146102fb57600080fd5b8063715018a61461021857806377a59f001461022057806380f68310146102405780638da5cb5b1461025357806395d89b411461026e57600080fd5b806323b872dd116100ff57806323b872dd146101ad578063313ce567146101c057806339509351146101cf57806341f20b68146101e257806370a08231146101ef57600080fd5b806306fdde031461013c578063095ea7b31461015a57806313c72aed1461017d57806318160ddd146101925780631868aadf146101a4575b600080fd5b61014461031e565b6040516101519190610be5565b60405180910390f35b61016d610168366004610c4f565b6103b0565b6040519015158152602001610151565b61019061018b366004610c79565b6103ca565b005b6003545b604051908152602001610151565b61019660095481565b61016d6101bb366004610c92565b610402565b60405160128152602001610151565b61016d6101dd366004610c4f565b610426565b60075461016d9060ff1681565b6101966101fd366004610cce565b6001600160a01b031660009081526001602052604090205490565b610190610465565b61019661022e366004610cce565b60066020526000908152604090205481565b61019061024e366004610d00565b61049b565b6000546040516001600160a01b039091168152602001610151565b6101446104d8565b610190610284366004610d1b565b6104e7565b61016d610297366004610c4f565b61053c565b61016d6102aa366004610c4f565b6105ce565b6101966102bd366004610d4e565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101906102f6366004610cce565b6105dc565b61016d610309366004610cce565b60086020526000908152604090205460ff1681565b60606004805461032d90610d78565b80601f016020809104026020016040519081016040528092919081815260200182805461035990610d78565b80156103a65780601f1061037b576101008083540402835291602001916103a6565b820191906000526020600020905b81548152906001019060200180831161038957829003601f168201915b5050505050905090565b6000336103be818585610677565b60019150505b92915050565b6000546001600160a01b031633146103fd5760405162461bcd60e51b81526004016103f490610db2565b60405180910390fd5b600955565b60003361041085828561079b565b61041b85858561082d565b506001949350505050565b3360008181526002602090815260408083206001600160a01b03871684529091528120549091906103be9082908690610460908790610de7565b610677565b6000546001600160a01b0316331461048f5760405162461bcd60e51b81526004016103f490610db2565b6104996000610a7f565b565b6000546001600160a01b031633146104c55760405162461bcd60e51b81526004016103f490610db2565b6007805460ff1916911515919091179055565b60606005805461032d90610d78565b6000546001600160a01b031633146105115760405162461bcd60e51b81526004016103f490610db2565b6001600160a01b03919091166000908152600860205260409020805460ff1916911515919091179055565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909190838110156105c15760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103f4565b61041b8286868403610677565b6000336103be81858561082d565b6000546001600160a01b031633146106065760405162461bcd60e51b81526004016103f490610db2565b6001600160a01b03811661066b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103f4565b61067481610a7f565b50565b6001600160a01b0383166106d95760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103f4565b6001600160a01b03821661073a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103f4565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038381166000908152600260209081526040808320938616835292905220546000198114610827578181101561081a5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103f4565b6108278484848403610677565b50505050565b6001600160a01b0383166108915760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103f4565b6001600160a01b0382166108f35760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103f4565b60075460ff1615610977576001600160a01b03831660009081526008602052604090205460ff1615801561094057506001600160a01b03821660009081526008602052604090205460ff16155b156109775760006109518484610acf565b905061095c81610b3f565b6001600160a01b031660009081526006602052604090204390555b6001600160a01b038316600090815260016020526040902054818110156109ef5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103f4565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610a26908490610de7565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a7291815260200190565b60405180910390a3610827565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000823b1580610ade5750813b155b610b2a5760405162461bcd60e51b815260206004820152601960248201527f4e6f20626f74732061726520616c6c6f7765642042554c4c210000000000000060448201526064016103f4565b823b15610b385750806103c4565b50816103c4565b6001600160a01b0381166000908152600660205260408120541580610b925750610b6a436001610de7565b6009546001600160a01b038416600090815260066020526040902054610b909190610de7565b105b905080610be15760405162461bcd60e51b815260206004820152601a60248201527f4d6178207478206672657175656e63792065786365656465642100000000000060448201526064016103f4565b5050565b600060208083528351808285015260005b81811015610c1257858101830151858201604001528201610bf6565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610c4a57600080fd5b919050565b60008060408385031215610c6257600080fd5b610c6b83610c33565b946020939093013593505050565b600060208284031215610c8b57600080fd5b5035919050565b600080600060608486031215610ca757600080fd5b610cb084610c33565b9250610cbe60208501610c33565b9150604084013590509250925092565b600060208284031215610ce057600080fd5b610ce982610c33565b9392505050565b80358015158114610c4a57600080fd5b600060208284031215610d1257600080fd5b610ce982610cf0565b60008060408385031215610d2e57600080fd5b610d3783610c33565b9150610d4560208401610cf0565b90509250929050565b60008060408385031215610d6157600080fd5b610d6a83610c33565b9150610d4560208401610c33565b600181811c90821680610d8c57607f821691505b602082108103610dac57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b808201808211156103c457634e487b7160e01b600052601160045260246000fdfea2646970667358221220216dcfe6f66bd75acb11d3d0d67b25992a81a8a3d5d41c062e2c6a4841ff03ab64736f6c63430008110033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101375760003560e01c8063715018a6116100b85780639686d3221161007c5780639686d32214610276578063a457c2d714610289578063a9059cbb1461029c578063dd62ed3e146102af578063f2fde38b146102e8578063f6887cd3146102fb57600080fd5b8063715018a61461021857806377a59f001461022057806380f68310146102405780638da5cb5b1461025357806395d89b411461026e57600080fd5b806323b872dd116100ff57806323b872dd146101ad578063313ce567146101c057806339509351146101cf57806341f20b68146101e257806370a08231146101ef57600080fd5b806306fdde031461013c578063095ea7b31461015a57806313c72aed1461017d57806318160ddd146101925780631868aadf146101a4575b600080fd5b61014461031e565b6040516101519190610be5565b60405180910390f35b61016d610168366004610c4f565b6103b0565b6040519015158152602001610151565b61019061018b366004610c79565b6103ca565b005b6003545b604051908152602001610151565b61019660095481565b61016d6101bb366004610c92565b610402565b60405160128152602001610151565b61016d6101dd366004610c4f565b610426565b60075461016d9060ff1681565b6101966101fd366004610cce565b6001600160a01b031660009081526001602052604090205490565b610190610465565b61019661022e366004610cce565b60066020526000908152604090205481565b61019061024e366004610d00565b61049b565b6000546040516001600160a01b039091168152602001610151565b6101446104d8565b610190610284366004610d1b565b6104e7565b61016d610297366004610c4f565b61053c565b61016d6102aa366004610c4f565b6105ce565b6101966102bd366004610d4e565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101906102f6366004610cce565b6105dc565b61016d610309366004610cce565b60086020526000908152604090205460ff1681565b60606004805461032d90610d78565b80601f016020809104026020016040519081016040528092919081815260200182805461035990610d78565b80156103a65780601f1061037b576101008083540402835291602001916103a6565b820191906000526020600020905b81548152906001019060200180831161038957829003601f168201915b5050505050905090565b6000336103be818585610677565b60019150505b92915050565b6000546001600160a01b031633146103fd5760405162461bcd60e51b81526004016103f490610db2565b60405180910390fd5b600955565b60003361041085828561079b565b61041b85858561082d565b506001949350505050565b3360008181526002602090815260408083206001600160a01b03871684529091528120549091906103be9082908690610460908790610de7565b610677565b6000546001600160a01b0316331461048f5760405162461bcd60e51b81526004016103f490610db2565b6104996000610a7f565b565b6000546001600160a01b031633146104c55760405162461bcd60e51b81526004016103f490610db2565b6007805460ff1916911515919091179055565b60606005805461032d90610d78565b6000546001600160a01b031633146105115760405162461bcd60e51b81526004016103f490610db2565b6001600160a01b03919091166000908152600860205260409020805460ff1916911515919091179055565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909190838110156105c15760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103f4565b61041b8286868403610677565b6000336103be81858561082d565b6000546001600160a01b031633146106065760405162461bcd60e51b81526004016103f490610db2565b6001600160a01b03811661066b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103f4565b61067481610a7f565b50565b6001600160a01b0383166106d95760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103f4565b6001600160a01b03821661073a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103f4565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038381166000908152600260209081526040808320938616835292905220546000198114610827578181101561081a5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103f4565b6108278484848403610677565b50505050565b6001600160a01b0383166108915760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103f4565b6001600160a01b0382166108f35760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103f4565b60075460ff1615610977576001600160a01b03831660009081526008602052604090205460ff1615801561094057506001600160a01b03821660009081526008602052604090205460ff16155b156109775760006109518484610acf565b905061095c81610b3f565b6001600160a01b031660009081526006602052604090204390555b6001600160a01b038316600090815260016020526040902054818110156109ef5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103f4565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610a26908490610de7565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a7291815260200190565b60405180910390a3610827565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000823b1580610ade5750813b155b610b2a5760405162461bcd60e51b815260206004820152601960248201527f4e6f20626f74732061726520616c6c6f7765642042554c4c210000000000000060448201526064016103f4565b823b15610b385750806103c4565b50816103c4565b6001600160a01b0381166000908152600660205260408120541580610b925750610b6a436001610de7565b6009546001600160a01b038416600090815260066020526040902054610b909190610de7565b105b905080610be15760405162461bcd60e51b815260206004820152601a60248201527f4d6178207478206672657175656e63792065786365656465642100000000000060448201526064016103f4565b5050565b600060208083528351808285015260005b81811015610c1257858101830151858201604001528201610bf6565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610c4a57600080fd5b919050565b60008060408385031215610c6257600080fd5b610c6b83610c33565b946020939093013593505050565b600060208284031215610c8b57600080fd5b5035919050565b600080600060608486031215610ca757600080fd5b610cb084610c33565b9250610cbe60208501610c33565b9150604084013590509250925092565b600060208284031215610ce057600080fd5b610ce982610c33565b9392505050565b80358015158114610c4a57600080fd5b600060208284031215610d1257600080fd5b610ce982610cf0565b60008060408385031215610d2e57600080fd5b610d3783610c33565b9150610d4560208401610cf0565b90509250929050565b60008060408385031215610d6157600080fd5b610d6a83610c33565b9150610d4560208401610c33565b600181811c90821680610d8c57607f821691505b602082108103610dac57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b808201808211156103c457634e487b7160e01b600052601160045260246000fdfea2646970667358221220216dcfe6f66bd75acb11d3d0d67b25992a81a8a3d5d41c062e2c6a4841ff03ab64736f6c63430008110033

Deployed Bytecode Sourcemap

5587:13444:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6738:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9089:201;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;9089:201:0;1004:187:1;18769:103:0;;;;;;:::i;:::-;;:::i;:::-;;7858:108;7946:12;;7858:108;;;1527:25:1;;;1515:2;1500:18;7858:108:0;1381:177:1;6053:35:0;;;;;;9870:295;;;;;;:::i;:::-;;:::i;7700:93::-;;;7783:2;2038:36:1;;2026:2;2011:18;7700:93:0;1896:184:1;10574:240:0;;;;;;:::i;:::-;;:::i;5957:34::-;;;;;;;;;8029:127;;;;;;:::i;:::-;-1:-1:-1;;;;;8130:18:0;8103:7;8130:18;;;:9;:18;;;;;;;8029:127;4435:103;;;:::i;5894:56::-;;;;;;:::i;:::-;;;;;;;;;;;;;;18662:99;;;;;;:::i;:::-;;:::i;3784:87::-;3830:7;3857:6;3784:87;;-1:-1:-1;;;;;3857:6:0;;;2772:51:1;;2760:2;2745:18;3784:87:0;2626:203:1;6957:104:0;;;:::i;18880:127::-;;;;;;:::i;:::-;;:::i;11317:438::-;;;;;;:::i;:::-;;:::i;8362:193::-;;;;;;:::i;:::-;;:::i;8618:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;8734:18:0;;;8707:7;8734:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8618:151;4693:201;;;;;;:::i;:::-;;:::i;5998:48::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;6738:100;6792:13;6825:5;6818:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6738:100;:::o;9089:201::-;9172:4;173:10;9228:32;173:10;9244:7;9253:6;9228:8;:32::i;:::-;9278:4;9271:11;;;9089:201;;;;;:::o;18769:103::-;3830:7;3857:6;-1:-1:-1;;;;;3857:6:0;173:10;4004:23;3996:68;;;;-1:-1:-1;;;3996:68:0;;;;;;;:::i;:::-;;;;;;;;;18837:19:::1;:27:::0;18769:103::o;9870:295::-;10001:4;173:10;10059:38;10075:4;173:10;10090:6;10059:15;:38::i;:::-;10108:27;10118:4;10124:2;10128:6;10108:9;:27::i;:::-;-1:-1:-1;10153:4:0;;9870:295;-1:-1:-1;;;;9870:295:0:o;10574:240::-;173:10;10662:4;10743:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;10743:27:0;;;;;;;;;;10662:4;;173:10;10718:66;;173:10;;10743:27;;:40;;10773:10;;10743:40;:::i;:::-;10718:8;:66::i;4435:103::-;3830:7;3857:6;-1:-1:-1;;;;;3857:6:0;173:10;4004:23;3996:68;;;;-1:-1:-1;;;3996:68:0;;;;;;;:::i;:::-;4500:30:::1;4527:1;4500:18;:30::i;:::-;4435:103::o:0;18662:99::-;3830:7;3857:6;-1:-1:-1;;;;;3857:6:0;173:10;4004:23;3996:68;;;;-1:-1:-1;;;3996:68:0;;;;;;;:::i;:::-;18731:14:::1;:22:::0;;-1:-1:-1;;18731:22:0::1;::::0;::::1;;::::0;;;::::1;::::0;;18662:99::o;6957:104::-;7013:13;7046:7;7039:14;;;;;:::i;18880:127::-;3830:7;3857:6;-1:-1:-1;;;;;3857:6:0;173:10;4004:23;3996:68;;;;-1:-1:-1;;;3996:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18966:25:0;;;::::1;;::::0;;;:16:::1;:25;::::0;;;;:33;;-1:-1:-1;;18966:33:0::1;::::0;::::1;;::::0;;;::::1;::::0;;18880:127::o;11317:438::-;173:10;11410:4;11493:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;11493:27:0;;;;;;;;;;11410:4;;173:10;11539:35;;;;11531:85;;;;-1:-1:-1;;;11531:85:0;;4533:2:1;11531:85:0;;;4515:21:1;4572:2;4552:18;;;4545:30;4611:34;4591:18;;;4584:62;-1:-1:-1;;;4662:18:1;;;4655:35;4707:19;;11531:85:0;4331:401:1;11531:85:0;11652:60;11661:5;11668:7;11696:15;11677:16;:34;11652:8;:60::i;8362:193::-;8441:4;173:10;8497:28;173:10;8514:2;8518:6;8497:9;:28::i;4693:201::-;3830:7;3857:6;-1:-1:-1;;;;;3857:6:0;173:10;4004:23;3996:68;;;;-1:-1:-1;;;3996:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;4782:22:0;::::1;4774:73;;;::::0;-1:-1:-1;;;4774:73:0;;4939:2:1;4774:73:0::1;::::0;::::1;4921:21:1::0;4978:2;4958:18;;;4951:30;5017:34;4997:18;;;4990:62;-1:-1:-1;;;5068:18:1;;;5061:36;5114:19;;4774:73:0::1;4737:402:1::0;4774:73:0::1;4858:28;4877:8;4858:18;:28::i;:::-;4693:201:::0;:::o;15313:380::-;-1:-1:-1;;;;;15449:19:0;;15441:68;;;;-1:-1:-1;;;15441:68:0;;5346:2:1;15441:68:0;;;5328:21:1;5385:2;5365:18;;;5358:30;5424:34;5404:18;;;5397:62;-1:-1:-1;;;5475:18:1;;;5468:34;5519:19;;15441:68:0;5144:400:1;15441:68:0;-1:-1:-1;;;;;15528:21:0;;15520:68;;;;-1:-1:-1;;;15520:68:0;;5751:2:1;15520:68:0;;;5733:21:1;5790:2;5770:18;;;5763:30;5829:34;5809:18;;;5802:62;-1:-1:-1;;;5880:18:1;;;5873:32;5922:19;;15520:68:0;5549:398:1;15520:68:0;-1:-1:-1;;;;;15601:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15653:32;;1527:25:1;;;15653:32:0;;1500:18:1;15653:32:0;;;;;;;15313:380;;;:::o;15980:453::-;-1:-1:-1;;;;;8734:18:0;;;16115:24;8734:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;16182:37:0;;16178:248;;16264:6;16244:16;:26;;16236:68;;;;-1:-1:-1;;;16236:68:0;;6154:2:1;16236:68:0;;;6136:21:1;6193:2;6173:18;;;6166:30;6232:31;6212:18;;;6205:59;6281:18;;16236:68:0;5952:353:1;16236:68:0;16348:51;16357:5;16364:7;16392:6;16373:16;:25;16348:8;:51::i;:::-;16104:329;15980:453;;;:::o;12234:1031::-;-1:-1:-1;;;;;12365:18:0;;12357:68;;;;-1:-1:-1;;;12357:68:0;;6512:2:1;12357:68:0;;;6494:21:1;6551:2;6531:18;;;6524:30;6590:34;6570:18;;;6563:62;-1:-1:-1;;;6641:18:1;;;6634:35;6686:19;;12357:68:0;6310:401:1;12357:68:0;-1:-1:-1;;;;;12444:16:0;;12436:64;;;;-1:-1:-1;;;12436:64:0;;6918:2:1;12436:64:0;;;6900:21:1;6957:2;6937:18;;;6930:30;6996:34;6976:18;;;6969:62;-1:-1:-1;;;7047:18:1;;;7040:33;7090:19;;12436:64:0;6716:399:1;12436:64:0;12599:14;;;;12596:303;;;-1:-1:-1;;;;;12643:22:0;;;;;;:16;:22;;;;;;;;12642:23;:48;;;;-1:-1:-1;;;;;;12670:20:0;;;;;;:16;:20;;;;;;;;12669:21;12642:48;12639:249;;;12724:13;12740:24;12755:4;12761:2;12740:14;:24::i;:::-;12724:40;;12783:27;12804:5;12783:20;:27::i;:::-;-1:-1:-1;;;;;12829:28:0;;;;;:21;:28;;;;;12860:12;12829:43;;12639:249;-1:-1:-1;;;;;12946:15:0;;12924:19;12946:15;;;:9;:15;;;;;;12980:21;;;;12972:72;;;;-1:-1:-1;;;12972:72:0;;7322:2:1;12972:72:0;;;7304:21:1;7361:2;7341:18;;;7334:30;7400:34;7380:18;;;7373:62;-1:-1:-1;;;7451:18:1;;;7444:36;7497:19;;12972:72:0;7120:402:1;12972:72:0;-1:-1:-1;;;;;13080:15:0;;;;;;;:9;:15;;;;;;13098:20;;;13080:38;;13140:13;;;;;;;;:23;;13112:6;;13080:15;13140:23;;13112:6;;13140:23;:::i;:::-;;;;;;;;13196:2;-1:-1:-1;;;;;13181:26:0;13190:4;-1:-1:-1;;;;;13181:26:0;;13200:6;13181:26;;;;1527:25:1;;1515:2;1500:18;;1381:177;13181:26:0;;;;;;;;13220:37;17033:125;5054:191;5128:16;5147:6;;-1:-1:-1;;;;;5164:17:0;;;-1:-1:-1;;;;;;5164:17:0;;;;;;5197:40;;5147:6;;;;;;;5197:40;;5128:16;5197:40;5117:128;5054:191;:::o;18115:252::-;18193:7;18043:20;;18091:8;;18221:38;;-1:-1:-1;18043:20:0;;18091:8;18221:38;18213:76;;;;-1:-1:-1;;;18213:76:0;;7729:2:1;18213:76:0;;;7711:21:1;7768:2;7748:18;;;7741:30;7807:27;7787:18;;;7780:55;7852:18;;18213:76:0;7527:349:1;18213:76:0;18043:20;;18091:8;18300:59;;-1:-1:-1;18328:5:0;18321:12;;18300:59;-1:-1:-1;18356:3:0;18349:10;;18375:279;-1:-1:-1;;;;;18464:27:0;;18447:14;18464:27;;;:21;:27;;;;;;:32;;:123;;-1:-1:-1;18569:16:0;:12;18584:1;18569:16;:::i;:::-;18545:19;;-1:-1:-1;;;;;18515:27:0;;;;;;:21;:27;;;;;;:49;;18545:19;18515:49;:::i;:::-;18514:72;18464:123;18447:140;;18606:9;18598:48;;;;-1:-1:-1;;;18598:48:0;;8083:2:1;18598:48:0;;;8065:21:1;8122:2;8102:18;;;8095:30;8161:28;8141:18;;;8134:56;8207:18;;18598:48:0;7881:350:1;18598:48:0;18436:218;18375:279;:::o;14:548: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;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1196:180::-;1255:6;1308:2;1296:9;1287:7;1283:23;1279:32;1276:52;;;1324:1;1321;1314:12;1276:52;-1:-1:-1;1347:23:1;;1196:180;-1:-1:-1;1196:180:1:o;1563:328::-;1640:6;1648;1656;1709:2;1697:9;1688:7;1684:23;1680:32;1677:52;;;1725:1;1722;1715:12;1677:52;1748:29;1767:9;1748:29;:::i;:::-;1738:39;;1796:38;1830:2;1819:9;1815:18;1796:38;:::i;:::-;1786:48;;1881:2;1870:9;1866:18;1853:32;1843:42;;1563:328;;;;;:::o;2085:186::-;2144:6;2197:2;2185:9;2176:7;2172:23;2168:32;2165:52;;;2213:1;2210;2203:12;2165:52;2236:29;2255:9;2236:29;:::i;:::-;2226:39;2085:186;-1:-1:-1;;;2085:186:1:o;2276:160::-;2341:20;;2397:13;;2390:21;2380:32;;2370:60;;2426:1;2423;2416:12;2441:180;2497:6;2550:2;2538:9;2529:7;2525:23;2521:32;2518:52;;;2566:1;2563;2556:12;2518:52;2589:26;2605:9;2589:26;:::i;2834:254::-;2899:6;2907;2960:2;2948:9;2939:7;2935:23;2931:32;2928:52;;;2976:1;2973;2966:12;2928:52;2999:29;3018:9;2999:29;:::i;:::-;2989:39;;3047:35;3078:2;3067:9;3063:18;3047:35;:::i;:::-;3037:45;;2834:254;;;;;:::o;3093:260::-;3161:6;3169;3222:2;3210:9;3201:7;3197:23;3193:32;3190:52;;;3238:1;3235;3228:12;3190:52;3261:29;3280:9;3261:29;:::i;:::-;3251:39;;3309:38;3343:2;3332:9;3328:18;3309:38;:::i;3358:380::-;3437:1;3433:12;;;;3480;;;3501:61;;3555:4;3547:6;3543:17;3533:27;;3501:61;3608:2;3600:6;3597:14;3577:18;3574:38;3571:161;;3654:10;3649:3;3645:20;3642:1;3635:31;3689:4;3686:1;3679:15;3717:4;3714:1;3707:15;3571:161;;3358:380;;;:::o;3743:356::-;3945:2;3927:21;;;3964:18;;;3957:30;4023:34;4018:2;4003:18;;3996:62;4090:2;4075:18;;3743:356::o;4104:222::-;4169:9;;;4190:10;;;4187:133;;;4242:10;4237:3;4233:20;4230:1;4223:31;4277:4;4274:1;4267:15;4305:4;4302:1;4295:15

Swarm Source

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