ETH Price: $3,239.61 (-0.62%)
Gas: 1 Gwei

Token

Meme2earN (MOJI)
 

Overview

Max Total Supply

96,622,558.726710932641186868 MOJI

Holders

220

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
40,000 MOJI

Value
$0.00
0x81ed6d1938f22ee0e5b70ee8a6fced135afdcf47
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:
MOJI

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 7 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 3 of 7 : ERC20Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

File 6 of 7 : 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 7 of 7 : MOJI.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.6;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";

/**
 * @title MOJI Token Contract
 */
contract MOJI is IERC20Metadata, Ownable, ERC20Burnable {
    /// @notice Emitted when a liquidity pool pair is updated.
    event LPPairSet(address indexed pair, bool enabled);

    /// @notice Emitted when an account is marked or unmarked as a liquidity holder (treasury, staking, etc).
    event LiquidityHolderSet(address indexed account, bool flag);

    /// @notice Emitted (once) when fees are locked forever.
    event FeesLockedForever();

    /// @notice Emitted (once) when sniper bot protection is disabled forever.
    event SniperBotProtectionDisabledForever();

    event BlacklistSet(address indexed account, bool flag);

    /// @notice Emitted (once) when blacklist add is restricted forever.
    event BlacklistAddRestrictedForever();

    event BuyFeeNumeratorSet(uint256 value);
    event SellFeeNumeratorSet(uint256 value);
    event TreasurySet(address[] treasuryList, uint256[] treasuryShares);
    event BuyFeePaid(address indexed from, uint256 amount);
    event SellFeePaid(address indexed from, uint256 amount);

    /**
     * @dev Struct to group account-specific flags to optimize storage usage.
     *
     * For a deeper understanding of storage packing and its benefits, you can refer to:
     * - https://docs.soliditylang.org/en/latest/internals/layout_in_storage.html
     * - https://dev.to/web3_ruud/advance-soliditymastering-storage-slot-c38
     */
    struct AccountInfo {
        bool isLPPool;
        bool isLiquidityHolder;
        bool isBlackListed;
    }
    mapping (address => AccountInfo) public accountInfo;

    string constant private _name = "Meme2earN";
    string constant private _symbol = "MOJI";
    uint256 constant private TOTAL_SUPPLY = 100_000_000 * (10 ** 18);

    uint256 constant public DENOMINATOR = 10000;
    uint256 constant public MAX_BUY_FEE_NUMERATOR = 500;  // 5%
    uint256 constant public MAX_SELL_FEE_NUMERATOR = 500;  // 5%
    uint256 public buyFeeNumerator;
    uint256 public _sellFeeNumerator;
    uint256[] public treasuryShares;
    address[] public treasuryList;
    bool public feesAreLockedForever;
    bool public sniperBotProtectionDisabledForever;
    bool public blacklistAddRestrictedForever;
    uint256 public immutable deployTimestamp;

    constructor(
        address[] memory _treasuryList,
        uint256[] memory _treasuryShares,
        uint256 _buyFeeNumeratorValue,
        uint256 _sellFeeNumeratorValue
    ) Ownable() ERC20(_name, _symbol) {
        _mint(msg.sender, TOTAL_SUPPLY);
        setLiquidityHolder(msg.sender, true);
        setTreasury(_treasuryList, _treasuryShares);
        setBuyFeeNumerator(_buyFeeNumeratorValue);
        setSellFeeNumerator(_sellFeeNumeratorValue);
        deployTimestamp = block.timestamp;
    }

    function setTreasury(
        address[] memory _treasuryList,
        uint256[] memory _treasuryShares
    ) public onlyOwner {
        require(_treasuryShares.length == _treasuryList.length, "lengths mismatch");
        uint256 sumShares = 0;
        for (uint256 i=0; i<_treasuryShares.length; i++) {
            sumShares += _treasuryShares[i];
            require(_treasuryShares[i] != 0, "wrong share");
        }
        require(sumShares == DENOMINATOR, "wrong shares (sum != 10000)");
        treasuryList = _treasuryList;
        treasuryShares = _treasuryShares;
        emit TreasurySet(_treasuryList, _treasuryShares);
    }

    function lockFeesForever() external onlyOwner {
        require(!feesAreLockedForever, "already set");
        feesAreLockedForever = true;
        emit FeesLockedForever();
    }

    function restrictBlacklistAddForever() external onlyOwner {
        require(!blacklistAddRestrictedForever, "already set");
        blacklistAddRestrictedForever = true;
        emit BlacklistAddRestrictedForever();
    }

    function setLpPair(address pair, bool enabled) external onlyOwner {
        accountInfo[pair].isLPPool = enabled;
        emit LPPairSet(pair, enabled);
    }

    function setBlacklisted(address account, bool isBlacklisted) external onlyOwner {
        if (isBlacklisted) {
            require(!blacklistAddRestrictedForever, "Blacklist add restricted forever");
        }
        accountInfo[account].isBlackListed = isBlacklisted;
        emit BlacklistSet(account, isBlacklisted);
    }

    function setBuyFeeNumerator(uint256 value) public onlyOwner {
        require(!feesAreLockedForever, "Fees are locked forever");
        require(value <= MAX_BUY_FEE_NUMERATOR, "Exceeds maximum buy fee");
        buyFeeNumerator = value;
        emit BuyFeeNumeratorSet(value);
    }

    function setSellFeeNumerator(uint256 value) public onlyOwner {
        require(!feesAreLockedForever, "Fees are locked forever");
        require(value <= MAX_SELL_FEE_NUMERATOR, "Exceeds maximum buy fee");
        _sellFeeNumerator = value;
        emit SellFeeNumeratorSet(value);
    }

    function sellFeeNumerator() public view returns(uint256) {
        if (sniperBotProtectionDisabledForever) {
            return _sellFeeNumerator;
        }
        return DENOMINATOR;  // 100% to prevent sniper bots from buying
    }

    function disableSniperBotProtectionForever() external onlyOwner {
        require(!sniperBotProtectionDisabledForever, "already set");
        sniperBotProtectionDisabledForever = true;
        emit SniperBotProtectionDisabledForever();
    }

    function setLiquidityHolder(address account, bool flag) public onlyOwner {
        accountInfo[account].isLiquidityHolder = flag;
        emit LiquidityHolderSet(account, flag);
    }

    function _hasLimits(AccountInfo memory fromInfo, AccountInfo memory toInfo) internal pure returns(bool) {
        return !fromInfo.isLiquidityHolder && !toInfo.isLiquidityHolder;
    }

    event TakenFee(address to, uint256 amount);

    function _distributeFees(address from, uint256 amount) internal {
        for (uint256 i=0; i<treasuryList.length; ++i) {
            address _treasury = treasuryList[i];
            uint256 _share = treasuryShares[i];
            uint256 amountShare = amount * _share / DENOMINATOR;
            if (_treasury == address(0)) {
                _burn(from, amountShare);
            } else {
                super._transfer(from, _treasury, amountShare);
            }
            emit TakenFee(_treasury, amountShare);
        }
    }

    function _transfer(address from, address to, uint256 amount) internal override {
        AccountInfo memory fromInfo = accountInfo[from];
        AccountInfo memory toInfo = accountInfo[to];

        require(!fromInfo.isBlackListed && !toInfo.isBlackListed, "Blacklisted");

        if (!_hasLimits(fromInfo, toInfo) ||
            (fromInfo.isLPPool && toInfo.isLPPool)  // no fee for transferring between pools
        ) {
            super._transfer(from, to, amount);
            return;
        }

        if (fromInfo.isLPPool) {
            // buy
            uint256 buyFeeAmount = amount * buyFeeNumerator / DENOMINATOR;
            _distributeFees(from, buyFeeAmount);
            emit BuyFeePaid(from, buyFeeAmount);
            unchecked {  // underflow is not possible
                amount -= buyFeeAmount;
            }
        } else if (toInfo.isLPPool) {
            // sell
            uint256 sellFeeAmount = amount * sellFeeNumerator() / DENOMINATOR;
            _distributeFees(from, sellFeeAmount);
            emit SellFeePaid(from, sellFeeAmount);
            unchecked {  // underflow is not possible
                amount -= sellFeeAmount;
            }
        } else {
            // no fees for usual transfers
        }

        super._transfer(from, to, amount);

        if (block.timestamp - deployTimestamp < 1 hours) {
            require(balanceOf(to) < 4_000_000 * 1e18 || toInfo.isLiquidityHolder, "wheel protection");
        }
    }
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address[]","name":"_treasuryList","type":"address[]"},{"internalType":"uint256[]","name":"_treasuryShares","type":"uint256[]"},{"internalType":"uint256","name":"_buyFeeNumeratorValue","type":"uint256"},{"internalType":"uint256","name":"_sellFeeNumeratorValue","type":"uint256"}],"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":[],"name":"BlacklistAddRestrictedForever","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"flag","type":"bool"}],"name":"BlacklistSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"BuyFeeNumeratorSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"BuyFeePaid","type":"event"},{"anonymous":false,"inputs":[],"name":"FeesLockedForever","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"LPPairSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"flag","type":"bool"}],"name":"LiquidityHolderSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"SellFeeNumeratorSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SellFeePaid","type":"event"},{"anonymous":false,"inputs":[],"name":"SniperBotProtectionDisabledForever","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TakenFee","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":"treasuryList","type":"address[]"},{"indexed":false,"internalType":"uint256[]","name":"treasuryShares","type":"uint256[]"}],"name":"TreasurySet","type":"event"},{"inputs":[],"name":"DENOMINATOR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_BUY_FEE_NUMERATOR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SELL_FEE_NUMERATOR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_sellFeeNumerator","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"accountInfo","outputs":[{"internalType":"bool","name":"isLPPool","type":"bool"},{"internalType":"bool","name":"isLiquidityHolder","type":"bool"},{"internalType":"bool","name":"isBlackListed","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"blacklistAddRestrictedForever","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyFeeNumerator","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deployTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableSniperBotProtectionForever","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feesAreLockedForever","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lockFeesForever","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"restrictBlacklistAddForever","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFeeNumerator","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"isBlacklisted","type":"bool"}],"name":"setBlacklisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setBuyFeeNumerator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"flag","type":"bool"}],"name":"setLiquidityHolder","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setLpPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setSellFeeNumerator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_treasuryList","type":"address[]"},{"internalType":"uint256[]","name":"_treasuryShares","type":"uint256[]"}],"name":"setTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sniperBotProtectionDisabledForever","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"treasuryList","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"treasuryShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

60a06040523480156200001157600080fd5b5060405162004bc038038062004bc0833981810160405281019062000037919062000be7565b6040518060400160405280600981526020017f4d656d65326561724e00000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4d4f4a4900000000000000000000000000000000000000000000000000000000815250620000c3620000b76200016d60201b60201c565b6200017560201b60201c565b8160049080519060200190620000db929190620008cc565b508060059080519060200190620000f4929190620008cc565b50505062000114336a52b7d2dcc80cd2e40000006200023960201b60201c565b62000127336001620003a860201b60201c565b6200013984846200046660201b60201c565b6200014a826200062c60201b60201c565b6200015b816200071a60201b60201c565b426080818152505050505050620014f6565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620002ac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002a39062001018565b60405180910390fd5b620002c0600083836200080860201b60201c565b8060036000828254620002d4919062001161565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200038891906200103a565b60405180910390a3620003a4600083836200080d60201b60201c565b5050565b620003b86200081260201b60201c565b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160016101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f37ddb83c57306cf4a7e1d5fd89bd61315769b66997f105b1dc1adef3f1eccf2b826040516200045a919062000f2f565b60405180910390a25050565b620004766200081260201b60201c565b8151815114620004bd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004b49062000f4c565b60405180910390fd5b6000805b82518110156200057257828181518110620004e157620004e062001320565b5b602002602001015182620004f6919062001161565b9150600083828151811062000510576200050f62001320565b5b602002602001015114156200055c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005539062000f6e565b60405180910390fd5b8080620005699062001274565b915050620004c1565b506127108114620005ba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005b19062000ff6565b60405180910390fd5b82600a9080519060200190620005d29291906200095d565b508160099080519060200190620005eb929190620009ec565b507fcf7df9140ee657562183800e6ea7c7d2c1c8b93e81d568e15c9b0c3822c161c183836040516200061f92919062000ef4565b60405180910390a1505050565b6200063c6200081260201b60201c565b600b60009054906101000a900460ff16156200068f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006869062000f90565b60405180910390fd5b6101f4811115620006d7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006ce9062000fb2565b60405180910390fd5b806007819055507f246f769161014f7ec8561a07b7d28a7073805ced4bb75cecb0cd210304ed7d8d816040516200070f91906200103a565b60405180910390a150565b6200072a6200081260201b60201c565b600b60009054906101000a900460ff16156200077d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007749062000f90565b60405180910390fd5b6101f4811115620007c5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007bc9062000fb2565b60405180910390fd5b806008819055507f0bd5a50e62ed95afaa2ab9c73a81a5af86749fe749e79cc4fa79a329827abe5081604051620007fd91906200103a565b60405180910390a150565b505050565b505050565b620008226200016d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000848620008a360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620008a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008989062000fd4565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620008da9062001208565b90600052602060002090601f016020900481019282620008fe57600085556200094a565b82601f106200091957805160ff19168380011785556200094a565b828001600101855582156200094a579182015b82811115620009495782518255916020019190600101906200092c565b5b50905062000959919062000a3e565b5090565b828054828255906000526020600020908101928215620009d9579160200282015b82811115620009d85782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550916020019190600101906200097e565b5b509050620009e8919062000a3e565b5090565b82805482825590600052602060002090810192821562000a2b579160200282015b8281111562000a2a57825182559160200191906001019062000a0d565b5b50905062000a3a919062000a3e565b5090565b5b8082111562000a5957600081600090555060010162000a3f565b5090565b600062000a7462000a6e8462001080565b62001057565b9050808382526020820190508285602086028201111562000a9a5762000a9962001383565b5b60005b8581101562000ace578162000ab3888262000b53565b84526020840193506020830192505060018101905062000a9d565b5050509392505050565b600062000aef62000ae984620010af565b62001057565b9050808382526020820190508285602086028201111562000b155762000b1462001383565b5b60005b8581101562000b49578162000b2e888262000bd0565b84526020840193506020830192505060018101905062000b18565b5050509392505050565b60008151905062000b6481620014c2565b92915050565b600082601f83011262000b825762000b816200137e565b5b815162000b9484826020860162000a5d565b91505092915050565b600082601f83011262000bb55762000bb46200137e565b5b815162000bc784826020860162000ad8565b91505092915050565b60008151905062000be181620014dc565b92915050565b6000806000806080858703121562000c045762000c036200138d565b5b600085015167ffffffffffffffff81111562000c255762000c2462001388565b5b62000c338782880162000b6a565b945050602085015167ffffffffffffffff81111562000c575762000c5662001388565b5b62000c658782880162000b9d565b935050604062000c788782880162000bd0565b925050606062000c8b8782880162000bd0565b91505092959194509250565b600062000ca5838362000ccb565b60208301905092915050565b600062000cbf838362000ed2565b60208301905092915050565b62000cd681620011be565b82525050565b600062000ce982620010fe565b62000cf581856200112e565b935062000d0283620010de565b8060005b8381101562000d3957815162000d1d888262000c97565b975062000d2a8362001114565b92505060018101905062000d06565b5085935050505092915050565b600062000d538262001109565b62000d5f81856200113f565b935062000d6c83620010ee565b8060005b8381101562000da357815162000d87888262000cb1565b975062000d948362001121565b92505060018101905062000d70565b5085935050505092915050565b62000dbb81620011d2565b82525050565b600062000dd060108362001150565b915062000ddd82620013a3565b602082019050919050565b600062000df7600b8362001150565b915062000e0482620013cc565b602082019050919050565b600062000e1e60178362001150565b915062000e2b82620013f5565b602082019050919050565b600062000e4560178362001150565b915062000e52826200141e565b602082019050919050565b600062000e6c60208362001150565b915062000e798262001447565b602082019050919050565b600062000e93601b8362001150565b915062000ea08262001470565b602082019050919050565b600062000eba601f8362001150565b915062000ec78262001499565b602082019050919050565b62000edd81620011fe565b82525050565b62000eee81620011fe565b82525050565b6000604082019050818103600083015262000f10818562000cdc565b9050818103602083015262000f26818462000d46565b90509392505050565b600060208201905062000f46600083018462000db0565b92915050565b6000602082019050818103600083015262000f678162000dc1565b9050919050565b6000602082019050818103600083015262000f898162000de8565b9050919050565b6000602082019050818103600083015262000fab8162000e0f565b9050919050565b6000602082019050818103600083015262000fcd8162000e36565b9050919050565b6000602082019050818103600083015262000fef8162000e5d565b9050919050565b60006020820190508181036000830152620010118162000e84565b9050919050565b60006020820190508181036000830152620010338162000eab565b9050919050565b600060208201905062001051600083018462000ee3565b92915050565b60006200106362001076565b90506200107182826200123e565b919050565b6000604051905090565b600067ffffffffffffffff8211156200109e576200109d6200134f565b5b602082029050602081019050919050565b600067ffffffffffffffff821115620010cd57620010cc6200134f565b5b602082029050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b60006200116e82620011fe565b91506200117b83620011fe565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620011b357620011b2620012c2565b5b828201905092915050565b6000620011cb82620011de565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060028204905060018216806200122157607f821691505b60208210811415620012385762001237620012f1565b5b50919050565b620012498262001392565b810181811067ffffffffffffffff821117156200126b576200126a6200134f565b5b80604052505050565b60006200128182620011fe565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415620012b757620012b6620012c2565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f6c656e67746873206d69736d6174636800000000000000000000000000000000600082015250565b7f77726f6e67207368617265000000000000000000000000000000000000000000600082015250565b7f4665657320617265206c6f636b656420666f7265766572000000000000000000600082015250565b7f45786365656473206d6178696d756d2062757920666565000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f77726f6e6720736861726573202873756d20213d203130303030290000000000600082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b620014cd81620011be565b8114620014d957600080fd5b50565b620014e781620011fe565b8114620014f357600080fd5b50565b6080516136a76200151960003960008181610adf0152611a0401526136a76000f3fe608060405234801561001057600080fd5b50600436106102325760003560e01c80637b24ab3211610130578063a9059cbb116100b8578063d231185f1161007c578063d231185f1461066d578063dca69d2114610677578063dd62ed3e14610695578063f28ed405146106c5578063f2fde38b146106e357610232565b8063a9059cbb146105cb578063cbf1f4a4146105fb578063cdcfe3d914610617578063d01dd6d214610633578063d041df8a1461064f57610232565b80638f3b957f116100ff5780638f3b957f1461050f578063918f86741461052d57806395d89b411461054b578063a457c2d714610569578063a7310b581461059957610232565b80637b24ab32146104995780637b4aaf51146104b757806380c581d1146104d55780638da5cb5b146104f157610232565b8063244c5359116101be578063607ad0d711610182578063607ad0d71461040957806370a0823114610427578063715018a614610457578063719f75c51461046157806379cc67901461047d57610232565b8063244c535914610353578063313ce5671461036f578063395093511461038d57806342966c68146103bd5780635ec4da0e146103d957610232565b806310b343e71161020557806310b343e7146102bf57806318160ddd146102dd5780631ff32a6e146102fb57806323b872dd14610319578063241b21eb1461034957610232565b806306fdde0314610237578063095ea7b3146102555780630a8ce474146102855780630f7469191461028f575b600080fd5b61023f6106ff565b60405161024c9190612a66565b60405180910390f35b61026f600480360381019061026a9190612479565b610791565b60405161027c9190612a14565b60405180910390f35b61028d6107b4565b005b6102a960048036038101906102a49190612531565b610855565b6040516102b69190612999565b60405180910390f35b6102c7610894565b6040516102d49190612a14565b60405180910390f35b6102e56108a7565b6040516102f29190612d08565b60405180910390f35b6103036108b1565b6040516103109190612d08565b60405180910390f35b610333600480360381019061032e91906123e6565b6108b7565b6040516103409190612a14565b60405180910390f35b6103516108e6565b005b61036d60048036038101906103689190612531565b610987565b005b610377610a65565b6040516103849190612d23565b60405180910390f35b6103a760048036038101906103a29190612479565b610a6e565b6040516103b49190612a14565b60405180910390f35b6103d760048036038101906103d29190612531565b610aa5565b005b6103f360048036038101906103ee9190612531565b610ab9565b6040516104009190612d08565b60405180910390f35b610411610add565b60405161041e9190612d08565b60405180910390f35b610441600480360381019061043c9190612379565b610b01565b60405161044e9190612d08565b60405180910390f35b61045f610b4a565b005b61047b60048036038101906104769190612439565b610b5e565b005b61049760048036038101906104929190612479565b610c12565b005b6104a1610c32565b6040516104ae9190612d08565b60405180910390f35b6104bf610c38565b6040516104cc9190612a14565b60405180910390f35b6104ef60048036038101906104ea9190612439565b610c4b565b005b6104f9610cff565b6040516105069190612999565b60405180910390f35b610517610d28565b6040516105249190612d08565b60405180910390f35b610535610d2e565b6040516105429190612d08565b60405180910390f35b610553610d34565b6040516105609190612a66565b60405180910390f35b610583600480360381019061057e9190612479565b610dc6565b6040516105909190612a14565b60405180910390f35b6105b360048036038101906105ae9190612379565b610e3d565b6040516105c293929190612a2f565b60405180910390f35b6105e560048036038101906105e09190612479565b610e8e565b6040516105f29190612a14565b60405180910390f35b61061560048036038101906106109190612531565b610eb1565b005b610631600480360381019061062c91906124b9565b610f8f565b005b61064d60048036038101906106489190612439565b611132565b005b61065761123d565b6040516106649190612a14565b60405180910390f35b610675611250565b005b61067f6112f1565b60405161068c9190612d08565b60405180910390f35b6106af60048036038101906106aa91906123a6565b61131b565b6040516106bc9190612d08565b60405180910390f35b6106cd6113a2565b6040516106da9190612d08565b60405180910390f35b6106fd60048036038101906106f89190612379565b6113a8565b005b60606004805461070e90612fe6565b80601f016020809104026020016040519081016040528092919081815260200182805461073a90612fe6565b80156107875780601f1061075c57610100808354040283529160200191610787565b820191906000526020600020905b81548152906001019060200180831161076a57829003601f168201915b5050505050905090565b60008061079c61142c565b90506107a9818585611434565b600191505092915050565b6107bc6115ff565b600b60009054906101000a900460ff161561080c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080390612c88565b60405180910390fd5b6001600b60006101000a81548160ff0219169083151502179055507fbec53a1e9209fa672f7ad7fa647c5883d6b464df39bb35e17e7bdd8aaeafbfe460405160405180910390a1565b600a818154811061086557600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b60029054906101000a900460ff1681565b6000600354905090565b6101f481565b6000806108c261142c565b90506108cf85828561167d565b6108da858585611709565b60019150509392505050565b6108ee6115ff565b600b60029054906101000a900460ff161561093e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093590612c88565b60405180910390fd5b6001600b60026101000a81548160ff0219169083151502179055507f8b41de35dc6b2f5d666406ed563d79a882a772d0f33fdaa90eaf45543f04f65660405160405180910390a1565b61098f6115ff565b600b60009054906101000a900460ff16156109df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d690612ba8565b60405180910390fd5b6101f4811115610a24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1b90612bc8565b60405180910390fd5b806008819055507f0bd5a50e62ed95afaa2ab9c73a81a5af86749fe749e79cc4fa79a329827abe5081604051610a5a9190612d08565b60405180910390a150565b60006012905090565b600080610a7961142c565b9050610a9a818585610a8b858961131b565b610a959190612e49565b611434565b600191505092915050565b610ab6610ab061142c565b82611a9e565b50565b60098181548110610ac957600080fd5b906000526020600020016000915090505481565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b526115ff565b610b5c6000611c6e565b565b610b666115ff565b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160016101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f37ddb83c57306cf4a7e1d5fd89bd61315769b66997f105b1dc1adef3f1eccf2b82604051610c069190612a14565b60405180910390a25050565b610c2482610c1e61142c565b8361167d565b610c2e8282611a9e565b5050565b60075481565b600b60009054906101000a900460ff1681565b610c536115ff565b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f1d1828d49ecf2fd34a77f1ec24b3098991a6cd7d3733c384719bd155867ad87782604051610cf39190612a14565b60405180910390a25050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6101f481565b61271081565b606060058054610d4390612fe6565b80601f0160208091040260200160405190810160405280929190818152602001828054610d6f90612fe6565b8015610dbc5780601f10610d9157610100808354040283529160200191610dbc565b820191906000526020600020905b815481529060010190602001808311610d9f57829003601f168201915b5050505050905090565b600080610dd161142c565b90506000610ddf828661131b565b905083811015610e24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1b90612cc8565b60405180910390fd5b610e318286868403611434565b60019250505092915050565b60066020528060005260406000206000915090508060000160009054906101000a900460ff16908060000160019054906101000a900460ff16908060000160029054906101000a900460ff16905083565b600080610e9961142c565b9050610ea6818585611709565b600191505092915050565b610eb96115ff565b600b60009054906101000a900460ff1615610f09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0090612ba8565b60405180910390fd5b6101f4811115610f4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4590612bc8565b60405180910390fd5b806007819055507f246f769161014f7ec8561a07b7d28a7073805ced4bb75cecb0cd210304ed7d8d81604051610f849190612d08565b60405180910390a150565b610f976115ff565b8151815114610fdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd290612ac8565b60405180910390fd5b6000805b825181101561108157828181518110610ffb57610ffa61311f565b5b60200260200101518261100e9190612e49565b915060008382815181106110255761102461311f565b5b6020026020010151141561106e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106590612b48565b60405180910390fd5b808061107990613049565b915050610fdf565b5061271081146110c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bd90612ca8565b60405180910390fd5b82600a90805190602001906110dc92919061210a565b5081600990805190602001906110f3929190612194565b507fcf7df9140ee657562183800e6ea7c7d2c1c8b93e81d568e15c9b0c3822c161c183836040516111259291906129dd565b60405180910390a1505050565b61113a6115ff565b801561119157600b60029054906101000a900460ff1615611190576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118790612b28565b60405180910390fd5b5b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160026101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f921341769c2075d1ae425396063d5ab65ff5006c4bc0bd0821e50ce51fb60123826040516112319190612a14565b60405180910390a25050565b600b60019054906101000a900460ff1681565b6112586115ff565b600b60019054906101000a900460ff16156112a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129f90612c88565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055507fe0116274a64ed4ed788d703f284cbf8b5cae71fd4d97c7398adda4dd65639b2f60405160405180910390a1565b6000600b60019054906101000a900460ff1615611312576008549050611318565b61271090505b90565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60085481565b6113b06115ff565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611420576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141790612ae8565b60405180910390fd5b61142981611c6e565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156114a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149b90612c68565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611514576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150b90612b08565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516115f29190612d08565b60405180910390a3505050565b61160761142c565b73ffffffffffffffffffffffffffffffffffffffff16611625610cff565b73ffffffffffffffffffffffffffffffffffffffff161461167b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167290612be8565b60405180910390fd5b565b6000611689848461131b565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461170357818110156116f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ec90612b68565b60405180910390fd5b6117028484848403611434565b5b50505050565b6000600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060600160405290816000820160009054906101000a900460ff161515151581526020016000820160019054906101000a900460ff161515151581526020016000820160029054906101000a900460ff16151515158152505090506000600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060600160405290816000820160009054906101000a900460ff161515151581526020016000820160019054906101000a900460ff161515151581526020016000820160029054906101000a900460ff1615151515815250509050816040015115801561185b57508060400151155b61189a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189190612ce8565b60405180910390fd5b6118a48282611d32565b15806118be5750816000015180156118bd575080600001515b5b156118d5576118ce858585611d50565b5050611a99565b816000015115611961576000612710600754856118f29190612ed0565b6118fc9190612e9f565b90506119088682611fcb565b8573ffffffffffffffffffffffffffffffffffffffff167fa1d9cc4f656b5806a40d32111d5b01fe6cdabb816c7c2596acbd42e94efed3608260405161194e9190612d08565b60405180910390a28084039350506119f4565b8060000151156119f25760006127106119786112f1565b856119839190612ed0565b61198d9190612e9f565b90506119998682611fcb565b8573ffffffffffffffffffffffffffffffffffffffff167feebbd6732d7979cccfcb383171bc8f012879a3ad56ebe489d4ba6317e158e5a1826040516119df9190612d08565b60405180910390a28084039350506119f3565b5b5b6119ff858585611d50565b610e107f000000000000000000000000000000000000000000000000000000000000000042611a2e9190612f2a565b1015611a96576a034f086f3b33b684000000611a4985610b01565b1080611a56575080602001515b611a95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8c90612c08565b60405180910390fd5b5b50505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0590612c28565b60405180910390fd5b611b1a82600083612100565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611ba1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9890612aa8565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611c559190612d08565b60405180910390a3611c6983600084612105565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008260200151158015611d4857508160200151155b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611dc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db790612c48565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2790612a88565b60405180910390fd5b611e3b838383612100565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611ec2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb990612b88565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611fb29190612d08565b60405180910390a3611fc5848484612105565b50505050565b60005b600a805490508110156120fb576000600a8281548110611ff157611ff061311f565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506000600983815481106120345761203361311f565b5b90600052602060002001549050600061271082866120529190612ed0565b61205c9190612e9f565b9050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156120a25761209d8682611a9e565b6120ae565b6120ad868483611d50565b5b7f87a0f077fc287e841a0ba9dbc280cb17fc568751f2e319671d7a0de3c845f3ba83826040516120df9291906129b4565b60405180910390a1505050806120f490613049565b9050611fce565b505050565b505050565b505050565b828054828255906000526020600020908101928215612183579160200282015b828111156121825782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055509160200191906001019061212a565b5b50905061219091906121e1565b5090565b8280548282559060005260206000209081019282156121d0579160200282015b828111156121cf5782518255916020019190600101906121b4565b5b5090506121dd91906121e1565b5090565b5b808211156121fa5760008160009055506001016121e2565b5090565b600061221161220c84612d63565b612d3e565b9050808382526020820190508285602086028201111561223457612233613182565b5b60005b85811015612264578161224a88826122de565b845260208401935060208301925050600181019050612237565b5050509392505050565b600061228161227c84612d8f565b612d3e565b905080838252602082019050828560208602820111156122a4576122a3613182565b5b60005b858110156122d457816122ba8882612364565b8452602084019350602083019250506001810190506122a7565b5050509392505050565b6000813590506122ed8161362c565b92915050565b600082601f8301126123085761230761317d565b5b81356123188482602086016121fe565b91505092915050565b600082601f8301126123365761233561317d565b5b813561234684826020860161226e565b91505092915050565b60008135905061235e81613643565b92915050565b6000813590506123738161365a565b92915050565b60006020828403121561238f5761238e61318c565b5b600061239d848285016122de565b91505092915050565b600080604083850312156123bd576123bc61318c565b5b60006123cb858286016122de565b92505060206123dc858286016122de565b9150509250929050565b6000806000606084860312156123ff576123fe61318c565b5b600061240d868287016122de565b935050602061241e868287016122de565b925050604061242f86828701612364565b9150509250925092565b600080604083850312156124505761244f61318c565b5b600061245e858286016122de565b925050602061246f8582860161234f565b9150509250929050565b600080604083850312156124905761248f61318c565b5b600061249e858286016122de565b92505060206124af85828601612364565b9150509250929050565b600080604083850312156124d0576124cf61318c565b5b600083013567ffffffffffffffff8111156124ee576124ed613187565b5b6124fa858286016122f3565b925050602083013567ffffffffffffffff81111561251b5761251a613187565b5b61252785828601612321565b9150509250929050565b6000602082840312156125475761254661318c565b5b600061255584828501612364565b91505092915050565b600061256a838361258e565b60208301905092915050565b6000612582838361296c565b60208301905092915050565b61259781612f5e565b82525050565b6125a681612f5e565b82525050565b60006125b782612ddb565b6125c18185612e16565b93506125cc83612dbb565b8060005b838110156125fd5781516125e4888261255e565b97506125ef83612dfc565b9250506001810190506125d0565b5085935050505092915050565b600061261582612de6565b61261f8185612e27565b935061262a83612dcb565b8060005b8381101561265b5781516126428882612576565b975061264d83612e09565b92505060018101905061262e565b5085935050505092915050565b61267181612f70565b82525050565b600061268282612df1565b61268c8185612e38565b935061269c818560208601612fb3565b6126a581613191565b840191505092915050565b60006126bd602383612e38565b91506126c8826131a2565b604082019050919050565b60006126e0602283612e38565b91506126eb826131f1565b604082019050919050565b6000612703601083612e38565b915061270e82613240565b602082019050919050565b6000612726602683612e38565b915061273182613269565b604082019050919050565b6000612749602283612e38565b9150612754826132b8565b604082019050919050565b600061276c602083612e38565b915061277782613307565b602082019050919050565b600061278f600b83612e38565b915061279a82613330565b602082019050919050565b60006127b2601d83612e38565b91506127bd82613359565b602082019050919050565b60006127d5602683612e38565b91506127e082613382565b604082019050919050565b60006127f8601783612e38565b9150612803826133d1565b602082019050919050565b600061281b601783612e38565b9150612826826133fa565b602082019050919050565b600061283e602083612e38565b915061284982613423565b602082019050919050565b6000612861601083612e38565b915061286c8261344c565b602082019050919050565b6000612884602183612e38565b915061288f82613475565b604082019050919050565b60006128a7602583612e38565b91506128b2826134c4565b604082019050919050565b60006128ca602483612e38565b91506128d582613513565b604082019050919050565b60006128ed600b83612e38565b91506128f882613562565b602082019050919050565b6000612910601b83612e38565b915061291b8261358b565b602082019050919050565b6000612933602583612e38565b915061293e826135b4565b604082019050919050565b6000612956600b83612e38565b915061296182613603565b602082019050919050565b61297581612f9c565b82525050565b61298481612f9c565b82525050565b61299381612fa6565b82525050565b60006020820190506129ae600083018461259d565b92915050565b60006040820190506129c9600083018561259d565b6129d6602083018461297b565b9392505050565b600060408201905081810360008301526129f781856125ac565b90508181036020830152612a0b818461260a565b90509392505050565b6000602082019050612a296000830184612668565b92915050565b6000606082019050612a446000830186612668565b612a516020830185612668565b612a5e6040830184612668565b949350505050565b60006020820190508181036000830152612a808184612677565b905092915050565b60006020820190508181036000830152612aa1816126b0565b9050919050565b60006020820190508181036000830152612ac1816126d3565b9050919050565b60006020820190508181036000830152612ae1816126f6565b9050919050565b60006020820190508181036000830152612b0181612719565b9050919050565b60006020820190508181036000830152612b218161273c565b9050919050565b60006020820190508181036000830152612b418161275f565b9050919050565b60006020820190508181036000830152612b6181612782565b9050919050565b60006020820190508181036000830152612b81816127a5565b9050919050565b60006020820190508181036000830152612ba1816127c8565b9050919050565b60006020820190508181036000830152612bc1816127eb565b9050919050565b60006020820190508181036000830152612be18161280e565b9050919050565b60006020820190508181036000830152612c0181612831565b9050919050565b60006020820190508181036000830152612c2181612854565b9050919050565b60006020820190508181036000830152612c4181612877565b9050919050565b60006020820190508181036000830152612c618161289a565b9050919050565b60006020820190508181036000830152612c81816128bd565b9050919050565b60006020820190508181036000830152612ca1816128e0565b9050919050565b60006020820190508181036000830152612cc181612903565b9050919050565b60006020820190508181036000830152612ce181612926565b9050919050565b60006020820190508181036000830152612d0181612949565b9050919050565b6000602082019050612d1d600083018461297b565b92915050565b6000602082019050612d38600083018461298a565b92915050565b6000612d48612d59565b9050612d548282613018565b919050565b6000604051905090565b600067ffffffffffffffff821115612d7e57612d7d61314e565b5b602082029050602081019050919050565b600067ffffffffffffffff821115612daa57612da961314e565b5b602082029050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b6000612e5482612f9c565b9150612e5f83612f9c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612e9457612e93613092565b5b828201905092915050565b6000612eaa82612f9c565b9150612eb583612f9c565b925082612ec557612ec46130c1565b5b828204905092915050565b6000612edb82612f9c565b9150612ee683612f9c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612f1f57612f1e613092565b5b828202905092915050565b6000612f3582612f9c565b9150612f4083612f9c565b925082821015612f5357612f52613092565b5b828203905092915050565b6000612f6982612f7c565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015612fd1578082015181840152602081019050612fb6565b83811115612fe0576000848401525b50505050565b60006002820490506001821680612ffe57607f821691505b60208210811415613012576130116130f0565b5b50919050565b61302182613191565b810181811067ffffffffffffffff821117156130405761303f61314e565b5b80604052505050565b600061305482612f9c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561308757613086613092565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f6c656e67746873206d69736d6174636800000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f426c61636b6c69737420616464207265737472696374656420666f7265766572600082015250565b7f77726f6e67207368617265000000000000000000000000000000000000000000600082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4665657320617265206c6f636b656420666f7265766572000000000000000000600082015250565b7f45786365656473206d6178696d756d2062757920666565000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f776865656c2070726f74656374696f6e00000000000000000000000000000000600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f616c726561647920736574000000000000000000000000000000000000000000600082015250565b7f77726f6e6720736861726573202873756d20213d203130303030290000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f426c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b61363581612f5e565b811461364057600080fd5b50565b61364c81612f70565b811461365757600080fd5b50565b61366381612f9c565b811461366e57600080fd5b5056fea2646970667358221220863141a70a6dfbe8a384dbe6bd097c1d3555ca0e2c39556d7a0ec9bc8bcca62564736f6c634300080600330000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001f400000000000000000000000000000000000000000000000000000000000001f400000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000536db1198615b999d47adffd61f18b75a6ba2f560000000000000000000000003c120219e57502d01b099967c3bda5be053da6b2000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000007d0000000000000000000000000000000000000000000000000000000000000177000000000000000000000000000000000000000000000000000000000000007d0

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102325760003560e01c80637b24ab3211610130578063a9059cbb116100b8578063d231185f1161007c578063d231185f1461066d578063dca69d2114610677578063dd62ed3e14610695578063f28ed405146106c5578063f2fde38b146106e357610232565b8063a9059cbb146105cb578063cbf1f4a4146105fb578063cdcfe3d914610617578063d01dd6d214610633578063d041df8a1461064f57610232565b80638f3b957f116100ff5780638f3b957f1461050f578063918f86741461052d57806395d89b411461054b578063a457c2d714610569578063a7310b581461059957610232565b80637b24ab32146104995780637b4aaf51146104b757806380c581d1146104d55780638da5cb5b146104f157610232565b8063244c5359116101be578063607ad0d711610182578063607ad0d71461040957806370a0823114610427578063715018a614610457578063719f75c51461046157806379cc67901461047d57610232565b8063244c535914610353578063313ce5671461036f578063395093511461038d57806342966c68146103bd5780635ec4da0e146103d957610232565b806310b343e71161020557806310b343e7146102bf57806318160ddd146102dd5780631ff32a6e146102fb57806323b872dd14610319578063241b21eb1461034957610232565b806306fdde0314610237578063095ea7b3146102555780630a8ce474146102855780630f7469191461028f575b600080fd5b61023f6106ff565b60405161024c9190612a66565b60405180910390f35b61026f600480360381019061026a9190612479565b610791565b60405161027c9190612a14565b60405180910390f35b61028d6107b4565b005b6102a960048036038101906102a49190612531565b610855565b6040516102b69190612999565b60405180910390f35b6102c7610894565b6040516102d49190612a14565b60405180910390f35b6102e56108a7565b6040516102f29190612d08565b60405180910390f35b6103036108b1565b6040516103109190612d08565b60405180910390f35b610333600480360381019061032e91906123e6565b6108b7565b6040516103409190612a14565b60405180910390f35b6103516108e6565b005b61036d60048036038101906103689190612531565b610987565b005b610377610a65565b6040516103849190612d23565b60405180910390f35b6103a760048036038101906103a29190612479565b610a6e565b6040516103b49190612a14565b60405180910390f35b6103d760048036038101906103d29190612531565b610aa5565b005b6103f360048036038101906103ee9190612531565b610ab9565b6040516104009190612d08565b60405180910390f35b610411610add565b60405161041e9190612d08565b60405180910390f35b610441600480360381019061043c9190612379565b610b01565b60405161044e9190612d08565b60405180910390f35b61045f610b4a565b005b61047b60048036038101906104769190612439565b610b5e565b005b61049760048036038101906104929190612479565b610c12565b005b6104a1610c32565b6040516104ae9190612d08565b60405180910390f35b6104bf610c38565b6040516104cc9190612a14565b60405180910390f35b6104ef60048036038101906104ea9190612439565b610c4b565b005b6104f9610cff565b6040516105069190612999565b60405180910390f35b610517610d28565b6040516105249190612d08565b60405180910390f35b610535610d2e565b6040516105429190612d08565b60405180910390f35b610553610d34565b6040516105609190612a66565b60405180910390f35b610583600480360381019061057e9190612479565b610dc6565b6040516105909190612a14565b60405180910390f35b6105b360048036038101906105ae9190612379565b610e3d565b6040516105c293929190612a2f565b60405180910390f35b6105e560048036038101906105e09190612479565b610e8e565b6040516105f29190612a14565b60405180910390f35b61061560048036038101906106109190612531565b610eb1565b005b610631600480360381019061062c91906124b9565b610f8f565b005b61064d60048036038101906106489190612439565b611132565b005b61065761123d565b6040516106649190612a14565b60405180910390f35b610675611250565b005b61067f6112f1565b60405161068c9190612d08565b60405180910390f35b6106af60048036038101906106aa91906123a6565b61131b565b6040516106bc9190612d08565b60405180910390f35b6106cd6113a2565b6040516106da9190612d08565b60405180910390f35b6106fd60048036038101906106f89190612379565b6113a8565b005b60606004805461070e90612fe6565b80601f016020809104026020016040519081016040528092919081815260200182805461073a90612fe6565b80156107875780601f1061075c57610100808354040283529160200191610787565b820191906000526020600020905b81548152906001019060200180831161076a57829003601f168201915b5050505050905090565b60008061079c61142c565b90506107a9818585611434565b600191505092915050565b6107bc6115ff565b600b60009054906101000a900460ff161561080c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080390612c88565b60405180910390fd5b6001600b60006101000a81548160ff0219169083151502179055507fbec53a1e9209fa672f7ad7fa647c5883d6b464df39bb35e17e7bdd8aaeafbfe460405160405180910390a1565b600a818154811061086557600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b60029054906101000a900460ff1681565b6000600354905090565b6101f481565b6000806108c261142c565b90506108cf85828561167d565b6108da858585611709565b60019150509392505050565b6108ee6115ff565b600b60029054906101000a900460ff161561093e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093590612c88565b60405180910390fd5b6001600b60026101000a81548160ff0219169083151502179055507f8b41de35dc6b2f5d666406ed563d79a882a772d0f33fdaa90eaf45543f04f65660405160405180910390a1565b61098f6115ff565b600b60009054906101000a900460ff16156109df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d690612ba8565b60405180910390fd5b6101f4811115610a24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1b90612bc8565b60405180910390fd5b806008819055507f0bd5a50e62ed95afaa2ab9c73a81a5af86749fe749e79cc4fa79a329827abe5081604051610a5a9190612d08565b60405180910390a150565b60006012905090565b600080610a7961142c565b9050610a9a818585610a8b858961131b565b610a959190612e49565b611434565b600191505092915050565b610ab6610ab061142c565b82611a9e565b50565b60098181548110610ac957600080fd5b906000526020600020016000915090505481565b7f00000000000000000000000000000000000000000000000000000000653e8aaf81565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b526115ff565b610b5c6000611c6e565b565b610b666115ff565b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160016101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f37ddb83c57306cf4a7e1d5fd89bd61315769b66997f105b1dc1adef3f1eccf2b82604051610c069190612a14565b60405180910390a25050565b610c2482610c1e61142c565b8361167d565b610c2e8282611a9e565b5050565b60075481565b600b60009054906101000a900460ff1681565b610c536115ff565b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f1d1828d49ecf2fd34a77f1ec24b3098991a6cd7d3733c384719bd155867ad87782604051610cf39190612a14565b60405180910390a25050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6101f481565b61271081565b606060058054610d4390612fe6565b80601f0160208091040260200160405190810160405280929190818152602001828054610d6f90612fe6565b8015610dbc5780601f10610d9157610100808354040283529160200191610dbc565b820191906000526020600020905b815481529060010190602001808311610d9f57829003601f168201915b5050505050905090565b600080610dd161142c565b90506000610ddf828661131b565b905083811015610e24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1b90612cc8565b60405180910390fd5b610e318286868403611434565b60019250505092915050565b60066020528060005260406000206000915090508060000160009054906101000a900460ff16908060000160019054906101000a900460ff16908060000160029054906101000a900460ff16905083565b600080610e9961142c565b9050610ea6818585611709565b600191505092915050565b610eb96115ff565b600b60009054906101000a900460ff1615610f09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0090612ba8565b60405180910390fd5b6101f4811115610f4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4590612bc8565b60405180910390fd5b806007819055507f246f769161014f7ec8561a07b7d28a7073805ced4bb75cecb0cd210304ed7d8d81604051610f849190612d08565b60405180910390a150565b610f976115ff565b8151815114610fdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd290612ac8565b60405180910390fd5b6000805b825181101561108157828181518110610ffb57610ffa61311f565b5b60200260200101518261100e9190612e49565b915060008382815181106110255761102461311f565b5b6020026020010151141561106e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106590612b48565b60405180910390fd5b808061107990613049565b915050610fdf565b5061271081146110c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bd90612ca8565b60405180910390fd5b82600a90805190602001906110dc92919061210a565b5081600990805190602001906110f3929190612194565b507fcf7df9140ee657562183800e6ea7c7d2c1c8b93e81d568e15c9b0c3822c161c183836040516111259291906129dd565b60405180910390a1505050565b61113a6115ff565b801561119157600b60029054906101000a900460ff1615611190576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118790612b28565b60405180910390fd5b5b80600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160026101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f921341769c2075d1ae425396063d5ab65ff5006c4bc0bd0821e50ce51fb60123826040516112319190612a14565b60405180910390a25050565b600b60019054906101000a900460ff1681565b6112586115ff565b600b60019054906101000a900460ff16156112a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129f90612c88565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055507fe0116274a64ed4ed788d703f284cbf8b5cae71fd4d97c7398adda4dd65639b2f60405160405180910390a1565b6000600b60019054906101000a900460ff1615611312576008549050611318565b61271090505b90565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60085481565b6113b06115ff565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611420576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141790612ae8565b60405180910390fd5b61142981611c6e565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156114a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149b90612c68565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611514576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150b90612b08565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516115f29190612d08565b60405180910390a3505050565b61160761142c565b73ffffffffffffffffffffffffffffffffffffffff16611625610cff565b73ffffffffffffffffffffffffffffffffffffffff161461167b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167290612be8565b60405180910390fd5b565b6000611689848461131b565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461170357818110156116f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ec90612b68565b60405180910390fd5b6117028484848403611434565b5b50505050565b6000600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060600160405290816000820160009054906101000a900460ff161515151581526020016000820160019054906101000a900460ff161515151581526020016000820160029054906101000a900460ff16151515158152505090506000600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060600160405290816000820160009054906101000a900460ff161515151581526020016000820160019054906101000a900460ff161515151581526020016000820160029054906101000a900460ff1615151515815250509050816040015115801561185b57508060400151155b61189a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189190612ce8565b60405180910390fd5b6118a48282611d32565b15806118be5750816000015180156118bd575080600001515b5b156118d5576118ce858585611d50565b5050611a99565b816000015115611961576000612710600754856118f29190612ed0565b6118fc9190612e9f565b90506119088682611fcb565b8573ffffffffffffffffffffffffffffffffffffffff167fa1d9cc4f656b5806a40d32111d5b01fe6cdabb816c7c2596acbd42e94efed3608260405161194e9190612d08565b60405180910390a28084039350506119f4565b8060000151156119f25760006127106119786112f1565b856119839190612ed0565b61198d9190612e9f565b90506119998682611fcb565b8573ffffffffffffffffffffffffffffffffffffffff167feebbd6732d7979cccfcb383171bc8f012879a3ad56ebe489d4ba6317e158e5a1826040516119df9190612d08565b60405180910390a28084039350506119f3565b5b5b6119ff858585611d50565b610e107f00000000000000000000000000000000000000000000000000000000653e8aaf42611a2e9190612f2a565b1015611a96576a034f086f3b33b684000000611a4985610b01565b1080611a56575080602001515b611a95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8c90612c08565b60405180910390fd5b5b50505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0590612c28565b60405180910390fd5b611b1a82600083612100565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611ba1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9890612aa8565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611c559190612d08565b60405180910390a3611c6983600084612105565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008260200151158015611d4857508160200151155b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611dc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db790612c48565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2790612a88565b60405180910390fd5b611e3b838383612100565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611ec2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb990612b88565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611fb29190612d08565b60405180910390a3611fc5848484612105565b50505050565b60005b600a805490508110156120fb576000600a8281548110611ff157611ff061311f565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506000600983815481106120345761203361311f565b5b90600052602060002001549050600061271082866120529190612ed0565b61205c9190612e9f565b9050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156120a25761209d8682611a9e565b6120ae565b6120ad868483611d50565b5b7f87a0f077fc287e841a0ba9dbc280cb17fc568751f2e319671d7a0de3c845f3ba83826040516120df9291906129b4565b60405180910390a1505050806120f490613049565b9050611fce565b505050565b505050565b505050565b828054828255906000526020600020908101928215612183579160200282015b828111156121825782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055509160200191906001019061212a565b5b50905061219091906121e1565b5090565b8280548282559060005260206000209081019282156121d0579160200282015b828111156121cf5782518255916020019190600101906121b4565b5b5090506121dd91906121e1565b5090565b5b808211156121fa5760008160009055506001016121e2565b5090565b600061221161220c84612d63565b612d3e565b9050808382526020820190508285602086028201111561223457612233613182565b5b60005b85811015612264578161224a88826122de565b845260208401935060208301925050600181019050612237565b5050509392505050565b600061228161227c84612d8f565b612d3e565b905080838252602082019050828560208602820111156122a4576122a3613182565b5b60005b858110156122d457816122ba8882612364565b8452602084019350602083019250506001810190506122a7565b5050509392505050565b6000813590506122ed8161362c565b92915050565b600082601f8301126123085761230761317d565b5b81356123188482602086016121fe565b91505092915050565b600082601f8301126123365761233561317d565b5b813561234684826020860161226e565b91505092915050565b60008135905061235e81613643565b92915050565b6000813590506123738161365a565b92915050565b60006020828403121561238f5761238e61318c565b5b600061239d848285016122de565b91505092915050565b600080604083850312156123bd576123bc61318c565b5b60006123cb858286016122de565b92505060206123dc858286016122de565b9150509250929050565b6000806000606084860312156123ff576123fe61318c565b5b600061240d868287016122de565b935050602061241e868287016122de565b925050604061242f86828701612364565b9150509250925092565b600080604083850312156124505761244f61318c565b5b600061245e858286016122de565b925050602061246f8582860161234f565b9150509250929050565b600080604083850312156124905761248f61318c565b5b600061249e858286016122de565b92505060206124af85828601612364565b9150509250929050565b600080604083850312156124d0576124cf61318c565b5b600083013567ffffffffffffffff8111156124ee576124ed613187565b5b6124fa858286016122f3565b925050602083013567ffffffffffffffff81111561251b5761251a613187565b5b61252785828601612321565b9150509250929050565b6000602082840312156125475761254661318c565b5b600061255584828501612364565b91505092915050565b600061256a838361258e565b60208301905092915050565b6000612582838361296c565b60208301905092915050565b61259781612f5e565b82525050565b6125a681612f5e565b82525050565b60006125b782612ddb565b6125c18185612e16565b93506125cc83612dbb565b8060005b838110156125fd5781516125e4888261255e565b97506125ef83612dfc565b9250506001810190506125d0565b5085935050505092915050565b600061261582612de6565b61261f8185612e27565b935061262a83612dcb565b8060005b8381101561265b5781516126428882612576565b975061264d83612e09565b92505060018101905061262e565b5085935050505092915050565b61267181612f70565b82525050565b600061268282612df1565b61268c8185612e38565b935061269c818560208601612fb3565b6126a581613191565b840191505092915050565b60006126bd602383612e38565b91506126c8826131a2565b604082019050919050565b60006126e0602283612e38565b91506126eb826131f1565b604082019050919050565b6000612703601083612e38565b915061270e82613240565b602082019050919050565b6000612726602683612e38565b915061273182613269565b604082019050919050565b6000612749602283612e38565b9150612754826132b8565b604082019050919050565b600061276c602083612e38565b915061277782613307565b602082019050919050565b600061278f600b83612e38565b915061279a82613330565b602082019050919050565b60006127b2601d83612e38565b91506127bd82613359565b602082019050919050565b60006127d5602683612e38565b91506127e082613382565b604082019050919050565b60006127f8601783612e38565b9150612803826133d1565b602082019050919050565b600061281b601783612e38565b9150612826826133fa565b602082019050919050565b600061283e602083612e38565b915061284982613423565b602082019050919050565b6000612861601083612e38565b915061286c8261344c565b602082019050919050565b6000612884602183612e38565b915061288f82613475565b604082019050919050565b60006128a7602583612e38565b91506128b2826134c4565b604082019050919050565b60006128ca602483612e38565b91506128d582613513565b604082019050919050565b60006128ed600b83612e38565b91506128f882613562565b602082019050919050565b6000612910601b83612e38565b915061291b8261358b565b602082019050919050565b6000612933602583612e38565b915061293e826135b4565b604082019050919050565b6000612956600b83612e38565b915061296182613603565b602082019050919050565b61297581612f9c565b82525050565b61298481612f9c565b82525050565b61299381612fa6565b82525050565b60006020820190506129ae600083018461259d565b92915050565b60006040820190506129c9600083018561259d565b6129d6602083018461297b565b9392505050565b600060408201905081810360008301526129f781856125ac565b90508181036020830152612a0b818461260a565b90509392505050565b6000602082019050612a296000830184612668565b92915050565b6000606082019050612a446000830186612668565b612a516020830185612668565b612a5e6040830184612668565b949350505050565b60006020820190508181036000830152612a808184612677565b905092915050565b60006020820190508181036000830152612aa1816126b0565b9050919050565b60006020820190508181036000830152612ac1816126d3565b9050919050565b60006020820190508181036000830152612ae1816126f6565b9050919050565b60006020820190508181036000830152612b0181612719565b9050919050565b60006020820190508181036000830152612b218161273c565b9050919050565b60006020820190508181036000830152612b418161275f565b9050919050565b60006020820190508181036000830152612b6181612782565b9050919050565b60006020820190508181036000830152612b81816127a5565b9050919050565b60006020820190508181036000830152612ba1816127c8565b9050919050565b60006020820190508181036000830152612bc1816127eb565b9050919050565b60006020820190508181036000830152612be18161280e565b9050919050565b60006020820190508181036000830152612c0181612831565b9050919050565b60006020820190508181036000830152612c2181612854565b9050919050565b60006020820190508181036000830152612c4181612877565b9050919050565b60006020820190508181036000830152612c618161289a565b9050919050565b60006020820190508181036000830152612c81816128bd565b9050919050565b60006020820190508181036000830152612ca1816128e0565b9050919050565b60006020820190508181036000830152612cc181612903565b9050919050565b60006020820190508181036000830152612ce181612926565b9050919050565b60006020820190508181036000830152612d0181612949565b9050919050565b6000602082019050612d1d600083018461297b565b92915050565b6000602082019050612d38600083018461298a565b92915050565b6000612d48612d59565b9050612d548282613018565b919050565b6000604051905090565b600067ffffffffffffffff821115612d7e57612d7d61314e565b5b602082029050602081019050919050565b600067ffffffffffffffff821115612daa57612da961314e565b5b602082029050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b6000612e5482612f9c565b9150612e5f83612f9c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612e9457612e93613092565b5b828201905092915050565b6000612eaa82612f9c565b9150612eb583612f9c565b925082612ec557612ec46130c1565b5b828204905092915050565b6000612edb82612f9c565b9150612ee683612f9c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612f1f57612f1e613092565b5b828202905092915050565b6000612f3582612f9c565b9150612f4083612f9c565b925082821015612f5357612f52613092565b5b828203905092915050565b6000612f6982612f7c565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015612fd1578082015181840152602081019050612fb6565b83811115612fe0576000848401525b50505050565b60006002820490506001821680612ffe57607f821691505b60208210811415613012576130116130f0565b5b50919050565b61302182613191565b810181811067ffffffffffffffff821117156130405761303f61314e565b5b80604052505050565b600061305482612f9c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561308757613086613092565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f6c656e67746873206d69736d6174636800000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f426c61636b6c69737420616464207265737472696374656420666f7265766572600082015250565b7f77726f6e67207368617265000000000000000000000000000000000000000000600082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4665657320617265206c6f636b656420666f7265766572000000000000000000600082015250565b7f45786365656473206d6178696d756d2062757920666565000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f776865656c2070726f74656374696f6e00000000000000000000000000000000600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f616c726561647920736574000000000000000000000000000000000000000000600082015250565b7f77726f6e6720736861726573202873756d20213d203130303030290000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f426c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b61363581612f5e565b811461364057600080fd5b50565b61364c81612f70565b811461365757600080fd5b50565b61366381612f9c565b811461366e57600080fd5b5056fea2646970667358221220863141a70a6dfbe8a384dbe6bd097c1d3555ca0e2c39556d7a0ec9bc8bcca62564736f6c63430008060033

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

0000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001f400000000000000000000000000000000000000000000000000000000000001f400000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000536db1198615b999d47adffd61f18b75a6ba2f560000000000000000000000003c120219e57502d01b099967c3bda5be053da6b2000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000007d0000000000000000000000000000000000000000000000000000000000000177000000000000000000000000000000000000000000000000000000000000007d0

-----Decoded View---------------
Arg [0] : _treasuryList (address[]): 0x0000000000000000000000000000000000000000,0x536DB1198615b999D47aDFfd61f18B75A6bA2F56,0x3c120219E57502D01B099967C3bdA5bE053Da6B2
Arg [1] : _treasuryShares (uint256[]): 2000,6000,2000
Arg [2] : _buyFeeNumeratorValue (uint256): 500
Arg [3] : _sellFeeNumeratorValue (uint256): 500

-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 00000000000000000000000000000000000000000000000000000000000001f4
Arg [3] : 00000000000000000000000000000000000000000000000000000000000001f4
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [6] : 000000000000000000000000536db1198615b999d47adffd61f18b75a6ba2f56
Arg [7] : 0000000000000000000000003c120219e57502d01b099967c3bda5be053da6b2
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [9] : 00000000000000000000000000000000000000000000000000000000000007d0
Arg [10] : 0000000000000000000000000000000000000000000000000000000000001770
Arg [11] : 00000000000000000000000000000000000000000000000000000000000007d0


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.