ETH Price: $2,483.02 (-0.65%)

Token

Crypto Hub (HUB)
 

Overview

Max Total Supply

100,000,000 HUB

Holders

194 (0.00%)

Market

Price

$0.00 @ 0.000000 ETH

Onchain Market Cap

$58,688.00

Circulating Supply Market Cap

$9,523.14

Other Info

Token Contract (WITH 18 Decimals)

Balance
0 HUB

Value
$0.00
0xf2e2007c86a1b118a1234110107b7c14a6d61f10
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Crypto Hub is Stake to Own (S2O) Launchpad in the Market, a groundbreaking DAO that will revolutionize how companies in Web3 operate.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
HUB

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license, Audited

Contract Source Code (Solidity)Audit Report

/**
 *Submitted for verification at Etherscan.io on 2023-09-22
*/

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts (last updated v4.9.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: HUB.sol


pragma solidity ^0.8.18;



uint256 constant TOTAL_SUPPLY = 100_000_000;
uint256 constant DECIMALS = 18;

uint256 constant TAX_DENOMINATOR = 100;
uint8 constant MAX_TAX = 5; // 5%

uint8 constant BUY_TAX = 2;
uint8 constant SELL_TAX = 2;
uint8 constant TRANSFER_TAX = 0;

uint256 constant MAX_TX_PER_PERIOD = ((TOTAL_SUPPLY * 10 ** DECIMALS) * 1) /
    1000; // 0.1%
uint256 constant TX_PERIOD = 1 days;

struct Tax {
    uint8 buy;
    uint8 sell;
    uint8 transfer;
}

contract HUB is ERC20, Ownable {
    mapping(address => bool) public isPair;

    Tax public tax =
        Tax({buy: BUY_TAX, sell: SELL_TAX, transfer: TRANSFER_TAX});

    // user => day => volume
    mapping(address => mapping(uint256 => uint256)) public volume;

    bool public antiBotEnabled = true;

    mapping(address => bool) public ixExcludedFromTax;
    mapping(address => bool) public isExemptFromMaxTx;

    bool public taxEnabled = true;

    uint256 public maxVolumePerPeriod = MAX_TX_PER_PERIOD; // 1%
    uint256 public volumePeriod = TX_PERIOD; // 1 day

    // operation 0 => transfer | 1 => sell | 2 => buy
    event TaxCollected(
        address indexed from,
        uint8 indexed operation,
        uint256 amount
    );

    constructor(address _multisig, address _owner) ERC20("Crypto Hub", "HUB") {
        _mint(_multisig, TOTAL_SUPPLY * 10 ** DECIMALS);

        // set the owner to the multisig
        _transferOwnership(_owner);

        // exclude the owner from tax
        ixExcludedFromTax[_multisig] = true;
        ixExcludedFromTax[_owner] = true;

        // exclude the owner from max tx
        isExemptFromMaxTx[_multisig] = true;
        isExemptFromMaxTx[_owner] = true;
    }

    function transfer(
        address to,
        uint256 amount
    ) public override returns (bool) {
        address owner = _msgSender();
        _customTransfer(owner, to, amount);
        return true;
    }

    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _customTransfer(from, to, amount);
        return true;
    }

    function _customTransfer(
        address from,
        address to,
        uint256 amount
    ) internal {
        if (
            !taxEnabled ||
            ixExcludedFromTax[from] ||
            ixExcludedFromTax[to] ||
            amount == 0
        ) {
            // no tax
            _transfer(from, to, amount);
            return;
        }

        uint256 currentTax;
        uint8 reason;

        if (isPair[from]) {
            // buy
            currentTax = (amount * tax.buy) / TAX_DENOMINATOR;
            reason = 2;
        } else if (isPair[to]) {
            // sell
            currentTax = (amount * tax.sell) / TAX_DENOMINATOR;
            reason = 1;
        } else {
            // transfer
            currentTax = (amount * tax.transfer) / TAX_DENOMINATOR;
            reason = 0;
        }

        _transfer(from, to, amount - currentTax);

        // collect tax
        _transfer(from, owner(), currentTax);

        emit TaxCollected(from, reason, currentTax);

        if (antiBotEnabled && !isExemptFromMaxTx[from]) {
            // check volume
            uint256 currentVolume = volume[from][
                block.timestamp /
                    volumePeriod /* loss of precision is required here */
            ];
            require(
                currentVolume + amount <= maxVolumePerPeriod,
                "exceeds max tx amount per period"
            );
            volume[from][block.timestamp / volumePeriod] =
                currentVolume +
                amount;
        }
    }

    /**
     * @dev Set the tax for buy, sell and transfer
     * @notice Only callable by the owner
     * @param _buy  buy tax
     * @param _sell  sell tax
     * @param _transfer  transfer tax
     */
    function setTax(
        uint8 _buy,
        uint8 _sell,
        uint8 _transfer
    ) external onlyOwner {
        require(_buy <= MAX_TAX, "buy tax too high");
        require(_sell <= MAX_TAX, "sell tax too high");
        require(_transfer <= MAX_TAX, "transfer tax too high");
        tax = Tax({buy: _buy, sell: _sell, transfer: _transfer});
    }

    /**
     * @dev Exclude a user from tax
     * @param _user the user to exclude from tax
     * @param _isExempt true to exempt / false to include in tax
     */
    function excludeFromTax(address _user, bool _isExempt) external onlyOwner {
        ixExcludedFromTax[_user] = _isExempt;
    }

    /**
     * @dev Enable or disable tax
     * @notice Only callable by the owner
     * @param _taxEnabled Enable or disable tax
     */
    function setTaxEnabled(bool _taxEnabled) external onlyOwner {
        taxEnabled = _taxEnabled;
    }

    /**
     * @dev Transfer tokens from sender to recipient
     * @param _pair  the pair to check
     * @param _isPair true if the pair is a pair
     */
    function setIsPair(address _pair, bool _isPair) external onlyOwner {
        isPair[_pair] = _isPair;

        // exclude/include the pair from max tx
        isExemptFromMaxTx[_pair] = _isPair;
    }

    /**
     * @dev Enable or disable anti bot
     * @notice Only callable by the owner
     * @param _antiBotEnabled Enable or disable anti bot
     */
    function setAntiBotEnabled(bool _antiBotEnabled) external onlyOwner {
        antiBotEnabled = _antiBotEnabled;
    }

    function setExemptFromMaxTx(
        address _user,
        bool _isExempt
    ) external onlyOwner {
        isExemptFromMaxTx[_user] = _isExempt;
    }

    function setMaxVolumePerPeriod(
        uint256 _maxVolumePerPeriod
    ) external onlyOwner {
        // require the max not lower than 0.01%
        require(
            _maxVolumePerPeriod >= (TOTAL_SUPPLY * 10 ** DECIMALS) / 10_000,
            "max volume too low"
        );
        maxVolumePerPeriod = _maxVolumePerPeriod;
    }

    function setVolumePeriod(uint256 _volumePeriod) external onlyOwner {
        // require the period not higher than 1 day
        require(_volumePeriod <= 1 days, "period too high");
        volumePeriod = _volumePeriod;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_multisig","type":"address"},{"internalType":"address","name":"_owner","type":"address"}],"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":"uint8","name":"operation","type":"uint8"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TaxCollected","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"antiBotEnabled","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":"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":"_user","type":"address"},{"internalType":"bool","name":"_isExempt","type":"bool"}],"name":"excludeFromTax","outputs":[],"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":"isExemptFromMaxTx","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isPair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"ixExcludedFromTax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxVolumePerPeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"_antiBotEnabled","type":"bool"}],"name":"setAntiBotEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"bool","name":"_isExempt","type":"bool"}],"name":"setExemptFromMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_pair","type":"address"},{"internalType":"bool","name":"_isPair","type":"bool"}],"name":"setIsPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxVolumePerPeriod","type":"uint256"}],"name":"setMaxVolumePerPeriod","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_buy","type":"uint8"},{"internalType":"uint8","name":"_sell","type":"uint8"},{"internalType":"uint8","name":"_transfer","type":"uint8"}],"name":"setTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_taxEnabled","type":"bool"}],"name":"setTaxEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_volumePeriod","type":"uint256"}],"name":"setVolumePeriod","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tax","outputs":[{"internalType":"uint8","name":"buy","type":"uint8"},{"internalType":"uint8","name":"sell","type":"uint8"},{"internalType":"uint8","name":"transfer","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"volume","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"volumePeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

60e06040526002608081905260a052600060c0526007805462ffffff19166102021790556009805460ff199081166001908117909255600c805490911690911790556103e8620000526012600a620003ff565b62000062906305f5e10062000414565b6200006f90600162000414565b6200007b91906200042e565b600d5562015180600e553480156200009257600080fd5b5060405162001a6f38038062001a6f833981016040819052620000b5916200046e565b6040518060400160405280600a81526020016921b93cb83a3790243ab160b11b81525060405180604001604052806003815260200162242aa160e91b81525081600390816200010591906200054a565b5060046200011482826200054a565b505050620001316200012b620001c960201b60201c565b620001cd565b6200015a82620001446012600a620003ff565b62000154906305f5e10062000414565b6200021f565b6200016581620001cd565b6001600160a01b039182166000818152600a602090815260408083208054600160ff199182168117909255959096168084528184208054871688179055938352600b909152808220805485168617905591815220805490911690911790556200062c565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166200027a5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600260008282546200028e919062000616565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b600052601160045260246000fd5b600181815b8085111562000341578160001904821115620003255762000325620002ea565b808516156200033357918102915b93841c939080029062000305565b509250929050565b6000826200035a57506001620003f9565b816200036957506000620003f9565b81600181146200038257600281146200038d57620003ad565b6001915050620003f9565b60ff841115620003a157620003a1620002ea565b50506001821b620003f9565b5060208310610133831016604e8410600b8410161715620003d2575081810a620003f9565b620003de838362000300565b8060001904821115620003f557620003f5620002ea565b0290505b92915050565b60006200040d838362000349565b9392505050565b8082028115828204841417620003f957620003f9620002ea565b6000826200044c57634e487b7160e01b600052601260045260246000fd5b500490565b80516001600160a01b03811681146200046957600080fd5b919050565b600080604083850312156200048257600080fd5b6200048d8362000451565b91506200049d6020840162000451565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620004d157607f821691505b602082108103620004f257634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620002e557600081815260208120601f850160051c81016020861015620005215750805b601f850160051c820191505b8181101562000542578281556001016200052d565b505050505050565b81516001600160401b03811115620005665762000566620004a6565b6200057e81620005778454620004bc565b84620004f8565b602080601f831160018114620005b657600084156200059d5750858301515b600019600386901b1c1916600185901b17855562000542565b600085815260208120601f198616915b82811015620005e757888601518255948401946001909101908401620005c6565b5085821015620006065787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80820180821115620003f957620003f9620002ea565b611433806200063c6000396000f3fe608060405234801561001057600080fd5b50600436106101e55760003560e01c8063870bd30b1161010f578063ae5394c7116100a2578063d8c6404b11610071578063d8c6404b1461045a578063dd62ed3e14610467578063e5e31b131461047a578063f2fde38b1461049d57600080fd5b8063ae5394c7146103fe578063b3a0af6c14610411578063c6a3064714610434578063c6af580b1461044757600080fd5b8063a457c2d7116100de578063a457c2d7146103a4578063a70c1aba146103b7578063a8c2af41146103e2578063a9059cbb146103eb57600080fd5b8063870bd30b146103305780638da5cb5b1461033d57806395d89b411461035857806399c8d5561461036057600080fd5b806339509351116101875780636d204f50116101565780636d204f50146102d957806370a08231146102ec578063715018a614610315578063844866041461031d57600080fd5b8063395093511461028757806352c039b91461029a57806364005bf0146102a35780636afe2de2146102b657600080fd5b806321cd0c40116101c357806321cd0c401461023d57806323b872dd146102525780632410d88714610265578063313ce5671461027857600080fd5b806306fdde03146101ea578063095ea7b31461020857806318160ddd1461022b575b600080fd5b6101f26104b0565b6040516101ff9190611077565b60405180910390f35b61021b6102163660046110e1565b610542565b60405190151581526020016101ff565b6002545b6040519081526020016101ff565b61025061024b36600461111b565b61055c565b005b61021b61026036600461113d565b610577565b610250610273366004611179565b61059b565b604051601281526020016101ff565b61021b6102953660046110e1565b6105e1565b61022f600d5481565b6102506102b13660046111ac565b610603565b61021b6102c43660046111c5565b600b6020526000908152604090205460ff1681565b6102506102e73660046111f1565b61065a565b61022f6102fa3660046111c5565b6001600160a01b031660009081526020819052604090205490565b61025061078a565b61025061032b366004611179565b61079e565b600c5461021b9060ff1681565b6005546040516001600160a01b0390911681526020016101ff565b6101f26107d1565b6007546103809060ff808216916101008104821691620100009091041683565b6040805160ff948516815292841660208401529216918101919091526060016101ff565b61021b6103b23660046110e1565b6107e0565b61022f6103c53660046110e1565b600860209081526000928352604080842090915290825290205481565b61022f600e5481565b61021b6103f93660046110e1565b61085b565b61025061040c3660046111ac565b610869565b61021b61041f3660046111c5565b600a6020526000908152604090205460ff1681565b610250610442366004611179565b6108e1565b61025061045536600461111b565b610914565b60095461021b9060ff1681565b61022f610475366004611234565b61092f565b61021b6104883660046111c5565b60066020526000908152604090205460ff1681565b6102506104ab3660046111c5565b61095a565b6060600380546104bf9061125e565b80601f01602080910402602001604051908101604052809291908181526020018280546104eb9061125e565b80156105385780601f1061050d57610100808354040283529160200191610538565b820191906000526020600020905b81548152906001019060200180831161051b57829003601f168201915b5050505050905090565b6000336105508185856109d3565b60019150505b92915050565b610564610af7565b6009805460ff1916911515919091179055565b600033610585858285610b51565b610590858585610bcb565b506001949350505050565b6105a3610af7565b6001600160a01b039091166000908152600660209081526040808320805494151560ff199586168117909155600b9092529091208054909216179055565b6000336105508185856105f4838361092f565b6105fe91906112ae565b6109d3565b61060b610af7565b620151808111156106555760405162461bcd60e51b815260206004820152600f60248201526e0e0cae4d2dec840e8dede40d0d2ced608b1b60448201526064015b60405180910390fd5b600e55565b610662610af7565b600560ff841611156106a95760405162461bcd60e51b815260206004820152601060248201526f0c4eaf240e8c2f040e8dede40d0d2ced60831b604482015260640161064c565b600560ff831611156106f15760405162461bcd60e51b81526020600482015260116024820152700e6cad8d840e8c2f040e8dede40d0d2ced607b1b604482015260640161064c565b600560ff8216111561073d5760405162461bcd60e51b81526020600482015260156024820152740e8e4c2dce6cccae440e8c2f040e8dede40d0d2ced605b1b604482015260640161064c565b6040805160608101825260ff948516808252938516602082018190529290941693018390526007805461ffff19169092176101009091021762ff0000191662010000909202919091179055565b610792610af7565b61079c6000610e81565b565b6107a6610af7565b6001600160a01b03919091166000908152600b60205260409020805460ff1916911515919091179055565b6060600480546104bf9061125e565b600033816107ee828661092f565b90508381101561084e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161064c565b61059082868684036109d3565b600033610550818585610bcb565b610871610af7565b6127106108806012600a6113a5565b61088e906305f5e1006113b1565b61089891906113c8565b8110156108dc5760405162461bcd60e51b81526020600482015260126024820152716d617820766f6c756d6520746f6f206c6f7760701b604482015260640161064c565b600d55565b6108e9610af7565b6001600160a01b03919091166000908152600a60205260409020805460ff1916911515919091179055565b61091c610af7565b600c805460ff1916911515919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610962610af7565b6001600160a01b0381166109c75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161064c565b6109d081610e81565b50565b6001600160a01b038316610a355760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161064c565b6001600160a01b038216610a965760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161064c565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b0316331461079c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161064c565b6000610b5d848461092f565b90506000198114610bc55781811015610bb85760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161064c565b610bc584848484036109d3565b50505050565b600c5460ff161580610bf557506001600160a01b0383166000908152600a602052604090205460ff165b80610c1857506001600160a01b0382166000908152600a602052604090205460ff165b80610c21575080155b15610c3657610c31838383610ed3565b505050565b6001600160a01b038316600090815260066020526040812054819060ff1615610c8157600754606490610c6c9060ff16856113b1565b610c7691906113c8565b915060029050610cf9565b6001600160a01b03841660009081526006602052604090205460ff1615610ccf57600754606490610cba90610100900460ff16856113b1565b610cc491906113c8565b915060019050610cf9565b600754606490610ce89062010000900460ff16856113b1565b610cf291906113c8565b9150600090505b610d0d8585610d0885876113ea565b610ed3565b610d2985610d236005546001600160a01b031690565b84610ed3565b8060ff16856001600160a01b03167f29cb2efcba02e19be9c57675fd18c9954b8d527af2b5ecaa88cdbf7b215062f584604051610d6891815260200190565b60405180910390a360095460ff168015610d9b57506001600160a01b0385166000908152600b602052604090205460ff16155b15610e7a576001600160a01b0385166000908152600860205260408120600e548290610dc790426113c8565b8152602001908152602001600020549050600d548482610de791906112ae565b1115610e355760405162461bcd60e51b815260206004820181905260248201527f65786365656473206d617820747820616d6f756e742070657220706572696f64604482015260640161064c565b610e3f84826112ae565b6001600160a01b0387166000908152600860205260408120600e54909190610e6790426113c8565b8152602081019190915260400160002055505b5050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316610f375760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161064c565b6001600160a01b038216610f995760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161064c565b6001600160a01b038316600090815260208190526040902054818110156110115760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161064c565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610bc5565b600060208083528351808285015260005b818110156110a457858101830151858201604001528201611088565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146110dc57600080fd5b919050565b600080604083850312156110f457600080fd5b6110fd836110c5565b946020939093013593505050565b803580151581146110dc57600080fd5b60006020828403121561112d57600080fd5b6111368261110b565b9392505050565b60008060006060848603121561115257600080fd5b61115b846110c5565b9250611169602085016110c5565b9150604084013590509250925092565b6000806040838503121561118c57600080fd5b611195836110c5565b91506111a36020840161110b565b90509250929050565b6000602082840312156111be57600080fd5b5035919050565b6000602082840312156111d757600080fd5b611136826110c5565b803560ff811681146110dc57600080fd5b60008060006060848603121561120657600080fd5b61120f846111e0565b925061121d602085016111e0565b915061122b604085016111e0565b90509250925092565b6000806040838503121561124757600080fd5b611250836110c5565b91506111a3602084016110c5565b600181811c9082168061127257607f821691505b60208210810361129257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561055657610556611298565b600181815b808511156112fc5781600019048211156112e2576112e2611298565b808516156112ef57918102915b93841c93908002906112c6565b509250929050565b60008261131357506001610556565b8161132057506000610556565b816001811461133657600281146113405761135c565b6001915050610556565b60ff84111561135157611351611298565b50506001821b610556565b5060208310610133831016604e8410600b841016171561137f575081810a610556565b61138983836112c1565b806000190482111561139d5761139d611298565b029392505050565b60006111368383611304565b808202811582820484141761055657610556611298565b6000826113e557634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156105565761055661129856fea2646970667358221220759ff0b6f83898634f61e3f771d4402afbd7bac4740fde35d6ee9432f2b0669164736f6c63430008120033000000000000000000000000dd48fa33ab3e6a094b1ca89c1578b9ca96d0e563000000000000000000000000330e7a0157bb93b03c21d3b59511a855322a7ffa

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101e55760003560e01c8063870bd30b1161010f578063ae5394c7116100a2578063d8c6404b11610071578063d8c6404b1461045a578063dd62ed3e14610467578063e5e31b131461047a578063f2fde38b1461049d57600080fd5b8063ae5394c7146103fe578063b3a0af6c14610411578063c6a3064714610434578063c6af580b1461044757600080fd5b8063a457c2d7116100de578063a457c2d7146103a4578063a70c1aba146103b7578063a8c2af41146103e2578063a9059cbb146103eb57600080fd5b8063870bd30b146103305780638da5cb5b1461033d57806395d89b411461035857806399c8d5561461036057600080fd5b806339509351116101875780636d204f50116101565780636d204f50146102d957806370a08231146102ec578063715018a614610315578063844866041461031d57600080fd5b8063395093511461028757806352c039b91461029a57806364005bf0146102a35780636afe2de2146102b657600080fd5b806321cd0c40116101c357806321cd0c401461023d57806323b872dd146102525780632410d88714610265578063313ce5671461027857600080fd5b806306fdde03146101ea578063095ea7b31461020857806318160ddd1461022b575b600080fd5b6101f26104b0565b6040516101ff9190611077565b60405180910390f35b61021b6102163660046110e1565b610542565b60405190151581526020016101ff565b6002545b6040519081526020016101ff565b61025061024b36600461111b565b61055c565b005b61021b61026036600461113d565b610577565b610250610273366004611179565b61059b565b604051601281526020016101ff565b61021b6102953660046110e1565b6105e1565b61022f600d5481565b6102506102b13660046111ac565b610603565b61021b6102c43660046111c5565b600b6020526000908152604090205460ff1681565b6102506102e73660046111f1565b61065a565b61022f6102fa3660046111c5565b6001600160a01b031660009081526020819052604090205490565b61025061078a565b61025061032b366004611179565b61079e565b600c5461021b9060ff1681565b6005546040516001600160a01b0390911681526020016101ff565b6101f26107d1565b6007546103809060ff808216916101008104821691620100009091041683565b6040805160ff948516815292841660208401529216918101919091526060016101ff565b61021b6103b23660046110e1565b6107e0565b61022f6103c53660046110e1565b600860209081526000928352604080842090915290825290205481565b61022f600e5481565b61021b6103f93660046110e1565b61085b565b61025061040c3660046111ac565b610869565b61021b61041f3660046111c5565b600a6020526000908152604090205460ff1681565b610250610442366004611179565b6108e1565b61025061045536600461111b565b610914565b60095461021b9060ff1681565b61022f610475366004611234565b61092f565b61021b6104883660046111c5565b60066020526000908152604090205460ff1681565b6102506104ab3660046111c5565b61095a565b6060600380546104bf9061125e565b80601f01602080910402602001604051908101604052809291908181526020018280546104eb9061125e565b80156105385780601f1061050d57610100808354040283529160200191610538565b820191906000526020600020905b81548152906001019060200180831161051b57829003601f168201915b5050505050905090565b6000336105508185856109d3565b60019150505b92915050565b610564610af7565b6009805460ff1916911515919091179055565b600033610585858285610b51565b610590858585610bcb565b506001949350505050565b6105a3610af7565b6001600160a01b039091166000908152600660209081526040808320805494151560ff199586168117909155600b9092529091208054909216179055565b6000336105508185856105f4838361092f565b6105fe91906112ae565b6109d3565b61060b610af7565b620151808111156106555760405162461bcd60e51b815260206004820152600f60248201526e0e0cae4d2dec840e8dede40d0d2ced608b1b60448201526064015b60405180910390fd5b600e55565b610662610af7565b600560ff841611156106a95760405162461bcd60e51b815260206004820152601060248201526f0c4eaf240e8c2f040e8dede40d0d2ced60831b604482015260640161064c565b600560ff831611156106f15760405162461bcd60e51b81526020600482015260116024820152700e6cad8d840e8c2f040e8dede40d0d2ced607b1b604482015260640161064c565b600560ff8216111561073d5760405162461bcd60e51b81526020600482015260156024820152740e8e4c2dce6cccae440e8c2f040e8dede40d0d2ced605b1b604482015260640161064c565b6040805160608101825260ff948516808252938516602082018190529290941693018390526007805461ffff19169092176101009091021762ff0000191662010000909202919091179055565b610792610af7565b61079c6000610e81565b565b6107a6610af7565b6001600160a01b03919091166000908152600b60205260409020805460ff1916911515919091179055565b6060600480546104bf9061125e565b600033816107ee828661092f565b90508381101561084e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161064c565b61059082868684036109d3565b600033610550818585610bcb565b610871610af7565b6127106108806012600a6113a5565b61088e906305f5e1006113b1565b61089891906113c8565b8110156108dc5760405162461bcd60e51b81526020600482015260126024820152716d617820766f6c756d6520746f6f206c6f7760701b604482015260640161064c565b600d55565b6108e9610af7565b6001600160a01b03919091166000908152600a60205260409020805460ff1916911515919091179055565b61091c610af7565b600c805460ff1916911515919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610962610af7565b6001600160a01b0381166109c75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161064c565b6109d081610e81565b50565b6001600160a01b038316610a355760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161064c565b6001600160a01b038216610a965760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161064c565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b0316331461079c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161064c565b6000610b5d848461092f565b90506000198114610bc55781811015610bb85760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161064c565b610bc584848484036109d3565b50505050565b600c5460ff161580610bf557506001600160a01b0383166000908152600a602052604090205460ff165b80610c1857506001600160a01b0382166000908152600a602052604090205460ff165b80610c21575080155b15610c3657610c31838383610ed3565b505050565b6001600160a01b038316600090815260066020526040812054819060ff1615610c8157600754606490610c6c9060ff16856113b1565b610c7691906113c8565b915060029050610cf9565b6001600160a01b03841660009081526006602052604090205460ff1615610ccf57600754606490610cba90610100900460ff16856113b1565b610cc491906113c8565b915060019050610cf9565b600754606490610ce89062010000900460ff16856113b1565b610cf291906113c8565b9150600090505b610d0d8585610d0885876113ea565b610ed3565b610d2985610d236005546001600160a01b031690565b84610ed3565b8060ff16856001600160a01b03167f29cb2efcba02e19be9c57675fd18c9954b8d527af2b5ecaa88cdbf7b215062f584604051610d6891815260200190565b60405180910390a360095460ff168015610d9b57506001600160a01b0385166000908152600b602052604090205460ff16155b15610e7a576001600160a01b0385166000908152600860205260408120600e548290610dc790426113c8565b8152602001908152602001600020549050600d548482610de791906112ae565b1115610e355760405162461bcd60e51b815260206004820181905260248201527f65786365656473206d617820747820616d6f756e742070657220706572696f64604482015260640161064c565b610e3f84826112ae565b6001600160a01b0387166000908152600860205260408120600e54909190610e6790426113c8565b8152602081019190915260400160002055505b5050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316610f375760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161064c565b6001600160a01b038216610f995760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161064c565b6001600160a01b038316600090815260208190526040902054818110156110115760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161064c565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610bc5565b600060208083528351808285015260005b818110156110a457858101830151858201604001528201611088565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b03811681146110dc57600080fd5b919050565b600080604083850312156110f457600080fd5b6110fd836110c5565b946020939093013593505050565b803580151581146110dc57600080fd5b60006020828403121561112d57600080fd5b6111368261110b565b9392505050565b60008060006060848603121561115257600080fd5b61115b846110c5565b9250611169602085016110c5565b9150604084013590509250925092565b6000806040838503121561118c57600080fd5b611195836110c5565b91506111a36020840161110b565b90509250929050565b6000602082840312156111be57600080fd5b5035919050565b6000602082840312156111d757600080fd5b611136826110c5565b803560ff811681146110dc57600080fd5b60008060006060848603121561120657600080fd5b61120f846111e0565b925061121d602085016111e0565b915061122b604085016111e0565b90509250925092565b6000806040838503121561124757600080fd5b611250836110c5565b91506111a3602084016110c5565b600181811c9082168061127257607f821691505b60208210810361129257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561055657610556611298565b600181815b808511156112fc5781600019048211156112e2576112e2611298565b808516156112ef57918102915b93841c93908002906112c6565b509250929050565b60008261131357506001610556565b8161132057506000610556565b816001811461133657600281146113405761135c565b6001915050610556565b60ff84111561135157611351611298565b50506001821b610556565b5060208310610133831016604e8410600b841016171561137f575081810a610556565b61138983836112c1565b806000190482111561139d5761139d611298565b029392505050565b60006111368383611304565b808202811582820484141761055657610556611298565b6000826113e557634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156105565761055661129856fea2646970667358221220759ff0b6f83898634f61e3f771d4402afbd7bac4740fde35d6ee9432f2b0669164736f6c63430008120033

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

000000000000000000000000dd48fa33ab3e6a094b1ca89c1578b9ca96d0e563000000000000000000000000330e7a0157bb93b03c21d3b59511a855322a7ffa

-----Decoded View---------------
Arg [0] : _multisig (address): 0xDD48fA33AB3e6A094B1cA89c1578B9ca96d0e563
Arg [1] : _owner (address): 0x330E7a0157bb93B03c21D3B59511a855322A7ffa

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000dd48fa33ab3e6a094b1ca89c1578b9ca96d0e563
Arg [1] : 000000000000000000000000330e7a0157bb93b03c21d3b59511a855322a7ffa


Deployed Bytecode Sourcemap

20825:5958:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9314:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11674:201;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;11674:201:0;1004:187:1;10443:108:0;10531:12;;10443:108;;;1342:25:1;;;1330:2;1315:18;10443:108:0;1196:177:1;25905:119:0;;;;;;:::i;:::-;;:::i;:::-;;22316:301;;;;;;:::i;:::-;;:::i;25533:205::-;;;;;;:::i;:::-;;:::i;10285:93::-;;;10368:2;2462:36:1;;2450:2;2435:18;10285:93:0;2320:184:1;13125:238:0;;;;;;:::i;:::-;;:::i;21298:53::-;;;;;;26551:229;;;;;;:::i;:::-;;:::i;21202:49::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;24436:363;;;;;;:::i;:::-;;:::i;10614:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;10715:18:0;10688:7;10715:18;;;;;;;;;;;;10614:127;2769:103;;;:::i;26032:158::-;;;;;;:::i;:::-;;:::i;21260:29::-;;;;;;;;;2128:87;2201:6;;2128:87;;-1:-1:-1;;;;;2201:6:0;;;3519:51:1;;3507:2;3492:18;2128:87:0;3373:203:1;9533:104:0;;;:::i;20910:85::-;;;;;;;;;;;;;;;;;;;;;;;;;;;3801:4:1;3789:17;;;3771:36;;3843:17;;;3838:2;3823:18;;3816:45;3897:17;;3877:18;;;3870:45;;;;3759:2;3744:18;20910:85:0;3581:340:1;13866:436:0;;;;;;:::i;:::-;;:::i;21034:61::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;21364:39;;;;;;22092:216;;;;;;:::i;:::-;;:::i;26198:345::-;;;;;;:::i;:::-;;:::i;21146:49::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;24978:129;;;;;;:::i;:::-;;:::i;25260:103::-;;;;;;:::i;:::-;;:::i;21104:33::-;;;;;;;;;11203:151;;;;;;:::i;:::-;;:::i;20863:38::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;3027:201;;;;;;:::i;:::-;;:::i;9314:100::-;9368:13;9401:5;9394:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9314:100;:::o;11674:201::-;11757:4;759:10;11813:32;759:10;11829:7;11838:6;11813:8;:32::i;:::-;11863:4;11856:11;;;11674:201;;;;;:::o;25905:119::-;2014:13;:11;:13::i;:::-;25984:14:::1;:32:::0;;-1:-1:-1;;25984:32:0::1;::::0;::::1;;::::0;;;::::1;::::0;;25905:119::o;22316:301::-;22447:4;759:10;22505:38;22521:4;759:10;22536:6;22505:15;:38::i;:::-;22554:33;22570:4;22576:2;22580:6;22554:15;:33::i;:::-;-1:-1:-1;22605:4:0;;22316:301;-1:-1:-1;;;;22316:301:0:o;25533:205::-;2014:13;:11;:13::i;:::-;-1:-1:-1;;;;;25611:13:0;;::::1;;::::0;;;:6:::1;:13;::::0;;;;;;;:23;;;::::1;;-1:-1:-1::0;;25611:23:0;;::::1;::::0;::::1;::::0;;;25696:17:::1;:24:::0;;;;;;:34;;;;::::1;;::::0;;25533:205::o;13125:238::-;13213:4;759:10;13269:64;759:10;13285:7;13322:10;13294:25;759:10;13285:7;13294:9;:25::i;:::-;:38;;;;:::i;:::-;13269:8;:64::i;26551:229::-;2014:13;:11;:13::i;:::-;26707:6:::1;26690:13;:23;;26682:51;;;::::0;-1:-1:-1;;;26682:51:0;;5040:2:1;26682:51:0::1;::::0;::::1;5022:21:1::0;5079:2;5059:18;;;5052:30;-1:-1:-1;;;5098:18:1;;;5091:45;5153:18;;26682:51:0::1;;;;;;;;;26744:12;:28:::0;26551:229::o;24436:363::-;2014:13;:11;:13::i;:::-;20508:1:::1;24566:15;::::0;::::1;;;24558:44;;;::::0;-1:-1:-1;;;24558:44:0;;5384:2:1;24558:44:0::1;::::0;::::1;5366:21:1::0;5423:2;5403:18;;;5396:30;-1:-1:-1;;;5442:18:1;;;5435:46;5498:18;;24558:44:0::1;5182:340:1::0;24558:44:0::1;20508:1;24621:16;::::0;::::1;;;24613:46;;;::::0;-1:-1:-1;;;24613:46:0;;5729:2:1;24613:46:0::1;::::0;::::1;5711:21:1::0;5768:2;5748:18;;;5741:30;-1:-1:-1;;;5787:18:1;;;5780:47;5844:18;;24613:46:0::1;5527:341:1::0;24613:46:0::1;20508:1;24678:20;::::0;::::1;;;24670:54;;;::::0;-1:-1:-1;;;24670:54:0;;6075:2:1;24670:54:0::1;::::0;::::1;6057:21:1::0;6114:2;6094:18;;;6087:30;-1:-1:-1;;;6133:18:1;;;6126:51;6194:18;;24670:54:0::1;5873:345:1::0;24670:54:0::1;24741:50;::::0;;::::1;::::0;::::1;::::0;;::::1;::::0;;::::1;::::0;;;;;::::1;;::::0;::::1;::::0;;;;;;::::1;::::0;;;;;24735:3:::1;:56:::0;;-1:-1:-1;;24735:56:0;;;;::::1;::::0;;::::1;;-1:-1:-1::0;;24735:56:0::1;::::0;;;::::1;::::0;;;::::1;::::0;;24436:363::o;2769:103::-;2014:13;:11;:13::i;:::-;2834:30:::1;2861:1;2834:18;:30::i;:::-;2769:103::o:0;26032:158::-;2014:13;:11;:13::i;:::-;-1:-1:-1;;;;;26146:24:0;;;::::1;;::::0;;;:17:::1;:24;::::0;;;;:36;;-1:-1:-1;;26146:36:0::1;::::0;::::1;;::::0;;;::::1;::::0;;26032:158::o;9533:104::-;9589:13;9622:7;9615:14;;;;;:::i;13866:436::-;13959:4;759:10;13959:4;14042:25;759:10;14059:7;14042:9;:25::i;:::-;14015:52;;14106:15;14086:16;:35;;14078:85;;;;-1:-1:-1;;;14078:85:0;;6425:2:1;14078:85:0;;;6407:21:1;6464:2;6444:18;;;6437:30;6503:34;6483:18;;;6476:62;-1:-1:-1;;;6554:18:1;;;6547:35;6599:19;;14078:85:0;6223:401:1;14078:85:0;14199:60;14208:5;14215:7;14243:15;14224:16;:34;14199:8;:60::i;22092:216::-;22188:4;759:10;22244:34;759:10;22267:2;22271:6;22244:15;:34::i;26198:345::-;2014:13;:11;:13::i;:::-;26432:6:::1;26414:14;20435:2;26414;:14;:::i;:::-;26399:29;::::0;20393:11:::1;26399:29;:::i;:::-;26398:40;;;;:::i;:::-;26375:19;:63;;26353:131;;;::::0;-1:-1:-1;;;26353:131:0;;8600:2:1;26353:131:0::1;::::0;::::1;8582:21:1::0;8639:2;8619:18;;;8612:30;-1:-1:-1;;;8658:18:1;;;8651:48;8716:18;;26353:131:0::1;8398:342:1::0;26353:131:0::1;26495:18;:40:::0;26198:345::o;24978:129::-;2014:13;:11;:13::i;:::-;-1:-1:-1;;;;;25063:24:0;;;::::1;;::::0;;;:17:::1;:24;::::0;;;;:36;;-1:-1:-1;;25063:36:0::1;::::0;::::1;;::::0;;;::::1;::::0;;24978:129::o;25260:103::-;2014:13;:11;:13::i;:::-;25331:10:::1;:24:::0;;-1:-1:-1;;25331:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;25260:103::o;11203:151::-;-1:-1:-1;;;;;11319:18:0;;;11292:7;11319:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11203:151::o;3027:201::-;2014:13;:11;:13::i;:::-;-1:-1:-1;;;;;3116:22:0;::::1;3108:73;;;::::0;-1:-1:-1;;;3108:73:0;;8947:2:1;3108:73:0::1;::::0;::::1;8929:21:1::0;8986:2;8966:18;;;8959:30;9025:34;9005:18;;;8998:62;-1:-1:-1;;;9076:18:1;;;9069:36;9122:19;;3108:73:0::1;8745:402:1::0;3108:73:0::1;3192:28;3211:8;3192:18;:28::i;:::-;3027:201:::0;:::o;17859:346::-;-1:-1:-1;;;;;17961:19:0;;17953:68;;;;-1:-1:-1;;;17953:68:0;;9354:2:1;17953:68:0;;;9336:21:1;9393:2;9373:18;;;9366:30;9432:34;9412:18;;;9405:62;-1:-1:-1;;;9483:18:1;;;9476:34;9527:19;;17953:68:0;9152:400:1;17953:68:0;-1:-1:-1;;;;;18040:21:0;;18032:68;;;;-1:-1:-1;;;18032:68:0;;9759:2:1;18032:68:0;;;9741:21:1;9798:2;9778:18;;;9771:30;9837:34;9817:18;;;9810:62;-1:-1:-1;;;9888:18:1;;;9881:32;9930:19;;18032:68:0;9557:398:1;18032:68:0;-1:-1:-1;;;;;18113:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18165:32;;1342:25:1;;;18165:32:0;;1315:18:1;18165:32:0;;;;;;;17859:346;;;:::o;2293:132::-;2201:6;;-1:-1:-1;;;;;2201:6:0;759:10;2357:23;2349:68;;;;-1:-1:-1;;;2349:68:0;;10162:2:1;2349:68:0;;;10144:21:1;;;10181:18;;;10174:30;10240:34;10220:18;;;10213:62;10292:18;;2349:68:0;9960:356:1;18496:419:0;18597:24;18624:25;18634:5;18641:7;18624:9;:25::i;:::-;18597:52;;-1:-1:-1;;18664:16:0;:37;18660:248;;18746:6;18726:16;:26;;18718:68;;;;-1:-1:-1;;;18718:68:0;;10523:2:1;18718:68:0;;;10505:21:1;10562:2;10542:18;;;10535:30;10601:31;10581:18;;;10574:59;10650:18;;18718:68:0;10321:353:1;18718:68:0;18830:51;18839:5;18846:7;18874:6;18855:16;:25;18830:8;:51::i;:::-;18586:329;18496:419;;;:::o;22625:1591::-;22765:10;;;;22764:11;;:51;;-1:-1:-1;;;;;;22792:23:0;;;;;;:17;:23;;;;;;;;22764:51;:89;;;-1:-1:-1;;;;;;22832:21:0;;;;;;:17;:21;;;;;;;;22764:89;:117;;;-1:-1:-1;22870:11:0;;22764:117;22746:245;;;22931:27;22941:4;22947:2;22951:6;22931:9;:27::i;:::-;22625:1591;;;:::o;22746:245::-;-1:-1:-1;;;;;23061:12:0;;23003:18;23061:12;;;:6;:12;;;;;;23003:18;;23061:12;;23057:421;;;23133:3;:7;20477:3;;23124:16;;23133:7;;23124:6;:16;:::i;:::-;23123:36;;;;:::i;:::-;23110:49;;23183:1;23174:10;;23057:421;;;-1:-1:-1;;;;;23206:10:0;;;;;;:6;:10;;;;;;;;23202:276;;;23277:3;:8;20477:3;;23268:17;;23277:8;;;;;23268:6;:17;:::i;:::-;23267:37;;;;:::i;:::-;23254:50;;23328:1;23319:10;;23202:276;;;23410:3;:12;20477:3;;23401:21;;23410:12;;;;;23401:6;:21;:::i;:::-;23400:41;;;;:::i;:::-;23387:54;;23465:1;23456:10;;23202:276;23490:40;23500:4;23506:2;23510:19;23519:10;23510:6;:19;:::i;:::-;23490:9;:40::i;:::-;23567:36;23577:4;23583:7;2201:6;;-1:-1:-1;;;;;2201:6:0;;2128:87;23583:7;23592:10;23567:9;:36::i;:::-;23640:6;23621:38;;23634:4;-1:-1:-1;;;;;23621:38:0;;23648:10;23621:38;;;;1342:25:1;;1330:2;1315:18;;1196:177;23621:38:0;;;;;;;;23676:14;;;;:42;;;;-1:-1:-1;;;;;;23695:23:0;;;;;;:17;:23;;;;;;;;23694:24;23676:42;23672:537;;;-1:-1:-1;;;;;23788:12:0;;23764:21;23788:12;;;:6;:12;;;;;23858;;23764:21;;23819:51;;:15;:51;:::i;:::-;23788:138;;;;;;;;;;;;23764:162;;23993:18;;23983:6;23967:13;:22;;;;:::i;:::-;:44;;23941:138;;;;-1:-1:-1;;;23941:138:0;;11014:2:1;23941:138:0;;;10996:21:1;;;11033:18;;;11026:30;11092:34;11072:18;;;11065:62;11144:18;;23941:138:0;10812:356:1;23941:138:0;24158:39;24191:6;24158:13;:39;:::i;:::-;-1:-1:-1;;;;;24094:12:0;;;;;;:6;:12;;;;;24125;;24094;;;24107:30;;:15;:30;:::i;:::-;24094:44;;;;;;;;;;;-1:-1:-1;24094:44:0;:103;-1:-1:-1;23672:537:0;22735:1481;;22625:1591;;;:::o;3388:191::-;3481:6;;;-1:-1:-1;;;;;3498:17:0;;;-1:-1:-1;;;;;;3498:17:0;;;;;;;3531:40;;3481:6;;;3498:17;3481:6;;3531:40;;3462:16;;3531:40;3451:128;3388:191;:::o;14772:806::-;-1:-1:-1;;;;;14869:18:0;;14861:68;;;;-1:-1:-1;;;14861:68:0;;11375:2:1;14861:68:0;;;11357:21:1;11414:2;11394:18;;;11387:30;11453:34;11433:18;;;11426:62;-1:-1:-1;;;11504:18:1;;;11497:35;11549:19;;14861:68:0;11173:401:1;14861:68:0;-1:-1:-1;;;;;14948:16:0;;14940:64;;;;-1:-1:-1;;;14940:64:0;;11781:2:1;14940:64:0;;;11763:21:1;11820:2;11800:18;;;11793:30;11859:34;11839:18;;;11832:62;-1:-1:-1;;;11910:18:1;;;11903:33;11953:19;;14940:64:0;11579:399:1;14940:64:0;-1:-1:-1;;;;;15090:15:0;;15068:19;15090:15;;;;;;;;;;;15124:21;;;;15116:72;;;;-1:-1:-1;;;15116:72:0;;12185:2:1;15116:72:0;;;12167:21:1;12224:2;12204:18;;;12197:30;12263:34;12243:18;;;12236:62;-1:-1:-1;;;12314:18:1;;;12307:36;12360:19;;15116:72:0;11983:402:1;15116:72:0;-1:-1:-1;;;;;15224:15:0;;;:9;:15;;;;;;;;;;;15242:20;;;15224:38;;15442:13;;;;;;;;;;:23;;;;;;15494:26;;1342:25:1;;;15442:13:0;;15494:26;;1315:18:1;15494:26:0;;;;;;;15533:37;22625:1591;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;1378:160::-;1443:20;;1499:13;;1492:21;1482:32;;1472:60;;1528:1;1525;1518:12;1543:180;1599:6;1652:2;1640:9;1631:7;1627:23;1623:32;1620:52;;;1668:1;1665;1658:12;1620:52;1691:26;1707:9;1691:26;:::i;:::-;1681:36;1543:180;-1:-1:-1;;;1543:180:1:o;1728:328::-;1805:6;1813;1821;1874:2;1862:9;1853:7;1849:23;1845:32;1842:52;;;1890:1;1887;1880:12;1842:52;1913:29;1932:9;1913:29;:::i;:::-;1903:39;;1961:38;1995:2;1984:9;1980:18;1961:38;:::i;:::-;1951:48;;2046:2;2035:9;2031:18;2018:32;2008:42;;1728:328;;;;;:::o;2061:254::-;2126:6;2134;2187:2;2175:9;2166:7;2162:23;2158:32;2155:52;;;2203:1;2200;2193:12;2155:52;2226:29;2245:9;2226:29;:::i;:::-;2216:39;;2274:35;2305:2;2294:9;2290:18;2274:35;:::i;:::-;2264:45;;2061:254;;;;;:::o;2509:180::-;2568:6;2621:2;2609:9;2600:7;2596:23;2592:32;2589:52;;;2637:1;2634;2627:12;2589:52;-1:-1:-1;2660:23:1;;2509:180;-1:-1:-1;2509:180:1:o;2694:186::-;2753:6;2806:2;2794:9;2785:7;2781:23;2777:32;2774:52;;;2822:1;2819;2812:12;2774:52;2845:29;2864:9;2845:29;:::i;2885:156::-;2951:20;;3011:4;3000:16;;2990:27;;2980:55;;3031:1;3028;3021:12;3046:322;3117:6;3125;3133;3186:2;3174:9;3165:7;3161:23;3157:32;3154:52;;;3202:1;3199;3192:12;3154:52;3225:27;3242:9;3225:27;:::i;:::-;3215:37;;3271:36;3303:2;3292:9;3288:18;3271:36;:::i;:::-;3261:46;;3326:36;3358:2;3347:9;3343:18;3326:36;:::i;:::-;3316:46;;3046:322;;;;;:::o;3926:260::-;3994:6;4002;4055:2;4043:9;4034:7;4030:23;4026:32;4023:52;;;4071:1;4068;4061:12;4023:52;4094:29;4113:9;4094:29;:::i;:::-;4084:39;;4142:38;4176:2;4165:9;4161:18;4142:38;:::i;4191:380::-;4270:1;4266:12;;;;4313;;;4334:61;;4388:4;4380:6;4376:17;4366:27;;4334:61;4441:2;4433:6;4430:14;4410:18;4407:38;4404:161;;4487:10;4482:3;4478:20;4475:1;4468:31;4522:4;4519:1;4512:15;4550:4;4547:1;4540:15;4404:161;;4191:380;;;:::o;4576:127::-;4637:10;4632:3;4628:20;4625:1;4618:31;4668:4;4665:1;4658:15;4692:4;4689:1;4682:15;4708:125;4773:9;;;4794:10;;;4791:36;;;4807:18;;:::i;6629:422::-;6718:1;6761:5;6718:1;6775:270;6796:7;6786:8;6783:21;6775:270;;;6855:4;6851:1;6847:6;6843:17;6837:4;6834:27;6831:53;;;6864:18;;:::i;:::-;6914:7;6904:8;6900:22;6897:55;;;6934:16;;;;6897:55;7013:22;;;;6973:15;;;;6775:270;;;6779:3;6629:422;;;;;:::o;7056:806::-;7105:5;7135:8;7125:80;;-1:-1:-1;7176:1:1;7190:5;;7125:80;7224:4;7214:76;;-1:-1:-1;7261:1:1;7275:5;;7214:76;7306:4;7324:1;7319:59;;;;7392:1;7387:130;;;;7299:218;;7319:59;7349:1;7340:10;;7363:5;;;7387:130;7424:3;7414:8;7411:17;7408:43;;;7431:18;;:::i;:::-;-1:-1:-1;;7487:1:1;7473:16;;7502:5;;7299:218;;7601:2;7591:8;7588:16;7582:3;7576:4;7573:13;7569:36;7563:2;7553:8;7550:16;7545:2;7539:4;7536:12;7532:35;7529:77;7526:159;;;-1:-1:-1;7638:19:1;;;7670:5;;7526:159;7717:34;7742:8;7736:4;7717:34;:::i;:::-;7787:6;7783:1;7779:6;7775:19;7766:7;7763:32;7760:58;;;7798:18;;:::i;:::-;7836:20;;7056:806;-1:-1:-1;;;7056:806:1:o;7867:131::-;7927:5;7956:36;7983:8;7977:4;7956:36;:::i;8003:168::-;8076:9;;;8107;;8124:15;;;8118:22;;8104:37;8094:71;;8145:18;;:::i;8176:217::-;8216:1;8242;8232:132;;8286:10;8281:3;8277:20;8274:1;8267:31;8321:4;8318:1;8311:15;8349:4;8346:1;8339:15;8232:132;-1:-1:-1;8378:9:1;;8176:217::o;10679:128::-;10746:9;;;10767:11;;;10764:37;;;10781:18;;:::i

Swarm Source

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