ETH Price: $3,156.98 (+1.80%)

Token

MAOPEPE (MAOPEPE)
 

Overview

Max Total Supply

8,000,000,000 MAOPEPE

Holders

176

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.88113718728538943 MAOPEPE

Value
$0.00
0x3Dc946651A8C12c80E89eD208Ed78c15d3918027
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:
MAOPEPE

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-18
*/

// SPDX-License-Identifier: MIT
// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/1642b6639b93e3b97be163d49827e1f56b81ca11/contracts/token/ERC20/IERC20.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/1642b6639b93e3b97be163d49827e1f56b81ca11/contracts/token/ERC20/extensions/IERC20Metadata.sol


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

pragma solidity ^0.8.0;


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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/1642b6639b93e3b97be163d49827e1f56b81ca11/contracts/utils/Context.sol


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

pragma solidity ^0.8.0;

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/1642b6639b93e3b97be163d49827e1f56b81ca11/contracts/token/ERC20/ERC20.sol


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

pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/1642b6639b93e3b97be163d49827e1f56b81ca11/contracts/access/Ownable.sol


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


// Smart Contract Written by CJOAT  V4.1.23-170623

/* Main Features:
    1. Blacklist/Whitelist addresses enrolment
    2. Restrictions on ALL transaction for blacklisted wallets
    2. Buy/Sell Tax for public & WL
    3. Linear reducing tax
    4. Max Holding Limit per wallet
    5. Speed and Size Optimization

- Token Name: MAOPEPE
- Token Symbol: $MAOPEPE
- Total Supply: 8,000,000,000 (8b) ; 8000000000000000000000000000
- LP = 3200000000 (3.2B) Tokens / 20 ETH ; 3200000000000000000000000000
- Initial tax %: 8/8
- Initial tax duration: 3min 
- WL sell tax %: 30%
- WL tax duration: 50 hours
- Maximum token hold per wallet (give in # of tokens):
- 80,000,000 (40m) - 0.5% of total supply ; 80000000000000000000000000
*/

pragma solidity ^0.8.0;


           
contract MAOPEPE is Ownable, ERC20 {
    bool public limittoggle;
    uint256 public maxHoldingAmount;
    address public taxCollector;
    bool public isWhitelisted;
    uint256 public NewWLTaxRate;
    uint256 public WLTaxTimeRemaining;
    uint256 public WLtaxDuration = 180000; // CHANGE WL TAX PERIOD
    uint256 public taxrate = 8; // CHANGE PUBLIC TAX RATE
    uint256 public WLtaxrate = 30; // CHANGE WL STARTING TAX RATE; Current at 50%
    uint256 public taxDuration = 180; // CHANGE PUBLIC TAX PERIOD
    address public uniswapV2Pair;
    uint256 public tradingStartTimeStamp;
    
    mapping(address => bool) public blacklists;
    mapping(address => bool) public whitelists;
    //WL wallets list

    constructor(uint256 _totalSupply, address _taxCollector) ERC20("MAOPEPE", "MAOPEPE") { //CHANGE TOKEN NAME AND SYMBOL
        _mint(msg.sender, _totalSupply);
        taxCollector = _taxCollector;
    }

    function burn(uint256 value) external {
        _burn(msg.sender, value);
    }

    function airdropTokens(address[] calldata recipients, uint256[] calldata amounts) external onlyOwner   {
        require(recipients.length == amounts.length, "Mismatched input arrays");

        for (uint256 i = 0; i < recipients.length; i++) {
            _transfer(owner(), recipients[i], amounts[i]);
        }
    }

    function MaxHoldingCapacity(bool _limittoggle, uint256 _maxHoldingAmount) external onlyOwner   {
        limittoggle = _limittoggle;
        maxHoldingAmount = _maxHoldingAmount;
    }

    function setTaxSettings(uint256 _taxDuration, uint256 _WLtaxDuration, uint256 _taxrate, uint256 _WLtaxrate) external onlyOwner  {
    WLtaxDuration = _WLtaxDuration;
    taxDuration = _taxDuration;
    WLtaxrate = _WLtaxrate;
    taxrate = _taxrate;
    }
    
    //array input into blacklist for faster processing
    function blacklist(address[] calldata _address, bool _isBlacklisting) external onlyOwner   {
        for (uint256 i = 0; i < _address.length; i++) {
            blacklists[_address[i]] = _isBlacklisting;
        }
    }

    function whitelist(address[] calldata _address, bool _isWhitelisting) external onlyOwner   {
        for (uint256 i = 0; i < _address.length; i++) {
            whitelists[_address[i]] = _isWhitelisting;
        }
    }

    function setUniswapV2Pair(address _uniswapV2Pair) external onlyOwner   {
        require(tradingStartTimeStamp == 0, "Can only set pair once.");
        uniswapV2Pair = _uniswapV2Pair;
        tradingStartTimeStamp = block.timestamp;
        
    }
 
    function _TaxFunction(address from, address to, uint256 amount, uint256 taxRate) internal {
        uint256 tax = (amount * taxRate) / 100; 
        uint256 aftTax = amount - tax; 
        super._transfer(from, taxCollector, tax);
        super._transfer(from, to, aftTax);
    }
    
    function setNewWLtaxrate(uint256 _NewWLtaxrate) external onlyOwner {
    NewWLTaxRate = _NewWLtaxrate;
    }

    function _transfer(
        address from, 
        address to, 
        uint256 amount
     ) internal virtual override  {
         // check if interacting with whitelisted wallet
        isWhitelisted = whitelists[to]||whitelists[from];
         
        //Initial tax
        if(!isWhitelisted){//public retail
        //block.timestamp <= taxResetTimeStamp + taxDuration (REMOVED FOR SIMPLICITY)
            if ((block.timestamp <= tradingStartTimeStamp + taxDuration) && (from == uniswapV2Pair || to == uniswapV2Pair)) { // check if within first 10 mins of LP going live
            _TaxFunction(from, to, amount, taxrate);
            } else {
                super._transfer(from,to,amount);
                } 
        }                 
        else if (isWhitelisted){
            if (block.timestamp > tradingStartTimeStamp + WLtaxDuration) {
                WLTaxTimeRemaining = 0;
                NewWLTaxRate = 0; 
            } else {
                WLTaxTimeRemaining = (tradingStartTimeStamp + WLtaxDuration) - block.timestamp;
                NewWLTaxRate = WLtaxrate * WLTaxTimeRemaining / WLtaxDuration; // Linear reduction in tax 
            }
            // Ensure the tax rate doesn't go below 0
            if (NewWLTaxRate > WLtaxrate) {
                NewWLTaxRate = WLtaxrate;
            }
            if (block.timestamp <= tradingStartTimeStamp + WLtaxDuration && to == uniswapV2Pair) {
                _TaxFunction(from, to, amount, NewWLTaxRate);  // Whitelisted seller within the first 50 hours  
            } else if (block.timestamp <= tradingStartTimeStamp + taxDuration && from == uniswapV2Pair) {
                _TaxFunction(from, to, amount, taxrate);  // Buyer within the first 10 minutes          
            } 
            else if (NewWLTaxRate == 0) {
                super._transfer(from, to, amount);  // No tax when NewWLTaxRate is zero
            }
            else if (to != uniswapV2Pair && whitelists[from] ) {
                _TaxFunction(from, to, amount, NewWLTaxRate);  // Whitelisted transfer to non-Uniswap address
            } else {
                super._transfer(from, to, amount);  // No tax
            }
        } else {
            super._transfer(from, to, amount);  // No tax
        }
        
     }
  
    
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) override internal virtual  {      
        require(!blacklists[to] && !blacklists[from], "Blacklisted");

        if (uniswapV2Pair == address(0) && from != address(0)) {
            require(from == owner(), "trading is not started");
            return;
        }

        if (limittoggle && from == uniswapV2Pair) {
            require(super.balanceOf(to) + amount <= maxHoldingAmount, "Forbid");
        }

    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_totalSupply","type":"uint256"},{"internalType":"address","name":"_taxCollector","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":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"bool","name":"_limittoggle","type":"bool"},{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"}],"name":"MaxHoldingCapacity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"NewWLTaxRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WLTaxTimeRemaining","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WLtaxDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WLtaxrate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"airdropTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_address","type":"address[]"},{"internalType":"bool","name":"_isBlacklisting","type":"bool"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limittoggle","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","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":"uint256","name":"_NewWLtaxrate","type":"uint256"}],"name":"setNewWLtaxrate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_taxDuration","type":"uint256"},{"internalType":"uint256","name":"_WLtaxDuration","type":"uint256"},{"internalType":"uint256","name":"_taxrate","type":"uint256"},{"internalType":"uint256","name":"_WLtaxrate","type":"uint256"}],"name":"setTaxSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_uniswapV2Pair","type":"address"}],"name":"setUniswapV2Pair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxCollector","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxrate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingStartTimeStamp","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":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_address","type":"address[]"},{"internalType":"bool","name":"_isWhitelisting","type":"bool"}],"name":"whitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

60806040526202bf20600b556008600c55601e600d5560b4600e553480156200002757600080fd5b5060405162001c4938038062001c498339810160408190526200004a91620003c2565b604051806040016040528060078152602001664d414f5045504560c81b815250604051806040016040528060078152602001664d414f5045504560c81b815250620000a46200009e620000fd60201b60201c565b62000101565b6004620000b28382620004a5565b506005620000c18282620004a5565b505050620000d633836200015160201b60201c565b600880546001600160a01b0319166001600160a01b03929092169190911790555062000599565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620001ad5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b620001bb6000838362000228565b8060036000828254620001cf919062000571565b90915550506001600160a01b0382166000818152600160209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b03821660009081526011602052604090205460ff161580156200026b57506001600160a01b03831660009081526011602052604090205460ff16155b620002a75760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b6044820152606401620001a4565b600f546001600160a01b0316158015620002c957506001600160a01b03831615155b1562000333576000546001600160a01b038481169116146200032e5760405162461bcd60e51b815260206004820152601660248201527f74726164696e67206973206e6f742073746172746564000000000000000000006044820152606401620001a4565b505050565b60065460ff168015620003535750600f546001600160a01b038481169116145b156200032e57600754816200037d846001600160a01b031660009081526001602052604090205490565b62000389919062000571565b11156200032e5760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b6044820152606401620001a4565b60008060408385031215620003d657600080fd5b825160208401519092506001600160a01b0381168114620003f657600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200042c57607f821691505b6020821081036200044d57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200032e57600081815260208120601f850160051c810160208610156200047c5750805b601f850160051c820191505b818110156200049d5782815560010162000488565b505050505050565b81516001600160401b03811115620004c157620004c162000401565b620004d981620004d2845462000417565b8462000453565b602080601f831160018114620005115760008415620004f85750858301515b600019600386901b1c1916600185901b1785556200049d565b600085815260208120601f198616915b82811015620005425788860151825594840194600190910190840162000521565b5085821015620005615787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b808201808211156200059357634e487b7160e01b600052601160045260246000fd5b92915050565b6116a080620005a96000396000f3fe608060405234801561001057600080fd5b506004361061021b5760003560e01c806370a0823111610125578063b368cd20116100ad578063d1dac1701161007c578063d1dac1701461047a578063d631069c1461048d578063dd62ed3e14610496578063f08e9671146104a9578063f2fde38b146104b257600080fd5b8063b368cd2014610442578063bea1dcf81461044b578063c997eb8d1461045e578063ce5d93451461047157600080fd5b80638da5cb5b116100f45780638da5cb5b146103f057806395d89b4114610401578063a29a608914610409578063a457c2d71461041c578063a9059cbb1461042f57600080fd5b806370a08231146103ad578063715018a6146103d657806385eae0bf146103de57806389f9a1d3146103e757600080fd5b80631e7be210116101a857806342966c681161017757806342966c681461033b57806349bd5a5e1461034e578063597eab6414610379578063611b409514610386578063706f69371461039a57600080fd5b80631e7be210146102e357806323b872dd14610306578063313ce56714610319578063395093511461032857600080fd5b806306678023116101ef578063066780231461026d57806306fdde0314610280578063095ea7b31461029557806316c02129146102b857806318160ddd146102db57600080fd5b806223e7981461022057806301b38af51461023c578063055dc6e2146102515780630620e61714610264575b600080fd5b61022960095481565b6040519081526020015b60405180910390f35b61024f61024a366004611345565b6104c5565b005b61024f61025f366004611399565b610544565b610229600a5481565b61024f61027b3660046113cb565b610560565b61028861056d565b60405161023391906113e4565b6102a86102a3366004611449565b6105ff565b6040519015158152602001610233565b6102a86102c6366004611473565b60116020526000908152604090205460ff1681565b600354610229565b6102a86102f1366004611473565b60126020526000908152604090205460ff1681565b6102a8610314366004611495565b610619565b60405160128152602001610233565b6102a8610336366004611449565b61063d565b61024f6103493660046113cb565b61065f565b600f54610361906001600160a01b031681565b6040516001600160a01b039091168152602001610233565b6006546102a89060ff1681565b6008546102a890600160a01b900460ff1681565b61024f6103a83660046114d1565b61066c565b6102296103bb366004611473565b6001600160a01b031660009081526001602052604090205490565b61024f610746565b610229600d5481565b61022960075481565b6000546001600160a01b0316610361565b61028861075a565b61024f610417366004611473565b610769565b6102a861042a366004611449565b6107e7565b6102a861043d366004611449565b610862565b610229600e5481565b600854610361906001600160a01b031681565b61024f61046c366004611345565b610870565b610229600b5481565b61024f61048836600461153d565b6108e9565b61022960105481565b6102296104a4366004611559565b610908565b610229600c5481565b61024f6104c0366004611473565b610933565b6104cd6109a9565b60005b8281101561053e5781601260008686858181106104ef576104ef61158c565b90506020020160208101906105049190611473565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610536816115b8565b9150506104d0565b50505050565b61054c6109a9565b600b92909255600e92909255600d55600c55565b6105686109a9565b600955565b60606004805461057c906115d1565b80601f01602080910402602001604051908101604052809291908181526020018280546105a8906115d1565b80156105f55780601f106105ca576101008083540402835291602001916105f5565b820191906000526020600020905b8154815290600101906020018083116105d857829003601f168201915b5050505050905090565b60003361060d818585610a03565b60019150505b92915050565b600033610627858285610b27565b610632858585610b9b565b506001949350505050565b60003361060d8185856106508383610908565b61065a919061160b565b610a03565b6106693382610dca565b50565b6106746109a9565b8281146106c85760405162461bcd60e51b815260206004820152601760248201527f4d69736d61746368656420696e7075742061727261797300000000000000000060448201526064015b60405180910390fd5b60005b8381101561073f5761072d6106e86000546001600160a01b031690565b8686848181106106fa576106fa61158c565b905060200201602081019061070f9190611473565b8585858181106107215761072161158c565b90506020020135610b9b565b80610737816115b8565b9150506106cb565b5050505050565b61074e6109a9565b6107586000610f0a565b565b60606005805461057c906115d1565b6107716109a9565b601054156107c15760405162461bcd60e51b815260206004820152601760248201527f43616e206f6e6c79207365742070616972206f6e63652e00000000000000000060448201526064016106bf565b600f80546001600160a01b0319166001600160a01b039290921691909117905542601055565b600033816107f58286610908565b9050838110156108555760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016106bf565b6106328286868403610a03565b60003361060d818585610b9b565b6108786109a9565b60005b8281101561053e57816011600086868581811061089a5761089a61158c565b90506020020160208101906108af9190611473565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806108e1816115b8565b91505061087b565b6108f16109a9565b6006805460ff191692151592909217909155600755565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61093b6109a9565b6001600160a01b0381166109a05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106bf565b61066981610f0a565b6000546001600160a01b031633146107585760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106bf565b6001600160a01b038316610a655760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016106bf565b6001600160a01b038216610ac65760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016106bf565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610b338484610908565b9050600019811461053e5781811015610b8e5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016106bf565b61053e8484848403610a03565b6001600160a01b03821660009081526012602052604090205460ff1680610bda57506001600160a01b03831660009081526012602052604090205460ff165b6008805460ff60a01b1916600160a01b9215158302179081905560ff91900416610c6457600e54601054610c0e919061160b565b4211158015610c415750600f546001600160a01b0384811691161480610c415750600f546001600160a01b038381169116145b15610c5957610c54838383600c54610f5a565b505050565b610c54838383610fae565b600854600160a01b900460ff1615610c5957600b54601054610c86919061160b565b421115610c9c576000600a819055600955610cdb565b42600b54601054610cad919061160b565b610cb7919061161e565b600a819055600b54600d549091610ccd91611631565b610cd79190611648565b6009555b600d546009541115610cee57600d546009555b600b54601054610cfe919061160b565b4211158015610d1a5750600f546001600160a01b038381169116145b15610d2d57610c54838383600954610f5a565b600e54601054610d3d919061160b565b4211158015610d595750600f546001600160a01b038481169116145b15610d6c57610c54838383600c54610f5a565b600954600003610d8157610c54838383610fae565b600f546001600160a01b03838116911614801590610db757506001600160a01b03831660009081526012602052604090205460ff165b15610c5957610c54838383600954610f5a565b6001600160a01b038216610e2a5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016106bf565b610e3682600083611164565b6001600160a01b03821660009081526001602052604090205481811015610eaa5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016106bf565b6001600160a01b03831660008181526001602090815260408083208686039055600380548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006064610f688385611631565b610f729190611648565b90506000610f80828561161e565b600854909150610f9b9087906001600160a01b031684610fae565b610fa6868683610fae565b505050505050565b6001600160a01b0383166110125760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016106bf565b6001600160a01b0382166110745760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016106bf565b61107f838383611164565b6001600160a01b038316600090815260016020526040902054818110156110f75760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016106bf565b6001600160a01b0380851660008181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906111579086815260200190565b60405180910390a361053e565b6001600160a01b03821660009081526011602052604090205460ff161580156111a657506001600160a01b03831660009081526011602052604090205460ff16155b6111e05760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b60448201526064016106bf565b600f546001600160a01b031615801561120157506001600160a01b03831615155b1561125c576000546001600160a01b03848116911614610c545760405162461bcd60e51b81526020600482015260166024820152751d1c98591a5b99c81a5cc81b9bdd081cdd185c9d195960521b60448201526064016106bf565b60065460ff16801561127b5750600f546001600160a01b038481169116145b15610c5457600754816112a3846001600160a01b031660009081526001602052604090205490565b6112ad919061160b565b1115610c545760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b60448201526064016106bf565b60008083601f8401126112f657600080fd5b50813567ffffffffffffffff81111561130e57600080fd5b6020830191508360208260051b850101111561132957600080fd5b9250929050565b8035801515811461134057600080fd5b919050565b60008060006040848603121561135a57600080fd5b833567ffffffffffffffff81111561137157600080fd5b61137d868287016112e4565b9094509250611390905060208501611330565b90509250925092565b600080600080608085870312156113af57600080fd5b5050823594602084013594506040840135936060013592509050565b6000602082840312156113dd57600080fd5b5035919050565b600060208083528351808285015260005b81811015611411578581018301518582016040015282016113f5565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461134057600080fd5b6000806040838503121561145c57600080fd5b61146583611432565b946020939093013593505050565b60006020828403121561148557600080fd5b61148e82611432565b9392505050565b6000806000606084860312156114aa57600080fd5b6114b384611432565b92506114c160208501611432565b9150604084013590509250925092565b600080600080604085870312156114e757600080fd5b843567ffffffffffffffff808211156114ff57600080fd5b61150b888389016112e4565b9096509450602087013591508082111561152457600080fd5b50611531878288016112e4565b95989497509550505050565b6000806040838503121561155057600080fd5b61146583611330565b6000806040838503121561156c57600080fd5b61157583611432565b915061158360208401611432565b90509250929050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600182016115ca576115ca6115a2565b5060010190565b600181811c908216806115e557607f821691505b60208210810361160557634e487b7160e01b600052602260045260246000fd5b50919050565b80820180821115610613576106136115a2565b81810381811115610613576106136115a2565b8082028115828204841417610613576106136115a2565b60008261166557634e487b7160e01b600052601260045260246000fd5b50049056fea2646970667358221220571398bfd01722575482cec9f4927bc9eb36b7416909bf17ae2f4ef93902458c64736f6c63430008130033000000000000000000000000000000000000000019d971e4fe8401e740000000000000000000000000000000ebfafaf57dce10aecb212899b4e46149aaeb1cd6

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061021b5760003560e01c806370a0823111610125578063b368cd20116100ad578063d1dac1701161007c578063d1dac1701461047a578063d631069c1461048d578063dd62ed3e14610496578063f08e9671146104a9578063f2fde38b146104b257600080fd5b8063b368cd2014610442578063bea1dcf81461044b578063c997eb8d1461045e578063ce5d93451461047157600080fd5b80638da5cb5b116100f45780638da5cb5b146103f057806395d89b4114610401578063a29a608914610409578063a457c2d71461041c578063a9059cbb1461042f57600080fd5b806370a08231146103ad578063715018a6146103d657806385eae0bf146103de57806389f9a1d3146103e757600080fd5b80631e7be210116101a857806342966c681161017757806342966c681461033b57806349bd5a5e1461034e578063597eab6414610379578063611b409514610386578063706f69371461039a57600080fd5b80631e7be210146102e357806323b872dd14610306578063313ce56714610319578063395093511461032857600080fd5b806306678023116101ef578063066780231461026d57806306fdde0314610280578063095ea7b31461029557806316c02129146102b857806318160ddd146102db57600080fd5b806223e7981461022057806301b38af51461023c578063055dc6e2146102515780630620e61714610264575b600080fd5b61022960095481565b6040519081526020015b60405180910390f35b61024f61024a366004611345565b6104c5565b005b61024f61025f366004611399565b610544565b610229600a5481565b61024f61027b3660046113cb565b610560565b61028861056d565b60405161023391906113e4565b6102a86102a3366004611449565b6105ff565b6040519015158152602001610233565b6102a86102c6366004611473565b60116020526000908152604090205460ff1681565b600354610229565b6102a86102f1366004611473565b60126020526000908152604090205460ff1681565b6102a8610314366004611495565b610619565b60405160128152602001610233565b6102a8610336366004611449565b61063d565b61024f6103493660046113cb565b61065f565b600f54610361906001600160a01b031681565b6040516001600160a01b039091168152602001610233565b6006546102a89060ff1681565b6008546102a890600160a01b900460ff1681565b61024f6103a83660046114d1565b61066c565b6102296103bb366004611473565b6001600160a01b031660009081526001602052604090205490565b61024f610746565b610229600d5481565b61022960075481565b6000546001600160a01b0316610361565b61028861075a565b61024f610417366004611473565b610769565b6102a861042a366004611449565b6107e7565b6102a861043d366004611449565b610862565b610229600e5481565b600854610361906001600160a01b031681565b61024f61046c366004611345565b610870565b610229600b5481565b61024f61048836600461153d565b6108e9565b61022960105481565b6102296104a4366004611559565b610908565b610229600c5481565b61024f6104c0366004611473565b610933565b6104cd6109a9565b60005b8281101561053e5781601260008686858181106104ef576104ef61158c565b90506020020160208101906105049190611473565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610536816115b8565b9150506104d0565b50505050565b61054c6109a9565b600b92909255600e92909255600d55600c55565b6105686109a9565b600955565b60606004805461057c906115d1565b80601f01602080910402602001604051908101604052809291908181526020018280546105a8906115d1565b80156105f55780601f106105ca576101008083540402835291602001916105f5565b820191906000526020600020905b8154815290600101906020018083116105d857829003601f168201915b5050505050905090565b60003361060d818585610a03565b60019150505b92915050565b600033610627858285610b27565b610632858585610b9b565b506001949350505050565b60003361060d8185856106508383610908565b61065a919061160b565b610a03565b6106693382610dca565b50565b6106746109a9565b8281146106c85760405162461bcd60e51b815260206004820152601760248201527f4d69736d61746368656420696e7075742061727261797300000000000000000060448201526064015b60405180910390fd5b60005b8381101561073f5761072d6106e86000546001600160a01b031690565b8686848181106106fa576106fa61158c565b905060200201602081019061070f9190611473565b8585858181106107215761072161158c565b90506020020135610b9b565b80610737816115b8565b9150506106cb565b5050505050565b61074e6109a9565b6107586000610f0a565b565b60606005805461057c906115d1565b6107716109a9565b601054156107c15760405162461bcd60e51b815260206004820152601760248201527f43616e206f6e6c79207365742070616972206f6e63652e00000000000000000060448201526064016106bf565b600f80546001600160a01b0319166001600160a01b039290921691909117905542601055565b600033816107f58286610908565b9050838110156108555760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016106bf565b6106328286868403610a03565b60003361060d818585610b9b565b6108786109a9565b60005b8281101561053e57816011600086868581811061089a5761089a61158c565b90506020020160208101906108af9190611473565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806108e1816115b8565b91505061087b565b6108f16109a9565b6006805460ff191692151592909217909155600755565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61093b6109a9565b6001600160a01b0381166109a05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106bf565b61066981610f0a565b6000546001600160a01b031633146107585760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106bf565b6001600160a01b038316610a655760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016106bf565b6001600160a01b038216610ac65760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016106bf565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610b338484610908565b9050600019811461053e5781811015610b8e5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016106bf565b61053e8484848403610a03565b6001600160a01b03821660009081526012602052604090205460ff1680610bda57506001600160a01b03831660009081526012602052604090205460ff165b6008805460ff60a01b1916600160a01b9215158302179081905560ff91900416610c6457600e54601054610c0e919061160b565b4211158015610c415750600f546001600160a01b0384811691161480610c415750600f546001600160a01b038381169116145b15610c5957610c54838383600c54610f5a565b505050565b610c54838383610fae565b600854600160a01b900460ff1615610c5957600b54601054610c86919061160b565b421115610c9c576000600a819055600955610cdb565b42600b54601054610cad919061160b565b610cb7919061161e565b600a819055600b54600d549091610ccd91611631565b610cd79190611648565b6009555b600d546009541115610cee57600d546009555b600b54601054610cfe919061160b565b4211158015610d1a5750600f546001600160a01b038381169116145b15610d2d57610c54838383600954610f5a565b600e54601054610d3d919061160b565b4211158015610d595750600f546001600160a01b038481169116145b15610d6c57610c54838383600c54610f5a565b600954600003610d8157610c54838383610fae565b600f546001600160a01b03838116911614801590610db757506001600160a01b03831660009081526012602052604090205460ff165b15610c5957610c54838383600954610f5a565b6001600160a01b038216610e2a5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016106bf565b610e3682600083611164565b6001600160a01b03821660009081526001602052604090205481811015610eaa5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016106bf565b6001600160a01b03831660008181526001602090815260408083208686039055600380548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006064610f688385611631565b610f729190611648565b90506000610f80828561161e565b600854909150610f9b9087906001600160a01b031684610fae565b610fa6868683610fae565b505050505050565b6001600160a01b0383166110125760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016106bf565b6001600160a01b0382166110745760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016106bf565b61107f838383611164565b6001600160a01b038316600090815260016020526040902054818110156110f75760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016106bf565b6001600160a01b0380851660008181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906111579086815260200190565b60405180910390a361053e565b6001600160a01b03821660009081526011602052604090205460ff161580156111a657506001600160a01b03831660009081526011602052604090205460ff16155b6111e05760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b60448201526064016106bf565b600f546001600160a01b031615801561120157506001600160a01b03831615155b1561125c576000546001600160a01b03848116911614610c545760405162461bcd60e51b81526020600482015260166024820152751d1c98591a5b99c81a5cc81b9bdd081cdd185c9d195960521b60448201526064016106bf565b60065460ff16801561127b5750600f546001600160a01b038481169116145b15610c5457600754816112a3846001600160a01b031660009081526001602052604090205490565b6112ad919061160b565b1115610c545760405162461bcd60e51b8152602060048201526006602482015265119bdc989a5960d21b60448201526064016106bf565b60008083601f8401126112f657600080fd5b50813567ffffffffffffffff81111561130e57600080fd5b6020830191508360208260051b850101111561132957600080fd5b9250929050565b8035801515811461134057600080fd5b919050565b60008060006040848603121561135a57600080fd5b833567ffffffffffffffff81111561137157600080fd5b61137d868287016112e4565b9094509250611390905060208501611330565b90509250925092565b600080600080608085870312156113af57600080fd5b5050823594602084013594506040840135936060013592509050565b6000602082840312156113dd57600080fd5b5035919050565b600060208083528351808285015260005b81811015611411578581018301518582016040015282016113f5565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461134057600080fd5b6000806040838503121561145c57600080fd5b61146583611432565b946020939093013593505050565b60006020828403121561148557600080fd5b61148e82611432565b9392505050565b6000806000606084860312156114aa57600080fd5b6114b384611432565b92506114c160208501611432565b9150604084013590509250925092565b600080600080604085870312156114e757600080fd5b843567ffffffffffffffff808211156114ff57600080fd5b61150b888389016112e4565b9096509450602087013591508082111561152457600080fd5b50611531878288016112e4565b95989497509550505050565b6000806040838503121561155057600080fd5b61146583611330565b6000806040838503121561156c57600080fd5b61157583611432565b915061158360208401611432565b90509250929050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600182016115ca576115ca6115a2565b5060010190565b600181811c908216806115e557607f821691505b60208210810361160557634e487b7160e01b600052602260045260246000fd5b50919050565b80820180821115610613576106136115a2565b81810381811115610613576106136115a2565b8082028115828204841417610613576106136115a2565b60008261166557634e487b7160e01b600052601260045260246000fd5b50049056fea2646970667358221220571398bfd01722575482cec9f4927bc9eb36b7416909bf17ae2f4ef93902458c64736f6c63430008130033

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

000000000000000000000000000000000000000019d971e4fe8401e740000000000000000000000000000000ebfafaf57dce10aecb212899b4e46149aaeb1cd6

-----Decoded View---------------
Arg [0] : _totalSupply (uint256): 8000000000000000000000000000
Arg [1] : _taxCollector (address): 0xEBfaFaf57dcE10aecB212899b4e46149AaEB1cd6

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000019d971e4fe8401e740000000
Arg [1] : 000000000000000000000000ebfafaf57dce10aecb212899b4e46149aaeb1cd6


Deployed Bytecode Sourcemap

21601:5901:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21777:27;;;;;;;;;160:25:1;;;148:2;133:18;21777:27:0;;;;;;;;23724:223;;;;;;:::i;:::-;;:::i;:::-;;23165:260;;;;;;:::i;:::-;;:::i;21811:33::-;;;;;;24513:110;;;;;;:::i;:::-;;:::i;7002:100::-;;;:::i;:::-;;;;;;;:::i;9362:201::-;;;;;;:::i;:::-;;:::i;:::-;;;2973:14:1;;2966:22;2948:41;;2936:2;2921:18;9362:201:0;2808:187:1;22212:42:0;;;;;;:::i;:::-;;;;;;;;;;;;;;;;8131:108;8219:12;;8131:108;;22261:42;;;;;;:::i;:::-;;;;;;;;;;;;;;;;10143:261;;;;;;:::i;:::-;;:::i;7973:93::-;;;8056:2;3666:36:1;;3654:2;3639:18;7973:93:0;3524:184:1;10813:238:0;;;;;;:::i;:::-;;:::i;22548:81::-;;;;;;:::i;:::-;;:::i;22128:28::-;;;;;-1:-1:-1;;;;;22128:28:0;;;;;;-1:-1:-1;;;;;3877:32:1;;;3859:51;;3847:2;3832:18;22128:28:0;3713:203:1;21643:23:0;;;;;;;;;21745:25;;;;;-1:-1:-1;;;21745:25:0;;;;;;22637:325;;;;;;:::i;:::-;;:::i;8302:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;8403:18:0;8376:7;8403:18;;;:9;:18;;;;;;;8302:127;19958:103;;;:::i;21978:29::-;;;;;;21673:31;;;;;;19317:87;19363:7;19390:6;-1:-1:-1;;;;;19390:6:0;19317:87;;7221:104;;;:::i;23955:253::-;;;;;;:::i;:::-;;:::i;11554:436::-;;;;;;:::i;:::-;;:::i;8635:193::-;;;;;;:::i;:::-;;:::i;22061:32::-;;;;;;21711:27;;;;;-1:-1:-1;;;;;21711:27:0;;;23493:223;;;;;;:::i;:::-;;:::i;21851:37::-;;;;;;22970:187;;;;;;:::i;:::-;;:::i;22163:36::-;;;;;;8891:151;;;;;;:::i;:::-;;:::i;21919:26::-;;;;;;20216:201;;;;;;:::i;:::-;;:::i;23724:223::-;19203:13;:11;:13::i;:::-;23831:9:::1;23826:114;23846:19:::0;;::::1;23826:114;;;23913:15;23887:10;:23;23898:8;;23907:1;23898:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;23887:23:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;23887:23:0;:41;;-1:-1:-1;;23887:41:0::1;::::0;::::1;;::::0;;;::::1;::::0;;23867:3;::::1;::::0;::::1;:::i;:::-;;;;23826:114;;;;23724:223:::0;;;:::o;23165:260::-;19203:13;:11;:13::i;:::-;23300::::1;:30:::0;;;;23337:11:::1;:26:::0;;;;23370:9:::1;:22:::0;23399:7:::1;:18:::0;23165:260::o;24513:110::-;19203:13;:11;:13::i;:::-;24587:12:::1;:28:::0;24513:110::o;7002:100::-;7056:13;7089:5;7082:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7002:100;:::o;9362:201::-;9445:4;4633:10;9501:32;4633:10;9517:7;9526:6;9501:8;:32::i;:::-;9551:4;9544:11;;;9362:201;;;;;:::o;10143:261::-;10240:4;4633:10;10298:38;10314:4;4633:10;10329:6;10298:15;:38::i;:::-;10347:27;10357:4;10363:2;10367:6;10347:9;:27::i;:::-;-1:-1:-1;10392:4:0;;10143:261;-1:-1:-1;;;;10143:261:0:o;10813:238::-;10901:4;4633:10;10957:64;4633:10;10973:7;11010:10;10982:25;4633:10;10973:7;10982:9;:25::i;:::-;:38;;;;:::i;:::-;10957:8;:64::i;22548:81::-;22597:24;22603:10;22615:5;22597;:24::i;:::-;22548:81;:::o;22637:325::-;19203:13;:11;:13::i;:::-;22759:35;;::::1;22751:71;;;::::0;-1:-1:-1;;;22751:71:0;;6338:2:1;22751:71:0::1;::::0;::::1;6320:21:1::0;6377:2;6357:18;;;6350:30;6416:25;6396:18;;;6389:53;6459:18;;22751:71:0::1;;;;;;;;;22840:9;22835:120;22855:21:::0;;::::1;22835:120;;;22898:45;22908:7;19363::::0;19390:6;-1:-1:-1;;;;;19390:6:0;;19317:87;22908:7:::1;22917:10;;22928:1;22917:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;22932:7;;22940:1;22932:10;;;;;;;:::i;:::-;;;;;;;22898:9;:45::i;:::-;22878:3:::0;::::1;::::0;::::1;:::i;:::-;;;;22835:120;;;;22637:325:::0;;;;:::o;19958:103::-;19203:13;:11;:13::i;:::-;20023:30:::1;20050:1;20023:18;:30::i;:::-;19958:103::o:0;7221:104::-;7277:13;7310:7;7303:14;;;;;:::i;23955:253::-;19203:13;:11;:13::i;:::-;24045:21:::1;::::0;:26;24037:62:::1;;;::::0;-1:-1:-1;;;24037:62:0;;6690:2:1;24037:62:0::1;::::0;::::1;6672:21:1::0;6729:2;6709:18;;;6702:30;6768:25;6748:18;;;6741:53;6811:18;;24037:62:0::1;6488:347:1::0;24037:62:0::1;24110:13;:30:::0;;-1:-1:-1;;;;;;24110:30:0::1;-1:-1:-1::0;;;;;24110:30:0;;;::::1;::::0;;;::::1;::::0;;24175:15:::1;24151:21;:39:::0;23955:253::o;11554:436::-;11647:4;4633:10;11647:4;11730:25;4633:10;11747:7;11730:9;:25::i;:::-;11703:52;;11794:15;11774:16;:35;;11766:85;;;;-1:-1:-1;;;11766:85:0;;7042:2:1;11766:85:0;;;7024:21:1;7081:2;7061:18;;;7054:30;7120:34;7100:18;;;7093:62;-1:-1:-1;;;7171:18:1;;;7164:35;7216:19;;11766:85:0;6840:401:1;11766:85:0;11887:60;11896:5;11903:7;11931:15;11912:16;:34;11887:8;:60::i;8635:193::-;8714:4;4633:10;8770:28;4633:10;8787:2;8791:6;8770:9;:28::i;23493:223::-;19203:13;:11;:13::i;:::-;23600:9:::1;23595:114;23615:19:::0;;::::1;23595:114;;;23682:15;23656:10;:23;23667:8;;23676:1;23667:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;23656:23:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;23656:23:0;:41;;-1:-1:-1;;23656:41:0::1;::::0;::::1;;::::0;;;::::1;::::0;;23636:3;::::1;::::0;::::1;:::i;:::-;;;;23595:114;;22970:187:::0;19203:13;:11;:13::i;:::-;23076:11:::1;:26:::0;;-1:-1:-1;;23076:26:0::1;::::0;::::1;;::::0;;;::::1;::::0;;;23113:16:::1;:36:::0;22970:187::o;8891:151::-;-1:-1:-1;;;;;9007:18:0;;;8980:7;9007:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8891:151::o;20216:201::-;19203:13;:11;:13::i;:::-;-1:-1:-1;;;;;20305:22:0;::::1;20297:73;;;::::0;-1:-1:-1;;;20297:73:0;;7448:2:1;20297:73:0::1;::::0;::::1;7430:21:1::0;7487:2;7467:18;;;7460:30;7526:34;7506:18;;;7499:62;-1:-1:-1;;;7577:18:1;;;7570:36;7623:19;;20297:73:0::1;7246:402:1::0;20297:73:0::1;20381:28;20400:8;20381:18;:28::i;19482:132::-:0;19363:7;19390:6;-1:-1:-1;;;;;19390:6:0;4633:10;19546:23;19538:68;;;;-1:-1:-1;;;19538:68:0;;7855:2:1;19538:68:0;;;7837:21:1;;;7874:18;;;7867:30;7933:34;7913:18;;;7906:62;7985:18;;19538:68:0;7653:356:1;15547:346:0;-1:-1:-1;;;;;15649:19:0;;15641:68;;;;-1:-1:-1;;;15641:68:0;;8216:2:1;15641:68:0;;;8198:21:1;8255:2;8235:18;;;8228:30;8294:34;8274:18;;;8267:62;-1:-1:-1;;;8345:18:1;;;8338:34;8389:19;;15641:68:0;8014:400:1;15641:68:0;-1:-1:-1;;;;;15728:21:0;;15720:68;;;;-1:-1:-1;;;15720:68:0;;8621:2:1;15720:68:0;;;8603:21:1;8660:2;8640:18;;;8633:30;8699:34;8679:18;;;8672:62;-1:-1:-1;;;8750:18:1;;;8743:32;8792:19;;15720:68:0;8419:398:1;15720:68:0;-1:-1:-1;;;;;15801:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15853:32;;160:25:1;;;15853:32:0;;133:18:1;15853:32:0;;;;;;;15547:346;;;:::o;16184:419::-;16285:24;16312:25;16322:5;16329:7;16312:9;:25::i;:::-;16285:52;;-1:-1:-1;;16352:16:0;:37;16348:248;;16434:6;16414:16;:26;;16406:68;;;;-1:-1:-1;;;16406:68:0;;9024:2:1;16406:68:0;;;9006:21:1;9063:2;9043:18;;;9036:30;9102:31;9082:18;;;9075:59;9151:18;;16406:68:0;8822:353:1;16406:68:0;16518:51;16527:5;16534:7;16562:6;16543:16;:25;16518:8;:51::i;24631:2319::-;-1:-1:-1;;;;;24841:14:0;;;;;;:10;:14;;;;;;;;;:32;;-1:-1:-1;;;;;;24857:16:0;;;;;;:10;:16;;;;;;;;24841:32;24825:13;:48;;-1:-1:-1;;;;24825:48:0;-1:-1:-1;;;24825:48:0;;;;;;;;;;;24922:13;;;;24918:2014;;25101:11;;25077:21;;:35;;;;:::i;:::-;25058:15;:54;;25057:106;;;;-1:-1:-1;25126:13:0;;-1:-1:-1;;;;;25118:21:0;;;25126:13;;25118:21;;:44;;-1:-1:-1;25149:13:0;;-1:-1:-1;;;;;25143:19:0;;;25149:13;;25143:19;25118:44;25053:308;;;25230:39;25243:4;25249:2;25253:6;25261:7;;25230:12;:39::i;:::-;24631:2319;;;:::o;25053:308::-;25310:31;25326:4;25331:2;25334:6;25310:15;:31::i;24918:2014::-;25409:13;;-1:-1:-1;;;25409:13:0;;;;25405:1527;;;25484:13;;25460:21;;:37;;;;:::i;:::-;25442:15;:55;25438:381;;;25539:1;25518:18;:22;;;25559:12;:16;25438:381;;;25680:15;25663:13;;25639:21;;:37;;;;:::i;:::-;25638:57;;;;:::i;:::-;25617:18;:78;;;25762:13;;25729:9;;25762:13;;25729:30;;;:::i;:::-;:46;;;;:::i;:::-;25714:12;:61;25438:381;25907:9;;25892:12;;:24;25888:89;;;25952:9;;25937:12;:24;25888:89;26038:13;;26014:21;;:37;;;;:::i;:::-;25995:15;:56;;:79;;;;-1:-1:-1;26061:13:0;;-1:-1:-1;;;;;26055:19:0;;;26061:13;;26055:19;25995:79;25991:853;;;26095:44;26108:4;26114:2;26118:6;26126:12;;26095;:44::i;25991:853::-;26259:11;;26235:21;;:35;;;;:::i;:::-;26216:15;:54;;:79;;;;-1:-1:-1;26282:13:0;;-1:-1:-1;;;;;26274:21:0;;;26282:13;;26274:21;26216:79;26212:632;;;26316:39;26329:4;26335:2;26339:6;26347:7;;26316:12;:39::i;26212:632::-;26443:12;;26459:1;26443:17;26439:405;;26481:33;26497:4;26503:2;26507:6;26481:15;:33::i;26439:405::-;26596:13;;-1:-1:-1;;;;;26590:19:0;;;26596:13;;26590:19;;;;:39;;-1:-1:-1;;;;;;26613:16:0;;;;;;:10;:16;;;;;;;;26590:39;26586:258;;;26651:44;26664:4;26670:2;26674:6;26682:12;;26651;:44::i;14434:675::-;-1:-1:-1;;;;;14518:21:0;;14510:67;;;;-1:-1:-1;;;14510:67:0;;9910:2:1;14510:67:0;;;9892:21:1;9949:2;9929:18;;;9922:30;9988:34;9968:18;;;9961:62;-1:-1:-1;;;10039:18:1;;;10032:31;10080:19;;14510:67:0;9708:397:1;14510:67:0;14590:49;14611:7;14628:1;14632:6;14590:20;:49::i;:::-;-1:-1:-1;;;;;14677:18:0;;14652:22;14677:18;;;:9;:18;;;;;;14714:24;;;;14706:71;;;;-1:-1:-1;;;14706:71:0;;10312:2:1;14706:71:0;;;10294:21:1;10351:2;10331:18;;;10324:30;10390:34;10370:18;;;10363:62;-1:-1:-1;;;10441:18:1;;;10434:32;10483:19;;14706:71:0;10110:398:1;14706:71:0;-1:-1:-1;;;;;14813:18:0;;;;;;:9;:18;;;;;;;;14834:23;;;14813:44;;14952:12;:22;;;;;;;15003:37;160:25:1;;;14813:18:0;;;15003:37;;133:18:1;15003:37:0;;;;;;;24631:2319;;;:::o;20577:191::-;20651:16;20670:6;;-1:-1:-1;;;;;20687:17:0;;;-1:-1:-1;;;;;;20687:17:0;;;;;;20720:40;;20670:6;;;;;;;20720:40;;20651:16;20720:40;20640:128;20577:191;:::o;24217:284::-;24318:11;24353:3;24333:16;24342:7;24333:6;:16;:::i;:::-;24332:24;;;;:::i;:::-;24318:38;-1:-1:-1;24368:14:0;24385:12;24318:38;24385:6;:12;:::i;:::-;24431;;24368:29;;-1:-1:-1;24409:40:0;;24425:4;;-1:-1:-1;;;;;24431:12:0;24445:3;24409:15;:40::i;:::-;24460:33;24476:4;24482:2;24486:6;24460:15;:33::i;:::-;24307:194;;24217:284;;;;:::o;12460:806::-;-1:-1:-1;;;;;12557:18:0;;12549:68;;;;-1:-1:-1;;;12549:68:0;;10715:2:1;12549:68:0;;;10697:21:1;10754:2;10734:18;;;10727:30;10793:34;10773:18;;;10766:62;-1:-1:-1;;;10844:18:1;;;10837:35;10889:19;;12549:68:0;10513:401:1;12549:68:0;-1:-1:-1;;;;;12636:16:0;;12628:64;;;;-1:-1:-1;;;12628:64:0;;11121:2:1;12628:64:0;;;11103:21:1;11160:2;11140:18;;;11133:30;11199:34;11179:18;;;11172:62;-1:-1:-1;;;11250:18:1;;;11243:33;11293:19;;12628:64:0;10919:399:1;12628:64:0;12705:38;12726:4;12732:2;12736:6;12705:20;:38::i;:::-;-1:-1:-1;;;;;12778:15:0;;12756:19;12778:15;;;:9;:15;;;;;;12812:21;;;;12804:72;;;;-1:-1:-1;;;12804:72:0;;11525:2:1;12804:72:0;;;11507:21:1;11564:2;11544:18;;;11537:30;11603:34;11583:18;;;11576:62;-1:-1:-1;;;11654:18:1;;;11647:36;11700:19;;12804:72:0;11323:402:1;12804:72:0;-1:-1:-1;;;;;12912:15:0;;;;;;;:9;:15;;;;;;12930:20;;;12912:38;;13130:13;;;;;;;;;;:23;;;;;;13182:26;;;;;;12944:6;160:25:1;;148:2;133:18;;14:177;13182:26:0;;;;;;;;13221:37;24631:2319;26966:533;-1:-1:-1;;;;;27125:14:0;;;;;;:10;:14;;;;;;;;27124:15;:36;;;;-1:-1:-1;;;;;;27144:16:0;;;;;;:10;:16;;;;;;;;27143:17;27124:36;27116:60;;;;-1:-1:-1;;;27116:60:0;;11932:2:1;27116:60:0;;;11914:21:1;11971:2;11951:18;;;11944:30;-1:-1:-1;;;11990:18:1;;;11983:41;12041:18;;27116:60:0;11730:335:1;27116:60:0;27193:13;;-1:-1:-1;;;;;27193:13:0;:27;:49;;;;-1:-1:-1;;;;;;27224:18:0;;;;27193:49;27189:153;;;19363:7;19390:6;-1:-1:-1;;;;;27267:15:0;;;19390:6;;27267:15;27259:50;;;;-1:-1:-1;;;27259:50:0;;12272:2:1;27259:50:0;;;12254:21:1;12311:2;12291:18;;;12284:30;-1:-1:-1;;;12330:18:1;;;12323:52;12392:18;;27259:50:0;12070:346:1;27189:153:0;27358:11;;;;:36;;;;-1:-1:-1;27381:13:0;;-1:-1:-1;;;;;27373:21:0;;;27381:13;;27373:21;27358:36;27354:136;;;27451:16;;27441:6;27419:19;27435:2;-1:-1:-1;;;;;8403:18:0;8376:7;8403:18;;;:9;:18;;;;;;;8302:127;27419:19;:28;;;;:::i;:::-;:48;;27411:67;;;;-1:-1:-1;;;27411:67:0;;12623:2:1;27411:67:0;;;12605:21:1;12662:1;12642:18;;;12635:29;-1:-1:-1;;;12680:18:1;;;12673:36;12726:18;;27411:67:0;12421:329:1;196:367;259:8;269:6;323:3;316:4;308:6;304:17;300:27;290:55;;341:1;338;331:12;290:55;-1:-1:-1;364:20:1;;407:18;396:30;;393:50;;;439:1;436;429:12;393:50;476:4;468:6;464:17;452:29;;536:3;529:4;519:6;516:1;512:14;504:6;500:27;496:38;493:47;490:67;;;553:1;550;543:12;490:67;196:367;;;;;:::o;568:160::-;633:20;;689:13;;682:21;672:32;;662:60;;718:1;715;708:12;662:60;568:160;;;:::o;733:505::-;825:6;833;841;894:2;882:9;873:7;869:23;865:32;862:52;;;910:1;907;900:12;862:52;950:9;937:23;983:18;975:6;972:30;969:50;;;1015:1;1012;1005:12;969:50;1054:70;1116:7;1107:6;1096:9;1092:22;1054:70;:::i;:::-;1143:8;;-1:-1:-1;1028:96:1;-1:-1:-1;1197:35:1;;-1:-1:-1;1228:2:1;1213:18;;1197:35;:::i;:::-;1187:45;;733:505;;;;;:::o;1243:385::-;1329:6;1337;1345;1353;1406:3;1394:9;1385:7;1381:23;1377:33;1374:53;;;1423:1;1420;1413:12;1374:53;-1:-1:-1;;1446:23:1;;;1516:2;1501:18;;1488:32;;-1:-1:-1;1567:2:1;1552:18;;1539:32;;1618:2;1603:18;1590:32;;-1:-1:-1;1243:385:1;-1:-1:-1;1243:385:1:o;1633:180::-;1692:6;1745:2;1733:9;1724:7;1720:23;1716:32;1713:52;;;1761:1;1758;1751:12;1713:52;-1:-1:-1;1784:23:1;;1633:180;-1:-1:-1;1633:180:1:o;1818:548::-;1930:4;1959:2;1988;1977:9;1970:21;2020:6;2014:13;2063:6;2058:2;2047:9;2043:18;2036:34;2088:1;2098:140;2112:6;2109:1;2106:13;2098:140;;;2207:14;;;2203:23;;2197:30;2173:17;;;2192:2;2169:26;2162:66;2127:10;;2098:140;;;2102:3;2287:1;2282:2;2273:6;2262:9;2258:22;2254:31;2247:42;2357:2;2350;2346:7;2341:2;2333:6;2329:15;2325:29;2314:9;2310:45;2306:54;2298:62;;;;1818:548;;;;:::o;2371:173::-;2439:20;;-1:-1:-1;;;;;2488:31:1;;2478:42;;2468:70;;2534:1;2531;2524:12;2549:254;2617:6;2625;2678:2;2666:9;2657:7;2653:23;2649:32;2646:52;;;2694:1;2691;2684:12;2646:52;2717:29;2736:9;2717:29;:::i;:::-;2707:39;2793:2;2778:18;;;;2765:32;;-1:-1:-1;;;2549:254:1:o;3000:186::-;3059:6;3112:2;3100:9;3091:7;3087:23;3083:32;3080:52;;;3128:1;3125;3118:12;3080:52;3151:29;3170:9;3151:29;:::i;:::-;3141:39;3000:186;-1:-1:-1;;;3000:186:1:o;3191:328::-;3268:6;3276;3284;3337:2;3325:9;3316:7;3312:23;3308:32;3305:52;;;3353:1;3350;3343:12;3305:52;3376:29;3395:9;3376:29;:::i;:::-;3366:39;;3424:38;3458:2;3447:9;3443:18;3424:38;:::i;:::-;3414:48;;3509:2;3498:9;3494:18;3481:32;3471:42;;3191:328;;;;;:::o;3921:773::-;4043:6;4051;4059;4067;4120:2;4108:9;4099:7;4095:23;4091:32;4088:52;;;4136:1;4133;4126:12;4088:52;4176:9;4163:23;4205:18;4246:2;4238:6;4235:14;4232:34;;;4262:1;4259;4252:12;4232:34;4301:70;4363:7;4354:6;4343:9;4339:22;4301:70;:::i;:::-;4390:8;;-1:-1:-1;4275:96:1;-1:-1:-1;4478:2:1;4463:18;;4450:32;;-1:-1:-1;4494:16:1;;;4491:36;;;4523:1;4520;4513:12;4491:36;;4562:72;4626:7;4615:8;4604:9;4600:24;4562:72;:::i;:::-;3921:773;;;;-1:-1:-1;4653:8:1;-1:-1:-1;;;;3921:773:1:o;4699:248::-;4764:6;4772;4825:2;4813:9;4804:7;4800:23;4796:32;4793:52;;;4841:1;4838;4831:12;4793:52;4864:26;4880:9;4864:26;:::i;4952:260::-;5020:6;5028;5081:2;5069:9;5060:7;5056:23;5052:32;5049:52;;;5097:1;5094;5087:12;5049:52;5120:29;5139:9;5120:29;:::i;:::-;5110:39;;5168:38;5202:2;5191:9;5187:18;5168:38;:::i;:::-;5158:48;;4952:260;;;;;:::o;5217:127::-;5278:10;5273:3;5269:20;5266:1;5259:31;5309:4;5306:1;5299:15;5333:4;5330:1;5323:15;5349:127;5410:10;5405:3;5401:20;5398:1;5391:31;5441:4;5438:1;5431:15;5465:4;5462:1;5455:15;5481:135;5520:3;5541:17;;;5538:43;;5561:18;;:::i;:::-;-1:-1:-1;5608:1:1;5597:13;;5481:135::o;5621:380::-;5700:1;5696:12;;;;5743;;;5764:61;;5818:4;5810:6;5806:17;5796:27;;5764:61;5871:2;5863:6;5860:14;5840:18;5837:38;5834:161;;5917:10;5912:3;5908:20;5905:1;5898:31;5952:4;5949:1;5942:15;5980:4;5977:1;5970:15;5834:161;;5621:380;;;:::o;6006:125::-;6071:9;;;6092:10;;;6089:36;;;6105:18;;:::i;9180:128::-;9247:9;;;9268:11;;;9265:37;;;9282:18;;:::i;9313:168::-;9386:9;;;9417;;9434:15;;;9428:22;;9414:37;9404:71;;9455:18;;:::i;9486:217::-;9526:1;9552;9542:132;;9596:10;9591:3;9587:20;9584:1;9577:31;9631:4;9628:1;9621:15;9659:4;9656:1;9649:15;9542:132;-1:-1:-1;9688:9:1;;9486:217::o

Swarm Source

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