ETH Price: $3,360.98 (-3.25%)
Gas: 4.45 Gwei

Token

ShibUtility (SHIBU)
 

Overview

Max Total Supply

40,000,000 SHIBU

Holders

134

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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:
ShibUtility

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 100000000 runs

Other Settings:
default evmVersion
File 1 of 12 : Shibu.sol
/**
 * ShibUtility | SHIBU
 *
 * Total Supply: 40,000,000
 * Max Wallet: 1%
 * Max Tx: 1%
 * Tax: 1% Liquidity, 4% Treasury
 *
 * ---
 *
 * In the jungle of DeFi,
 * Where apes roam free,
 * A new token rises,
 * With a unique strategy.
 *
 * Shibu, oh Shibu,
 * A community-driven crew,
 * With a direct liquidity injection,
 * That's sure to make the market move.
 *
 * The K Score rises,
 * As ETH is injected,
 * A fresh way to moonshot,
 * The token's price projected.
 *
 * The team is passionate,
 * About the future of DeFi,
 * With Ethereum for the launch,
 * But expansion is key.
 *
 * So join the Shibu family,
 * As we strive for glory,
 * To make our mark,
 * In the DeFi story.
 *
 * ---
 *
 * 🦴 https://Shibu.app
 * 🦴 https://shibutility.medium.com
 * 🦴 https://t.me/ShibUtilityPortal
 *
 */

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol";
import "@uniswap/v2-periphery/contracts/interfaces/IWETH.sol";
import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol";
import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol";

contract ShibUtility is ERC20, Pausable, Ownable {
    IUniswapV2Router02 public marketMakerRouter;
    address public marketMakerPair;

    address public treasury;

    uint256 public liquidityFee = 1;
    uint256 public treasuryFee = 4;
    uint256 public totalFees = liquidityFee + treasuryFee;

    uint256 private _maxWalletAmount;
    uint256 private _maxTxAmount;
    uint256 private _buyMultiplier = 100;
    uint256 private _sellMultiplier = 100;
    uint256 private _transferMultiplier = 0;
    uint256 private _swapAndLiqInjectThreshold;
    bool private _inSwap;

    mapping(address => bool) private _isFeeExempt;
    mapping(address => bool) private _isPauseExempt;
    mapping(address => bool) private _isMaxTxExempt;
    mapping(address => bool) private _isMaxWalletExempt;

    modifier swapping() {
        _inSwap = true;
        _;
        _inSwap = false;
    }

    event SetMaxWallet(uint256 amount);
    event SetMaxTx(uint256 amount);
    event SetSwapAndLiqInjectThreshold(uint256 threshold);
    event SetFees(uint256 buy, uint256 sell, uint256 transfer);
    event SetTreasury(address indexed treasury);
    event SwapAndLiqInject(uint256 amountTreasury, uint256 amountLiquidity);

    constructor() ERC20("ShibUtility", "SHIBU") {
        marketMakerRouter = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        marketMakerPair = IUniswapV2Factory(marketMakerRouter.factory()).createPair(
            address(this), marketMakerRouter.WETH()
        );

        _isFeeExempt[msg.sender] = true;
        _isPauseExempt[msg.sender] = true;
        _isMaxTxExempt[msg.sender] = true;
        _isMaxTxExempt[address(marketMakerRouter)] = true;
        _isMaxTxExempt[marketMakerPair] = true;
        _isMaxTxExempt[address(0)] = true;
        _isMaxWalletExempt[msg.sender] = true;
        _isMaxWalletExempt[marketMakerPair] = true;
        _isMaxWalletExempt[address(0)] = true;
        _isMaxWalletExempt[address(this)] = true;

        uint256 initialSupply = 40_000_000 * 10 ** 18; // 40 million
        _maxTxAmount = initialSupply / 100; // 1% of total supply
        _maxWalletAmount = initialSupply / 100; // 1% of total supply
        _swapAndLiqInjectThreshold = initialSupply * 8 / 1000; // 0.8% of total supply

        _mint(owner(), initialSupply);
        _pause();
    }

    receive() external payable {}

    function totalSupply() public view override returns (uint256) {
        return super.totalSupply() - balanceOf(address(0));
    }

    function _transfer(address from, address to, uint256 amount) internal override {
        if (_inSwap) {
            return super._transfer(from, to, amount);
        }

        if (!_isPauseExempt[from] && !_isPauseExempt[to]) {
            _requireNotPaused();
        }

        if (!_isMaxWalletExempt[to]) {
            require((balanceOf(to) + amount) <= _maxWalletAmount, "MAX_WALLET_EXCEEDED");
        }

        if (!_isMaxTxExempt[from]) {
            require((amount <= _maxTxAmount), "MAX_TX_EXCEEDED");
        }

        if (!_isFeeExempt[from] && !_isFeeExempt[to]) {
            amount = _takeFee(from, to, amount);

            if (_shouldSwapAndLiqInject()) {
                _swapAndLiqInject();
            }
        }

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

    function _shouldSwapAndLiqInject() internal view returns (bool) {
        return msg.sender != marketMakerPair && !paused()
            && balanceOf(address(this)) >= _swapAndLiqInjectThreshold;
    }

    function _takeFee(address from, address to, uint256 amount) internal returns (uint256) {
        if (amount == 0 || totalFees == 0) {
            return amount;
        }

        uint256 multiplier;

        if (marketMakerPair == to) {
            multiplier = _sellMultiplier;
        } else if (marketMakerPair == from) {
            multiplier = _buyMultiplier;
        } else {
            multiplier = _transferMultiplier;
        }

        uint256 fee = (amount * totalFees * multiplier) / 10_000; // allow for 2 decimal places of precision

        if (fee > 0) {
            super._transfer(from, address(this), fee);
        }

        return amount - fee;
    }

    function _swapAndLiqInject() internal swapping {
        uint256 balanceToken = balanceOf(address(this));

        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = marketMakerRouter.WETH();
        _approve(address(this), address(marketMakerRouter), balanceToken);
        marketMakerRouter.swapExactTokensForETH(
            balanceToken - 1 ether, 0, path, address(this), block.timestamp
        );

        uint256 balanceETH = address(this).balance;

        uint256 amountTreasury = balanceETH * treasuryFee / totalFees;
        uint256 amountLiquidity = balanceETH - amountTreasury;
        (bool success,) = payable(treasury).call{value: amountTreasury, gas: 30_000}("");
        require(success, "TRANSFER_FAILED");

        if (amountLiquidity > 0) {
            IWETH weth = IWETH(marketMakerRouter.WETH());

            weth.deposit{value: amountLiquidity}();
            weth.transfer(address(marketMakerRouter), amountLiquidity);

            IUniswapV2Pair(marketMakerPair).sync();
        }
        emit SwapAndLiqInject(amountTreasury, amountLiquidity);
    }

    function burn(uint256 amount) external onlyOwner {
        uint256 supply = totalSupply();
        uint256 maxWalletPercent = _maxWalletAmount * 10_000 / supply; // base 10000
        uint256 maxTxPercent = _maxTxAmount * 10_000 / supply; // base 10000
        uint256 swapAndLiqInjectThresholdPercent = _swapAndLiqInjectThreshold * 100 / supply;

        _burn(msg.sender, amount);

        // Update values where totalSupply() is used
        setMaxWallet(maxWalletPercent);
        setMaxTx(maxTxPercent);
        setSwapAndLiqInjectThreshold(swapAndLiqInjectThresholdPercent * totalSupply() / 10 ** 18);
    }

    function setFeeExempt(address wallet, bool status) external onlyOwner {
        _isFeeExempt[wallet] = status;
    }

    function setMaxTxExempt(address wallet, bool status) external onlyOwner {
        _isMaxTxExempt[wallet] = status;
    }

    function setMaxWalletExempt(address wallet, bool status) external onlyOwner {
        _isMaxWalletExempt[wallet] = status;
    }

    function setPauseExempt(address wallet, bool status) external onlyOwner {
        _isPauseExempt[wallet] = status;
    }

    /// @param percent - Max percent of total supply a wallet may hold. Uses a
    /// base of 10000 e.g., 10000 = 100%, 125 = 1.25%.
    function setMaxWallet(uint256 percent) public onlyOwner {
        require(percent >= 50, "MAX_WALLET_UNDER_0.5%");

        _maxWalletAmount = totalSupply() * percent / 10_000;
        emit SetMaxWallet(_maxWalletAmount);
    }

    /// @param percent - Max percent of total supply a transaction may transfer.
    /// Uses a base of 10000 e.g., 10000 = 100%, 125 = 1.25%.
    function setMaxTx(uint256 percent) public onlyOwner {
        require(percent >= 10, "MAX_TX_UNDER_0.1%");

        _maxTxAmount = totalSupply() * percent / 10_000;
        emit SetMaxTx(_maxTxAmount);
    }

    /// @param amount - Threshold amount in ERC20 token (no decimals). When the
    /// contract's balance reaches this amount, it may distribute held funds.
    function setSwapAndLiqInjectThreshold(uint256 amount) public onlyOwner {
        uint256 newThreshold = amount * 10 ** 18;
        require(newThreshold <= totalSupply() / 20, "THRESHOLD_OVER_5%_SUPPLY");

        _swapAndLiqInjectThreshold = newThreshold;
        emit SetSwapAndLiqInjectThreshold(newThreshold);
    }

    function _validateFees() internal {
        uint256 buyFee = totalFees * _buyMultiplier / 100;
        uint256 sellFee = totalFees * _sellMultiplier / 100;
        uint256 transferFee = totalFees * _transferMultiplier / 100;

        require(buyFee <= 20, "BUY_FEE_OVER_20%");
        require(sellFee <= 20, "SELL_FEE_OVER_20%");
        require(buyFee + sellFee <= 30, "BUY+SELL_FEE_OVER_30%");
        require(transferFee <= 10, "TRANSFER_FEE_OVER_10%");

        emit SetFees(buyFee, sellFee, transferFee);
    }

    function setMultipliers(
        uint256 buyMultiplier,
        uint256 sellMultiplier,
        uint256 transferMultiplier
    ) external onlyOwner {
        _buyMultiplier = buyMultiplier;
        _sellMultiplier = sellMultiplier;
        _transferMultiplier = transferMultiplier;

        _validateFees();
    }

    function setFees(uint256 newLiquidityFee, uint256 newTreasuryFee) external onlyOwner {
        liquidityFee = newLiquidityFee;
        treasuryFee = newTreasuryFee;
        totalFees = newLiquidityFee + newTreasuryFee;

        _validateFees();
    }

    function setTreasury(address newTreasury) external onlyOwner {
        treasury = newTreasury;
        emit SetTreasury(newTreasury);
    }

    // Pausable so that we can launch V2 and pause V1 when utility is released.
    function pause() external onlyOwner {
        _pause();
    }

    function unpause() external onlyOwner {
        _unpause();
    }

    // In case of stuck ETH or tokens during pause.
    function clearStuckBalance(uint256 percent) external onlyOwner {
        require(percent <= 100, "OVER_100%");

        uint256 amount = (address(this).balance * percent) / 100;
        payable(msg.sender).transfer(amount);
    }

    function clearStuckToken(address token, uint256 amount) external onlyOwner {
        if (amount == 0) {
            amount = ERC20(token).balanceOf(address(this));
        }

        require(ERC20(token).transfer(msg.sender, amount), "TRANSFER_FAILED");
    }
}

/// @dev 🐕

File 2 of 12 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.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 anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

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

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

File 3 of 12 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

File 4 of 12 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.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].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 5 of 12 : 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 6 of 12 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

File 7 of 12 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 8 of 12 : IUniswapV2Factory.sol
pragma solidity >=0.5.0;

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

    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(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

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

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

File 9 of 12 : IUniswapV2Pair.sol
pragma solidity >=0.5.0;

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;

    event Mint(address indexed sender, uint amount0, uint amount1);
    event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

File 10 of 12 : 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);
}

File 11 of 12 : IUniswapV2Router02.sol
pragma solidity >=0.6.2;

import './IUniswapV2Router01.sol';

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

File 12 of 12 : IWETH.sol
pragma solidity >=0.5.0;

interface IWETH {
    function deposit() external payable;
    function transfer(address to, uint value) external returns (bool);
    function withdraw(uint) external;
}

Settings
{
  "viaIR": true,
  "optimizer": {
    "enabled": true,
    "runs": 100000000
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "remappings": [
    "ds-test/=lib/forge-std/lib/ds-test/src/",
    "forge-std/=lib/forge-std/src/"
  ],
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"buy","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sell","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"transfer","type":"uint256"}],"name":"SetFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SetMaxTx","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SetMaxWallet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"threshold","type":"uint256"}],"name":"SetSwapAndLiqInjectThreshold","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"treasury","type":"address"}],"name":"SetTreasury","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amountTreasury","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountLiquidity","type":"uint256"}],"name":"SwapAndLiqInject","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"clearStuckBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"clearStuckToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketMakerPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketMakerRouter","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"},{"internalType":"bool","name":"status","type":"bool"}],"name":"setFeeExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLiquidityFee","type":"uint256"},{"internalType":"uint256","name":"newTreasuryFee","type":"uint256"}],"name":"setFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"setMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"},{"internalType":"bool","name":"status","type":"bool"}],"name":"setMaxTxExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"setMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"},{"internalType":"bool","name":"status","type":"bool"}],"name":"setMaxWalletExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"buyMultiplier","type":"uint256"},{"internalType":"uint256","name":"sellMultiplier","type":"uint256"},{"internalType":"uint256","name":"transferMultiplier","type":"uint256"}],"name":"setMultipliers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"},{"internalType":"bool","name":"status","type":"bool"}],"name":"setPauseExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setSwapAndLiqInjectThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newTreasury","type":"address"}],"name":"setTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasury","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"treasuryFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604081815234620006e7576200001782620006ec565b600b825260206a536869625574696c69747960a81b818401528151926200003e84620006ec565b600580855264534849425560d81b8386015281519091906001600160401b03808211620005e95760038054926001948585811c95168015620006dc575b88861014620006c6578190601f9586811162000672575b5088908683116001146200060b57600092620005ff575b505060001982841b1c191690851b1781555b8751918211620005e95760049788548581811c91168015620005de575b88821014620005c9579081858594931162000573575b5087908584116001146200050857600093620004fc575b505082851b92600019911b1c19161786555b82546001600160a81b0319811633600881811b610100600160a81b03169290921786556001600160a01b03939290911c83167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0600080a38260095586600a5583600b556064600e556064600f556000601055737a250d5630b4cf539739df2c5dacb4c659f2488d60018060a01b0319908082600654161760065587519063c45a015560e01b825287828b81845afa918215620004cd578a92918991600093620004d8575b508a516315ab88c960e31b815293849182905afa918215620004cd5785928b848b948d94600094620004a1575b5090600091604494955197889687956364e329cb60e11b87523090870152166024850152165af1908115620004965790849160009162000462575b50169060075416176007553360005260138552856000209160ff19928484825416179055601486528660002084848254161790556015865286600020848482541617905580600654166000528660002084848254161790558060075416600052866000208484825416179055600080528660002084848254161790553360005260168652866000208484825416179055806007541660005286600020848482541617905560008052866000208484825416179055306000528660002084848254161790556954b40b1f852bda00000080600d55600c556943c33c19375648000000601155845460081c169081156200042157506002546a2116545850052128000000908181018091116200040c57866000927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef926002558484528382528984208181540190558951908152a3825460ff8116620003d6577f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258959650161790558251338152a151612f7a90816200074e8239f35b855162461bcd60e51b8152808801869052601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606490fd5b601189634e487b7160e01b6000525260246000fd5b876064918789519262461bcd60e51b845283015260248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152fd5b620004879150883d8a116200048e575b6200047e818362000708565b8101906200072c565b3862000243565b503d62000472565b88513d6000823e3d90fd5b6044945090620004c360009392883d8a116200048e576200047e818362000708565b9450909162000208565b89513d6000823e3d90fd5b620004f4919350823d84116200048e576200047e818362000708565b9138620001db565b01519150388062000105565b9190869450601f198416928b600052896000209360005b8b8282106200055c575050851162000541575b50505050811b01865562000117565b01519060f884600019921b161c191690553880808062000532565b8385015187558a989096019593840193016200051f565b90919250896000528760002085808601891c8201928a8710620005bf575b9188918796959493018a1c01915b828110620005af575050620000ee565b600081558695508891016200059f565b9250819262000591565b60228a634e487b7160e01b6000525260246000fd5b90607f1690620000d8565b634e487b7160e01b600052604160045260246000fd5b015190503880620000a9565b90879350601f19831691856000528a6000209260005b8c8282106200065b575050841162000642575b505050811b018155620000bb565b015160001983861b60f8161c1916905538808062000634565b8385015186558b9790950194938401930162000621565b9091508360005288600020868085018a1c8201928b8610620006bc575b91899186959493018b1c01915b828110620006ac57505062000092565b600081558594508991016200069c565b925081926200068f565b634e487b7160e01b600052602260045260246000fd5b94607f16946200007b565b600080fd5b604081019081106001600160401b03821117620005e957604052565b601f909101601f19168101906001600160401b03821190821017620005e957604052565b90816020910312620006e757516001600160a01b0381168103620006e7579056fe60806040818152600480361015610021575b505050361561001f57600080fd5b005b600092833560e01c90816306fdde0314611ab257508063095ea7b314611a6a5780630b78f9c014611a1257806313114a9d146119d557806318160ddd146119935780631da1db5e146118ba57806323b872dd1461178c578063313ce56714611752578063390f4e881461163157806339509351146115b75780633f4ba83a146114c357806342966c6814610fed57806343afb79814610f805780635c975abb14610f3e5780635d0044ca14610e5c57806361d027b314610e095780636ce46bc314610db857806370a0823114610d57578063715018a614610cb65780637537ccb614610c4957806377b54bad14610aab5780637d7d3aaf14610a3e5780638456cb59146109a75780638da5cb5b146109515780638ebfc796146108e157806395d89b411461078857806398118cb41461074b578063a457c2d714610649578063a9059cbb146105fa578063b44b74e5146105a7578063bc337182146104c0578063cc32d17614610483578063d69756ff14610430578063dd62ed3e146103b8578063f0f442601461030e5763f2fde38b03610011573461030a5760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261030a576101ed611c63565b6101f5611d08565b73ffffffffffffffffffffffffffffffffffffffff9182821693841561028757505074ffffffffffffffffffffffffffffffffffffffff006005549160081b167fffffffffffffffffffffff0000000000000000000000000000000000000000ff82161760055560081c167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08380a380f35b90602060849251917f08c379a0000000000000000000000000000000000000000000000000000000008352820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152fd5b8280fd5b83346103b55760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103b55773ffffffffffffffffffffffffffffffffffffffff61035b611c63565b610363611d08565b16807fffffffffffffffffffffffff000000000000000000000000000000000000000060085416176008557fcb7ef3e545f5cdb893f5c568ba710fe08f336375a2d9fd66e161033f8fc09ef38280a280f35b80fd5b50503461042c57807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261042c57806020926103f4611c63565b6103fc611c8b565b73ffffffffffffffffffffffffffffffffffffffff91821683526001865283832091168252845220549051908152f35b5080fd5b50503461042c57817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261042c5760209073ffffffffffffffffffffffffffffffffffffffff600754169051908152f35b50503461042c57817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261042c57602090600a549051908152f35b503461030a5760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261030a578035906104fb611d08565b600a821061054a57507f48d27f9cdb4018a47f7ef136f7a1470dfc52b98041efb988d7658f77821cf5929161271061053c602093610537611fcc565b612ba5565b049081600d5551908152a180f35b60649060208451917f08c379a0000000000000000000000000000000000000000000000000000000008352820152601160248201527f4d41585f54585f554e4445525f302e31250000000000000000000000000000006044820152fd5b50503461042c57817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261042c5760209073ffffffffffffffffffffffffffffffffffffffff600654169051908152f35b50503461042c57807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261042c57602090610642610638611c63565b6024359033612005565b5160018152f35b5082346103b557827ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103b557610681611c63565b918360243592338152600160205281812073ffffffffffffffffffffffffffffffffffffffff861682526020522054908282106106c8576020856106428585038733611e4a565b60849060208651917f08c379a0000000000000000000000000000000000000000000000000000000008352820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152fd5b50503461042c57817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261042c576020906009549051908152f35b5091903461042c57817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261042c57805191809380549160019083821c928285169485156108d7575b60209586861081146108ab578589529081156108695750600114610811575b61080d8787610803828c0383611dcd565b5191829182611bfd565b0390f35b81529295507f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b5b828410610856575050508261080d94610803928201019438806107f2565b8054868501880152928601928101610838565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00168887015250505050151560051b83010192506108038261080d38806107f2565b6024846022857f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b93607f16936107d3565b50503461042c5773ffffffffffffffffffffffffffffffffffffffff61094e9161090a36611cae565b9290610914611d08565b168452601360205283209060ff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0083541691151516179055565b80f35b50503461042c57817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261042c5760209073ffffffffffffffffffffffffffffffffffffffff60055460081c169051908152f35b50503461042c57817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261042c5760207f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25891610a03611d08565b610a0b61292c565b60017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00600554161760055551338152a180f35b50503461042c5773ffffffffffffffffffffffffffffffffffffffff61094e91610a6736611cae565b9290610a71611d08565b168452601560205283209060ff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0083541691151516179055565b503461030a57817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261030a57610ae2611c63565b9060243590610aef611d08565b8115610ba6575b83517fa9059cbb000000000000000000000000000000000000000000000000000000008152339181019182526020828101939093529283918290879073ffffffffffffffffffffffffffffffffffffffff9083906040015b0393165af1908115610b9a5761094e92508391610b6c575b50612cc2565b610b8d915060203d8111610b93575b610b858183611dcd565b810190612d27565b38610b66565b503d610b7b565b505051903d90823e3d90fd5b905082517f70a08231000000000000000000000000000000000000000000000000000000008152308282015260208160248173ffffffffffffffffffffffffffffffffffffffff87165afa908115610c3f578591610c06575b5090610af6565b9190506020823d8211610c37575b81610c2160209383611dcd565b81010312610c33579051610b4e610bff565b8480fd5b3d9150610c14565b84513d87823e3d90fd5b50503461042c5773ffffffffffffffffffffffffffffffffffffffff61094e91610c7236611cae565b9290610c7c611d08565b168452601660205283209060ff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0083541691151516179055565b83346103b557807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103b557610ced611d08565b8073ffffffffffffffffffffffffffffffffffffffff6005547fffffffffffffffffffffff0000000000000000000000000000000000000000ff811660055560081c167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a380f35b50503461042c5760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261042c578060209273ffffffffffffffffffffffffffffffffffffffff610da9611c63565b16815280845220549051908152f35b83823461042c5760607ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261042c57610df1611d08565b35600e55602435600f5560443560105561094e612d3f565b50503461042c57817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261042c5760209073ffffffffffffffffffffffffffffffffffffffff600854169051908152f35b503461030a5760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261030a57803590610e97611d08565b60328210610ee157507fa2c87c3e7a3048198ae94e814f6a27e12a4e2a7476e33a0db4d97ffeaf63618691612710610ed3602093610537611fcc565b049081600c5551908152a180f35b60649060208451917f08c379a0000000000000000000000000000000000000000000000000000000008352820152601560248201527f4d41585f57414c4c45545f554e4445525f302e352500000000000000000000006044820152fd5b50503461042c57817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261042c5760209060ff6005541690519015158152f35b50503461042c5773ffffffffffffffffffffffffffffffffffffffff61094e91610fa936611cae565b9290610fb3611d08565b168452601460205283209060ff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0083541691151516179055565b5091903461042c57602090817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261030a5783359361102c611d08565b611034611fcc565b94600c546127109081810290808204831490151715611497578761105791612bb8565b600d548281029080820484149015171561146b578861107591612bb8565b90601154986064998a8102908082048c149015171561143f579061109891612bb8565b9333156113be573389528888528689205481811061133d5790808a92338452838b520388832055806002540360025587519081527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef893392a36110f9611d08565b603281106112e25786836111307fa2c87c3e7a3048198ae94e814f6a27e12a4e2a7476e33a0db4d97ffeaf63618693610537611fcc565b0480600c558751908152a1611143611d08565b600a811061128657856111a5959493926111807f48d27f9cdb4018a47f7ef136f7a1470dfc52b98041efb988d7658f77821cf59293610537611fcc565b0480600d558551908152a1670de0b6b3a764000093849161119f611fcc565b90612ba5565b046111ae611d08565b83810293818504149015171561125a5760146111c8611fcc565b04831161120057507fc1637594c5e97012ad51ead9a106f3916e6820b7705b39ee00950ed9cdc883a99394508160115551908152a180f35b83869251917f08c379a0000000000000000000000000000000000000000000000000000000008352820152601860248201527f5448524553484f4c445f4f5645525f35255f535550504c5900000000000000006044820152fd5b8460116024927f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b505050925051917f08c379a0000000000000000000000000000000000000000000000000000000008352820152601160248201527f4d41585f54585f554e4445525f302e31250000000000000000000000000000006044820152fd5b8885888851917f08c379a0000000000000000000000000000000000000000000000000000000008352820152601560248201527f4d41585f57414c4c45545f554e4445525f302e352500000000000000000000006044820152fd5b6084877f63650000000000000000000000000000000000000000000000000000000000008d8c8c51937f08c379a0000000000000000000000000000000000000000000000000000000008552840152602260248401527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e6044840152820152fd5b6084867f73000000000000000000000000000000000000000000000000000000000000008c8b8b51937f08c379a0000000000000000000000000000000000000000000000000000000008552840152602160248401527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044840152820152fd5b60248a6011897f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b6024886011877f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b6024876011867f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b503461030a57827ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261030a576114fa611d08565b6005549060ff82161561155a57507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa917fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff006020921660055551338152a180f35b60649060208451917f08c379a0000000000000000000000000000000000000000000000000000000008352820152601460248201527f5061757361626c653a206e6f74207061757365640000000000000000000000006044820152fd5b50503461042c57807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261042c5761064260209261162a6115f8611c63565b913381526001865284812073ffffffffffffffffffffffffffffffffffffffff84168252865284602435912054611e0e565b9033611e4a565b50903461030a5760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261030a5781359161166d611d08565b670de0b6b3a764000092838102938185041490151715611726576014611691611fcc565b0483116116ca5750816020917fc1637594c5e97012ad51ead9a106f3916e6820b7705b39ee00950ed9cdc883a99360115551908152a180f35b602060649251917f08c379a0000000000000000000000000000000000000000000000000000000008352820152601860248201527f5448524553484f4c445f4f5645525f35255f535550504c5900000000000000006044820152fd5b8360116024927f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b50503461042c57817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261042c576020905160128152f35b5082903461042c5760607ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261042c576117c6611c63565b6117ce611c8b565b91846044359473ffffffffffffffffffffffffffffffffffffffff8416815260016020528181203382526020522054907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611834575b602086610642878787612005565b84821061185d57509183916118526020969561064295033383611e4a565b919394819350611826565b60649060208751917f08c379a0000000000000000000000000000000000000000000000000000000008352820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152fd5b503461030a5760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261030a578035906118f5611d08565b606482116119365750828080606461190e829547612ba5565b0481811561192d575b3390f115611923575080f35b51903d90823e3d90fd5b506108fc611917565b60649060208451917f08c379a0000000000000000000000000000000000000000000000000000000008352820152600960248201527f4f5645525f3130302500000000000000000000000000000000000000000000006044820152fd5b50503461042c57817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261042c576020906119ce611fcc565b9051908152f35b50503461042c57817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261042c57602090600b549051908152f35b50903461030a577ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261042c57611a5f903560243590611a52611d08565b8060095581600a55611e0e565b600b5561094e612d3f565b50503461042c57807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261042c57602090610642611aa8611c63565b6024359033611e4a565b9291905034611bf957837ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112611bf957600354600181811c9186908281168015611bef575b6020958686108214611bc35750848852908115611b835750600114611b2a575b61080d8686610803828b0383611dcd565b929550600383527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b5b828410611b70575050508261080d94610803928201019438611b19565b8054868501880152928601928101611b53565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001687860152505050151560051b83010192506108038261080d38611b19565b8360226024927f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b93607f1693611af9565b8380fd5b60208082528251818301819052939260005b858110611c4f575050507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8460006040809697860101520116010190565b818101830151848201604001528201611c0f565b6004359073ffffffffffffffffffffffffffffffffffffffff82168203611c8657565b600080fd5b6024359073ffffffffffffffffffffffffffffffffffffffff82168203611c8657565b7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc6040910112611c865760043573ffffffffffffffffffffffffffffffffffffffff81168103611c8657906024358015158103611c865790565b73ffffffffffffffffffffffffffffffffffffffff60055460081c163303611d2c57565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602060248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152fd5b67ffffffffffffffff8111611d9e57604052565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b90601f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0910116810190811067ffffffffffffffff821117611d9e57604052565b91908201809211611e1b57565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b73ffffffffffffffffffffffffffffffffffffffff809116918215611f3c5716918215611eb85760207f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925918360005260018252604060002085600052825280604060002055604051908152a3565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152fd5b60846040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152fd5b91908203918211611e1b57565b60025460008080526020527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb55461200291611fbf565b90565b9291906012549360009460ff8091166120a85773ffffffffffffffffffffffffffffffffffffffff82168087526014602052816040882054161580612905575b6128f8575b73ffffffffffffffffffffffffffffffffffffffff8416908188526016602052826040892054161561287f575b80885260156020528260408920541615612817575b8752601360205281604088205416159081612806575b506120b6575b506120b4939450612996565b565b926120c2908383612bf1565b9273ffffffffffffffffffffffffffffffffffffffff6007541633141590816127f9575b50806127e2575b6120f8575b846120a8565b60017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0060125416176012553085528460205260408520546040516060810181811067ffffffffffffffff8211176126c3576040526002815260403660208301378051156127b55730602082015273ffffffffffffffffffffffffffffffffffffffff600654166040517fad5c4648000000000000000000000000000000000000000000000000000000008152602081600481855afa9081156127aa57899161278b575b5082516001101561275e576121ed9173ffffffffffffffffffffffffffffffffffffffff859216604085015230611e4a565b73ffffffffffffffffffffffffffffffffffffffff6006541690827ffffffffffffffffffffffffffffffffffffffffffffffffff21f494c589c0000810111612731579187916040519384927f18cbafe50000000000000000000000000000000000000000000000000000000084527ffffffffffffffffffffffffffffffffffffffffffffffffff21f494c589c000060a485019101600485015284602485015260a060448501528151809152602060c48501920190855b8181106126ff575050508383809230606483015242608483015203925af180156126f45761262a575b5047946122f36122ec6122e3600a5489612ba5565b600b5490612bb8565b8097611fbf565b90808080808a73ffffffffffffffffffffffffffffffffffffffff60085416617530f13d15612621573d67ffffffffffffffff81116125f4576040516123749291612366601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01660200183611dcd565b81528360203d92013e612cc2565b816123df575b5060406120b495967f5e5826f19116f23b10cae156791cb08874a123f44426986e5ff124d597a6e6689282519182526020820152a17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00601254166012558493506120f2565b6004602073ffffffffffffffffffffffffffffffffffffffff60065416604051928380927fad5c46480000000000000000000000000000000000000000000000000000000082525afa908115612576579073ffffffffffffffffffffffffffffffffffffffff9183916125c5575b5016803b1561042c576040517fd0e30db0000000000000000000000000000000000000000000000000000000008152828160048187865af180156125ba57908492916125a0575b506006546040517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff909116600482015260248101929092526020908290818581604481015b03925af1801561257657612581575b5073ffffffffffffffffffffffffffffffffffffffff60075416803b1561042c578180916004604051809481937ffff6cae90000000000000000000000000000000000000000000000000000000083525af1801561257657612562575b5061237a565b61256c8291611d8a565b6103b5578061255c565b6040513d84823e3d90fd5b6125999060203d602011610b9357610b858183611dcd565b50386124ff565b91602091936125b16124f094611d8a565b93915091612494565b6040513d85823e3d90fd5b6125e7915060203d6020116125ed575b6125df8183611dcd565b810190612c96565b3861244d565b503d6125d5565b6024837f4e487b710000000000000000000000000000000000000000000000000000000081526041600452fd5b61237490612cc2565b3d8087833e6126398183611dcd565b8101906020818303126126f05780519067ffffffffffffffff82116126bf570181601f820112156126f05780519067ffffffffffffffff82116126c3576020808360051b936040519061268e83870183611dcd565b815201928201019283116126bf57602001905b8282106126af5750506122ce565b81518152602091820191016126a1565b8780fd5b6024887f4e487b710000000000000000000000000000000000000000000000000000000081526041600452fd5b8680fd5b6040513d88823e3d90fd5b825173ffffffffffffffffffffffffffffffffffffffff1684528c9650879550602093840193909201916001016122a5565b6024887f4e487b710000000000000000000000000000000000000000000000000000000081526011600452fd5b6024897f4e487b710000000000000000000000000000000000000000000000000000000081526032600452fd5b6127a4915060203d6020116125ed576125df8183611dcd565b386121bb565b6040513d8b823e3d90fd5b6024877f4e487b710000000000000000000000000000000000000000000000000000000081526032600452fd5b5030855284602052604085205460115411156120ed565b90506005541615386120e6565b8752506040862054811615386120a2565b600d5486111561208c5760646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f4d41585f54585f455843454544454400000000000000000000000000000000006044820152fd5b876020526128918660408a2054611e0e565b600c5410156120775760646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4d41585f57414c4c45545f4558434545444544000000000000000000000000006044820152fd5b61290061292c565b61204a565b5073ffffffffffffffffffffffffffffffffffffffff841687528160408820541615612045565b60ff6005541661293857565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f5061757361626c653a20706175736564000000000000000000000000000000006044820152fd5b73ffffffffffffffffffffffffffffffffffffffff809116918215612b215716918215612a9d57600082815280602052604081205491808310612a1957604082827fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef958760209652828652038282205586815220818154019055604051908152a3565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152fd5b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152fd5b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152fd5b81810292918115918404141715611e1b57565b8115612bc2570490565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b9082158015612c8c575b612c8757916120029273ffffffffffffffffffffffffffffffffffffffff80806007541692168214600014612c64575050612710612c42600f545b610537600b5485612ba5565b04918280612c52575b5050611fbf565b612c5d913090612996565b3882612c4b565b831603612c7957612710612c42600e54612c36565b612710612c42601054612c36565b505090565b50600b5415612bfb565b90816020910312611c86575173ffffffffffffffffffffffffffffffffffffffff81168103611c865790565b15612cc957565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f5452414e534645525f4641494c454400000000000000000000000000000000006044820152fd5b90816020910312611c8657518015158103611c865790565b600b54606480612d51600e5484612ba5565b049181612d6f81612d64600f5485612ba5565b049260105490612ba5565b049160148411612ee85760148211612e8c57601e612d8d8386611e0e565b11612e3057600a8311612dd45750916060917f37322890d66d781059d797be5e2f27dc160a34d8bc0a8e09116cb9a773ce88ef9360405192835260208301526040820152a1565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f5452414e534645525f4645455f4f5645525f31302500000000000000000000006044820152fd5b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f4255592b53454c4c5f4645455f4f5645525f33302500000000000000000000006044820152fd5b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f53454c4c5f4645455f4f5645525f3230250000000000000000000000000000006044820152fd5b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f4255595f4645455f4f5645525f323025000000000000000000000000000000006044820152fdfea264697066735822122065f968ced4ae1088a81d268e1cf5a298224557bd23b5b941c2065c6f3ea8c0e864736f6c63430008110033

Deployed Bytecode

0x60806040818152600480361015610021575b505050361561001f57600080fd5b005b600092833560e01c90816306fdde0314611ab257508063095ea7b314611a6a5780630b78f9c014611a1257806313114a9d146119d557806318160ddd146119935780631da1db5e146118ba57806323b872dd1461178c578063313ce56714611752578063390f4e881461163157806339509351146115b75780633f4ba83a146114c357806342966c6814610fed57806343afb79814610f805780635c975abb14610f3e5780635d0044ca14610e5c57806361d027b314610e095780636ce46bc314610db857806370a0823114610d57578063715018a614610cb65780637537ccb614610c4957806377b54bad14610aab5780637d7d3aaf14610a3e5780638456cb59146109a75780638da5cb5b146109515780638ebfc796146108e157806395d89b411461078857806398118cb41461074b578063a457c2d714610649578063a9059cbb146105fa578063b44b74e5146105a7578063bc337182146104c0578063cc32d17614610483578063d69756ff14610430578063dd62ed3e146103b8578063f0f442601461030e5763f2fde38b03610011573461030a5760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261030a576101ed611c63565b6101f5611d08565b73ffffffffffffffffffffffffffffffffffffffff9182821693841561028757505074ffffffffffffffffffffffffffffffffffffffff006005549160081b167fffffffffffffffffffffff0000000000000000000000000000000000000000ff82161760055560081c167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08380a380f35b90602060849251917f08c379a0000000000000000000000000000000000000000000000000000000008352820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152fd5b8280fd5b83346103b55760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103b55773ffffffffffffffffffffffffffffffffffffffff61035b611c63565b610363611d08565b16807fffffffffffffffffffffffff000000000000000000000000000000000000000060085416176008557fcb7ef3e545f5cdb893f5c568ba710fe08f336375a2d9fd66e161033f8fc09ef38280a280f35b80fd5b50503461042c57807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261042c57806020926103f4611c63565b6103fc611c8b565b73ffffffffffffffffffffffffffffffffffffffff91821683526001865283832091168252845220549051908152f35b5080fd5b50503461042c57817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261042c5760209073ffffffffffffffffffffffffffffffffffffffff600754169051908152f35b50503461042c57817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261042c57602090600a549051908152f35b503461030a5760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261030a578035906104fb611d08565b600a821061054a57507f48d27f9cdb4018a47f7ef136f7a1470dfc52b98041efb988d7658f77821cf5929161271061053c602093610537611fcc565b612ba5565b049081600d5551908152a180f35b60649060208451917f08c379a0000000000000000000000000000000000000000000000000000000008352820152601160248201527f4d41585f54585f554e4445525f302e31250000000000000000000000000000006044820152fd5b50503461042c57817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261042c5760209073ffffffffffffffffffffffffffffffffffffffff600654169051908152f35b50503461042c57807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261042c57602090610642610638611c63565b6024359033612005565b5160018152f35b5082346103b557827ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103b557610681611c63565b918360243592338152600160205281812073ffffffffffffffffffffffffffffffffffffffff861682526020522054908282106106c8576020856106428585038733611e4a565b60849060208651917f08c379a0000000000000000000000000000000000000000000000000000000008352820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152fd5b50503461042c57817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261042c576020906009549051908152f35b5091903461042c57817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261042c57805191809380549160019083821c928285169485156108d7575b60209586861081146108ab578589529081156108695750600114610811575b61080d8787610803828c0383611dcd565b5191829182611bfd565b0390f35b81529295507f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b5b828410610856575050508261080d94610803928201019438806107f2565b8054868501880152928601928101610838565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00168887015250505050151560051b83010192506108038261080d38806107f2565b6024846022857f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b93607f16936107d3565b50503461042c5773ffffffffffffffffffffffffffffffffffffffff61094e9161090a36611cae565b9290610914611d08565b168452601360205283209060ff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0083541691151516179055565b80f35b50503461042c57817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261042c5760209073ffffffffffffffffffffffffffffffffffffffff60055460081c169051908152f35b50503461042c57817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261042c5760207f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25891610a03611d08565b610a0b61292c565b60017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00600554161760055551338152a180f35b50503461042c5773ffffffffffffffffffffffffffffffffffffffff61094e91610a6736611cae565b9290610a71611d08565b168452601560205283209060ff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0083541691151516179055565b503461030a57817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261030a57610ae2611c63565b9060243590610aef611d08565b8115610ba6575b83517fa9059cbb000000000000000000000000000000000000000000000000000000008152339181019182526020828101939093529283918290879073ffffffffffffffffffffffffffffffffffffffff9083906040015b0393165af1908115610b9a5761094e92508391610b6c575b50612cc2565b610b8d915060203d8111610b93575b610b858183611dcd565b810190612d27565b38610b66565b503d610b7b565b505051903d90823e3d90fd5b905082517f70a08231000000000000000000000000000000000000000000000000000000008152308282015260208160248173ffffffffffffffffffffffffffffffffffffffff87165afa908115610c3f578591610c06575b5090610af6565b9190506020823d8211610c37575b81610c2160209383611dcd565b81010312610c33579051610b4e610bff565b8480fd5b3d9150610c14565b84513d87823e3d90fd5b50503461042c5773ffffffffffffffffffffffffffffffffffffffff61094e91610c7236611cae565b9290610c7c611d08565b168452601660205283209060ff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0083541691151516179055565b83346103b557807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126103b557610ced611d08565b8073ffffffffffffffffffffffffffffffffffffffff6005547fffffffffffffffffffffff0000000000000000000000000000000000000000ff811660055560081c167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a380f35b50503461042c5760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261042c578060209273ffffffffffffffffffffffffffffffffffffffff610da9611c63565b16815280845220549051908152f35b83823461042c5760607ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261042c57610df1611d08565b35600e55602435600f5560443560105561094e612d3f565b50503461042c57817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261042c5760209073ffffffffffffffffffffffffffffffffffffffff600854169051908152f35b503461030a5760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261030a57803590610e97611d08565b60328210610ee157507fa2c87c3e7a3048198ae94e814f6a27e12a4e2a7476e33a0db4d97ffeaf63618691612710610ed3602093610537611fcc565b049081600c5551908152a180f35b60649060208451917f08c379a0000000000000000000000000000000000000000000000000000000008352820152601560248201527f4d41585f57414c4c45545f554e4445525f302e352500000000000000000000006044820152fd5b50503461042c57817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261042c5760209060ff6005541690519015158152f35b50503461042c5773ffffffffffffffffffffffffffffffffffffffff61094e91610fa936611cae565b9290610fb3611d08565b168452601460205283209060ff7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0083541691151516179055565b5091903461042c57602090817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261030a5783359361102c611d08565b611034611fcc565b94600c546127109081810290808204831490151715611497578761105791612bb8565b600d548281029080820484149015171561146b578861107591612bb8565b90601154986064998a8102908082048c149015171561143f579061109891612bb8565b9333156113be573389528888528689205481811061133d5790808a92338452838b520388832055806002540360025587519081527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef893392a36110f9611d08565b603281106112e25786836111307fa2c87c3e7a3048198ae94e814f6a27e12a4e2a7476e33a0db4d97ffeaf63618693610537611fcc565b0480600c558751908152a1611143611d08565b600a811061128657856111a5959493926111807f48d27f9cdb4018a47f7ef136f7a1470dfc52b98041efb988d7658f77821cf59293610537611fcc565b0480600d558551908152a1670de0b6b3a764000093849161119f611fcc565b90612ba5565b046111ae611d08565b83810293818504149015171561125a5760146111c8611fcc565b04831161120057507fc1637594c5e97012ad51ead9a106f3916e6820b7705b39ee00950ed9cdc883a99394508160115551908152a180f35b83869251917f08c379a0000000000000000000000000000000000000000000000000000000008352820152601860248201527f5448524553484f4c445f4f5645525f35255f535550504c5900000000000000006044820152fd5b8460116024927f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b505050925051917f08c379a0000000000000000000000000000000000000000000000000000000008352820152601160248201527f4d41585f54585f554e4445525f302e31250000000000000000000000000000006044820152fd5b8885888851917f08c379a0000000000000000000000000000000000000000000000000000000008352820152601560248201527f4d41585f57414c4c45545f554e4445525f302e352500000000000000000000006044820152fd5b6084877f63650000000000000000000000000000000000000000000000000000000000008d8c8c51937f08c379a0000000000000000000000000000000000000000000000000000000008552840152602260248401527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e6044840152820152fd5b6084867f73000000000000000000000000000000000000000000000000000000000000008c8b8b51937f08c379a0000000000000000000000000000000000000000000000000000000008552840152602160248401527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044840152820152fd5b60248a6011897f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b6024886011877f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b6024876011867f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b503461030a57827ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261030a576114fa611d08565b6005549060ff82161561155a57507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa917fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff006020921660055551338152a180f35b60649060208451917f08c379a0000000000000000000000000000000000000000000000000000000008352820152601460248201527f5061757361626c653a206e6f74207061757365640000000000000000000000006044820152fd5b50503461042c57807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261042c5761064260209261162a6115f8611c63565b913381526001865284812073ffffffffffffffffffffffffffffffffffffffff84168252865284602435912054611e0e565b9033611e4a565b50903461030a5760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261030a5781359161166d611d08565b670de0b6b3a764000092838102938185041490151715611726576014611691611fcc565b0483116116ca5750816020917fc1637594c5e97012ad51ead9a106f3916e6820b7705b39ee00950ed9cdc883a99360115551908152a180f35b602060649251917f08c379a0000000000000000000000000000000000000000000000000000000008352820152601860248201527f5448524553484f4c445f4f5645525f35255f535550504c5900000000000000006044820152fd5b8360116024927f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b50503461042c57817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261042c576020905160128152f35b5082903461042c5760607ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261042c576117c6611c63565b6117ce611c8b565b91846044359473ffffffffffffffffffffffffffffffffffffffff8416815260016020528181203382526020522054907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611834575b602086610642878787612005565b84821061185d57509183916118526020969561064295033383611e4a565b919394819350611826565b60649060208751917f08c379a0000000000000000000000000000000000000000000000000000000008352820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152fd5b503461030a5760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261030a578035906118f5611d08565b606482116119365750828080606461190e829547612ba5565b0481811561192d575b3390f115611923575080f35b51903d90823e3d90fd5b506108fc611917565b60649060208451917f08c379a0000000000000000000000000000000000000000000000000000000008352820152600960248201527f4f5645525f3130302500000000000000000000000000000000000000000000006044820152fd5b50503461042c57817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261042c576020906119ce611fcc565b9051908152f35b50503461042c57817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261042c57602090600b549051908152f35b50903461030a577ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261042c57611a5f903560243590611a52611d08565b8060095581600a55611e0e565b600b5561094e612d3f565b50503461042c57807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261042c57602090610642611aa8611c63565b6024359033611e4a565b9291905034611bf957837ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112611bf957600354600181811c9186908281168015611bef575b6020958686108214611bc35750848852908115611b835750600114611b2a575b61080d8686610803828b0383611dcd565b929550600383527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b5b828410611b70575050508261080d94610803928201019438611b19565b8054868501880152928601928101611b53565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001687860152505050151560051b83010192506108038261080d38611b19565b8360226024927f4e487b7100000000000000000000000000000000000000000000000000000000835252fd5b93607f1693611af9565b8380fd5b60208082528251818301819052939260005b858110611c4f575050507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8460006040809697860101520116010190565b818101830151848201604001528201611c0f565b6004359073ffffffffffffffffffffffffffffffffffffffff82168203611c8657565b600080fd5b6024359073ffffffffffffffffffffffffffffffffffffffff82168203611c8657565b7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc6040910112611c865760043573ffffffffffffffffffffffffffffffffffffffff81168103611c8657906024358015158103611c865790565b73ffffffffffffffffffffffffffffffffffffffff60055460081c163303611d2c57565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602060248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152fd5b67ffffffffffffffff8111611d9e57604052565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b90601f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0910116810190811067ffffffffffffffff821117611d9e57604052565b91908201809211611e1b57565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b73ffffffffffffffffffffffffffffffffffffffff809116918215611f3c5716918215611eb85760207f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925918360005260018252604060002085600052825280604060002055604051908152a3565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152fd5b60846040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152fd5b91908203918211611e1b57565b60025460008080526020527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb55461200291611fbf565b90565b9291906012549360009460ff8091166120a85773ffffffffffffffffffffffffffffffffffffffff82168087526014602052816040882054161580612905575b6128f8575b73ffffffffffffffffffffffffffffffffffffffff8416908188526016602052826040892054161561287f575b80885260156020528260408920541615612817575b8752601360205281604088205416159081612806575b506120b6575b506120b4939450612996565b565b926120c2908383612bf1565b9273ffffffffffffffffffffffffffffffffffffffff6007541633141590816127f9575b50806127e2575b6120f8575b846120a8565b60017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0060125416176012553085528460205260408520546040516060810181811067ffffffffffffffff8211176126c3576040526002815260403660208301378051156127b55730602082015273ffffffffffffffffffffffffffffffffffffffff600654166040517fad5c4648000000000000000000000000000000000000000000000000000000008152602081600481855afa9081156127aa57899161278b575b5082516001101561275e576121ed9173ffffffffffffffffffffffffffffffffffffffff859216604085015230611e4a565b73ffffffffffffffffffffffffffffffffffffffff6006541690827ffffffffffffffffffffffffffffffffffffffffffffffffff21f494c589c0000810111612731579187916040519384927f18cbafe50000000000000000000000000000000000000000000000000000000084527ffffffffffffffffffffffffffffffffffffffffffffffffff21f494c589c000060a485019101600485015284602485015260a060448501528151809152602060c48501920190855b8181106126ff575050508383809230606483015242608483015203925af180156126f45761262a575b5047946122f36122ec6122e3600a5489612ba5565b600b5490612bb8565b8097611fbf565b90808080808a73ffffffffffffffffffffffffffffffffffffffff60085416617530f13d15612621573d67ffffffffffffffff81116125f4576040516123749291612366601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01660200183611dcd565b81528360203d92013e612cc2565b816123df575b5060406120b495967f5e5826f19116f23b10cae156791cb08874a123f44426986e5ff124d597a6e6689282519182526020820152a17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00601254166012558493506120f2565b6004602073ffffffffffffffffffffffffffffffffffffffff60065416604051928380927fad5c46480000000000000000000000000000000000000000000000000000000082525afa908115612576579073ffffffffffffffffffffffffffffffffffffffff9183916125c5575b5016803b1561042c576040517fd0e30db0000000000000000000000000000000000000000000000000000000008152828160048187865af180156125ba57908492916125a0575b506006546040517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff909116600482015260248101929092526020908290818581604481015b03925af1801561257657612581575b5073ffffffffffffffffffffffffffffffffffffffff60075416803b1561042c578180916004604051809481937ffff6cae90000000000000000000000000000000000000000000000000000000083525af1801561257657612562575b5061237a565b61256c8291611d8a565b6103b5578061255c565b6040513d84823e3d90fd5b6125999060203d602011610b9357610b858183611dcd565b50386124ff565b91602091936125b16124f094611d8a565b93915091612494565b6040513d85823e3d90fd5b6125e7915060203d6020116125ed575b6125df8183611dcd565b810190612c96565b3861244d565b503d6125d5565b6024837f4e487b710000000000000000000000000000000000000000000000000000000081526041600452fd5b61237490612cc2565b3d8087833e6126398183611dcd565b8101906020818303126126f05780519067ffffffffffffffff82116126bf570181601f820112156126f05780519067ffffffffffffffff82116126c3576020808360051b936040519061268e83870183611dcd565b815201928201019283116126bf57602001905b8282106126af5750506122ce565b81518152602091820191016126a1565b8780fd5b6024887f4e487b710000000000000000000000000000000000000000000000000000000081526041600452fd5b8680fd5b6040513d88823e3d90fd5b825173ffffffffffffffffffffffffffffffffffffffff1684528c9650879550602093840193909201916001016122a5565b6024887f4e487b710000000000000000000000000000000000000000000000000000000081526011600452fd5b6024897f4e487b710000000000000000000000000000000000000000000000000000000081526032600452fd5b6127a4915060203d6020116125ed576125df8183611dcd565b386121bb565b6040513d8b823e3d90fd5b6024877f4e487b710000000000000000000000000000000000000000000000000000000081526032600452fd5b5030855284602052604085205460115411156120ed565b90506005541615386120e6565b8752506040862054811615386120a2565b600d5486111561208c5760646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f4d41585f54585f455843454544454400000000000000000000000000000000006044820152fd5b876020526128918660408a2054611e0e565b600c5410156120775760646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4d41585f57414c4c45545f4558434545444544000000000000000000000000006044820152fd5b61290061292c565b61204a565b5073ffffffffffffffffffffffffffffffffffffffff841687528160408820541615612045565b60ff6005541661293857565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f5061757361626c653a20706175736564000000000000000000000000000000006044820152fd5b73ffffffffffffffffffffffffffffffffffffffff809116918215612b215716918215612a9d57600082815280602052604081205491808310612a1957604082827fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef958760209652828652038282205586815220818154019055604051908152a3565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152fd5b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152fd5b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152fd5b81810292918115918404141715611e1b57565b8115612bc2570490565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b9082158015612c8c575b612c8757916120029273ffffffffffffffffffffffffffffffffffffffff80806007541692168214600014612c64575050612710612c42600f545b610537600b5485612ba5565b04918280612c52575b5050611fbf565b612c5d913090612996565b3882612c4b565b831603612c7957612710612c42600e54612c36565b612710612c42601054612c36565b505090565b50600b5415612bfb565b90816020910312611c86575173ffffffffffffffffffffffffffffffffffffffff81168103611c865790565b15612cc957565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600f60248201527f5452414e534645525f4641494c454400000000000000000000000000000000006044820152fd5b90816020910312611c8657518015158103611c865790565b600b54606480612d51600e5484612ba5565b049181612d6f81612d64600f5485612ba5565b049260105490612ba5565b049160148411612ee85760148211612e8c57601e612d8d8386611e0e565b11612e3057600a8311612dd45750916060917f37322890d66d781059d797be5e2f27dc160a34d8bc0a8e09116cb9a773ce88ef9360405192835260208301526040820152a1565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f5452414e534645525f4645455f4f5645525f31302500000000000000000000006044820152fd5b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f4255592b53454c4c5f4645455f4f5645525f33302500000000000000000000006044820152fd5b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f53454c4c5f4645455f4f5645525f3230250000000000000000000000000000006044820152fd5b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f4255595f4645455f4f5645525f323025000000000000000000000000000000006044820152fdfea264697066735822122065f968ced4ae1088a81d268e1cf5a298224557bd23b5b941c2065c6f3ea8c0e864736f6c63430008110033

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.