ETH Price: $3,342.02 (-0.97%)
Gas: 8 Gwei

Token

BlockStar Token (BST)
 

Overview

Max Total Supply

100,000,000 BST

Holders

47

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
17,400 BST

Value
$0.00
0x71195aC7A1dAA8e66d7B38C16860F69B7a20e797
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:
BST

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-06-30
*/

// SPDX-License-Identifier: Unlicensed

pragma solidity 0.8.9;

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

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

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

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

/**
 * @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 {_createInitialSupply}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(
            currentAllowance >= amount,
            "ERC20: transfer amount exceeds allowance"
        );
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

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

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

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

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

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * creating 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 created 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
     * creating of tokens 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 created 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 {}
}

/**
 * @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() {
        _setOwner(_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 {
        _setOwner(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"
        );
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */

library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

contract BST is ERC20, Ownable {
    using SafeMath for uint256;
    
    bool public cooldownEnabled = true;
    uint256 public cooldownTimerInterval = 30 seconds;
    mapping(address => uint256) private cooldown;

    uint256 public marketingFee = 2; // marketing fee
    address public marketingWallet = 0xe6F30afeBbc17469AC7b243228aeA3524ecb6CC0; // marketing wallet address

    uint256 public maxTxAmount = 500000 * (10**18);

    // exlcude from fees and max transaction amount
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isBlackListed;
    mapping(address => bool) public _router;

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping(address => bool) public automatedMarketMakerPairs;

    event ExcludeFromFees(address indexed account, bool isExcluded);

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

    constructor() ERC20("BlockStar Token", "BST") {
        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(marketingWallet, true);
        excludeFromFees(address(this), true);

        /*
            an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _createInitialSupply(owner(), 100000000 * (10**18));
    }

    receive() external payable {}

    function setBlackList(address addr, bool value) external onlyOwner {
        _isBlackListed[addr] = value;
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        require(
            _isExcludedFromFees[account] != excluded,
            "BST: Account is already the value of 'excluded'"
        );
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(
            !_isBlackListed[from] && !_isBlackListed[to],
            "Account is blacklisted"
        );
        require(
            !_router[from] && !_router[to],
            "Router is blacklisted"
        );
        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        if (from != owner() && to != owner()) {
            if (!_isExcludedFromFees[to] && cooldownEnabled
            ) {
                // Cooldown
                require(cooldown[to] < block.timestamp);
                cooldown[to] = block.timestamp + (cooldownTimerInterval);
            }
        }

        if (!_isExcludedFromFees[from] && !_isExcludedFromFees[to]) {
            require(
                amount <= maxTxAmount,
                "transaction amount must be less than equal to MaxTx amount"
            );
        }

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (!_isExcludedFromFees[from] && !_isExcludedFromFees[to]) {
            if (
                automatedMarketMakerPairs[from] || automatedMarketMakerPairs[to]
            ) {
                uint256 fees = amount.mul(marketingFee).div(100);
                amount = amount.sub(fees);
                super._transfer(from, marketingWallet, fees);
            }
        }

        super._transfer(from, to, amount);
    }

     function _approve(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(!_router[to] , "Can't trade on dex" );
        super._approve(from, to, amount);
    }

    // owner can only decrease tax, he has no right to increase tax more than 5%
    function setFee(uint256 _marketingFee) public onlyOwner {
        require(_marketingFee <= 2, "fees must be less than or equal to 2%");
        marketingFee = _marketingFee;
    }

    function setMarketingWallet(address payable _newAddress) public onlyOwner {
        marketingWallet = _newAddress;
    }

    // change max transaction amount.
    function setMaxTxAmount(uint256 newAmount) public onlyOwner {
        maxTxAmount = newAmount * 10**18;
        require(
            newAmount * 10**18 >= totalSupply().div(50000),
            "transaction amount must be greater than or equal to 0.01% of supply"
        );
    }

    // enable cooldown between trades
    function changeCooldownSettings(bool newStatus, uint256 newInterval)
        external
        onlyOwner
    {
        cooldownEnabled = newStatus;
        cooldownTimerInterval = newInterval;
    }

    function blockRouter(address _address , bool _status) public  onlyOwner{
        _router[_address] = _status;
    }
}

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":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","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":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","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":"_isBlackListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_router","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"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":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"blockRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newStatus","type":"bool"},{"internalType":"uint256","name":"newInterval","type":"uint256"}],"name":"changeCooldownSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cooldownEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cooldownTimerInterval","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":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","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":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","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":"address","name":"addr","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"}],"name":"setFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_newAddress","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526005805460ff60a01b1916600160a01b179055601e6006556002600855600980546001600160a01b03191673e6f30afebbc17469ac7b243228aea3524ecb6cc01790556969e10de76676d0800000600a553480156200006257600080fd5b506040518060400160405280600f81526020016e213637b1b5a9ba30b9102a37b5b2b760891b815250604051806040016040528060038152602001621094d560ea1b8152508160039080519060200190620000bf929190620003f3565b508051620000d5906004906020840190620003f3565b505050620000f2620000ec6200016660201b60201c565b6200016a565b62000111620001096005546001600160a01b031690565b6001620001bc565b6009546200012a906001600160a01b03166001620001bc565b62000137306001620001bc565b620001606200014e6005546001600160a01b031690565b6a52b7d2dcc80cd2e400000062000304565b620004fd565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b031633146200021c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6001600160a01b0382166000908152600b602052604090205460ff1615158115151415620002a55760405162461bcd60e51b815260206004820152602f60248201527f4253543a204163636f756e7420697320616c7265616479207468652076616c7560448201526e65206f6620276578636c756465642760881b606482015260840162000213565b6001600160a01b0382166000818152600b6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620003665760405162461bcd60e51b815260206004820152602160248201527f45524332303a2063726561746520746f20746865207a65726f206164647265736044820152607360f81b606482015260840162000213565b80600260008282546200037a919062000499565b90915550506001600160a01b03821660009081526020819052604081208054839290620003a990849062000499565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b8280546200040190620004c0565b90600052602060002090601f01602090048101928262000425576000855562000470565b82601f106200044057805160ff191683800117855562000470565b8280016001018555821562000470579182015b828111156200047057825182559160200191906001019062000453565b506200047e92915062000482565b5090565b5b808211156200047e576000815560010162000483565b60008219821115620004bb57634e487b7160e01b600052601160045260246000fd5b500190565b600181811c90821680620004d557607f821691505b60208210811415620004f757634e487b7160e01b600052602260045260246000fd5b50919050565b6118c3806200050d6000396000f3fe6080604052600436106101d15760003560e01c8063715018a6116100f7578063a9059cbb11610095578063dd62ed3e11610064578063dd62ed3e14610577578063e98fbe78146105bd578063ec28438a146105dd578063f2fde38b146105fd57600080fd5b8063a9059cbb146104e6578063a985ceef14610506578063b62496f514610527578063c02466681461055757600080fd5b80638c0b5e22116100d15780638c0b5e221461047d5780638da5cb5b1461049357806395d89b41146104b1578063a457c2d7146104c657600080fd5b8063715018a61461041a578063722b62ad1461042f57806375f0a8741461044557600080fd5b8063395093511161016f57806369fe0e2d1161013e57806369fe0e2d1461037e5780636b67c4df1461039e5780636c9bb93b146103b457806370a08231146103e457600080fd5b806339509351146102e55780634fbee193146103055780635d098b381461033e57806368092bd91461035e57600080fd5b806318160ddd116101ab57806318160ddd1461025a57806323b872dd146102795780632a8b632e14610299578063313ce567146102c957600080fd5b806306fdde03146101dd578063095ea7b3146102085780630d45c0e31461023857600080fd5b366101d857005b600080fd5b3480156101e957600080fd5b506101f261061d565b6040516101ff9190611563565b60405180910390f35b34801561021457600080fd5b506102286102233660046115cd565b6106af565b60405190151581526020016101ff565b34801561024457600080fd5b5061025861025336600461160e565b6106c6565b005b34801561026657600080fd5b506002545b6040519081526020016101ff565b34801561028557600080fd5b5061022861029436600461162a565b61071b565b3480156102a557600080fd5b506102286102b436600461166b565b600d6020526000908152604090205460ff1681565b3480156102d557600080fd5b50604051601281526020016101ff565b3480156102f157600080fd5b506102286103003660046115cd565b6107c5565b34801561031157600080fd5b5061022861032036600461166b565b6001600160a01b03166000908152600b602052604090205460ff1690565b34801561034a57600080fd5b5061025861035936600461166b565b610801565b34801561036a57600080fd5b50610258610379366004611688565b61084d565b34801561038a57600080fd5b506102586103993660046116bd565b6108a2565b3480156103aa57600080fd5b5061026b60085481565b3480156103c057600080fd5b506102286103cf36600461166b565b600c6020526000908152604090205460ff1681565b3480156103f057600080fd5b5061026b6103ff36600461166b565b6001600160a01b031660009081526020819052604090205490565b34801561042657600080fd5b50610258610930565b34801561043b57600080fd5b5061026b60065481565b34801561045157600080fd5b50600954610465906001600160a01b031681565b6040516001600160a01b0390911681526020016101ff565b34801561048957600080fd5b5061026b600a5481565b34801561049f57600080fd5b506005546001600160a01b0316610465565b3480156104bd57600080fd5b506101f2610966565b3480156104d257600080fd5b506102286104e13660046115cd565b610975565b3480156104f257600080fd5b506102286105013660046115cd565b610a0e565b34801561051257600080fd5b5060055461022890600160a01b900460ff1681565b34801561053357600080fd5b5061022861054236600461166b565b600e6020526000908152604090205460ff1681565b34801561056357600080fd5b50610258610572366004611688565b610a1b565b34801561058357600080fd5b5061026b6105923660046116d6565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156105c957600080fd5b506102586105d8366004611688565b610b2b565b3480156105e957600080fd5b506102586105f83660046116bd565b610b80565b34801561060957600080fd5b5061025861061836600461166b565b610c69565b60606003805461062c9061170f565b80601f01602080910402602001604051908101604052809291908181526020018280546106589061170f565b80156106a55780601f1061067a576101008083540402835291602001916106a5565b820191906000526020600020905b81548152906001019060200180831161068857829003601f168201915b5050505050905090565b60006106bc338484610d01565b5060015b92915050565b6005546001600160a01b031633146106f95760405162461bcd60e51b81526004016106f09061174a565b60405180910390fd5b60058054921515600160a01b0260ff60a01b1990931692909217909155600655565b6000610728848484610d6f565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156107ad5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016106f0565b6107ba8533858403610d01565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916106bc9185906107fc908690611795565b610d01565b6005546001600160a01b0316331461082b5760405162461bcd60e51b81526004016106f09061174a565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146108775760405162461bcd60e51b81526004016106f09061174a565b6001600160a01b03919091166000908152600c60205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146108cc5760405162461bcd60e51b81526004016106f09061174a565b600281111561092b5760405162461bcd60e51b815260206004820152602560248201527f66656573206d757374206265206c657373207468616e206f7220657175616c20604482015264746f20322560d81b60648201526084016106f0565b600855565b6005546001600160a01b0316331461095a5760405162461bcd60e51b81526004016106f09061174a565b6109646000611126565b565b60606004805461062c9061170f565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156109f75760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016106f0565b610a043385858403610d01565b5060019392505050565b60006106bc338484610d6f565b6005546001600160a01b03163314610a455760405162461bcd60e51b81526004016106f09061174a565b6001600160a01b0382166000908152600b602052604090205460ff1615158115151415610acc5760405162461bcd60e51b815260206004820152602f60248201527f4253543a204163636f756e7420697320616c7265616479207468652076616c7560448201526e65206f6620276578636c756465642760881b60648201526084016106f0565b6001600160a01b0382166000818152600b6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610b555760405162461bcd60e51b81526004016106f09061174a565b6001600160a01b03919091166000908152600d60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610baa5760405162461bcd60e51b81526004016106f09061174a565b610bbc81670de0b6b3a76400006117ad565b600a55610bd461c350610bce60025490565b90611178565b610be682670de0b6b3a76400006117ad565b1015610c665760405162461bcd60e51b815260206004820152604360248201527f7472616e73616374696f6e20616d6f756e74206d75737420626520677265617460448201527f6572207468616e206f7220657175616c20746f20302e303125206f6620737570606482015262706c7960e81b608482015260a4016106f0565b50565b6005546001600160a01b03163314610c935760405162461bcd60e51b81526004016106f09061174a565b6001600160a01b038116610cf85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106f0565b610c6681611126565b6001600160a01b0382166000908152600d602052604090205460ff1615610d5f5760405162461bcd60e51b8152602060048201526012602482015271086c2dc4ee840e8e4c2c8ca40dedc40c8caf60731b60448201526064016106f0565b610d6a8383836111c1565b505050565b6001600160a01b038316610d955760405162461bcd60e51b81526004016106f0906117cc565b6001600160a01b038216610dbb5760405162461bcd60e51b81526004016106f090611811565b6001600160a01b0383166000908152600c602052604090205460ff16158015610dfd57506001600160a01b0382166000908152600c602052604090205460ff16155b610e425760405162461bcd60e51b81526020600482015260166024820152751058d8dbdd5b9d081a5cc8189b1858dadb1a5cdd195960521b60448201526064016106f0565b6001600160a01b0383166000908152600d602052604090205460ff16158015610e8457506001600160a01b0382166000908152600d602052604090205460ff16155b610ec85760405162461bcd60e51b8152602060048201526015602482015274149bdd5d195c881a5cc8189b1858dadb1a5cdd1959605a1b60448201526064016106f0565b80610ed957610d6a838360006112e5565b6005546001600160a01b03848116911614801590610f0557506005546001600160a01b03838116911614155b15610f8c576001600160a01b0382166000908152600b602052604090205460ff16158015610f3c5750600554600160a01b900460ff165b15610f8c576001600160a01b0382166000908152600760205260409020544211610f6557600080fd5b600654610f729042611795565b6001600160a01b0383166000908152600760205260409020555b6001600160a01b0383166000908152600b602052604090205460ff16158015610fce57506001600160a01b0382166000908152600b602052604090205460ff16155b1561104b57600a5481111561104b5760405162461bcd60e51b815260206004820152603a60248201527f7472616e73616374696f6e20616d6f756e74206d757374206265206c6573732060448201527f7468616e20657175616c20746f204d6178547820616d6f756e7400000000000060648201526084016106f0565b6001600160a01b0383166000908152600b602052604090205460ff1615801561108d57506001600160a01b0382166000908152600b602052604090205460ff16155b1561111b576001600160a01b0383166000908152600e602052604090205460ff16806110d157506001600160a01b0382166000908152600e602052604090205460ff165b1561111b5760006110f26064610bce6008548561143a90919063ffffffff16565b90506110fe82826114b9565b6009549092506111199085906001600160a01b0316836112e5565b505b610d6a8383836112e5565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006111ba83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506114fb565b9392505050565b6001600160a01b0383166112235760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016106f0565b6001600160a01b0382166112845760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016106f0565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661130b5760405162461bcd60e51b81526004016106f0906117cc565b6001600160a01b0382166113315760405162461bcd60e51b81526004016106f090611811565b6001600160a01b038316600090815260208190526040902054818110156113a95760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016106f0565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906113e0908490611795565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161142c91815260200190565b60405180910390a350505050565b600082611449575060006106c0565b600061145583856117ad565b9050826114628583611854565b146111ba5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016106f0565b60006111ba83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611532565b6000818361151c5760405162461bcd60e51b81526004016106f09190611563565b5060006115298486611854565b95945050505050565b600081848411156115565760405162461bcd60e51b81526004016106f09190611563565b5060006115298486611876565b600060208083528351808285015260005b8181101561159057858101830151858201604001528201611574565b818111156115a2576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610c6657600080fd5b600080604083850312156115e057600080fd5b82356115eb816115b8565b946020939093013593505050565b8035801515811461160957600080fd5b919050565b6000806040838503121561162157600080fd5b6115eb836115f9565b60008060006060848603121561163f57600080fd5b833561164a816115b8565b9250602084013561165a816115b8565b929592945050506040919091013590565b60006020828403121561167d57600080fd5b81356111ba816115b8565b6000806040838503121561169b57600080fd5b82356116a6816115b8565b91506116b4602084016115f9565b90509250929050565b6000602082840312156116cf57600080fd5b5035919050565b600080604083850312156116e957600080fd5b82356116f4816115b8565b91506020830135611704816115b8565b809150509250929050565b600181811c9082168061172357607f821691505b6020821081141561174457634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156117a8576117a861177f565b500190565b60008160001904831182151516156117c7576117c761177f565b500290565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60008261187157634e487b7160e01b600052601260045260246000fd5b500490565b6000828210156118885761188861177f565b50039056fea2646970667358221220670305273396edd5a1d9baaaab5f70d361091aded8508af7d3036804dd06369064736f6c63430008090033

Deployed Bytecode

0x6080604052600436106101d15760003560e01c8063715018a6116100f7578063a9059cbb11610095578063dd62ed3e11610064578063dd62ed3e14610577578063e98fbe78146105bd578063ec28438a146105dd578063f2fde38b146105fd57600080fd5b8063a9059cbb146104e6578063a985ceef14610506578063b62496f514610527578063c02466681461055757600080fd5b80638c0b5e22116100d15780638c0b5e221461047d5780638da5cb5b1461049357806395d89b41146104b1578063a457c2d7146104c657600080fd5b8063715018a61461041a578063722b62ad1461042f57806375f0a8741461044557600080fd5b8063395093511161016f57806369fe0e2d1161013e57806369fe0e2d1461037e5780636b67c4df1461039e5780636c9bb93b146103b457806370a08231146103e457600080fd5b806339509351146102e55780634fbee193146103055780635d098b381461033e57806368092bd91461035e57600080fd5b806318160ddd116101ab57806318160ddd1461025a57806323b872dd146102795780632a8b632e14610299578063313ce567146102c957600080fd5b806306fdde03146101dd578063095ea7b3146102085780630d45c0e31461023857600080fd5b366101d857005b600080fd5b3480156101e957600080fd5b506101f261061d565b6040516101ff9190611563565b60405180910390f35b34801561021457600080fd5b506102286102233660046115cd565b6106af565b60405190151581526020016101ff565b34801561024457600080fd5b5061025861025336600461160e565b6106c6565b005b34801561026657600080fd5b506002545b6040519081526020016101ff565b34801561028557600080fd5b5061022861029436600461162a565b61071b565b3480156102a557600080fd5b506102286102b436600461166b565b600d6020526000908152604090205460ff1681565b3480156102d557600080fd5b50604051601281526020016101ff565b3480156102f157600080fd5b506102286103003660046115cd565b6107c5565b34801561031157600080fd5b5061022861032036600461166b565b6001600160a01b03166000908152600b602052604090205460ff1690565b34801561034a57600080fd5b5061025861035936600461166b565b610801565b34801561036a57600080fd5b50610258610379366004611688565b61084d565b34801561038a57600080fd5b506102586103993660046116bd565b6108a2565b3480156103aa57600080fd5b5061026b60085481565b3480156103c057600080fd5b506102286103cf36600461166b565b600c6020526000908152604090205460ff1681565b3480156103f057600080fd5b5061026b6103ff36600461166b565b6001600160a01b031660009081526020819052604090205490565b34801561042657600080fd5b50610258610930565b34801561043b57600080fd5b5061026b60065481565b34801561045157600080fd5b50600954610465906001600160a01b031681565b6040516001600160a01b0390911681526020016101ff565b34801561048957600080fd5b5061026b600a5481565b34801561049f57600080fd5b506005546001600160a01b0316610465565b3480156104bd57600080fd5b506101f2610966565b3480156104d257600080fd5b506102286104e13660046115cd565b610975565b3480156104f257600080fd5b506102286105013660046115cd565b610a0e565b34801561051257600080fd5b5060055461022890600160a01b900460ff1681565b34801561053357600080fd5b5061022861054236600461166b565b600e6020526000908152604090205460ff1681565b34801561056357600080fd5b50610258610572366004611688565b610a1b565b34801561058357600080fd5b5061026b6105923660046116d6565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156105c957600080fd5b506102586105d8366004611688565b610b2b565b3480156105e957600080fd5b506102586105f83660046116bd565b610b80565b34801561060957600080fd5b5061025861061836600461166b565b610c69565b60606003805461062c9061170f565b80601f01602080910402602001604051908101604052809291908181526020018280546106589061170f565b80156106a55780601f1061067a576101008083540402835291602001916106a5565b820191906000526020600020905b81548152906001019060200180831161068857829003601f168201915b5050505050905090565b60006106bc338484610d01565b5060015b92915050565b6005546001600160a01b031633146106f95760405162461bcd60e51b81526004016106f09061174a565b60405180910390fd5b60058054921515600160a01b0260ff60a01b1990931692909217909155600655565b6000610728848484610d6f565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156107ad5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016106f0565b6107ba8533858403610d01565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916106bc9185906107fc908690611795565b610d01565b6005546001600160a01b0316331461082b5760405162461bcd60e51b81526004016106f09061174a565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146108775760405162461bcd60e51b81526004016106f09061174a565b6001600160a01b03919091166000908152600c60205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146108cc5760405162461bcd60e51b81526004016106f09061174a565b600281111561092b5760405162461bcd60e51b815260206004820152602560248201527f66656573206d757374206265206c657373207468616e206f7220657175616c20604482015264746f20322560d81b60648201526084016106f0565b600855565b6005546001600160a01b0316331461095a5760405162461bcd60e51b81526004016106f09061174a565b6109646000611126565b565b60606004805461062c9061170f565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156109f75760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016106f0565b610a043385858403610d01565b5060019392505050565b60006106bc338484610d6f565b6005546001600160a01b03163314610a455760405162461bcd60e51b81526004016106f09061174a565b6001600160a01b0382166000908152600b602052604090205460ff1615158115151415610acc5760405162461bcd60e51b815260206004820152602f60248201527f4253543a204163636f756e7420697320616c7265616479207468652076616c7560448201526e65206f6620276578636c756465642760881b60648201526084016106f0565b6001600160a01b0382166000818152600b6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610b555760405162461bcd60e51b81526004016106f09061174a565b6001600160a01b03919091166000908152600d60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610baa5760405162461bcd60e51b81526004016106f09061174a565b610bbc81670de0b6b3a76400006117ad565b600a55610bd461c350610bce60025490565b90611178565b610be682670de0b6b3a76400006117ad565b1015610c665760405162461bcd60e51b815260206004820152604360248201527f7472616e73616374696f6e20616d6f756e74206d75737420626520677265617460448201527f6572207468616e206f7220657175616c20746f20302e303125206f6620737570606482015262706c7960e81b608482015260a4016106f0565b50565b6005546001600160a01b03163314610c935760405162461bcd60e51b81526004016106f09061174a565b6001600160a01b038116610cf85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106f0565b610c6681611126565b6001600160a01b0382166000908152600d602052604090205460ff1615610d5f5760405162461bcd60e51b8152602060048201526012602482015271086c2dc4ee840e8e4c2c8ca40dedc40c8caf60731b60448201526064016106f0565b610d6a8383836111c1565b505050565b6001600160a01b038316610d955760405162461bcd60e51b81526004016106f0906117cc565b6001600160a01b038216610dbb5760405162461bcd60e51b81526004016106f090611811565b6001600160a01b0383166000908152600c602052604090205460ff16158015610dfd57506001600160a01b0382166000908152600c602052604090205460ff16155b610e425760405162461bcd60e51b81526020600482015260166024820152751058d8dbdd5b9d081a5cc8189b1858dadb1a5cdd195960521b60448201526064016106f0565b6001600160a01b0383166000908152600d602052604090205460ff16158015610e8457506001600160a01b0382166000908152600d602052604090205460ff16155b610ec85760405162461bcd60e51b8152602060048201526015602482015274149bdd5d195c881a5cc8189b1858dadb1a5cdd1959605a1b60448201526064016106f0565b80610ed957610d6a838360006112e5565b6005546001600160a01b03848116911614801590610f0557506005546001600160a01b03838116911614155b15610f8c576001600160a01b0382166000908152600b602052604090205460ff16158015610f3c5750600554600160a01b900460ff165b15610f8c576001600160a01b0382166000908152600760205260409020544211610f6557600080fd5b600654610f729042611795565b6001600160a01b0383166000908152600760205260409020555b6001600160a01b0383166000908152600b602052604090205460ff16158015610fce57506001600160a01b0382166000908152600b602052604090205460ff16155b1561104b57600a5481111561104b5760405162461bcd60e51b815260206004820152603a60248201527f7472616e73616374696f6e20616d6f756e74206d757374206265206c6573732060448201527f7468616e20657175616c20746f204d6178547820616d6f756e7400000000000060648201526084016106f0565b6001600160a01b0383166000908152600b602052604090205460ff1615801561108d57506001600160a01b0382166000908152600b602052604090205460ff16155b1561111b576001600160a01b0383166000908152600e602052604090205460ff16806110d157506001600160a01b0382166000908152600e602052604090205460ff165b1561111b5760006110f26064610bce6008548561143a90919063ffffffff16565b90506110fe82826114b9565b6009549092506111199085906001600160a01b0316836112e5565b505b610d6a8383836112e5565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006111ba83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506114fb565b9392505050565b6001600160a01b0383166112235760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016106f0565b6001600160a01b0382166112845760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016106f0565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661130b5760405162461bcd60e51b81526004016106f0906117cc565b6001600160a01b0382166113315760405162461bcd60e51b81526004016106f090611811565b6001600160a01b038316600090815260208190526040902054818110156113a95760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016106f0565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906113e0908490611795565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161142c91815260200190565b60405180910390a350505050565b600082611449575060006106c0565b600061145583856117ad565b9050826114628583611854565b146111ba5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016106f0565b60006111ba83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611532565b6000818361151c5760405162461bcd60e51b81526004016106f09190611563565b5060006115298486611854565b95945050505050565b600081848411156115565760405162461bcd60e51b81526004016106f09190611563565b5060006115298486611876565b600060208083528351808285015260005b8181101561159057858101830151858201604001528201611574565b818111156115a2576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610c6657600080fd5b600080604083850312156115e057600080fd5b82356115eb816115b8565b946020939093013593505050565b8035801515811461160957600080fd5b919050565b6000806040838503121561162157600080fd5b6115eb836115f9565b60008060006060848603121561163f57600080fd5b833561164a816115b8565b9250602084013561165a816115b8565b929592945050506040919091013590565b60006020828403121561167d57600080fd5b81356111ba816115b8565b6000806040838503121561169b57600080fd5b82356116a6816115b8565b91506116b4602084016115f9565b90509250929050565b6000602082840312156116cf57600080fd5b5035919050565b600080604083850312156116e957600080fd5b82356116f4816115b8565b91506020830135611704816115b8565b809150509250929050565b600181811c9082168061172357607f821691505b6020821081141561174457634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156117a8576117a861177f565b500190565b60008160001904831182151516156117c7576117c761177f565b500290565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60008261187157634e487b7160e01b600052601260045260246000fd5b500490565b6000828210156118885761188861177f565b50039056fea2646970667358221220670305273396edd5a1d9baaaab5f70d361091aded8508af7d3036804dd06369064736f6c63430008090033

Deployed Bytecode Sourcemap

23688:5174:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5610:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7918:210;;;;;;;;;;-1:-1:-1;7918:210:0;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;7918:210:0;1072:187:1;28531:203:0;;;;;;;;;;-1:-1:-1;28531:203:0;;;;;:::i;:::-;;:::i;:::-;;6730:108;;;;;;;;;;-1:-1:-1;6818:12:0;;6730:108;;;1828:25:1;;;1816:2;1801:18;6730:108:0;1682:177:1;8610:529:0;;;;;;;;;;-1:-1:-1;8610:529:0;;;;;:::i;:::-;;:::i;24302:39::-;;;;;;;;;;-1:-1:-1;24302:39:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;6572:93;;;;;;;;;;-1:-1:-1;6572:93:0;;6655:2;2719:36:1;;2707:2;2692:18;6572:93:0;2577:184:1;9548:297:0;;;;;;;;;;-1:-1:-1;9548:297:0;;;;;:::i;:::-;;:::i;25693:126::-;;;;;;;;;;-1:-1:-1;25693:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;25783:28:0;25759:4;25783:28;;;:19;:28;;;;;;;;;25693:126;28030:122;;;;;;;;;;-1:-1:-1;28030:122:0;;;;;:::i;:::-;;:::i;25233:114::-;;;;;;;;;;-1:-1:-1;25233:114:0;;;;;:::i;:::-;;:::i;27840:182::-;;;;;;;;;;-1:-1:-1;27840:182:0;;;;;:::i;:::-;;:::i;23915:31::-;;;;;;;;;;;;;;;;24249:46;;;;;;;;;;-1:-1:-1;24249:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;6901:177;;;;;;;;;;-1:-1:-1;6901:177:0;;;;;:::i;:::-;-1:-1:-1;;;;;7052:18:0;7020:7;7052:18;;;;;;;;;;;;6901:177;17618:94;;;;;;;;;;;;;:::i;23806:49::-;;;;;;;;;;;;;;;;23970:75;;;;;;;;;;-1:-1:-1;23970:75:0;;;;-1:-1:-1;;;;;23970:75:0;;;;;;-1:-1:-1;;;;;3695:32:1;;;3677:51;;3665:2;3650:18;23970:75:0;3531:203:1;24082:46:0;;;;;;;;;;;;;;;;16967:87;;;;;;;;;;-1:-1:-1;17040:6:0;;-1:-1:-1;;;;;17040:6:0;16967:87;;5829:104;;;;;;;;;;;;;:::i;10348:482::-;;;;;;;;;;-1:-1:-1;10348:482:0;;;;;:::i;:::-;;:::i;7291:216::-;;;;;;;;;;-1:-1:-1;7291:216:0;;;;;:::i;:::-;;:::i;23765:34::-;;;;;;;;;;-1:-1:-1;23765:34:0;;;;-1:-1:-1;;;23765:34:0;;;;;;24499:57;;;;;;;;;;-1:-1:-1;24499:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;25355:330;;;;;;;;;;-1:-1:-1;25355:330:0;;;;;:::i;:::-;;:::i;7570:201::-;;;;;;;;;;-1:-1:-1;7570:201:0;;;;;:::i;:::-;-1:-1:-1;;;;;7736:18:0;;;7704:7;7736:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;7570:201;28742:117;;;;;;;;;;-1:-1:-1;28742:117:0;;;;;:::i;:::-;;:::i;28199:285::-;;;;;;;;;;-1:-1:-1;28199:285:0;;;;;:::i;:::-;;:::i;17867:229::-;;;;;;;;;;-1:-1:-1;17867:229:0;;;;;:::i;:::-;;:::i;5610:100::-;5664:13;5697:5;5690:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5610:100;:::o;7918:210::-;8037:4;8059:39;181:10;8082:7;8091:6;8059:8;:39::i;:::-;-1:-1:-1;8116:4:0;7918:210;;;;;:::o;28531:203::-;17040:6;;-1:-1:-1;;;;;17040:6:0;181:10;17187:23;17179:68;;;;-1:-1:-1;;;17179:68:0;;;;;;;:::i;:::-;;;;;;;;;28653:15:::1;:27:::0;;;::::1;;-1:-1:-1::0;;;28653:27:0::1;-1:-1:-1::0;;;;28653:27:0;;::::1;::::0;;;::::1;::::0;;;28691:21:::1;:35:::0;28531:203::o;8610:529::-;8750:4;8767:36;8777:6;8785:9;8796:6;8767:9;:36::i;:::-;-1:-1:-1;;;;;8843:19:0;;8816:24;8843:19;;;:11;:19;;;;;;;;181:10;8843:33;;;;;;;;8909:26;;;;8887:116;;;;-1:-1:-1;;;8887:116:0;;5080:2:1;8887:116:0;;;5062:21:1;5119:2;5099:18;;;5092:30;5158:34;5138:18;;;5131:62;-1:-1:-1;;;5209:18:1;;;5202:38;5257:19;;8887:116:0;4878:404:1;8887:116:0;9039:57;9048:6;181:10;9089:6;9070:16;:25;9039:8;:57::i;:::-;-1:-1:-1;9127:4:0;;8610:529;-1:-1:-1;;;;8610:529:0:o;9548:297::-;181:10;9663:4;9757:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;9757:34:0;;;;;;;;;;9663:4;;9685:130;;9735:7;;9757:47;;9794:10;;9757:47;:::i;:::-;9685:8;:130::i;28030:122::-;17040:6;;-1:-1:-1;;;;;17040:6:0;181:10;17187:23;17179:68;;;;-1:-1:-1;;;17179:68:0;;;;;;;:::i;:::-;28115:15:::1;:29:::0;;-1:-1:-1;;;;;;28115:29:0::1;-1:-1:-1::0;;;;;28115:29:0;;;::::1;::::0;;;::::1;::::0;;28030:122::o;25233:114::-;17040:6;;-1:-1:-1;;;;;17040:6:0;181:10;17187:23;17179:68;;;;-1:-1:-1;;;17179:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;25311:20:0;;;::::1;;::::0;;;:14:::1;:20;::::0;;;;:28;;-1:-1:-1;;25311:28:0::1;::::0;::::1;;::::0;;;::::1;::::0;;25233:114::o;27840:182::-;17040:6;;-1:-1:-1;;;;;17040:6:0;181:10;17187:23;17179:68;;;;-1:-1:-1;;;17179:68:0;;;;;;;:::i;:::-;27932:1:::1;27915:13;:18;;27907:68;;;::::0;-1:-1:-1;;;27907:68:0;;5754:2:1;27907:68:0::1;::::0;::::1;5736:21:1::0;5793:2;5773:18;;;5766:30;5832:34;5812:18;;;5805:62;-1:-1:-1;;;5883:18:1;;;5876:35;5928:19;;27907:68:0::1;5552:401:1::0;27907:68:0::1;27986:12;:28:::0;27840:182::o;17618:94::-;17040:6;;-1:-1:-1;;;;;17040:6:0;181:10;17187:23;17179:68;;;;-1:-1:-1;;;17179:68:0;;;;;;;:::i;:::-;17683:21:::1;17701:1;17683:9;:21::i;:::-;17618:94::o:0;5829:104::-;5885:13;5918:7;5911:14;;;;;:::i;10348:482::-;181:10;10468:4;10517:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;10517:34:0;;;;;;;;;;10584:35;;;;10562:122;;;;-1:-1:-1;;;10562:122:0;;6160:2:1;10562:122:0;;;6142:21:1;6199:2;6179:18;;;6172:30;6238:34;6218:18;;;6211:62;-1:-1:-1;;;6289:18:1;;;6282:35;6334:19;;10562:122:0;5958:401:1;10562:122:0;10720:67;181:10;10743:7;10771:15;10752:16;:34;10720:8;:67::i;:::-;-1:-1:-1;10818:4:0;;10348:482;-1:-1:-1;;;10348:482:0:o;7291:216::-;7413:4;7435:42;181:10;7459:9;7470:6;7435:9;:42::i;25355:330::-;17040:6;;-1:-1:-1;;;;;17040:6:0;181:10;17187:23;17179:68;;;;-1:-1:-1;;;17179:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;25462:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;::::1;;:40;;::::0;::::1;;;;25440:137;;;::::0;-1:-1:-1;;;25440:137:0;;6566:2:1;25440:137:0::1;::::0;::::1;6548:21:1::0;6605:2;6585:18;;;6578:30;6644:34;6624:18;;;6617:62;-1:-1:-1;;;6695:18:1;;;6688:45;6750:19;;25440:137:0::1;6364:411:1::0;25440:137:0::1;-1:-1:-1::0;;;;;25588:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;25588:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;25643:34;;1212:41:1;;;25643:34:0::1;::::0;1185:18:1;25643:34:0::1;;;;;;;25355:330:::0;;:::o;28742:117::-;17040:6;;-1:-1:-1;;;;;17040:6:0;181:10;17187:23;17179:68;;;;-1:-1:-1;;;17179:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28824:17:0;;;::::1;;::::0;;;:7:::1;:17;::::0;;;;:27;;-1:-1:-1;;28824:27:0::1;::::0;::::1;;::::0;;;::::1;::::0;;28742:117::o;28199:285::-;17040:6;;-1:-1:-1;;;;;17040:6:0;181:10;17187:23;17179:68;;;;-1:-1:-1;;;17179:68:0;;;;;;;:::i;:::-;28284:18:::1;:9:::0;28296:6:::1;28284:18;:::i;:::-;28270:11;:32:::0;28357:24:::1;28375:5;28357:13;6818:12:::0;;;6730:108;28357:13:::1;:17:::0;::::1;:24::i;:::-;28335:18;:9:::0;28347:6:::1;28335:18;:::i;:::-;:46;;28313:163;;;::::0;-1:-1:-1;;;28313:163:0;;7155:2:1;28313:163:0::1;::::0;::::1;7137:21:1::0;7194:2;7174:18;;;7167:30;7233:34;7213:18;;;7206:62;7304:34;7284:18;;;7277:62;-1:-1:-1;;;7355:19:1;;;7348:34;7399:19;;28313:163:0::1;6953:471:1::0;28313:163:0::1;28199:285:::0;:::o;17867:229::-;17040:6;;-1:-1:-1;;;;;17040:6:0;181:10;17187:23;17179:68;;;;-1:-1:-1;;;17179:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17970:22:0;::::1;17948:110;;;::::0;-1:-1:-1;;;17948:110:0;;7631:2:1;17948:110:0::1;::::0;::::1;7613:21:1::0;7670:2;7650:18;;;7643:30;7709:34;7689:18;;;7682:62;-1:-1:-1;;;7760:18:1;;;7753:36;7806:19;;17948:110:0::1;7429:402:1::0;17948:110:0::1;18069:19;18079:8;18069:9;:19::i;27531:219::-:0;-1:-1:-1;;;;;27663:11:0;;;;;;:7;:11;;;;;;;;27662:12;27654:45;;;;-1:-1:-1;;;27654:45:0;;8038:2:1;27654:45:0;;;8020:21:1;8077:2;8057:18;;;8050:30;-1:-1:-1;;;8096:18:1;;;8089:48;8154:18;;27654:45:0;7836:342:1;27654:45:0;27710:32;27725:4;27731:2;27735:6;27710:14;:32::i;:::-;27531:219;;;:::o;25827:1695::-;-1:-1:-1;;;;;25959:18:0;;25951:68;;;;-1:-1:-1;;;25951:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26038:16:0;;26030:64;;;;-1:-1:-1;;;26030:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26128:20:0;;;;;;:14;:20;;;;;;;;26127:21;:44;;;;-1:-1:-1;;;;;;26153:18:0;;;;;;:14;:18;;;;;;;;26152:19;26127:44;26105:116;;;;-1:-1:-1;;;26105:116:0;;9195:2:1;26105:116:0;;;9177:21:1;9234:2;9214:18;;;9207:30;-1:-1:-1;;;9253:18:1;;;9246:52;9315:18;;26105:116:0;8993:346:1;26105:116:0;-1:-1:-1;;;;;26255:13:0;;;;;;:7;:13;;;;;;;;26254:14;:30;;;;-1:-1:-1;;;;;;26273:11:0;;;;;;:7;:11;;;;;;;;26272:12;26254:30;26232:101;;;;-1:-1:-1;;;26232:101:0;;9546:2:1;26232:101:0;;;9528:21:1;9585:2;9565:18;;;9558:30;-1:-1:-1;;;9604:18:1;;;9597:51;9665:18;;26232:101:0;9344:345:1;26232:101:0;26348:11;26344:93;;26376:28;26392:4;26398:2;26402:1;26376:15;:28::i;26344:93::-;17040:6;;-1:-1:-1;;;;;26453:15:0;;;17040:6;;26453:15;;;;:32;;-1:-1:-1;17040:6:0;;-1:-1:-1;;;;;26472:13:0;;;17040:6;;26472:13;;26453:32;26449:305;;;-1:-1:-1;;;;;26507:23:0;;;;;;:19;:23;;;;;;;;26506:24;:43;;;;-1:-1:-1;26534:15:0;;-1:-1:-1;;;26534:15:0;;;;26506:43;26502:241;;;-1:-1:-1;;;;;26621:12:0;;;;;;:8;:12;;;;;;26636:15;-1:-1:-1;26613:39:0;;;;;;26705:21;;26686:41;;:15;:41;:::i;:::-;-1:-1:-1;;;;;26671:12:0;;;;;;:8;:12;;;;;:56;26502:241;-1:-1:-1;;;;;26771:25:0;;;;;;:19;:25;;;;;;;;26770:26;:54;;;;-1:-1:-1;;;;;;26801:23:0;;;;;;:19;:23;;;;;;;;26800:24;26770:54;26766:228;;;26877:11;;26867:6;:21;;26841:141;;;;-1:-1:-1;;;26841:141:0;;9896:2:1;26841:141:0;;;9878:21:1;9935:2;9915:18;;;9908:30;9974:34;9954:18;;;9947:62;10045:28;10025:18;;;10018:56;10091:19;;26841:141:0;9694:422:1;26841:141:0;-1:-1:-1;;;;;27096:25:0;;;;;;:19;:25;;;;;;;;27095:26;:54;;;;-1:-1:-1;;;;;;27126:23:0;;;;;;:19;:23;;;;;;;;27125:24;27095:54;27091:378;;;-1:-1:-1;;;;;27188:31:0;;;;;;:25;:31;;;;;;;;;:64;;-1:-1:-1;;;;;;27223:29:0;;;;;;:25;:29;;;;;;;;27188:64;27166:292;;;27287:12;27302:33;27331:3;27302:24;27313:12;;27302:6;:10;;:24;;;;:::i;:33::-;27287:48;-1:-1:-1;27363:16:0;:6;27287:48;27363:10;:16::i;:::-;27420:15;;27354:25;;-1:-1:-1;27398:44:0;;27414:4;;-1:-1:-1;;;;;27420:15:0;27437:4;27398:15;:44::i;:::-;27268:190;27166:292;27481:33;27497:4;27503:2;27507:6;27481:15;:33::i;18104:173::-;18179:6;;;-1:-1:-1;;;;;18196:17:0;;;-1:-1:-1;;;;;;18196:17:0;;;;;;;18229:40;;18179:6;;;18196:17;18179:6;;18229:40;;18160:16;;18229:40;18149:128;18104:173;:::o;21461:132::-;21519:7;21546:39;21550:1;21553;21546:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;21539:46;21461:132;-1:-1:-1;;;21461:132:0:o;14178:380::-;-1:-1:-1;;;;;14314:19:0;;14306:68;;;;-1:-1:-1;;;14306:68:0;;10323:2:1;14306:68:0;;;10305:21:1;10362:2;10342:18;;;10335:30;10401:34;10381:18;;;10374:62;-1:-1:-1;;;10452:18:1;;;10445:34;10496:19;;14306:68:0;10121:400:1;14306:68:0;-1:-1:-1;;;;;14393:21:0;;14385:68;;;;-1:-1:-1;;;14385:68:0;;10728:2:1;14385:68:0;;;10710:21:1;10767:2;10747:18;;;10740:30;10806:34;10786:18;;;10779:62;-1:-1:-1;;;10857:18:1;;;10850:32;10899:19;;14385:68:0;10526:398:1;14385:68:0;-1:-1:-1;;;;;14466:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;14518:32;;1828:25:1;;;14518:32:0;;1801:18:1;14518:32:0;;;;;;;14178:380;;;:::o;11320:770::-;-1:-1:-1;;;;;11460:20:0;;11452:70;;;;-1:-1:-1;;;11452:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11541:23:0;;11533:71;;;;-1:-1:-1;;;11533:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11701:17:0;;11677:21;11701:17;;;;;;;;;;;11751:23;;;;11729:111;;;;-1:-1:-1;;;11729:111:0;;11131:2:1;11729:111:0;;;11113:21:1;11170:2;11150:18;;;11143:30;11209:34;11189:18;;;11182:62;-1:-1:-1;;;11260:18:1;;;11253:36;11306:19;;11729:111:0;10929:402:1;11729:111:0;-1:-1:-1;;;;;11876:17:0;;;:9;:17;;;;;;;;;;;11896:22;;;11876:42;;11940:20;;;;;;;;:30;;11912:6;;11876:9;11940:30;;11912:6;;11940:30;:::i;:::-;;;;;;;;12005:9;-1:-1:-1;;;;;11988:35:0;11997:6;-1:-1:-1;;;;;11988:35:0;;12016:6;11988:35;;;;1828:25:1;;1816:2;1801:18;;1682:177;11988:35:0;;;;;;;;11441:649;11320:770;;;:::o;20514:471::-;20572:7;20817:6;20813:47;;-1:-1:-1;20847:1:0;20840:8;;20813:47;20872:9;20884:5;20888:1;20884;:5;:::i;:::-;20872:17;-1:-1:-1;20917:1:0;20908:5;20912:1;20872:17;20908:5;:::i;:::-;:10;20900:56;;;;-1:-1:-1;;;20900:56:0;;11760:2:1;20900:56:0;;;11742:21:1;11799:2;11779:18;;;11772:30;11838:34;11818:18;;;11811:62;-1:-1:-1;;;11889:18:1;;;11882:31;11930:19;;20900:56:0;11558:397:1;19590:136:0;19648:7;19675:43;19679:1;19682;19675:43;;;;;;;;;;;;;;;;;:3;:43::i;22089:312::-;22209:7;22244:12;22237:5;22229:28;;;;-1:-1:-1;;;22229:28:0;;;;;;;;:::i;:::-;-1:-1:-1;22268:9:0;22280:5;22284:1;22280;:5;:::i;:::-;22268:17;22089:312;-1:-1:-1;;;;;22089:312:0:o;20029:226::-;20149:7;20185:12;20177:6;;;;20169:29;;;;-1:-1:-1;;;20169:29:0;;;;;;;;:::i;:::-;-1:-1:-1;20209:9:0;20221:5;20225:1;20221;:5;:::i;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:131::-;-1:-1:-1;;;;;691:31:1;;681:42;;671:70;;737:1;734;727:12;752:315;820:6;828;881:2;869:9;860:7;856:23;852:32;849:52;;;897:1;894;887:12;849:52;936:9;923:23;955:31;980:5;955:31;:::i;:::-;1005:5;1057:2;1042:18;;;;1029:32;;-1:-1:-1;;;752:315:1:o;1264:160::-;1329:20;;1385:13;;1378:21;1368:32;;1358:60;;1414:1;1411;1404:12;1358:60;1264:160;;;:::o;1429:248::-;1494:6;1502;1555:2;1543:9;1534:7;1530:23;1526:32;1523:52;;;1571:1;1568;1561:12;1523:52;1594:26;1610:9;1594:26;:::i;1864:456::-;1941:6;1949;1957;2010:2;1998:9;1989:7;1985:23;1981:32;1978:52;;;2026:1;2023;2016:12;1978:52;2065:9;2052:23;2084:31;2109:5;2084:31;:::i;:::-;2134:5;-1:-1:-1;2191:2:1;2176:18;;2163:32;2204:33;2163:32;2204:33;:::i;:::-;1864:456;;2256:7;;-1:-1:-1;;;2310:2:1;2295:18;;;;2282:32;;1864:456::o;2325:247::-;2384:6;2437:2;2425:9;2416:7;2412:23;2408:32;2405:52;;;2453:1;2450;2443:12;2405:52;2492:9;2479:23;2511:31;2536:5;2511:31;:::i;3026:315::-;3091:6;3099;3152:2;3140:9;3131:7;3127:23;3123:32;3120:52;;;3168:1;3165;3158:12;3120:52;3207:9;3194:23;3226:31;3251:5;3226:31;:::i;:::-;3276:5;-1:-1:-1;3300:35:1;3331:2;3316:18;;3300:35;:::i;:::-;3290:45;;3026:315;;;;;:::o;3346:180::-;3405:6;3458:2;3446:9;3437:7;3433:23;3429:32;3426:52;;;3474:1;3471;3464:12;3426:52;-1:-1:-1;3497:23:1;;3346:180;-1:-1:-1;3346:180:1:o;3739:388::-;3807:6;3815;3868:2;3856:9;3847:7;3843:23;3839:32;3836:52;;;3884:1;3881;3874:12;3836:52;3923:9;3910:23;3942:31;3967:5;3942:31;:::i;:::-;3992:5;-1:-1:-1;4049:2:1;4034:18;;4021:32;4062:33;4021:32;4062:33;:::i;:::-;4114:7;4104:17;;;3739:388;;;;;:::o;4132:380::-;4211:1;4207:12;;;;4254;;;4275:61;;4329:4;4321:6;4317:17;4307:27;;4275:61;4382:2;4374:6;4371:14;4351:18;4348:38;4345:161;;;4428:10;4423:3;4419:20;4416:1;4409:31;4463:4;4460:1;4453:15;4491:4;4488:1;4481:15;4345:161;;4132:380;;;:::o;4517:356::-;4719:2;4701:21;;;4738:18;;;4731:30;4797:34;4792:2;4777:18;;4770:62;4864:2;4849:18;;4517:356::o;5287:127::-;5348:10;5343:3;5339:20;5336:1;5329:31;5379:4;5376:1;5369:15;5403:4;5400:1;5393:15;5419:128;5459:3;5490:1;5486:6;5483:1;5480:13;5477:39;;;5496:18;;:::i;:::-;-1:-1:-1;5532:9:1;;5419:128::o;6780:168::-;6820:7;6886:1;6882;6878:6;6874:14;6871:1;6868:21;6863:1;6856:9;6849:17;6845:45;6842:71;;;6893:18;;:::i;:::-;-1:-1:-1;6933:9:1;;6780:168::o;8183:401::-;8385:2;8367:21;;;8424:2;8404:18;;;8397:30;8463:34;8458:2;8443:18;;8436:62;-1:-1:-1;;;8529:2:1;8514:18;;8507:35;8574:3;8559:19;;8183:401::o;8589:399::-;8791:2;8773:21;;;8830:2;8810:18;;;8803:30;8869:34;8864:2;8849:18;;8842:62;-1:-1:-1;;;8935:2:1;8920:18;;8913:33;8978:3;8963:19;;8589:399::o;11336:217::-;11376:1;11402;11392:132;;11446:10;11441:3;11437:20;11434:1;11427:31;11481:4;11478:1;11471:15;11509:4;11506:1;11499:15;11392:132;-1:-1:-1;11538:9:1;;11336:217::o;11960:125::-;12000:4;12028:1;12025;12022:8;12019:34;;;12033:18;;:::i;:::-;-1:-1:-1;12070:9:1;;11960:125::o

Swarm Source

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