ETH Price: $3,483.86 (+2.82%)
Gas: 3 Gwei

Token

AGI on Ethereum (AGI)
 

Overview

Max Total Supply

10,000,000,000 AGI

Holders

70

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
degensamuel.eth
Balance
16,484,176.747769953242313335 AGI

Value
$0.00
0x612C45551195f15Bf05D722b9f137C914b077FC7
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:
AGIOnEthereum

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 10000 runs

Other Settings:
paris EvmVersion
File 1 of 11 : Chudjak.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import {UnibotLike} from "vendor/unibot/UnibotLike.sol";

contract AGIOnEthereum is UnibotLike {
    constructor() UnibotLike("AGI on Ethereum", "AGI",  10_000_000_000 * 1e18) {}
}

File 2 of 11 : UnibotLike.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "../uniswap/interfaces/IUniswapV2Router02.sol";
import "../uniswap/interfaces/IUniswapV2Factory.sol";

error MaxTransactionAmountExceedsMaxWalletAmount();
error CannotRemovePair(address pair);
error SenderBlacklisted(address sender);
error ReceiverBlacklisted(address receiver);
error BlacklistIsRenounced();
error BlacklistInvalidAddress(address addr);
error ZeroTokenAddress();
error EthTransferFailed(bytes response);
error TradingNotActive();
error MaxTransactionAmountExceeded(uint256 amount, uint256 maxTransactionAmount);
error MaxPerWalletExceeded(uint256 amount, uint256 maxPerWallet);
error CooldownNotExpired(uint64 cooldownRemaining);

contract UnibotLike is ERC20, Ownable, ReentrancyGuard {
    IUniswapV2Router02 public constant UNISWAP_V2_ROUTER = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
    address public immutable UNISWAP_V2_PAIR;

    uint256 public maxTransactionAmount = 50_000_000 * 1e18; // 0.5% of total supply
    uint256 public maxPerWallet = 100_000_000 * 1e18; // 1% of total supply
    uint64 public cooldown = 30 seconds;

    bool public limitsInEffect = true;
    bool public timerInEffect = true;
    bool public tradingActive = false;

    bool public blacklistRenounced = false;

    // anti-bot and anti-whale mappings and variables
    mapping(address => bool) public blacklisted;
    mapping(address => bool) public isEarlyTransferAllowed;
    mapping(address => bool) public isExcludedMaxTransactionAmount;

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

    // store last trade time per address to prevent bot trading
    mapping(address => uint64) public cooldownTimer;

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
    event SetMaxTransactionAmount(uint256 indexed amount);
    event SetMaxPerWallet(uint256 indexed amount);
    event SetCooldown(uint64 indexed cooldown);
    event SetLimitsInEffect(bool indexed limitsInEffect);
    event SetTimerInEffect(bool indexed timerInEffect);
    event SetTradingActive(bool indexed tradingActive);
    event BlacklistRenounced();
    event Blacklisted(address indexed account);
    event Unblacklisted(address indexed account);

    constructor(
        string memory _name,
        string memory _symbol,
        uint256 totalSupply
    ) ERC20(_name, _symbol) {
        UNISWAP_V2_PAIR = IUniswapV2Factory(UNISWAP_V2_ROUTER.factory())
            .createPair(address(this), UNISWAP_V2_ROUTER.WETH());

        isEarlyTransferAllowed[msg.sender] = true;
        isEarlyTransferAllowed[address(UNISWAP_V2_ROUTER)] = true;
        isEarlyTransferAllowed[UNISWAP_V2_PAIR] = true;

        isExcludedMaxTransactionAmount[address(UNISWAP_V2_ROUTER)] = true;
        isExcludedMaxTransactionAmount[UNISWAP_V2_PAIR] = true;

        setAutomatedMarketMakerPair(UNISWAP_V2_PAIR, true);

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, totalSupply);
    }

    receive() external payable {}

    function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner {
        if (pair == UNISWAP_V2_PAIR && !value) {
            revert CannotRemovePair(pair);
        }

        automatedMarketMakerPairs[pair] = value;
        isExcludedMaxTransactionAmount[pair] = value;
        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function setMaxTransactionAmount(uint256 _maxTransactionAmount) external onlyOwner {
        maxTransactionAmount = _maxTransactionAmount;
        emit SetMaxTransactionAmount(_maxTransactionAmount);
    }

    function setMaxPerWallet(uint256 _maxPerWallet) external onlyOwner {
        maxPerWallet = _maxPerWallet;
        emit SetMaxPerWallet(_maxPerWallet);
    }

    function setCooldown(uint64 _cooldown) external onlyOwner {
        cooldown = _cooldown;
        emit SetCooldown(_cooldown);
    }

    function setLimitsInEffect(bool _limitsInEffect) external onlyOwner {
        limitsInEffect = _limitsInEffect;
        emit SetLimitsInEffect(_limitsInEffect);
    }

    function setTimerInEffect(bool _timerInEffect) external onlyOwner {
        timerInEffect = _timerInEffect;
        emit SetTimerInEffect(_timerInEffect);
    }

    function setTradingActive(bool _tradingActive) external onlyOwner {
        tradingActive = _tradingActive;
        emit SetTradingActive(_tradingActive);
    }

    function isBlacklisted(address account) public view returns (bool) {
        return blacklisted[account];
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        if (!blacklistRenounced && blacklisted[from]) {
            revert SenderBlacklisted(from);
        }
        if (!blacklistRenounced && blacklisted[to]) {
            revert ReceiverBlacklisted(to);
        }

        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        if (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead)
            ) {
                if (!tradingActive) {
                    if (!isEarlyTransferAllowed[from] || !isEarlyTransferAllowed[to]) {
                        revert TradingNotActive();
                    }
                }

                // when buy
                if (
                    automatedMarketMakerPairs[from] &&
                    !isExcludedMaxTransactionAmount[to]
                ) {
                    if (amount > maxTransactionAmount) {
                        revert MaxTransactionAmountExceeded(amount, maxTransactionAmount);
                    }
                    if (amount + balanceOf(to) > maxPerWallet) {
                        revert MaxPerWalletExceeded(amount, maxPerWallet);
                    }
                }
                // when sell
                else if (
                    automatedMarketMakerPairs[to] &&
                    !isExcludedMaxTransactionAmount[from]
                ) {
                    if (amount > maxTransactionAmount) {
                        revert MaxTransactionAmountExceeded(amount, maxTransactionAmount);
                    }
                } else if (!isExcludedMaxTransactionAmount[to]) {
                    if (amount + balanceOf(to) > maxPerWallet) {
                        revert MaxPerWalletExceeded(amount, maxPerWallet);
                    }
                }
            }
        }

        if (timerInEffect) {
            if (automatedMarketMakerPairs[from]) {
                if (block.timestamp - cooldownTimer[to] < cooldown) {
                    revert CooldownNotExpired(cooldown - (uint64(block.timestamp) - cooldownTimer[to]));
                }
                cooldownTimer[to] = uint64(block.timestamp);
            } else if (automatedMarketMakerPairs[to]) {
                if (block.timestamp - cooldownTimer[from] < cooldown) {
                    revert CooldownNotExpired(cooldown - (uint64(block.timestamp) - cooldownTimer[from]));
                }
                cooldownTimer[from] = uint64(block.timestamp);
            }
        }

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

    function withdrawStuckTokens(address[] memory _tokens, address _to) external onlyOwner {
        for (uint256 i = 0; i < _tokens.length; i++) {
            withdrawStuckToken(_tokens[i], _to);
        }
        withdrawStuckEth(_to);
    }

    function withdrawStuckToken(address _token, address _to) public onlyOwner {
        if(_token == address(0)) {
            revert ZeroTokenAddress();
        }
        uint256 _contractBalance = IERC20(_token).balanceOf(address(this));
        IERC20(_token).transfer(_to, _contractBalance);
    }

    function withdrawStuckEth(address _to) public onlyOwner {
        (bool success, bytes memory response) = _to.call{value: address(this).balance}("");
        if (!success) {
            revert EthTransferFailed(response);
        }
    }

    /// @dev team renounce blacklist commands
    function renounceBlacklist() public onlyOwner {
        blacklistRenounced = true;
        emit BlacklistRenounced();
    }

    /// @dev to blacklist v3 pools; can unblacklist() down the road to suit project and community
    function blacklist(address _addr) public onlyOwner {
        if (blacklistRenounced) {
            revert BlacklistIsRenounced();
        }
        if (_addr == address(UNISWAP_V2_ROUTER) || _addr == address(UNISWAP_V2_PAIR)) {
            revert BlacklistInvalidAddress(_addr);
        }
        blacklisted[_addr] = true;
        emit Blacklisted(_addr);
    }

    /// @dev unblacklist address; not affected by blacklistRenounced incase team wants to unblacklist v3 pools down the road
    function unblacklist(address _addr) public onlyOwner {
        blacklisted[_addr] = false;
        emit Unblacklisted(_addr);
    }
}

File 3 of 11 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

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

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

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

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

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

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

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

File 4 of 11 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;
    }

    function _nonReentrantAfter() private {
        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
     * `nonReentrant` function in the call stack.
     */
    function _reentrancyGuardEntered() internal view returns (bool) {
        return _status == _ENTERED;
    }
}

File 5 of 11 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 6 of 11 : IUniswapV2Router02.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;
pragma experimental ABIEncoderV2;

import "./IUniswapV2Router01.sol";

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

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    )
        external
        returns (
            uint256 amountA,
            uint256 amountB,
            uint256 liquidity
        );

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (
            uint256 amountToken,
            uint256 amountETH,
            uint256 liquidity
        );

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

File 7 of 11 : IUniswapV2Factory.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;
pragma experimental ABIEncoderV2;

interface IUniswapV2Factory {
    event PairCreated(
        address indexed token0,
        address indexed token1,
        address pair,
        uint256
    );

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB)
        external
        view
        returns (address pair);

    function allPairs(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

    function createPair(address tokenA, address tokenB)
        external
        returns (address pair);

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

File 8 of 11 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.4) (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;
    }

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

File 9 of 11 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

File 10 of 11 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @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 11 of 11 : IUniswapV2Router01.sol
pragma solidity >=0.6.2;

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

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

Settings
{
  "remappings": [
    "ds-test/=node_modules/ds-test/src/",
    "forge-std/=node_modules/forge-std/src/",
    "isolmate/=node_modules/isolmate/src/",
    "contracts/=contracts/",
    "interfaces/=contracts/interfaces/",
    "test/=contracts/test/",
    "vendor/=contracts/vendor/",
    "@openzeppelin/=node_modules/@openzeppelin/"
  ],
  "optimizer": {
    "enabled": true,
    "runs": 10000
  },
  "metadata": {
    "useLiteralContent": false,
    "bytecodeHash": "ipfs",
    "appendCBOR": true
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "evmVersion": "paris",
  "viaIR": true,
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"BlacklistInvalidAddress","type":"error"},{"inputs":[],"name":"BlacklistIsRenounced","type":"error"},{"inputs":[{"internalType":"address","name":"pair","type":"address"}],"name":"CannotRemovePair","type":"error"},{"inputs":[{"internalType":"uint64","name":"cooldownRemaining","type":"uint64"}],"name":"CooldownNotExpired","type":"error"},{"inputs":[{"internalType":"bytes","name":"response","type":"bytes"}],"name":"EthTransferFailed","type":"error"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"maxPerWallet","type":"uint256"}],"name":"MaxPerWalletExceeded","type":"error"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"maxTransactionAmount","type":"uint256"}],"name":"MaxTransactionAmountExceeded","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ReceiverBlacklisted","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"SenderBlacklisted","type":"error"},{"inputs":[],"name":"TradingNotActive","type":"error"},{"inputs":[],"name":"ZeroTokenAddress","type":"error"},{"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":[],"name":"BlacklistRenounced","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"Blacklisted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint64","name":"cooldown","type":"uint64"}],"name":"SetCooldown","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bool","name":"limitsInEffect","type":"bool"}],"name":"SetLimitsInEffect","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SetMaxPerWallet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SetMaxTransactionAmount","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bool","name":"timerInEffect","type":"bool"}],"name":"SetTimerInEffect","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bool","name":"tradingActive","type":"bool"}],"name":"SetTradingActive","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":true,"internalType":"address","name":"account","type":"address"}],"name":"Unblacklisted","type":"event"},{"inputs":[],"name":"UNISWAP_V2_PAIR","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UNISWAP_V2_ROUTER","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"blacklistRenounced","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cooldown","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"cooldownTimer","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isEarlyTransferAllowed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"_cooldown","type":"uint64"}],"name":"setCooldown","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_limitsInEffect","type":"bool"}],"name":"setLimitsInEffect","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerWallet","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTransactionAmount","type":"uint256"}],"name":"setMaxTransactionAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_timerInEffect","type":"bool"}],"name":"setTimerInEffect","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_tradingActive","type":"bool"}],"name":"setTradingActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"timerInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"_addr","type":"address"}],"name":"unblacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawStuckEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawStuckToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_tokens","type":"address[]"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a060409080825234620006ce576200001881620006d3565b600f815260206e414749206f6e20457468657265756d60881b818301528251916200004383620006d3565b60038084526241474960e81b838501528151906001600160401b0390818311620005ce578054926001948585811c95168015620006c3575b87861014620006ad578190601f9586811162000657575b508790868311600114620005f057600092620005e4575b505060001982841b1c191690851b1781555b8551918211620005ce5760049586548581811c91168015620005c3575b87821014620005ae579081858594931162000556575b508690858411600114620004eb57600093620004df575b505082851b92600019911b1c19161784555b60058054336001600160a01b031982168117909255865193916001600160a01b039182167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0600080a360068290556a295be96e640669720000006007556a52b7d2dcc80cd2e4000000600855600980546001600160601b031916690101000000000000001e17905563c45a015560e01b8452737a250d5630b4cf539739df2c5dacb4c659f2488d9385818881885afa9081156200047b57600091620004bd575b5087516315ab88c960e31b81528887828a818a5afa8015620004b257898580958b9560009462000486575b5090600091604494955198899687956364e329cb60e11b87523090870152166024850152165af19182156200047b5760009262000445575b508160805233600052600b865280886000209260ff1993858582541617905586600052896000208585825416179055169485600052886000208484825416179055600052600c86528760002083838254161790558460005287600020838382541617905533816005541603620004045760805116841480620003fb575b620003e45783600052600d8552866000208282825416179055600c85528187600020918254161790558551927fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab600080a33315620003a75750506002546b204fce5e3e25026110000000928382018092116200039257506000917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9160025533835282815284832084815401905584519384523393a3516124c99081620007358239608051818181610329015281816103a901526109dc0152f35b601190634e487b7160e01b6000525260246000fd5b6064928462461bcd60e51b845283015260248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152fd5b865163a3b4dfaf60e01b8152808701859052602490fd5b506000620002b7565b60648787808b519262461bcd60e51b845283015260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152fd5b6200046b919250863d881162000473575b620004628183620006ef565b81019062000713565b90386200023a565b503d62000456565b88513d6000823e3d90fd5b6044945090620004a860009392883d8a116200047357620004628183620006ef565b9450909162000202565b50513d6000823e3d90fd5b620004d89150863d88116200047357620004628183620006ef565b38620001d7565b01519150388062000105565b9190869450601f1984169289600052886000209360005b8a8282106200053f575050851162000524575b50505050811b01845562000117565b01519060f884600019921b161c191690553880808062000515565b8385015187558a9890960195938401930162000502565b9091925087600052866000208580860160051c820192898710620005a4575b91889187969594930160051c01915b82811062000594575050620000ee565b6000815586955088910162000584565b9250819262000575565b602288634e487b7160e01b6000525260246000fd5b90607f1690620000d8565b634e487b7160e01b600052604160045260246000fd5b015190503880620000a9565b90879350601f1983169185600052896000209260005b8b82821062000640575050841162000627575b505050811b018155620000bb565b015160001983861b60f8161c1916905538808062000619565b8385015186558b9790950194938401930162000606565b90915083600052876000208680850160051c8201928a8610620006a3575b918991869594930160051c01915b8281106200069357505062000092565b6000815585945089910162000683565b9250819262000675565b634e487b7160e01b600052602260045260246000fd5b94607f16946200007b565b600080fd5b604081019081106001600160401b03821117620005ce57604052565b601f909101601f19168101906001600160401b03821190821017620005ce57604052565b90816020910312620006ce57516001600160a01b0381168103620006ce579056fe6080604081815260049182361015610022575b505050361561002057600080fd5b005b600092833560e01c91826306fdde03146117af57508163095ea7b31461178557816318160ddd146117665781631e293c101461171f57816323b872dd1461160f578163313ce567146115f357816339509351146115975781633dc599ff14611570578163453c2310146115515781634a62bb651461152c5781634b11982e146114ad5781634bb2c7851461146457816353a65f8d146110c25781635f1893611461104c578163679ca6e914610fc75781636e0e242714610f4257816370a0823114610eff578163715018a614610e7f57816375e3661e14610e0c578163787a08a614610de35781637ca8448a14610ce35781638da5cb5b14610cae578163959bd6c214610c2857816395d89b4114610af457816398cd1f6514610aab5781639a7a23d61461098c578163a457c2d7146108a7578163a4a4b19b14610859578163a82ed9ec1461082a578163a9059cbb146107f9578163b62496f5146107b0578163bbc0c74214610789578163bc205ad314610601578163c8c8ebe4146105e2578163c93dd791146105bb578163dbac26e914610585578163dd62ed3e1461052f578163e268e4d3146104e8578163f2fde38b146103cd578163f40acc3d1461037c578163f9f92be41461024b575063fe575a87146102005780610012565b346102475760206003193601126102475760ff8160209373ffffffffffffffffffffffffffffffffffffffff6102346118ff565b168152600a855220541690519015158152f35b5080fd5b91905034610378576020600319360112610378576102676118ff565b916102706119c9565b60ff60095460581c166103515773ffffffffffffffffffffffffffffffffffffffff80931692737a250d5630b4cf539739df2c5dacb4c659f2488d8414908115610325575b506102f75750818352600a6020528220600160ff198254161790557fffa4e6181777692565cf28528fc88fd1516ea86b56da075235fa575af6a4b8558280a280f35b8260249251917f2eb99554000000000000000000000000000000000000000000000000000000008352820152fd5b90507f0000000000000000000000000000000000000000000000000000000000000000168314386102b5565b90517f360d8017000000000000000000000000000000000000000000000000000000008152fd5b8280fd5b5050346102475781600319360112610247576020905173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000168152f35b905034610378576020600319360112610378576103e86118ff565b906103f16119c9565b73ffffffffffffffffffffffffffffffffffffffff809216928315610465575050600554827fffffffffffffffffffffffff0000000000000000000000000000000000000000821617600555167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08380a380f35b90602060849251917f08c379a0000000000000000000000000000000000000000000000000000000008352820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152fd5b83903461024757602060031936011261024757356105046119c9565b806008557f40532828d73d53d59eb97977ab23ce325d9da71d8e0b4b861fa4ec8b1e625ff18280a280f35b5050346102475780600319360112610247578060209261054d6118ff565b610555611927565b73ffffffffffffffffffffffffffffffffffffffff91821683526001865283832091168252845220549051908152f35b5050346102475760206003193601126102475760ff8160209373ffffffffffffffffffffffffffffffffffffffff6102346118ff565b50503461024757816003193601126102475760209060ff60095460481c1690519015158152f35b5050346102475781600319360112610247576020906007549051908152f35b9190503461037857806003193601126103785761061c6118ff565b90610625611927565b9161062e6119c9565b73ffffffffffffffffffffffffffffffffffffffff809116908115610761578251937f70a082310000000000000000000000000000000000000000000000000000000085523086860152866020958681602481885afa908115610757579082918895949391610723575b509460449394958751998a9687957fa9059cbb000000000000000000000000000000000000000000000000000000008752169085015260248401525af190811561071a57506106e5578280f35b81813d8311610713575b6106f9818361194a565b810103126102475751801515036107105738808280f35b80fd5b503d6106ef565b513d85823e3d90fd5b8581959692503d8311610750575b61073b818361194a565b81010312610710579151869392906044610698565b503d610731565b86513d84823e3d90fd5b8483517f6b093aad000000000000000000000000000000000000000000000000000000008152fd5b50503461024757816003193601126102475760209060ff60095460501c1690519015158152f35b5050346102475760206003193601126102475760ff8160209373ffffffffffffffffffffffffffffffffffffffff6107e66118ff565b168152600d855220541690519015158152f35b5050346102475780600319360112610247576020906108236108196118ff565b6024359033611aab565b5160018152f35b50503461024757816003193601126102475760209051737a250d5630b4cf539739df2c5dacb4c659f2488d8152f35b5050346102475760206003193601126102475767ffffffffffffffff8160209373ffffffffffffffffffffffffffffffffffffffff6108966118ff565b168152600e85522054169051908152f35b905082346107105782600319360112610710576108c26118ff565b918360243592338152600160205281812073ffffffffffffffffffffffffffffffffffffffff8616825260205220549082821061090957602085610823858503873361231e565b60849060208651917f08c379a0000000000000000000000000000000000000000000000000000000008352820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152fd5b919050346103785780600319360112610378576109a76118ff565b9060243590811593841594858403610aa7576109c16119c9565b73ffffffffffffffffffffffffffffffffffffffff809516947f00000000000000000000000000000000000000000000000000000000000000001685149081610a9f575b50610a71575090610a4a91838652600d602052610a31828288209060ff60ff1983541691151516179055565b600c60205285209060ff60ff1983541691151516179055565b7fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab8380a380f35b8360249251917fa3b4dfaf000000000000000000000000000000000000000000000000000000008352820152fd5b905038610a05565b8680fd5b5050346102475760206003193601126102475760ff8160209373ffffffffffffffffffffffffffffffffffffffff610ae16118ff565b168152600b855220541690519015158152f35b82843461071057806003193601126107105781519181845492600184811c91818616958615610c1e575b6020968785108114610bf2579087899a92868b999a9b529182600014610bc8575050600114610b6d575b8588610b6989610b5a848a038561194a565b519282849384528301906118a1565b0390f35b815286935091907f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b5b828410610bb05750505082010181610b5a610b6988610b48565b8054848a018601528895508794909301928101610b96565b60ff19168882015294151560051b87019094019450859350610b5a9250610b699150899050610b48565b60248360228c7f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b92607f1692610b1e565b833461071057602060031936011261071057610c426119ba565b610c4a6119c9565b15156009547fffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffff6aff000000000000000000008360501b169116176009557f4fa3af35030a6d531e010728ded75e43818c3b10f563bec547fff22472898da08280a280f35b50503461024757816003193601126102475760209073ffffffffffffffffffffffffffffffffffffffff600554169051908152f35b919050346103785760206003193601126103785782808080610d036118ff565b610d0b6119c9565b47905af1903d15610ddb573d9167ffffffffffffffff8311610daf57815192610d5c60207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f840116018561194a565b83523d85602085013e5b15610d6f578380f35b60209291610dab91519384937f788498dc00000000000000000000000000000000000000000000000000000000855284015260248301906118a1565b0390fd5b6024856041867f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b606091610d66565b50503461024757816003193601126102475760209067ffffffffffffffff600954169051908152f35b5050346102475760206003193601126102475773ffffffffffffffffffffffffffffffffffffffff610e3c6118ff565b610e446119c9565b1690818352600a602052822060ff1981541690557f7534c63860313c46c473e4e98328f37017e9674e2162faf1a3ad7a96236c3b7b8280a280f35b8334610710578060031936011261071057610e986119c9565b8073ffffffffffffffffffffffffffffffffffffffff6005547fffffffffffffffffffffffff00000000000000000000000000000000000000008116600555167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a380f35b505034610247576020600319360112610247578060209273ffffffffffffffffffffffffffffffffffffffff610f336118ff565b16815280845220549051908152f35b833461071057602060031936011261071057610f5c6119ba565b610f646119c9565b15156009547fffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffff69ff0000000000000000008360481b169116176009557fd1d1780a22c6c6d0acd196883c809b0735bc2ce7061c6f4e6d2bb707262c89128280a280f35b50503461024757602060031936011261024757610fe26119ba565b610fea6119c9565b1515907fffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffff68ff000000000000000083600954931b169116176009557f783c68f45f1cc97710ac752a41f6329f7f1c0a426030627b003237422175b0598280a280f35b83346107105780600319360112610710576110656119c9565b6b0100000000000000000000007fffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffff60095416176009557f8e17c47f6196408a8b1756a9b658f0b8b80c8b35da4f84725827f4dc70cfaac18180a180f35b82843461071057816003193601126107105767ffffffffffffffff928035848111610378573660238201121561037857808201358581116114385760059481861b96815193602093611116858b018761194a565b85528385016024809a83010191368311611434579598958a01905b82821061140257505050611143611927565b9661114c6119c9565b869473ffffffffffffffffffffffffffffffffffffffff92838a16965b835181101561132a57848782851b86010151166111846119c9565b80156113025786517f70a08231000000000000000000000000000000000000000000000000000000008152308b82015288818f81855afa9081156112f8578b8f938e908c948e9483916112b6575b509060449392918d5197889687957fa9059cbb0000000000000000000000000000000000000000000000000000000087528601528401525af180156112ac57611271575b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461124657600101611169565b8b8a60118b7f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b8781813d83116112a5575b611286818361194a565b810103126112a157518015150361129d578c611216565b8980fd5b8a80fd5b503d61127c565b87513d8d823e3d90fd5b959450509450505081813d83116112f1575b6112d2818361194a565b810103126112ed57518d9189918b918d918f919060446111d2565b8b80fd5b503d6112c8565b88513d8e823e3d90fd5b8987517f6b093aad000000000000000000000000000000000000000000000000000000008152fd5b89878a848f8f858080808f9461133e6119c9565b47905af13d156113f9573d9384116113ce57815193611384877fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f840116018661194a565b84523d878786013e5b15611396578580f35b90610dab9291519485947f788498dc0000000000000000000000000000000000000000000000000000000086528501528301906118a1565b82876041877f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b6060935061138d565b819996993573ffffffffffffffffffffffffffffffffffffffff8116810361129d578152959895908501908501611131565b8880fd5b6024846041857f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b5050346102475760206003193601126102475760ff8160209373ffffffffffffffffffffffffffffffffffffffff61149a6118ff565b168152600c855220541690519015158152f35b839034610247576020600319360112610247573567ffffffffffffffff8116809103610247576114db6119c9565b807fffffffffffffffffffffffffffffffffffffffffffffffff000000000000000060095416176009557f17c8a108c2eec39ecb21faf87558faedcf8b370c58e113e8aff0d52ff95976168280a280f35b5050346102475781600319360112610247576009548151911c60ff1615158152602090f35b5050346102475781600319360112610247576020906008549051908152f35b50503461024757816003193601126102475760209060ff60095460581c1690519015158152f35b5050346102475780600319360112610247576108236020926115ec6115ba6118ff565b913381526001865284812073ffffffffffffffffffffffffffffffffffffffff84168252865284602435912054611a48565b903361231e565b5050346102475781600319360112610247576020905160128152f35b839150346102475760606003193601126102475761162b6118ff565b611633611927565b91846044359473ffffffffffffffffffffffffffffffffffffffff8416815260016020528181203382526020522054907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611699575b602086610823878787611aab565b8482106116c257509183916116b7602096956108239503338361231e565b91939481935061168b565b60649060208751917f08c379a0000000000000000000000000000000000000000000000000000000008352820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152fd5b839034610247576020600319360112610247573561173b6119c9565b806007557f97ab21c06137f3c46fb0fe64a6b691e86433e8aff6abc7fda74f6d23b3d139618280a280f35b5050346102475781600319360112610247576020906002549051908152f35b5050346102475780600319360112610247576020906108236117a56118ff565b602435903361231e565b8484346102475781600319360112610247578160035492600184811c91818616958615611897575b6020968785108114610bf2578899509688969785829a529182600014611870575050600114611814575b505050610b699291610b5a91038561194a565b9190869350600383527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b5b8284106118585750505082010181610b5a610b69611801565b8054848a01860152889550879490930192810161183f565b60ff19168782015293151560051b86019093019350849250610b5a9150610b699050611801565b92607f16926117d7565b919082519283825260005b8481106118eb5750507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8460006020809697860101520116010190565b6020818301810151848301820152016118ac565b6004359073ffffffffffffffffffffffffffffffffffffffff8216820361192257565b600080fd5b6024359073ffffffffffffffffffffffffffffffffffffffff8216820361192257565b90601f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0910116810190811067ffffffffffffffff82111761198b57604052565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60043590811515820361192257565b73ffffffffffffffffffffffffffffffffffffffff6005541633036119ea57565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602060248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152fd5b91908201809211611a5557565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b91908203918211611a5557565b67ffffffffffffffff9182169082160391908211611a5557565b916009549260ff808560581c16158080916122f1575b6122aa578061227d575b6122365782156120cc576040948181871c16611e70575b818160481c16611cf8575b505073ffffffffffffffffffffffffffffffffffffffff809116928315611c755716928315611bf25760008381528060205281812054838110611b6f5791808285602095887fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef98965282875203828220558781522082815401905551908152a3565b608483517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152fd5b608490517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152fd5b608485517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152fd5b73ffffffffffffffffffffffffffffffffffffffff80841691600092808452602094600d8652808a86205416600014611ded57505050851691828252600e815267ffffffffffffffff92611d5184898520541642611a84565b8460095416809110611d9a57508291600e9189945252209042167fffffffffffffffffffffffffffffffffffffffffffffffff00000000000000008254161790555b3880611aed565b611db9858a86600e60249997611dbf97849a5252205416844216611a91565b90611a91565b9151917f3784ffc2000000000000000000000000000000000000000000000000000000008352166004820152fd5b90919492881684528884205416611e08575b50505050611d93565b808352600e825267ffffffffffffffff9384611e29818b8720541642611a84565b9116809110611d9a57508291600e9189945252209042167fffffffffffffffffffffffffffffffffffffffffffffffff000000000000000082541617905538808080611dff565b73ffffffffffffffffffffffffffffffffffffffff8060055416818516908082141590816120bf575b50806120b4575b806120a6575b611eb2575b5050611ae2565b838360501c161561204c575b60009181835288602092600d845286828620541680612036575b15611f7e575050600754808811611f48575091808992611eff948a16825252205485611a48565b600854809111611f1257505b3880611eab565b846044918851917fd9c02eae00000000000000000000000000000000000000000000000000000000835260048301526024820152fd5b876044918b51917f42b517e300000000000000000000000000000000000000000000000000000000835260048301526024820152fd5b90929391891690818352600d85528684842054169081612022575b5015611fe95750505050600754808511611fb35750611f0b565b846044918851917f42b517e300000000000000000000000000000000000000000000000000000000835260048301526024820152fd5b8152600c835284828220541615612003575b505050611f0b565b806120119352205485611a48565b600854809111611f12578681611ffb565b835250600c84528282205486161538611f99565b50828a168552600c845286828620541615611ed8565b80600052600b60205283886000205416158015612092575b15611ebe57600488517fa491421c000000000000000000000000000000000000000000000000000000008152fd5b508187166000528388600020541615612064565b5061dead8288161415611ea6565b508187161515611ea0565b9050828816141538611e99565b509192505073ffffffffffffffffffffffffffffffffffffffff8091169182156121b2571690811561212e576000602052816000527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef602060405160008152a3565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152fd5b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152fd5b60248473ffffffffffffffffffffffffffffffffffffffff604051917fdcd4a47e000000000000000000000000000000000000000000000000000000008352166004820152fd5b5073ffffffffffffffffffffffffffffffffffffffff8416600052600a6020528060406000205416611acb565b60248373ffffffffffffffffffffffffffffffffffffffff604051917f578f3e13000000000000000000000000000000000000000000000000000000008352166004820152fd5b5073ffffffffffffffffffffffffffffffffffffffff8316600052600a6020528160406000205416611ac1565b73ffffffffffffffffffffffffffffffffffffffff809116918215612410571691821561238c5760207f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925918360005260018252604060002085600052825280604060002055604051908152a3565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152fd5b60846040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152fdfea26469706673582212204fc7e95e796b4a6137c109b851f6e6e18389add771a9972ac7e381861c661faa64736f6c63430008130033

Deployed Bytecode

0x6080604081815260049182361015610022575b505050361561002057600080fd5b005b600092833560e01c91826306fdde03146117af57508163095ea7b31461178557816318160ddd146117665781631e293c101461171f57816323b872dd1461160f578163313ce567146115f357816339509351146115975781633dc599ff14611570578163453c2310146115515781634a62bb651461152c5781634b11982e146114ad5781634bb2c7851461146457816353a65f8d146110c25781635f1893611461104c578163679ca6e914610fc75781636e0e242714610f4257816370a0823114610eff578163715018a614610e7f57816375e3661e14610e0c578163787a08a614610de35781637ca8448a14610ce35781638da5cb5b14610cae578163959bd6c214610c2857816395d89b4114610af457816398cd1f6514610aab5781639a7a23d61461098c578163a457c2d7146108a7578163a4a4b19b14610859578163a82ed9ec1461082a578163a9059cbb146107f9578163b62496f5146107b0578163bbc0c74214610789578163bc205ad314610601578163c8c8ebe4146105e2578163c93dd791146105bb578163dbac26e914610585578163dd62ed3e1461052f578163e268e4d3146104e8578163f2fde38b146103cd578163f40acc3d1461037c578163f9f92be41461024b575063fe575a87146102005780610012565b346102475760206003193601126102475760ff8160209373ffffffffffffffffffffffffffffffffffffffff6102346118ff565b168152600a855220541690519015158152f35b5080fd5b91905034610378576020600319360112610378576102676118ff565b916102706119c9565b60ff60095460581c166103515773ffffffffffffffffffffffffffffffffffffffff80931692737a250d5630b4cf539739df2c5dacb4c659f2488d8414908115610325575b506102f75750818352600a6020528220600160ff198254161790557fffa4e6181777692565cf28528fc88fd1516ea86b56da075235fa575af6a4b8558280a280f35b8260249251917f2eb99554000000000000000000000000000000000000000000000000000000008352820152fd5b90507f0000000000000000000000003b9b9ec5d33045f0429bd0811f1c42adaaf3000d168314386102b5565b90517f360d8017000000000000000000000000000000000000000000000000000000008152fd5b8280fd5b5050346102475781600319360112610247576020905173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000003b9b9ec5d33045f0429bd0811f1c42adaaf3000d168152f35b905034610378576020600319360112610378576103e86118ff565b906103f16119c9565b73ffffffffffffffffffffffffffffffffffffffff809216928315610465575050600554827fffffffffffffffffffffffff0000000000000000000000000000000000000000821617600555167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08380a380f35b90602060849251917f08c379a0000000000000000000000000000000000000000000000000000000008352820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152fd5b83903461024757602060031936011261024757356105046119c9565b806008557f40532828d73d53d59eb97977ab23ce325d9da71d8e0b4b861fa4ec8b1e625ff18280a280f35b5050346102475780600319360112610247578060209261054d6118ff565b610555611927565b73ffffffffffffffffffffffffffffffffffffffff91821683526001865283832091168252845220549051908152f35b5050346102475760206003193601126102475760ff8160209373ffffffffffffffffffffffffffffffffffffffff6102346118ff565b50503461024757816003193601126102475760209060ff60095460481c1690519015158152f35b5050346102475781600319360112610247576020906007549051908152f35b9190503461037857806003193601126103785761061c6118ff565b90610625611927565b9161062e6119c9565b73ffffffffffffffffffffffffffffffffffffffff809116908115610761578251937f70a082310000000000000000000000000000000000000000000000000000000085523086860152866020958681602481885afa908115610757579082918895949391610723575b509460449394958751998a9687957fa9059cbb000000000000000000000000000000000000000000000000000000008752169085015260248401525af190811561071a57506106e5578280f35b81813d8311610713575b6106f9818361194a565b810103126102475751801515036107105738808280f35b80fd5b503d6106ef565b513d85823e3d90fd5b8581959692503d8311610750575b61073b818361194a565b81010312610710579151869392906044610698565b503d610731565b86513d84823e3d90fd5b8483517f6b093aad000000000000000000000000000000000000000000000000000000008152fd5b50503461024757816003193601126102475760209060ff60095460501c1690519015158152f35b5050346102475760206003193601126102475760ff8160209373ffffffffffffffffffffffffffffffffffffffff6107e66118ff565b168152600d855220541690519015158152f35b5050346102475780600319360112610247576020906108236108196118ff565b6024359033611aab565b5160018152f35b50503461024757816003193601126102475760209051737a250d5630b4cf539739df2c5dacb4c659f2488d8152f35b5050346102475760206003193601126102475767ffffffffffffffff8160209373ffffffffffffffffffffffffffffffffffffffff6108966118ff565b168152600e85522054169051908152f35b905082346107105782600319360112610710576108c26118ff565b918360243592338152600160205281812073ffffffffffffffffffffffffffffffffffffffff8616825260205220549082821061090957602085610823858503873361231e565b60849060208651917f08c379a0000000000000000000000000000000000000000000000000000000008352820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152fd5b919050346103785780600319360112610378576109a76118ff565b9060243590811593841594858403610aa7576109c16119c9565b73ffffffffffffffffffffffffffffffffffffffff809516947f0000000000000000000000003b9b9ec5d33045f0429bd0811f1c42adaaf3000d1685149081610a9f575b50610a71575090610a4a91838652600d602052610a31828288209060ff60ff1983541691151516179055565b600c60205285209060ff60ff1983541691151516179055565b7fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab8380a380f35b8360249251917fa3b4dfaf000000000000000000000000000000000000000000000000000000008352820152fd5b905038610a05565b8680fd5b5050346102475760206003193601126102475760ff8160209373ffffffffffffffffffffffffffffffffffffffff610ae16118ff565b168152600b855220541690519015158152f35b82843461071057806003193601126107105781519181845492600184811c91818616958615610c1e575b6020968785108114610bf2579087899a92868b999a9b529182600014610bc8575050600114610b6d575b8588610b6989610b5a848a038561194a565b519282849384528301906118a1565b0390f35b815286935091907f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b5b828410610bb05750505082010181610b5a610b6988610b48565b8054848a018601528895508794909301928101610b96565b60ff19168882015294151560051b87019094019450859350610b5a9250610b699150899050610b48565b60248360228c7f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b92607f1692610b1e565b833461071057602060031936011261071057610c426119ba565b610c4a6119c9565b15156009547fffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffff6aff000000000000000000008360501b169116176009557f4fa3af35030a6d531e010728ded75e43818c3b10f563bec547fff22472898da08280a280f35b50503461024757816003193601126102475760209073ffffffffffffffffffffffffffffffffffffffff600554169051908152f35b919050346103785760206003193601126103785782808080610d036118ff565b610d0b6119c9565b47905af1903d15610ddb573d9167ffffffffffffffff8311610daf57815192610d5c60207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f840116018561194a565b83523d85602085013e5b15610d6f578380f35b60209291610dab91519384937f788498dc00000000000000000000000000000000000000000000000000000000855284015260248301906118a1565b0390fd5b6024856041867f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b606091610d66565b50503461024757816003193601126102475760209067ffffffffffffffff600954169051908152f35b5050346102475760206003193601126102475773ffffffffffffffffffffffffffffffffffffffff610e3c6118ff565b610e446119c9565b1690818352600a602052822060ff1981541690557f7534c63860313c46c473e4e98328f37017e9674e2162faf1a3ad7a96236c3b7b8280a280f35b8334610710578060031936011261071057610e986119c9565b8073ffffffffffffffffffffffffffffffffffffffff6005547fffffffffffffffffffffffff00000000000000000000000000000000000000008116600555167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a380f35b505034610247576020600319360112610247578060209273ffffffffffffffffffffffffffffffffffffffff610f336118ff565b16815280845220549051908152f35b833461071057602060031936011261071057610f5c6119ba565b610f646119c9565b15156009547fffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffff69ff0000000000000000008360481b169116176009557fd1d1780a22c6c6d0acd196883c809b0735bc2ce7061c6f4e6d2bb707262c89128280a280f35b50503461024757602060031936011261024757610fe26119ba565b610fea6119c9565b1515907fffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffff68ff000000000000000083600954931b169116176009557f783c68f45f1cc97710ac752a41f6329f7f1c0a426030627b003237422175b0598280a280f35b83346107105780600319360112610710576110656119c9565b6b0100000000000000000000007fffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffff60095416176009557f8e17c47f6196408a8b1756a9b658f0b8b80c8b35da4f84725827f4dc70cfaac18180a180f35b82843461071057816003193601126107105767ffffffffffffffff928035848111610378573660238201121561037857808201358581116114385760059481861b96815193602093611116858b018761194a565b85528385016024809a83010191368311611434579598958a01905b82821061140257505050611143611927565b9661114c6119c9565b869473ffffffffffffffffffffffffffffffffffffffff92838a16965b835181101561132a57848782851b86010151166111846119c9565b80156113025786517f70a08231000000000000000000000000000000000000000000000000000000008152308b82015288818f81855afa9081156112f8578b8f938e908c948e9483916112b6575b509060449392918d5197889687957fa9059cbb0000000000000000000000000000000000000000000000000000000087528601528401525af180156112ac57611271575b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461124657600101611169565b8b8a60118b7f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b8781813d83116112a5575b611286818361194a565b810103126112a157518015150361129d578c611216565b8980fd5b8a80fd5b503d61127c565b87513d8d823e3d90fd5b959450509450505081813d83116112f1575b6112d2818361194a565b810103126112ed57518d9189918b918d918f919060446111d2565b8b80fd5b503d6112c8565b88513d8e823e3d90fd5b8987517f6b093aad000000000000000000000000000000000000000000000000000000008152fd5b89878a848f8f858080808f9461133e6119c9565b47905af13d156113f9573d9384116113ce57815193611384877fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f840116018661194a565b84523d878786013e5b15611396578580f35b90610dab9291519485947f788498dc0000000000000000000000000000000000000000000000000000000086528501528301906118a1565b82876041877f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b6060935061138d565b819996993573ffffffffffffffffffffffffffffffffffffffff8116810361129d578152959895908501908501611131565b8880fd5b6024846041857f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b5050346102475760206003193601126102475760ff8160209373ffffffffffffffffffffffffffffffffffffffff61149a6118ff565b168152600c855220541690519015158152f35b839034610247576020600319360112610247573567ffffffffffffffff8116809103610247576114db6119c9565b807fffffffffffffffffffffffffffffffffffffffffffffffff000000000000000060095416176009557f17c8a108c2eec39ecb21faf87558faedcf8b370c58e113e8aff0d52ff95976168280a280f35b5050346102475781600319360112610247576009548151911c60ff1615158152602090f35b5050346102475781600319360112610247576020906008549051908152f35b50503461024757816003193601126102475760209060ff60095460581c1690519015158152f35b5050346102475780600319360112610247576108236020926115ec6115ba6118ff565b913381526001865284812073ffffffffffffffffffffffffffffffffffffffff84168252865284602435912054611a48565b903361231e565b5050346102475781600319360112610247576020905160128152f35b839150346102475760606003193601126102475761162b6118ff565b611633611927565b91846044359473ffffffffffffffffffffffffffffffffffffffff8416815260016020528181203382526020522054907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611699575b602086610823878787611aab565b8482106116c257509183916116b7602096956108239503338361231e565b91939481935061168b565b60649060208751917f08c379a0000000000000000000000000000000000000000000000000000000008352820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152fd5b839034610247576020600319360112610247573561173b6119c9565b806007557f97ab21c06137f3c46fb0fe64a6b691e86433e8aff6abc7fda74f6d23b3d139618280a280f35b5050346102475781600319360112610247576020906002549051908152f35b5050346102475780600319360112610247576020906108236117a56118ff565b602435903361231e565b8484346102475781600319360112610247578160035492600184811c91818616958615611897575b6020968785108114610bf2578899509688969785829a529182600014611870575050600114611814575b505050610b699291610b5a91038561194a565b9190869350600383527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b5b8284106118585750505082010181610b5a610b69611801565b8054848a01860152889550879490930192810161183f565b60ff19168782015293151560051b86019093019350849250610b5a9150610b699050611801565b92607f16926117d7565b919082519283825260005b8481106118eb5750507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8460006020809697860101520116010190565b6020818301810151848301820152016118ac565b6004359073ffffffffffffffffffffffffffffffffffffffff8216820361192257565b600080fd5b6024359073ffffffffffffffffffffffffffffffffffffffff8216820361192257565b90601f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0910116810190811067ffffffffffffffff82111761198b57604052565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60043590811515820361192257565b73ffffffffffffffffffffffffffffffffffffffff6005541633036119ea57565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602060248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152fd5b91908201809211611a5557565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b91908203918211611a5557565b67ffffffffffffffff9182169082160391908211611a5557565b916009549260ff808560581c16158080916122f1575b6122aa578061227d575b6122365782156120cc576040948181871c16611e70575b818160481c16611cf8575b505073ffffffffffffffffffffffffffffffffffffffff809116928315611c755716928315611bf25760008381528060205281812054838110611b6f5791808285602095887fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef98965282875203828220558781522082815401905551908152a3565b608483517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152fd5b608490517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152fd5b608485517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152fd5b73ffffffffffffffffffffffffffffffffffffffff80841691600092808452602094600d8652808a86205416600014611ded57505050851691828252600e815267ffffffffffffffff92611d5184898520541642611a84565b8460095416809110611d9a57508291600e9189945252209042167fffffffffffffffffffffffffffffffffffffffffffffffff00000000000000008254161790555b3880611aed565b611db9858a86600e60249997611dbf97849a5252205416844216611a91565b90611a91565b9151917f3784ffc2000000000000000000000000000000000000000000000000000000008352166004820152fd5b90919492881684528884205416611e08575b50505050611d93565b808352600e825267ffffffffffffffff9384611e29818b8720541642611a84565b9116809110611d9a57508291600e9189945252209042167fffffffffffffffffffffffffffffffffffffffffffffffff000000000000000082541617905538808080611dff565b73ffffffffffffffffffffffffffffffffffffffff8060055416818516908082141590816120bf575b50806120b4575b806120a6575b611eb2575b5050611ae2565b838360501c161561204c575b60009181835288602092600d845286828620541680612036575b15611f7e575050600754808811611f48575091808992611eff948a16825252205485611a48565b600854809111611f1257505b3880611eab565b846044918851917fd9c02eae00000000000000000000000000000000000000000000000000000000835260048301526024820152fd5b876044918b51917f42b517e300000000000000000000000000000000000000000000000000000000835260048301526024820152fd5b90929391891690818352600d85528684842054169081612022575b5015611fe95750505050600754808511611fb35750611f0b565b846044918851917f42b517e300000000000000000000000000000000000000000000000000000000835260048301526024820152fd5b8152600c835284828220541615612003575b505050611f0b565b806120119352205485611a48565b600854809111611f12578681611ffb565b835250600c84528282205486161538611f99565b50828a168552600c845286828620541615611ed8565b80600052600b60205283886000205416158015612092575b15611ebe57600488517fa491421c000000000000000000000000000000000000000000000000000000008152fd5b508187166000528388600020541615612064565b5061dead8288161415611ea6565b508187161515611ea0565b9050828816141538611e99565b509192505073ffffffffffffffffffffffffffffffffffffffff8091169182156121b2571690811561212e576000602052816000527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef602060405160008152a3565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152fd5b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152fd5b60248473ffffffffffffffffffffffffffffffffffffffff604051917fdcd4a47e000000000000000000000000000000000000000000000000000000008352166004820152fd5b5073ffffffffffffffffffffffffffffffffffffffff8416600052600a6020528060406000205416611acb565b60248373ffffffffffffffffffffffffffffffffffffffff604051917f578f3e13000000000000000000000000000000000000000000000000000000008352166004820152fd5b5073ffffffffffffffffffffffffffffffffffffffff8316600052600a6020528160406000205416611ac1565b73ffffffffffffffffffffffffffffffffffffffff809116918215612410571691821561238c5760207f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925918360005260018252604060002085600052825280604060002055604051908152a3565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152fd5b60846040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152fdfea26469706673582212204fc7e95e796b4a6137c109b851f6e6e18389add771a9972ac7e381861c661faa64736f6c63430008130033

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.