ETH Price: $3,090.36 (-0.41%)
Gas: 2 Gwei

Token

ChadGPT Alpha Meme (ChadGPT)
 

Overview

Max Total Supply

415,220,420,420 ChadGPT

Holders

110

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
298,127,734.178933613982099676 ChadGPT

Value
$0.00
0x5b67d19123d607f31bc43ccaf14f923fe1e4c897
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:
ChadGPT

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: @openzeppelin/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: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/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].
 *
 * 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}.
     *
     * 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:
     *
     * - `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: @openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;



/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

// File: @openzeppelin/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 anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

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

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

// File: ChadGPT.sol


pragma solidity ^0.8.9;




contract ChadGPT is Ownable, ERC20, ERC20Burnable{
    
    address public devs;
    uint public tax;

    mapping(address => bool) public whitelistedAddress;

    event DevsAddressUpdated(address newDevs);
    event TaxUpdated(uint newTax);
    event WhitelistAddressUpdated(address newWhitelist);
    
    constructor(
        string memory _name, // ChadGPT Alpha Meme
        string memory _symbol, // ChadGPT
        address _devs, // dev multisig
        uint _tax, // 42
        address[] memory _airdropAddresses
        ) ERC20(_name, _symbol) {
            _mint(msg.sender, (402_762_762_765) * 10 ** decimals()); // 95.8% of total supply
            
            uint length = _airdropAddresses.length; // 4.2% of total supply
            uint ADPerWallet = ((17_657_657_655) / length) * 10 ** decimals();
            for (uint i; i < length; ) {
                _mint(_airdropAddresses[i], ADPerWallet);
                unchecked { ++i; }
            }

            tax = _tax;
            devs = _devs;
            whitelistedAddress[msg.sender] = true;
            whitelistedAddress[_devs] = true;
    }

    function setDevAddress(address _dev) external onlyOwner{
        require(_dev != address(0), "ERROR: Can not be zero address");
        devs = _dev;
        whitelistedAddress[_dev] = true;
        emit DevsAddressUpdated(_dev);
    }

    function setTax(uint _tax) external onlyOwner{
        require(_tax != 0, "ERROR: Tax cannot be 0");
        tax = _tax;
        emit TaxUpdated(_tax);
    }

    function setWhitelistAddress(address _whitelist) external onlyOwner{
        require(_whitelist != address(0), "ERROR: Can not be zero address");
        whitelistedAddress[_whitelist] = true;
        emit WhitelistAddressUpdated(_whitelist);
    }

    function _transfer(
        address _sender,
        address _recipient,
        uint256 _amount
        ) internal virtual override{      
            if(whitelistedAddress[_sender] || whitelistedAddress[_recipient]){
                super._transfer(_sender, _recipient, _amount);
            }else{
                uint256 devsAmount = (_amount * tax) / 10000;
                uint256 userAmount = _amount - devsAmount;
                super._transfer(_sender, devs, devsAmount);
                super._transfer(_sender, _recipient, userAmount);
            }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"address","name":"_devs","type":"address"},{"internalType":"uint256","name":"_tax","type":"uint256"},{"internalType":"address[]","name":"_airdropAddresses","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":false,"internalType":"address","name":"newDevs","type":"address"}],"name":"DevsAddressUpdated","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":false,"internalType":"uint256","name":"newTax","type":"uint256"}],"name":"TaxUpdated","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newWhitelist","type":"address"}],"name":"WhitelistAddressUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","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":[],"name":"devs","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"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":"_dev","type":"address"}],"name":"setDevAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tax","type":"uint256"}],"name":"setTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_whitelist","type":"address"}],"name":"setWhitelistAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistedAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b5060405162002ffe38038062002ffe8339818101604052810190620000379190620007af565b8484620000596200004d6200025460201b60201c565b6200025c60201b60201c565b81600490816200006a919062000ad5565b5080600590816200007c919062000ad5565b505050620000c033620000946200032060201b60201c565b600a620000a2919062000d4c565b645dc6880a0d620000b4919062000d9d565b6200032960201b60201c565b6000815190506000620000d86200032060201b60201c565b600a620000e6919062000d4c565b8264041c7a7937620000f9919062000e17565b62000105919062000d9d565b905060005b828110156200014e57620001428482815181106200012d576200012c62000e4f565b5b6020026020010151836200032960201b60201c565b8060010190506200010a565b508360078190555084600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050505050505062000f6a565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200039b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003929062000edf565b60405180910390fd5b620003af600083836200049760201b60201c565b8060036000828254620003c3919062000f01565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000477919062000f4d565b60405180910390a362000493600083836200049c60201b60201c565b5050565b505050565b505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200050a82620004bf565b810181811067ffffffffffffffff821117156200052c576200052b620004d0565b5b80604052505050565b600062000541620004a1565b90506200054f8282620004ff565b919050565b600067ffffffffffffffff821115620005725762000571620004d0565b5b6200057d82620004bf565b9050602081019050919050565b60005b83811015620005aa5780820151818401526020810190506200058d565b60008484015250505050565b6000620005cd620005c78462000554565b62000535565b905082815260208101848484011115620005ec57620005eb620004ba565b5b620005f98482856200058a565b509392505050565b600082601f830112620006195762000618620004b5565b5b81516200062b848260208601620005b6565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620006618262000634565b9050919050565b620006738162000654565b81146200067f57600080fd5b50565b600081519050620006938162000668565b92915050565b6000819050919050565b620006ae8162000699565b8114620006ba57600080fd5b50565b600081519050620006ce81620006a3565b92915050565b600067ffffffffffffffff821115620006f257620006f1620004d0565b5b602082029050602081019050919050565b600080fd5b60006200071f6200071984620006d4565b62000535565b9050808382526020820190506020840283018581111562000745576200074462000703565b5b835b818110156200077257806200075d888262000682565b84526020840193505060208101905062000747565b5050509392505050565b600082601f830112620007945762000793620004b5565b5b8151620007a684826020860162000708565b91505092915050565b600080600080600060a08688031215620007ce57620007cd620004ab565b5b600086015167ffffffffffffffff811115620007ef57620007ee620004b0565b5b620007fd8882890162000601565b955050602086015167ffffffffffffffff811115620008215762000820620004b0565b5b6200082f8882890162000601565b9450506040620008428882890162000682565b93505060606200085588828901620006bd565b925050608086015167ffffffffffffffff811115620008795762000878620004b0565b5b62000887888289016200077c565b9150509295509295909350565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620008e757607f821691505b602082108103620008fd57620008fc6200089f565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620009677fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000928565b62000973868362000928565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620009b6620009b0620009aa8462000699565b6200098b565b62000699565b9050919050565b6000819050919050565b620009d28362000995565b620009ea620009e182620009bd565b84845462000935565b825550505050565b600090565b62000a01620009f2565b62000a0e818484620009c7565b505050565b5b8181101562000a365762000a2a600082620009f7565b60018101905062000a14565b5050565b601f82111562000a855762000a4f8162000903565b62000a5a8462000918565b8101602085101562000a6a578190505b62000a8262000a798562000918565b83018262000a13565b50505b505050565b600082821c905092915050565b600062000aaa6000198460080262000a8a565b1980831691505092915050565b600062000ac5838362000a97565b9150826002028217905092915050565b62000ae08262000894565b67ffffffffffffffff81111562000afc5762000afb620004d0565b5b62000b088254620008ce565b62000b1582828562000a3a565b600060209050601f83116001811462000b4d576000841562000b38578287015190505b62000b44858262000ab7565b86555062000bb4565b601f19841662000b5d8662000903565b60005b8281101562000b875784890151825560018201915060208501945060208101905062000b60565b8683101562000ba7578489015162000ba3601f89168262000a97565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000c4a5780860481111562000c225762000c2162000bbc565b5b600185161562000c325780820291505b808102905062000c428562000beb565b945062000c02565b94509492505050565b60008262000c65576001905062000d38565b8162000c75576000905062000d38565b816001811462000c8e576002811462000c995762000ccf565b600191505062000d38565b60ff84111562000cae5762000cad62000bbc565b5b8360020a91508482111562000cc85762000cc762000bbc565b5b5062000d38565b5060208310610133831016604e8410600b841016171562000d095782820a90508381111562000d035762000d0262000bbc565b5b62000d38565b62000d18848484600162000bf8565b9250905081840481111562000d325762000d3162000bbc565b5b81810290505b9392505050565b600060ff82169050919050565b600062000d598262000699565b915062000d668362000d3f565b925062000d957fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000c53565b905092915050565b600062000daa8262000699565b915062000db78362000699565b925082820262000dc78162000699565b9150828204841483151762000de15762000de062000bbc565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000e248262000699565b915062000e318362000699565b92508262000e445762000e4362000de8565b5b828204905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000ec7601f8362000e7e565b915062000ed48262000e8f565b602082019050919050565b6000602082019050818103600083015262000efa8162000eb8565b9050919050565b600062000f0e8262000699565b915062000f1b8362000699565b925082820190508082111562000f365762000f3562000bbc565b5b92915050565b62000f478162000699565b82525050565b600060208201905062000f64600083018462000f3c565b92915050565b6120848062000f7a6000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c80638da5cb5b116100b8578063a457c2d71161007c578063a457c2d714610353578063a9059cbb14610383578063c30796ab146103b3578063d0d41fe1146103e3578063dd62ed3e146103ff578063f2fde38b1461042f57610142565b80638da5cb5b146102bf57806395d89b41146102dd57806399c8d556146102fb5780639a96f82914610319578063a224c7451461033757610142565b8063313ce5671161010a578063313ce567146101ff578063395093511461021d57806342966c681461024d57806370a0823114610269578063715018a61461029957806379cc6790146102a357610142565b806306fdde0314610147578063095ea7b31461016557806318160ddd1461019557806323b872dd146101b35780632e5bb6ff146101e3575b600080fd5b61014f61044b565b60405161015c919061153a565b60405180910390f35b61017f600480360381019061017a91906115f5565b6104dd565b60405161018c9190611650565b60405180910390f35b61019d610500565b6040516101aa919061167a565b60405180910390f35b6101cd60048036038101906101c89190611695565b61050a565b6040516101da9190611650565b60405180910390f35b6101fd60048036038101906101f891906116e8565b610539565b005b6102076105c5565b6040516102149190611731565b60405180910390f35b610237600480360381019061023291906115f5565b6105ce565b6040516102449190611650565b60405180910390f35b610267600480360381019061026291906116e8565b610605565b005b610283600480360381019061027e919061174c565b610619565b604051610290919061167a565b60405180910390f35b6102a1610662565b005b6102bd60048036038101906102b891906115f5565b610676565b005b6102c7610696565b6040516102d49190611788565b60405180910390f35b6102e56106bf565b6040516102f2919061153a565b60405180910390f35b610303610751565b604051610310919061167a565b60405180910390f35b610321610757565b60405161032e9190611788565b60405180910390f35b610351600480360381019061034c919061174c565b61077d565b005b61036d600480360381019061036891906115f5565b610886565b60405161037a9190611650565b60405180910390f35b61039d600480360381019061039891906115f5565b6108fd565b6040516103aa9190611650565b60405180910390f35b6103cd60048036038101906103c8919061174c565b610920565b6040516103da9190611650565b60405180910390f35b6103fd60048036038101906103f8919061174c565b610940565b005b610419600480360381019061041491906117a3565b610a8a565b604051610426919061167a565b60405180910390f35b6104496004803603810190610444919061174c565b610b11565b005b60606004805461045a90611812565b80601f016020809104026020016040519081016040528092919081815260200182805461048690611812565b80156104d35780601f106104a8576101008083540402835291602001916104d3565b820191906000526020600020905b8154815290600101906020018083116104b657829003601f168201915b5050505050905090565b6000806104e8610b94565b90506104f5818585610b9c565b600191505092915050565b6000600354905090565b600080610515610b94565b9050610522858285610d65565b61052d858585610df1565b60019150509392505050565b610541610f16565b60008103610584576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057b9061188f565b60405180910390fd5b806007819055507f35ad15e7f5e4a16b548e8916bd02c51847dde8d106f334b4edaaacf140e43c91816040516105ba919061167a565b60405180910390a150565b60006012905090565b6000806105d9610b94565b90506105fa8185856105eb8589610a8a565b6105f591906118de565b610b9c565b600191505092915050565b610616610610610b94565b82610f94565b50565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61066a610f16565b6106746000611163565b565b61068882610682610b94565b83610d65565b6106928282610f94565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546106ce90611812565b80601f01602080910402602001604051908101604052809291908181526020018280546106fa90611812565b80156107475780601f1061071c57610100808354040283529160200191610747565b820191906000526020600020905b81548152906001019060200180831161072a57829003601f168201915b5050505050905090565b60075481565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610785610f16565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036107f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107eb9061195e565b60405180910390fd5b6001600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f1b1006ab19e427d90199a09d3057a7aa2f54ef1bbd2a3cb6f712c18c8396c8ce8160405161087b9190611788565b60405180910390a150565b600080610891610b94565b9050600061089f8286610a8a565b9050838110156108e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108db906119f0565b60405180910390fd5b6108f18286868403610b9c565b60019250505092915050565b600080610908610b94565b9050610915818585610df1565b600191505092915050565b60086020528060005260406000206000915054906101000a900460ff1681565b610948610f16565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ae9061195e565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f7889ff952f5753dbffb756a4c9031c4b5f22d7b4f57c623d8b0478094df0953281604051610a7f9190611788565b60405180910390a150565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610b19610f16565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7f90611a82565b60405180910390fd5b610b9181611163565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0290611b14565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7190611ba6565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d58919061167a565b60405180910390a3505050565b6000610d718484610a8a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610deb5781811015610ddd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd490611c12565b60405180910390fd5b610dea8484848403610b9c565b5b50505050565b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610e925750600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15610ea757610ea2838383611227565b610f11565b600061271060075483610eba9190611c32565b610ec49190611ca3565b905060008183610ed49190611cd4565b9050610f0385600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611227565b610f0e858583611227565b50505b505050565b610f1e610b94565b73ffffffffffffffffffffffffffffffffffffffff16610f3c610696565b73ffffffffffffffffffffffffffffffffffffffff1614610f92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8990611d54565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611003576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffa90611de6565b60405180910390fd5b61100f826000836114a0565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611096576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108d90611e78565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161114a919061167a565b60405180910390a361115e836000846114a5565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611296576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128d90611f0a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611305576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fc90611f9c565b60405180910390fd5b6113108383836114a0565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611397576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138e9061202e565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611487919061167a565b60405180910390a361149a8484846114a5565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156114e45780820151818401526020810190506114c9565b60008484015250505050565b6000601f19601f8301169050919050565b600061150c826114aa565b61151681856114b5565b93506115268185602086016114c6565b61152f816114f0565b840191505092915050565b600060208201905081810360008301526115548184611501565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061158c82611561565b9050919050565b61159c81611581565b81146115a757600080fd5b50565b6000813590506115b981611593565b92915050565b6000819050919050565b6115d2816115bf565b81146115dd57600080fd5b50565b6000813590506115ef816115c9565b92915050565b6000806040838503121561160c5761160b61155c565b5b600061161a858286016115aa565b925050602061162b858286016115e0565b9150509250929050565b60008115159050919050565b61164a81611635565b82525050565b60006020820190506116656000830184611641565b92915050565b611674816115bf565b82525050565b600060208201905061168f600083018461166b565b92915050565b6000806000606084860312156116ae576116ad61155c565b5b60006116bc868287016115aa565b93505060206116cd868287016115aa565b92505060406116de868287016115e0565b9150509250925092565b6000602082840312156116fe576116fd61155c565b5b600061170c848285016115e0565b91505092915050565b600060ff82169050919050565b61172b81611715565b82525050565b60006020820190506117466000830184611722565b92915050565b6000602082840312156117625761176161155c565b5b6000611770848285016115aa565b91505092915050565b61178281611581565b82525050565b600060208201905061179d6000830184611779565b92915050565b600080604083850312156117ba576117b961155c565b5b60006117c8858286016115aa565b92505060206117d9858286016115aa565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061182a57607f821691505b60208210810361183d5761183c6117e3565b5b50919050565b7f4552524f523a205461782063616e6e6f74206265203000000000000000000000600082015250565b60006118796016836114b5565b915061188482611843565b602082019050919050565b600060208201905081810360008301526118a88161186c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006118e9826115bf565b91506118f4836115bf565b925082820190508082111561190c5761190b6118af565b5b92915050565b7f4552524f523a2043616e206e6f74206265207a65726f20616464726573730000600082015250565b6000611948601e836114b5565b915061195382611912565b602082019050919050565b600060208201905081810360008301526119778161193b565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006119da6025836114b5565b91506119e58261197e565b604082019050919050565b60006020820190508181036000830152611a09816119cd565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611a6c6026836114b5565b9150611a7782611a10565b604082019050919050565b60006020820190508181036000830152611a9b81611a5f565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611afe6024836114b5565b9150611b0982611aa2565b604082019050919050565b60006020820190508181036000830152611b2d81611af1565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611b906022836114b5565b9150611b9b82611b34565b604082019050919050565b60006020820190508181036000830152611bbf81611b83565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611bfc601d836114b5565b9150611c0782611bc6565b602082019050919050565b60006020820190508181036000830152611c2b81611bef565b9050919050565b6000611c3d826115bf565b9150611c48836115bf565b9250828202611c56816115bf565b91508282048414831517611c6d57611c6c6118af565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611cae826115bf565b9150611cb9836115bf565b925082611cc957611cc8611c74565b5b828204905092915050565b6000611cdf826115bf565b9150611cea836115bf565b9250828203905081811115611d0257611d016118af565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611d3e6020836114b5565b9150611d4982611d08565b602082019050919050565b60006020820190508181036000830152611d6d81611d31565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611dd06021836114b5565b9150611ddb82611d74565b604082019050919050565b60006020820190508181036000830152611dff81611dc3565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e626022836114b5565b9150611e6d82611e06565b604082019050919050565b60006020820190508181036000830152611e9181611e55565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611ef46025836114b5565b9150611eff82611e98565b604082019050919050565b60006020820190508181036000830152611f2381611ee7565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611f866023836114b5565b9150611f9182611f2a565b604082019050919050565b60006020820190508181036000830152611fb581611f79565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006120186026836114b5565b915061202382611fbc565b604082019050919050565b600060208201905081810360008301526120478161200b565b905091905056fea2646970667358221220296841dfec24f5ec696e67f9985153e4cf26f49973660d7402bdb095f4d36f9664736f6c6343000812003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000c45b0a75b11d2ea2ce044ac3ffd76fef3926ccdc00000000000000000000000000000000000000000000000000000000000000f2000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000124368616447505420416c706861204d656d6500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007436861644750540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050000000000000000000000002b5ff8cba8ed3a6e7813cd5e55ecd95b87791cee000000000000000000000000df3a14076b790b2534d88c594eca923d44b1d965000000000000000000000000f441ea0ce8bb80849216bb614137563be3f86248000000000000000000000000cff8339da421c465d4325268799300952b55fad0000000000000000000000000eac6bb7294c28c7256e2c1200c899d302b916df4

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c80638da5cb5b116100b8578063a457c2d71161007c578063a457c2d714610353578063a9059cbb14610383578063c30796ab146103b3578063d0d41fe1146103e3578063dd62ed3e146103ff578063f2fde38b1461042f57610142565b80638da5cb5b146102bf57806395d89b41146102dd57806399c8d556146102fb5780639a96f82914610319578063a224c7451461033757610142565b8063313ce5671161010a578063313ce567146101ff578063395093511461021d57806342966c681461024d57806370a0823114610269578063715018a61461029957806379cc6790146102a357610142565b806306fdde0314610147578063095ea7b31461016557806318160ddd1461019557806323b872dd146101b35780632e5bb6ff146101e3575b600080fd5b61014f61044b565b60405161015c919061153a565b60405180910390f35b61017f600480360381019061017a91906115f5565b6104dd565b60405161018c9190611650565b60405180910390f35b61019d610500565b6040516101aa919061167a565b60405180910390f35b6101cd60048036038101906101c89190611695565b61050a565b6040516101da9190611650565b60405180910390f35b6101fd60048036038101906101f891906116e8565b610539565b005b6102076105c5565b6040516102149190611731565b60405180910390f35b610237600480360381019061023291906115f5565b6105ce565b6040516102449190611650565b60405180910390f35b610267600480360381019061026291906116e8565b610605565b005b610283600480360381019061027e919061174c565b610619565b604051610290919061167a565b60405180910390f35b6102a1610662565b005b6102bd60048036038101906102b891906115f5565b610676565b005b6102c7610696565b6040516102d49190611788565b60405180910390f35b6102e56106bf565b6040516102f2919061153a565b60405180910390f35b610303610751565b604051610310919061167a565b60405180910390f35b610321610757565b60405161032e9190611788565b60405180910390f35b610351600480360381019061034c919061174c565b61077d565b005b61036d600480360381019061036891906115f5565b610886565b60405161037a9190611650565b60405180910390f35b61039d600480360381019061039891906115f5565b6108fd565b6040516103aa9190611650565b60405180910390f35b6103cd60048036038101906103c8919061174c565b610920565b6040516103da9190611650565b60405180910390f35b6103fd60048036038101906103f8919061174c565b610940565b005b610419600480360381019061041491906117a3565b610a8a565b604051610426919061167a565b60405180910390f35b6104496004803603810190610444919061174c565b610b11565b005b60606004805461045a90611812565b80601f016020809104026020016040519081016040528092919081815260200182805461048690611812565b80156104d35780601f106104a8576101008083540402835291602001916104d3565b820191906000526020600020905b8154815290600101906020018083116104b657829003601f168201915b5050505050905090565b6000806104e8610b94565b90506104f5818585610b9c565b600191505092915050565b6000600354905090565b600080610515610b94565b9050610522858285610d65565b61052d858585610df1565b60019150509392505050565b610541610f16565b60008103610584576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161057b9061188f565b60405180910390fd5b806007819055507f35ad15e7f5e4a16b548e8916bd02c51847dde8d106f334b4edaaacf140e43c91816040516105ba919061167a565b60405180910390a150565b60006012905090565b6000806105d9610b94565b90506105fa8185856105eb8589610a8a565b6105f591906118de565b610b9c565b600191505092915050565b610616610610610b94565b82610f94565b50565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61066a610f16565b6106746000611163565b565b61068882610682610b94565b83610d65565b6106928282610f94565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546106ce90611812565b80601f01602080910402602001604051908101604052809291908181526020018280546106fa90611812565b80156107475780601f1061071c57610100808354040283529160200191610747565b820191906000526020600020905b81548152906001019060200180831161072a57829003601f168201915b5050505050905090565b60075481565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610785610f16565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036107f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107eb9061195e565b60405180910390fd5b6001600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f1b1006ab19e427d90199a09d3057a7aa2f54ef1bbd2a3cb6f712c18c8396c8ce8160405161087b9190611788565b60405180910390a150565b600080610891610b94565b9050600061089f8286610a8a565b9050838110156108e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108db906119f0565b60405180910390fd5b6108f18286868403610b9c565b60019250505092915050565b600080610908610b94565b9050610915818585610df1565b600191505092915050565b60086020528060005260406000206000915054906101000a900460ff1681565b610948610f16565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ae9061195e565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f7889ff952f5753dbffb756a4c9031c4b5f22d7b4f57c623d8b0478094df0953281604051610a7f9190611788565b60405180910390a150565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610b19610f16565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7f90611a82565b60405180910390fd5b610b9181611163565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0290611b14565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7190611ba6565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d58919061167a565b60405180910390a3505050565b6000610d718484610a8a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610deb5781811015610ddd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd490611c12565b60405180910390fd5b610dea8484848403610b9c565b5b50505050565b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610e925750600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15610ea757610ea2838383611227565b610f11565b600061271060075483610eba9190611c32565b610ec49190611ca3565b905060008183610ed49190611cd4565b9050610f0385600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611227565b610f0e858583611227565b50505b505050565b610f1e610b94565b73ffffffffffffffffffffffffffffffffffffffff16610f3c610696565b73ffffffffffffffffffffffffffffffffffffffff1614610f92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8990611d54565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611003576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffa90611de6565b60405180910390fd5b61100f826000836114a0565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611096576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108d90611e78565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161114a919061167a565b60405180910390a361115e836000846114a5565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611296576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128d90611f0a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611305576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fc90611f9c565b60405180910390fd5b6113108383836114a0565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611397576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138e9061202e565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611487919061167a565b60405180910390a361149a8484846114a5565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156114e45780820151818401526020810190506114c9565b60008484015250505050565b6000601f19601f8301169050919050565b600061150c826114aa565b61151681856114b5565b93506115268185602086016114c6565b61152f816114f0565b840191505092915050565b600060208201905081810360008301526115548184611501565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061158c82611561565b9050919050565b61159c81611581565b81146115a757600080fd5b50565b6000813590506115b981611593565b92915050565b6000819050919050565b6115d2816115bf565b81146115dd57600080fd5b50565b6000813590506115ef816115c9565b92915050565b6000806040838503121561160c5761160b61155c565b5b600061161a858286016115aa565b925050602061162b858286016115e0565b9150509250929050565b60008115159050919050565b61164a81611635565b82525050565b60006020820190506116656000830184611641565b92915050565b611674816115bf565b82525050565b600060208201905061168f600083018461166b565b92915050565b6000806000606084860312156116ae576116ad61155c565b5b60006116bc868287016115aa565b93505060206116cd868287016115aa565b92505060406116de868287016115e0565b9150509250925092565b6000602082840312156116fe576116fd61155c565b5b600061170c848285016115e0565b91505092915050565b600060ff82169050919050565b61172b81611715565b82525050565b60006020820190506117466000830184611722565b92915050565b6000602082840312156117625761176161155c565b5b6000611770848285016115aa565b91505092915050565b61178281611581565b82525050565b600060208201905061179d6000830184611779565b92915050565b600080604083850312156117ba576117b961155c565b5b60006117c8858286016115aa565b92505060206117d9858286016115aa565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061182a57607f821691505b60208210810361183d5761183c6117e3565b5b50919050565b7f4552524f523a205461782063616e6e6f74206265203000000000000000000000600082015250565b60006118796016836114b5565b915061188482611843565b602082019050919050565b600060208201905081810360008301526118a88161186c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006118e9826115bf565b91506118f4836115bf565b925082820190508082111561190c5761190b6118af565b5b92915050565b7f4552524f523a2043616e206e6f74206265207a65726f20616464726573730000600082015250565b6000611948601e836114b5565b915061195382611912565b602082019050919050565b600060208201905081810360008301526119778161193b565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006119da6025836114b5565b91506119e58261197e565b604082019050919050565b60006020820190508181036000830152611a09816119cd565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611a6c6026836114b5565b9150611a7782611a10565b604082019050919050565b60006020820190508181036000830152611a9b81611a5f565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611afe6024836114b5565b9150611b0982611aa2565b604082019050919050565b60006020820190508181036000830152611b2d81611af1565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611b906022836114b5565b9150611b9b82611b34565b604082019050919050565b60006020820190508181036000830152611bbf81611b83565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611bfc601d836114b5565b9150611c0782611bc6565b602082019050919050565b60006020820190508181036000830152611c2b81611bef565b9050919050565b6000611c3d826115bf565b9150611c48836115bf565b9250828202611c56816115bf565b91508282048414831517611c6d57611c6c6118af565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611cae826115bf565b9150611cb9836115bf565b925082611cc957611cc8611c74565b5b828204905092915050565b6000611cdf826115bf565b9150611cea836115bf565b9250828203905081811115611d0257611d016118af565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611d3e6020836114b5565b9150611d4982611d08565b602082019050919050565b60006020820190508181036000830152611d6d81611d31565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611dd06021836114b5565b9150611ddb82611d74565b604082019050919050565b60006020820190508181036000830152611dff81611dc3565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e626022836114b5565b9150611e6d82611e06565b604082019050919050565b60006020820190508181036000830152611e9181611e55565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611ef46025836114b5565b9150611eff82611e98565b604082019050919050565b60006020820190508181036000830152611f2381611ee7565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611f866023836114b5565b9150611f9182611f2a565b604082019050919050565b60006020820190508181036000830152611fb581611f79565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006120186026836114b5565b915061202382611fbc565b604082019050919050565b600060208201905081810360008301526120478161200b565b905091905056fea2646970667358221220296841dfec24f5ec696e67f9985153e4cf26f49973660d7402bdb095f4d36f9664736f6c63430008120033

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

00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000c45b0a75b11d2ea2ce044ac3ffd76fef3926ccdc00000000000000000000000000000000000000000000000000000000000000f2000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000124368616447505420416c706861204d656d6500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000007436861644750540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000050000000000000000000000002b5ff8cba8ed3a6e7813cd5e55ecd95b87791cee000000000000000000000000df3a14076b790b2534d88c594eca923d44b1d965000000000000000000000000f441ea0ce8bb80849216bb614137563be3f86248000000000000000000000000cff8339da421c465d4325268799300952b55fad0000000000000000000000000eac6bb7294c28c7256e2c1200c899d302b916df4

-----Decoded View---------------
Arg [0] : _name (string): ChadGPT Alpha Meme
Arg [1] : _symbol (string): ChadGPT
Arg [2] : _devs (address): 0xC45b0A75b11d2eA2CE044AC3fFd76fEf3926cCDc
Arg [3] : _tax (uint256): 242
Arg [4] : _airdropAddresses (address[]): 0x2B5fF8Cba8ED3A6E7813CD5e55ecd95B87791cee,0xdF3A14076B790b2534d88c594eca923d44b1d965,0xF441eA0cE8BB80849216bB614137563bE3f86248,0xCff8339DA421c465d4325268799300952B55FAd0,0xeac6BB7294c28C7256e2C1200c899D302b916df4

-----Encoded View---------------
15 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 000000000000000000000000c45b0a75b11d2ea2ce044ac3ffd76fef3926ccdc
Arg [3] : 00000000000000000000000000000000000000000000000000000000000000f2
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [6] : 4368616447505420416c706861204d656d650000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [8] : 4368616447505400000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [10] : 0000000000000000000000002b5ff8cba8ed3a6e7813cd5e55ecd95b87791cee
Arg [11] : 000000000000000000000000df3a14076b790b2534d88c594eca923d44b1d965
Arg [12] : 000000000000000000000000f441ea0ce8bb80849216bb614137563be3f86248
Arg [13] : 000000000000000000000000cff8339da421c465d4325268799300952b55fad0
Arg [14] : 000000000000000000000000eac6bb7294c28c7256e2c1200c899d302b916df4


Deployed Bytecode Sourcemap

21762:2416:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6651:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9002:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7771:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9783:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23166:161;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7613:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10487:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18422:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7942:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20886:103;;;:::i;:::-;;18832:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20238:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6870:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21850:15;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21824:19;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23335:252;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11228:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8275:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21874:50;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22919:239;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8531:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21144:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6651:100;6705:13;6738:5;6731:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6651:100;:::o;9002:201::-;9085:4;9102:13;9118:12;:10;:12::i;:::-;9102:28;;9141:32;9150:5;9157:7;9166:6;9141:8;:32::i;:::-;9191:4;9184:11;;;9002:201;;;;:::o;7771:108::-;7832:7;7859:12;;7852:19;;7771:108;:::o;9783:295::-;9914:4;9931:15;9949:12;:10;:12::i;:::-;9931:30;;9972:38;9988:4;9994:7;10003:6;9972:15;:38::i;:::-;10021:27;10031:4;10037:2;10041:6;10021:9;:27::i;:::-;10066:4;10059:11;;;9783:295;;;;;:::o;23166:161::-;20124:13;:11;:13::i;:::-;23238:1:::1;23230:4;:9:::0;23222:44:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;23283:4;23277:3;:10;;;;23303:16;23314:4;23303:16;;;;;;:::i;:::-;;;;;;;;23166:161:::0;:::o;7613:93::-;7671:5;7696:2;7689:9;;7613:93;:::o;10487:238::-;10575:4;10592:13;10608:12;:10;:12::i;:::-;10592:28;;10631:64;10640:5;10647:7;10684:10;10656:25;10666:5;10673:7;10656:9;:25::i;:::-;:38;;;;:::i;:::-;10631:8;:64::i;:::-;10713:4;10706:11;;;10487:238;;;;:::o;18422:91::-;18478:27;18484:12;:10;:12::i;:::-;18498:6;18478:5;:27::i;:::-;18422:91;:::o;7942:127::-;8016:7;8043:9;:18;8053:7;8043:18;;;;;;;;;;;;;;;;8036:25;;7942:127;;;:::o;20886:103::-;20124:13;:11;:13::i;:::-;20951:30:::1;20978:1;20951:18;:30::i;:::-;20886:103::o:0;18832:164::-;18909:46;18925:7;18934:12;:10;:12::i;:::-;18948:6;18909:15;:46::i;:::-;18966:22;18972:7;18981:6;18966:5;:22::i;:::-;18832:164;;:::o;20238:87::-;20284:7;20311:6;;;;;;;;;;;20304:13;;20238:87;:::o;6870:104::-;6926:13;6959:7;6952:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6870:104;:::o;21850:15::-;;;;:::o;21824:19::-;;;;;;;;;;;;;:::o;23335:252::-;20124:13;:11;:13::i;:::-;23443:1:::1;23421:24;;:10;:24;;::::0;23413:67:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;23524:4;23491:18;:30;23510:10;23491:30;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;23544:35;23568:10;23544:35;;;;;;:::i;:::-;;;;;;;;23335:252:::0;:::o;11228:436::-;11321:4;11338:13;11354:12;:10;:12::i;:::-;11338:28;;11377:24;11404:25;11414:5;11421:7;11404:9;:25::i;:::-;11377:52;;11468:15;11448:16;:35;;11440:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11561:60;11570:5;11577:7;11605:15;11586:16;:34;11561:8;:60::i;:::-;11652:4;11645:11;;;;11228:436;;;;:::o;8275:193::-;8354:4;8371:13;8387:12;:10;:12::i;:::-;8371:28;;8410;8420:5;8427:2;8431:6;8410:9;:28::i;:::-;8456:4;8449:11;;;8275:193;;;;:::o;21874:50::-;;;;;;;;;;;;;;;;;;;;;;:::o;22919:239::-;20124:13;:11;:13::i;:::-;23009:1:::1;22993:18;;:4;:18;;::::0;22985:61:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;23064:4;23057;;:11;;;;;;;;;;;;;;;;;;23106:4;23079:18;:24;23098:4;23079:24;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;23126:24;23145:4;23126:24;;;;;;:::i;:::-;;;;;;;;22919:239:::0;:::o;8531:151::-;8620:7;8647:11;:18;8659:5;8647:18;;;;;;;;;;;;;;;:27;8666:7;8647:27;;;;;;;;;;;;;;;;8640:34;;8531:151;;;;:::o;21144:201::-;20124:13;:11;:13::i;:::-;21253:1:::1;21233:22;;:8;:22;;::::0;21225:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;21309:28;21328:8;21309:18;:28::i;:::-;21144:201:::0;:::o;4293:98::-;4346:7;4373:10;4366:17;;4293:98;:::o;15255:380::-;15408:1;15391:19;;:5;:19;;;15383:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15489:1;15470:21;;:7;:21;;;15462:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15573:6;15543:11;:18;15555:5;15543:18;;;;;;;;;;;;;;;:27;15562:7;15543:27;;;;;;;;;;;;;;;:36;;;;15611:7;15595:32;;15604:5;15595:32;;;15620:6;15595:32;;;;;;:::i;:::-;;;;;;;;15255:380;;;:::o;15926:453::-;16061:24;16088:25;16098:5;16105:7;16088:9;:25::i;:::-;16061:52;;16148:17;16128:16;:37;16124:248;;16210:6;16190:16;:26;;16182:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16294:51;16303:5;16310:7;16338:6;16319:16;:25;16294:8;:51::i;:::-;16124:248;16050:329;15926:453;;;:::o;23595:580::-;23755:18;:27;23774:7;23755:27;;;;;;;;;;;;;;;;;;;;;;;;;:61;;;;23786:18;:30;23805:10;23786:30;;;;;;;;;;;;;;;;;;;;;;;;;23755:61;23752:416;;;23836:45;23852:7;23861:10;23873:7;23836:15;:45::i;:::-;23752:416;;;23920:18;23959:5;23952:3;;23942:7;:13;;;;:::i;:::-;23941:23;;;;:::i;:::-;23920:44;;23983:18;24014:10;24004:7;:20;;;;:::i;:::-;23983:41;;24043:42;24059:7;24068:4;;;;;;;;;;;24074:10;24043:15;:42::i;:::-;24104:48;24120:7;24129:10;24141;24104:15;:48::i;:::-;23901:267;;23752:416;23595:580;;;:::o;20403:132::-;20478:12;:10;:12::i;:::-;20467:23;;:7;:5;:7::i;:::-;:23;;;20459:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20403:132::o;14142:675::-;14245:1;14226:21;;:7;:21;;;14218:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;14298:49;14319:7;14336:1;14340:6;14298:20;:49::i;:::-;14360:22;14385:9;:18;14395:7;14385:18;;;;;;;;;;;;;;;;14360:43;;14440:6;14422:14;:24;;14414:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14559:6;14542:14;:23;14521:9;:18;14531:7;14521:18;;;;;;;;;;;;;;;:44;;;;14676:6;14660:12;;:22;;;;;;;;;;;14737:1;14711:37;;14720:7;14711:37;;;14741:6;14711:37;;;;;;:::i;:::-;;;;;;;;14761:48;14781:7;14798:1;14802:6;14761:19;:48::i;:::-;14207:610;14142:675;;:::o;21505:191::-;21579:16;21598:6;;;;;;;;;;;21579:25;;21624:8;21615:6;;:17;;;;;;;;;;;;;;;;;;21679:8;21648:40;;21669:8;21648:40;;;;;;;;;;;;21568:128;21505:191;:::o;12134:840::-;12281:1;12265:18;;:4;:18;;;12257:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12358:1;12344:16;;:2;:16;;;12336:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;12413:38;12434:4;12440:2;12444:6;12413:20;:38::i;:::-;12464:19;12486:9;:15;12496:4;12486:15;;;;;;;;;;;;;;;;12464:37;;12535:6;12520:11;:21;;12512:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;12652:6;12638:11;:20;12620:9;:15;12630:4;12620:15;;;;;;;;;;;;;;;:38;;;;12855:6;12838:9;:13;12848:2;12838:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;12905:2;12890:26;;12899:4;12890:26;;;12909:6;12890:26;;;;;;:::i;:::-;;;;;;;;12929:37;12949:4;12955:2;12959:6;12929:19;:37::i;:::-;12246:728;12134:840;;;:::o;16979:125::-;;;;:::o;17708:124::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:329::-;4482:6;4531:2;4519:9;4510:7;4506:23;4502:32;4499:119;;;4537:79;;:::i;:::-;4499:119;4657:1;4682:53;4727:7;4718:6;4707:9;4703:22;4682:53;:::i;:::-;4672:63;;4628:117;4423:329;;;;:::o;4758:86::-;4793:7;4833:4;4826:5;4822:16;4811:27;;4758:86;;;:::o;4850:112::-;4933:22;4949:5;4933:22;:::i;:::-;4928:3;4921:35;4850:112;;:::o;4968:214::-;5057:4;5095:2;5084:9;5080:18;5072:26;;5108:67;5172:1;5161:9;5157:17;5148:6;5108:67;:::i;:::-;4968:214;;;;:::o;5188:329::-;5247:6;5296:2;5284:9;5275:7;5271:23;5267:32;5264:119;;;5302:79;;:::i;:::-;5264:119;5422:1;5447:53;5492:7;5483:6;5472:9;5468:22;5447:53;:::i;:::-;5437:63;;5393:117;5188:329;;;;:::o;5523:118::-;5610:24;5628:5;5610:24;:::i;:::-;5605:3;5598:37;5523:118;;:::o;5647:222::-;5740:4;5778:2;5767:9;5763:18;5755:26;;5791:71;5859:1;5848:9;5844:17;5835:6;5791:71;:::i;:::-;5647:222;;;;:::o;5875:474::-;5943:6;5951;6000:2;5988:9;5979:7;5975:23;5971:32;5968:119;;;6006:79;;:::i;:::-;5968:119;6126:1;6151:53;6196:7;6187:6;6176:9;6172:22;6151:53;:::i;:::-;6141:63;;6097:117;6253:2;6279:53;6324:7;6315:6;6304:9;6300:22;6279:53;:::i;:::-;6269:63;;6224:118;5875:474;;;;;:::o;6355:180::-;6403:77;6400:1;6393:88;6500:4;6497:1;6490:15;6524:4;6521:1;6514:15;6541:320;6585:6;6622:1;6616:4;6612:12;6602:22;;6669:1;6663:4;6659:12;6690:18;6680:81;;6746:4;6738:6;6734:17;6724:27;;6680:81;6808:2;6800:6;6797:14;6777:18;6774:38;6771:84;;6827:18;;:::i;:::-;6771:84;6592:269;6541:320;;;:::o;6867:172::-;7007:24;7003:1;6995:6;6991:14;6984:48;6867:172;:::o;7045:366::-;7187:3;7208:67;7272:2;7267:3;7208:67;:::i;:::-;7201:74;;7284:93;7373:3;7284:93;:::i;:::-;7402:2;7397:3;7393:12;7386:19;;7045:366;;;:::o;7417:419::-;7583:4;7621:2;7610:9;7606:18;7598:26;;7670:9;7664:4;7660:20;7656:1;7645:9;7641:17;7634:47;7698:131;7824:4;7698:131;:::i;:::-;7690:139;;7417:419;;;:::o;7842:180::-;7890:77;7887:1;7880:88;7987:4;7984:1;7977:15;8011:4;8008:1;8001:15;8028:191;8068:3;8087:20;8105:1;8087:20;:::i;:::-;8082:25;;8121:20;8139:1;8121:20;:::i;:::-;8116:25;;8164:1;8161;8157:9;8150:16;;8185:3;8182:1;8179:10;8176:36;;;8192:18;;:::i;:::-;8176:36;8028:191;;;;:::o;8225:180::-;8365:32;8361:1;8353:6;8349:14;8342:56;8225:180;:::o;8411:366::-;8553:3;8574:67;8638:2;8633:3;8574:67;:::i;:::-;8567:74;;8650:93;8739:3;8650:93;:::i;:::-;8768:2;8763:3;8759:12;8752:19;;8411:366;;;:::o;8783:419::-;8949:4;8987:2;8976:9;8972:18;8964:26;;9036:9;9030:4;9026:20;9022:1;9011:9;9007:17;9000:47;9064:131;9190:4;9064:131;:::i;:::-;9056:139;;8783:419;;;:::o;9208:224::-;9348:34;9344:1;9336:6;9332:14;9325:58;9417:7;9412:2;9404:6;9400:15;9393:32;9208:224;:::o;9438:366::-;9580:3;9601:67;9665:2;9660:3;9601:67;:::i;:::-;9594:74;;9677:93;9766:3;9677:93;:::i;:::-;9795:2;9790:3;9786:12;9779:19;;9438:366;;;:::o;9810:419::-;9976:4;10014:2;10003:9;9999:18;9991:26;;10063:9;10057:4;10053:20;10049:1;10038:9;10034:17;10027:47;10091:131;10217:4;10091:131;:::i;:::-;10083:139;;9810:419;;;:::o;10235:225::-;10375:34;10371:1;10363:6;10359:14;10352:58;10444:8;10439:2;10431:6;10427:15;10420:33;10235:225;:::o;10466:366::-;10608:3;10629:67;10693:2;10688:3;10629:67;:::i;:::-;10622:74;;10705:93;10794:3;10705:93;:::i;:::-;10823:2;10818:3;10814:12;10807:19;;10466:366;;;:::o;10838:419::-;11004:4;11042:2;11031:9;11027:18;11019:26;;11091:9;11085:4;11081:20;11077:1;11066:9;11062:17;11055:47;11119:131;11245:4;11119:131;:::i;:::-;11111:139;;10838:419;;;:::o;11263:223::-;11403:34;11399:1;11391:6;11387:14;11380:58;11472:6;11467:2;11459:6;11455:15;11448:31;11263:223;:::o;11492:366::-;11634:3;11655:67;11719:2;11714:3;11655:67;:::i;:::-;11648:74;;11731:93;11820:3;11731:93;:::i;:::-;11849:2;11844:3;11840:12;11833:19;;11492:366;;;:::o;11864:419::-;12030:4;12068:2;12057:9;12053:18;12045:26;;12117:9;12111:4;12107:20;12103:1;12092:9;12088:17;12081:47;12145:131;12271:4;12145:131;:::i;:::-;12137:139;;11864:419;;;:::o;12289:221::-;12429:34;12425:1;12417:6;12413:14;12406:58;12498:4;12493:2;12485:6;12481:15;12474:29;12289:221;:::o;12516:366::-;12658:3;12679:67;12743:2;12738:3;12679:67;:::i;:::-;12672:74;;12755:93;12844:3;12755:93;:::i;:::-;12873:2;12868:3;12864:12;12857:19;;12516:366;;;:::o;12888:419::-;13054:4;13092:2;13081:9;13077:18;13069:26;;13141:9;13135:4;13131:20;13127:1;13116:9;13112:17;13105:47;13169:131;13295:4;13169:131;:::i;:::-;13161:139;;12888:419;;;:::o;13313:179::-;13453:31;13449:1;13441:6;13437:14;13430:55;13313:179;:::o;13498:366::-;13640:3;13661:67;13725:2;13720:3;13661:67;:::i;:::-;13654:74;;13737:93;13826:3;13737:93;:::i;:::-;13855:2;13850:3;13846:12;13839:19;;13498:366;;;:::o;13870:419::-;14036:4;14074:2;14063:9;14059:18;14051:26;;14123:9;14117:4;14113:20;14109:1;14098:9;14094:17;14087:47;14151:131;14277:4;14151:131;:::i;:::-;14143:139;;13870:419;;;:::o;14295:410::-;14335:7;14358:20;14376:1;14358:20;:::i;:::-;14353:25;;14392:20;14410:1;14392:20;:::i;:::-;14387:25;;14447:1;14444;14440:9;14469:30;14487:11;14469:30;:::i;:::-;14458:41;;14648:1;14639:7;14635:15;14632:1;14629:22;14609:1;14602:9;14582:83;14559:139;;14678:18;;:::i;:::-;14559:139;14343:362;14295:410;;;;:::o;14711:180::-;14759:77;14756:1;14749:88;14856:4;14853:1;14846:15;14880:4;14877:1;14870:15;14897:185;14937:1;14954:20;14972:1;14954:20;:::i;:::-;14949:25;;14988:20;15006:1;14988:20;:::i;:::-;14983:25;;15027:1;15017:35;;15032:18;;:::i;:::-;15017:35;15074:1;15071;15067:9;15062:14;;14897:185;;;;:::o;15088:194::-;15128:4;15148:20;15166:1;15148:20;:::i;:::-;15143:25;;15182:20;15200:1;15182:20;:::i;:::-;15177:25;;15226:1;15223;15219:9;15211:17;;15250:1;15244:4;15241:11;15238:37;;;15255:18;;:::i;:::-;15238:37;15088:194;;;;:::o;15288:182::-;15428:34;15424:1;15416:6;15412:14;15405:58;15288:182;:::o;15476:366::-;15618:3;15639:67;15703:2;15698:3;15639:67;:::i;:::-;15632:74;;15715:93;15804:3;15715:93;:::i;:::-;15833:2;15828:3;15824:12;15817:19;;15476:366;;;:::o;15848:419::-;16014:4;16052:2;16041:9;16037:18;16029:26;;16101:9;16095:4;16091:20;16087:1;16076:9;16072:17;16065:47;16129:131;16255:4;16129:131;:::i;:::-;16121:139;;15848:419;;;:::o;16273:220::-;16413:34;16409:1;16401:6;16397:14;16390:58;16482:3;16477:2;16469:6;16465:15;16458:28;16273:220;:::o;16499:366::-;16641:3;16662:67;16726:2;16721:3;16662:67;:::i;:::-;16655:74;;16738:93;16827:3;16738:93;:::i;:::-;16856:2;16851:3;16847:12;16840:19;;16499:366;;;:::o;16871:419::-;17037:4;17075:2;17064:9;17060:18;17052:26;;17124:9;17118:4;17114:20;17110:1;17099:9;17095:17;17088:47;17152:131;17278:4;17152:131;:::i;:::-;17144:139;;16871:419;;;:::o;17296:221::-;17436:34;17432:1;17424:6;17420:14;17413:58;17505:4;17500:2;17492:6;17488:15;17481:29;17296:221;:::o;17523:366::-;17665:3;17686:67;17750:2;17745:3;17686:67;:::i;:::-;17679:74;;17762:93;17851:3;17762:93;:::i;:::-;17880:2;17875:3;17871:12;17864:19;;17523:366;;;:::o;17895:419::-;18061:4;18099:2;18088:9;18084:18;18076:26;;18148:9;18142:4;18138:20;18134:1;18123:9;18119:17;18112:47;18176:131;18302:4;18176:131;:::i;:::-;18168:139;;17895:419;;;:::o;18320:224::-;18460:34;18456:1;18448:6;18444:14;18437:58;18529:7;18524:2;18516:6;18512:15;18505:32;18320:224;:::o;18550:366::-;18692:3;18713:67;18777:2;18772:3;18713:67;:::i;:::-;18706:74;;18789:93;18878:3;18789:93;:::i;:::-;18907:2;18902:3;18898:12;18891:19;;18550:366;;;:::o;18922:419::-;19088:4;19126:2;19115:9;19111:18;19103:26;;19175:9;19169:4;19165:20;19161:1;19150:9;19146:17;19139:47;19203:131;19329:4;19203:131;:::i;:::-;19195:139;;18922:419;;;:::o;19347:222::-;19487:34;19483:1;19475:6;19471:14;19464:58;19556:5;19551:2;19543:6;19539:15;19532:30;19347:222;:::o;19575:366::-;19717:3;19738:67;19802:2;19797:3;19738:67;:::i;:::-;19731:74;;19814:93;19903:3;19814:93;:::i;:::-;19932:2;19927:3;19923:12;19916:19;;19575:366;;;:::o;19947:419::-;20113:4;20151:2;20140:9;20136:18;20128:26;;20200:9;20194:4;20190:20;20186:1;20175:9;20171:17;20164:47;20228:131;20354:4;20228:131;:::i;:::-;20220:139;;19947:419;;;:::o;20372:225::-;20512:34;20508:1;20500:6;20496:14;20489:58;20581:8;20576:2;20568:6;20564:15;20557:33;20372:225;:::o;20603:366::-;20745:3;20766:67;20830:2;20825:3;20766:67;:::i;:::-;20759:74;;20842:93;20931:3;20842:93;:::i;:::-;20960:2;20955:3;20951:12;20944:19;;20603:366;;;:::o;20975:419::-;21141:4;21179:2;21168:9;21164:18;21156:26;;21228:9;21222:4;21218:20;21214:1;21203:9;21199:17;21192:47;21256:131;21382:4;21256:131;:::i;:::-;21248:139;;20975:419;;;:::o

Swarm Source

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