ETH Price: $2,635.15 (+2.20%)

Token

DOOM (DOOM)
 

Overview

Max Total Supply

120,000,000 DOOM

Holders

52

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,199,999.999999999971099777 DOOM

Value
$0.00
0x7ba0a0eee1c59d95d8849143871805975d3988ed
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:
DOOM

Compiler Version
v0.8.22+commit.4fc1097e

Optimization Enabled:
Yes with 999999 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-01-14
*/

/* 

https://doomethereum.com
https://twitter.com/doomethereum
https://t.me/doomethereum

*/

pragma solidity ^0.8.0;

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

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


// File @openzeppelin/contracts/access/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC20/[email protected]

// Original license: 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 @openzeppelin/contracts/token/ERC20/extensions/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

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

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

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


// File @openzeppelin/contracts/token/ERC20/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;



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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;


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

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


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/extensions/IERC20Permit.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 */
interface IERC20Permit {
    /**
     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
     * given ``owner``'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    /**
     * @dev Returns the current nonce for `owner`. This value must be
     * included whenever a signature is generated for {permit}.
     *
     * Every successful call to {permit} increases ``owner``'s nonce by one. This
     * prevents a signature from being used multiple times.
     */
    function nonces(address owner) external view returns (uint256);

    /**
     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}


// File @openzeppelin/contracts/utils/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     *
     * Furthermore, `isContract` will also return true if the target contract within
     * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
     * which only has an effect at the end of a transaction.
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}


// File @openzeppelin/contracts/token/ERC20/utils/[email protected]

// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.3) (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;



/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    /**
     * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    /**
     * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the
     * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful.
     */
    function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(IERC20 token, address spender, uint256 value) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    /**
     * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 oldAllowance = token.allowance(address(this), spender);
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance + value));
    }

    /**
     * @dev Decrease the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance - value));
        }
    }

    /**
     * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval
     * to be set to zero before setting it to a non-zero value, such as USDT.
     */
    function forceApprove(IERC20 token, address spender, uint256 value) internal {
        bytes memory approvalCall = abi.encodeWithSelector(token.approve.selector, spender, value);

        if (!_callOptionalReturnBool(token, approvalCall)) {
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, 0));
            _callOptionalReturn(token, approvalCall);
        }
    }

    /**
     * @dev Use a ERC-2612 signature to set the `owner` approval toward `spender` on `token`.
     * Revert on invalid signature.
     */
    function safePermit(
        IERC20Permit token,
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal {
        uint256 nonceBefore = token.nonces(owner);
        token.permit(owner, spender, value, deadline, v, r, s);
        uint256 nonceAfter = token.nonces(owner);
        require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed");
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        require(returndata.length == 0 || abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     *
     * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead.
     */
    function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false
        // and not revert is the subcall reverts.

        (bool success, bytes memory returndata) = address(token).call(data);
        return
            success && (returndata.length == 0 || abi.decode(returndata, (bool))) && Address.isContract(address(token));
    }
}


// File contracts/libs/Swapper.sol

// Original license: SPDX_License_Identifier: MIT

pragma solidity ^0.8.0;

interface OmniToken {
    function getReserves()
        external
        view
        returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);

    function swap(
        uint256 amount0Out,
        uint256 amount1Out,
        address to,
        bytes calldata data
    ) external;

    function deposit() external payable;

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 value
    ) external returns (bool);

    function balanceOf(address account) external view returns (uint256);
}

contract DirectSwapper {
    struct LiquidityPairs {
        // address pair;
        address router;
        address base;
    }

    address public wNative;

    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status = _NOT_ENTERED;

    modifier entryGuard() {
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
        _status = _ENTERED;
        _;
        _status = _NOT_ENTERED;
    }

    function _swapSupportingFeeOnTransferTokens(address pair, address[2] memory path, address to) internal {
            (address input, address output) = (path[0], path[1]);
            (address token0,) = input < output ? (input, output) : (output, input);
            uint amountInput;
            uint amountOutput;
            { // scope to avoid stack too deep errors
            (uint reserve0, uint reserve1,) = OmniToken(pair).getReserves();
            (uint reserveInput, uint reserveOutput) = input == token0 ? (reserve0, reserve1) : (reserve1, reserve0);
            amountInput = OmniToken(input).balanceOf(pair) - (reserveInput);
            amountOutput = getAmountOut(amountInput, reserveInput, reserveOutput);
            }
            (uint amount0Out, uint amount1Out) = input == token0 ? (uint(0), amountOutput) : (amountOutput, uint(0));
            OmniToken(pair).swap(amount0Out, amount1Out, to, new bytes(0));
    }

    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) internal pure returns (uint amountOut) {
        uint amountInWithFee = amountIn * (997);
        uint numerator = amountInWithFee * (reserveOut);
        uint denominator = reserveIn * (1000) + (amountInWithFee);
        amountOut = numerator / denominator;
    }

    function getAmountIn(
        uint256 amountOut,
        uint256 reserveIn,
        uint256 reserveOut
    ) internal pure returns (uint256 amountIn) {
        uint256 numerator = reserveIn * amountOut * 1000;
        uint256 denominator = (reserveOut - amountOut) * 997;
        amountIn = (numerator / denominator) + 1;
    }
}


// File contracts/BaseToken.sol

// Original license: SPDX_License_Identifier: MIT




pragma solidity ^0.8.19;

contract DOOM is ERC20Burnable, DirectSwapper, Ownable {
  using SafeERC20 for IERC20;

  event SetPair(address indexed pair, address indexed router);
  event WhitelistAddress(address indexed account, bool isExcluded);

  mapping(address => bool) public _whiteListed;
  mapping(address => bool) public _blacklisted;
  mapping(address => uint256) private _lastTransfer;

  mapping(address => LiquidityPairs) public _routerPairs;

  uint256 public constant DIVISOR = 100_000;

  // snipe and bot limiters
  uint256 public cooldown = 5;
  uint256 public initLimit = 50_000 * 10 ** decimals(); // max tx amount ( ~0.5 eth)

  uint256 public exitFee = 10000;
  uint256 public tokenThreshold = 100 * 10 ** decimals();

  address payable public fundingWallet;

  bool private reset = false;
  bool private swapping;
  bool public preTrade = true;

  constructor() ERC20("DOOM", "DOOM") {
    _mint(msg.sender, 120_000_000 * 10 ** decimals());

    fundingWallet = payable(msg.sender);

    whitelistAddress(msg.sender, true);
    whitelistAddress(address(this), true);
  }

  receive() external payable {}

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

  function _beforeTokenTransfer(
    address from,
    address to,
    uint256 amount
  ) internal override(ERC20) {
    super._beforeTokenTransfer(from, to, amount);
  }

  function whitelistAddress(address account, bool setting) public onlyOwner {
    require(_whiteListed[account] != setting, "Account already at setting");
    _whiteListed[account] = setting;

    emit WhitelistAddress(account, setting);
  }

  function _transfer(
    address sender,
    address recipient,
    uint256 amount
  ) internal override(ERC20) {
    if (swapping || reset) return super._transfer(sender, recipient, amount);
    if (preTrade) require(_whiteListed[sender], "PreTrade");
    require(!_blacklisted[sender] && !_blacklisted[recipient], "!!blacklisted");

    uint256 contractBalance = balanceOf(address(this));

    // this is used to gradually sell off any tokens held by the contract in chunks of 'tokenThreshold'
    uint256 liquidationAmount = contractBalance > 0 &&
      contractBalance > tokenThreshold
      ? tokenThreshold
      : contractBalance;

    if (!_whiteListed[recipient] || !_whiteListed[sender]) {
      if (_routerPairs[recipient].base != address(0)) {
        if(_lastTransfer[sender] != 0) require(_lastTransfer[sender] + (cooldown * 1 minutes) < block.timestamp, "!!cooldown");
        _lastTransfer[sender] = block.timestamp;
      }
      if (_routerPairs[sender].base != address(0)) {
        if(_lastTransfer[recipient] != 0) require(_lastTransfer[recipient] + (cooldown * 1 minutes) < block.timestamp, "!!cooldown");
        _lastTransfer[recipient] = block.timestamp;
      }

      if (_routerPairs[recipient].base != address(0) || _routerPairs[sender].base != address(0) && initLimit != 0) 
        require(amount <= initLimit, "!initLimit");
    }

    if (
      !swapping &&
      _routerPairs[recipient].base != address(0) &&
      !_whiteListed[sender] &&
      !_whiteListed[recipient]
    ) {
      uint256 fees = (amount * exitFee) / DIVISOR;
      amount -= fees;

      swapping = true;
      super._transfer(address(this), recipient, liquidationAmount);
      super._transfer(sender, recipient, fees);
      _swapToCollateral(recipient);
      swapping = false;
    }

    super._transfer(sender, recipient, amount);
  }

  function _swapToCollateral(address targetPair) internal entryGuard {
    _swapSupportingFeeOnTransferTokens(
      targetPair,
      [address(this), _routerPairs[targetPair].base],
      fundingWallet
    );
  }

  function setCooldown(uint256 _cooldown) external onlyOwner {
    require(_cooldown < 16, "Max cooldown is 15 minutes");
    cooldown = _cooldown;
  }

  function setInitLimit(uint256 _initLimit) external onlyOwner {
    require(_initLimit > 10 * 10 ** 18, "Max initLimit is 15 minutes");
    initLimit = _initLimit;
  }

  function setExitFee(uint256 _exitFee) external onlyOwner {
    require(_exitFee <= 11000, "Max exit fee is 11%");
    exitFee = _exitFee;
  }

  function setPretrade(bool _preTrade) external onlyOwner {
    require(preTrade, "Pretrade already set");
    preTrade = _preTrade;
  }

  function addPair(
    address pair,
    address base
  ) public onlyOwner {
    _routerPairs[pair].base = base;

    emit SetPair(pair, base);
  }

  function setTokenThreshold(uint256 _tokenThreshold) external onlyOwner {
    tokenThreshold = _tokenThreshold;
  }

  function setReset(bool _reset) external onlyOwner {
    reset = _reset;
  }

  function setFundingWallet(address payable _wallet) external onlyOwner {
    fundingWallet = _wallet;
    _whiteListed[address(_wallet)] = true;
  }

  function blacklistAddress(address account, bool value) external onlyOwner {
    _blacklisted[account] = value;
  }

  // The following functions are overrides required by Solidity.

  function _afterTokenTransfer(
    address from,
    address to,
    uint256 amount
  ) internal override(ERC20) {
    super._afterTokenTransfer(from, to, amount);
  }

  function _burn(address account, uint256 amount) internal override(ERC20) {
    super._burn(account, amount);
  }

  // internal-only function, required to override imports properly
  function _mint(address account, uint256 amount) internal override(ERC20) {
    super._mint(account, amount);
  }

  function rescueTokens(
    address recipient,
    address token,
    uint256 amount
  ) public onlyOwner returns (bool) {
    require(
      _routerPairs[token].base == address(0),
      "Can't transfer out LP tokens!"
    );

    require(IERC20(token).transfer(recipient, amount), "tx fail"); //use of the _ERC20 traditional transfer

    return true;
  }

  function rescueTokensSafe(
    address recipient,
    address token,
    uint256 amount
  ) public onlyOwner returns (bool) {
    require(
      _routerPairs[token].base == address(0),
      "Can't transfer out LP tokens!"
    );

    IERC20(token).safeTransfer(recipient, amount); //use of the _ERC20 traditional transfer

    return true;
  }

  function rescueEth(address payable recipient) public onlyOwner {
    recipient.transfer(address(this).balance);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"address","name":"router","type":"address"}],"name":"SetPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"WhitelistAddress","type":"event"},{"inputs":[],"name":"DIVISOR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_blacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_routerPairs","outputs":[{"internalType":"address","name":"router","type":"address"},{"internalType":"address","name":"base","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_whiteListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"address","name":"base","type":"address"}],"name":"addPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"blacklistAddress","outputs":[],"stateMutability":"nonpayable","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":"cooldown","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":"exitFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fundingWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preTrade","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"recipient","type":"address"}],"name":"rescueEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"rescueTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"rescueTokensSafe","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cooldown","type":"uint256"}],"name":"setCooldown","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_exitFee","type":"uint256"}],"name":"setExitFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_wallet","type":"address"}],"name":"setFundingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_initLimit","type":"uint256"}],"name":"setInitLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_preTrade","type":"bool"}],"name":"setPretrade","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_reset","type":"bool"}],"name":"setReset","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenThreshold","type":"uint256"}],"name":"setTokenThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wNative","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"setting","type":"bool"}],"name":"whitelistAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405260016006556005600c556200001c6012600a620004d7565b6200002a9061c350620004ee565b600d55612710600e55620000416012600a620004d7565b6200004e906064620004ee565b600f556010805462ff00ff60a01b1916600160b01b17905534801562000072575f80fd5b50604080518082018252600480825263444f4f4d60e01b6020808401829052845180860190955291845290830152906003620000af8382620005a5565b506004620000be8282620005a5565b505050620000db620000d56200013960201b60201c565b6200013d565b6200010433620000ee6012600a620004d7565b620000fe906307270e00620004ee565b6200018e565b601080546001600160a01b03191633908117909155620001269060016200019e565b620001333060016200019e565b62000687565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6200019a82826200027b565b5050565b620001a862000352565b6001600160a01b0382165f9081526008602052604090205481151560ff9091161515036200021d5760405162461bcd60e51b815260206004820152601a60248201527f4163636f756e7420616c72656164792061742073657474696e6700000000000060448201526064015b60405180910390fd5b6001600160a01b0382165f81815260086020908152604091829020805460ff191685151590811790915591519182527f33e0bf3ce98fac4118d5a0a8fe49e83b6acdfdef32871c9eca20e1528d7701ba910160405180910390a25050565b6001600160a01b038216620002d35760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000214565b620002e05f8383620003b0565b8060025f828254620002f3919062000671565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36200019a5f8383620003b0565b6007546001600160a01b03163314620003ae5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000214565b565b620003c38383836001600160e01b038416565b505050565b634e487b7160e01b5f52601160045260245ffd5b600181815b808511156200041c57815f1904821115620004005762000400620003c8565b808516156200040e57918102915b93841c9390800290620003e1565b509250929050565b5f826200043457506001620004d1565b816200044257505f620004d1565b81600181146200045b5760028114620004665762000486565b6001915050620004d1565b60ff8411156200047a576200047a620003c8565b50506001821b620004d1565b5060208310610133831016604e8410600b8410161715620004ab575081810a620004d1565b620004b78383620003dc565b805f1904821115620004cd57620004cd620003c8565b0290505b92915050565b5f620004e760ff84168362000424565b9392505050565b8082028115828204841417620004d157620004d1620003c8565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200053157607f821691505b6020821081036200055057634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620003c357805f5260205f20601f840160051c810160208510156200057d5750805b601f840160051c820191505b818110156200059e575f815560010162000589565b5050505050565b81516001600160401b03811115620005c157620005c162000508565b620005d981620005d284546200051c565b8462000556565b602080601f8311600181146200060f575f8415620005f75750858301515b5f19600386901b1c1916600185901b17855562000669565b5f85815260208120601f198616915b828110156200063f578886015182559484019460019091019084016200061e565b50858210156200065d57878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b80820180821115620004d157620004d1620003c8565b612d5280620006955f395ff3fe6080604052600436106102ae575f3560e01c8063787a08a611610165578063b3f579f5116100c6578063dd62ed3e1161007c578063eca2b4d311610062578063eca2b4d3146107f9578063f2fde38b14610818578063f33c86cd14610837575f80fd5b8063dd62ed3e14610789578063e5a583a9146107da575f80fd5b8063b9a45aac116100ac578063b9a45aac1461072c578063cea9d26f1461074b578063ceacd4511461076a575f80fd5b8063b3f579f514610694578063b6f3e0871461070d575f80fd5b80638da5cb5b1161011b5780639819d24e116101015780639819d24e14610637578063a457c2d714610656578063a9059cbb14610675575f80fd5b80638da5cb5b146105f957806395d89b4114610623575f80fd5b80637a6d69b41161014b5780637a6d69b41461058d5780637c6800b3146105bb57806387bde549146105da575f80fd5b8063787a08a61461055957806379cc67901461056e575f80fd5b806339d8d2da1161020f5780634fc3f41a116101c557806366692ff0116101ab57806366692ff01461051157806370a0823114610526578063715018a614610545575f80fd5b80634fc3f41a146104dd5780636284ae41146104fc575f80fd5b80633c4b40b8116101f55780633c4b40b81461047357806342966c681461049f578063455a4396146104be575f80fd5b806339d8d2da146104335780633b1ab44c14610454575f80fd5b806323b872dd11610264578063313ce5671161024a578063313ce567146103e35780633410fe6e146103fe5780633950935114610414575f80fd5b806323b872dd146103735780632d68efc914610392575f80fd5b806306fdde031161029457806306fdde031461031f578063095ea7b31461034057806318160ddd1461035f575f80fd5b80630103a158146102b957806304876746146102fc575f80fd5b366102b557005b5f80fd5b3480156102c4575f80fd5b506102e76102d3366004612981565b60086020525f908152604090205460ff1681565b60405190151581526020015b60405180910390f35b348015610307575f80fd5b50610311600d5481565b6040519081526020016102f3565b34801561032a575f80fd5b5061033361086a565b6040516102f39190612a0e565b34801561034b575f80fd5b506102e761035a366004612a20565b6108fa565b34801561036a575f80fd5b50600254610311565b34801561037e575f80fd5b506102e761038d366004612a4a565b610913565b34801561039d575f80fd5b506005546103be9073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016102f3565b3480156103ee575f80fd5b50604051601281526020016102f3565b348015610409575f80fd5b50610311620186a081565b34801561041f575f80fd5b506102e761042e366004612a20565b610936565b34801561043e575f80fd5b5061045261044d366004612a95565b610981565b005b34801561045f575f80fd5b5061045261046e366004612981565b6109d3565b34801561047e575f80fd5b506010546103be9073ffffffffffffffffffffffffffffffffffffffff1681565b3480156104aa575f80fd5b506104526104b9366004612ab0565b610a1e565b3480156104c9575f80fd5b506104526104d8366004612ac7565b610a2b565b3480156104e8575f80fd5b506104526104f7366004612ab0565b610a88565b348015610507575f80fd5b50610311600e5481565b34801561051c575f80fd5b50610311600f5481565b348015610531575f80fd5b50610311610540366004612981565b610b04565b348015610550575f80fd5b50610452610b2e565b348015610564575f80fd5b50610311600c5481565b348015610579575f80fd5b50610452610588366004612a20565b610b41565b348015610598575f80fd5b506102e76105a7366004612981565b60096020525f908152604090205460ff1681565b3480156105c6575f80fd5b506104526105d5366004612ab0565b610b56565b3480156105e5575f80fd5b506104526105f4366004612ab0565b610bd4565b348015610604575f80fd5b5060075473ffffffffffffffffffffffffffffffffffffffff166103be565b34801561062e575f80fd5b50610333610be1565b348015610642575f80fd5b50610452610651366004612981565b610bf0565b348015610661575f80fd5b506102e7610670366004612a20565b610c74565b348015610680575f80fd5b506102e761068f366004612a20565b610d44565b34801561069f575f80fd5b506106e06106ae366004612981565b600b6020525f90815260409020805460019091015473ffffffffffffffffffffffffffffffffffffffff918216911682565b6040805173ffffffffffffffffffffffffffffffffffffffff9384168152929091166020830152016102f3565b348015610718575f80fd5b50610452610727366004612afe565b610d51565b348015610737575f80fd5b50610452610746366004612ac7565b610dd7565b348015610756575f80fd5b506102e7610765366004612a4a565b610efe565b348015610775575f80fd5b506102e7610784366004612a4a565b61109e565b348015610794575f80fd5b506103116107a3366004612afe565b73ffffffffffffffffffffffffffffffffffffffff9182165f90815260016020908152604080832093909416825291909152205490565b3480156107e5575f80fd5b506104526107f4366004612ab0565b611159565b348015610804575f80fd5b50610452610813366004612a95565b6111d2565b348015610823575f80fd5b50610452610832366004612981565b6112ac565b348015610842575f80fd5b506010546102e790760100000000000000000000000000000000000000000000900460ff1681565b60606003805461087990612b2a565b80601f01602080910402602001604051908101604052809291908181526020018280546108a590612b2a565b80156108f05780601f106108c7576101008083540402835291602001916108f0565b820191905f5260205f20905b8154815290600101906020018083116108d357829003601f168201915b5050505050905090565b5f33610907818585611360565b60019150505b92915050565b5f33610920858285611512565b61092b8585856115e8565b506001949350505050565b335f81815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909190610907908290869061097c908790612ba8565b611360565b610989611ceb565b6010805491151574010000000000000000000000000000000000000000027fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff909216919091179055565b6109db611ceb565b60405173ffffffffffffffffffffffffffffffffffffffff8216904780156108fc02915f818181858888f19350505050158015610a1a573d5f803e3d5ffd5b5050565b610a283382611d6c565b50565b610a33611ceb565b73ffffffffffffffffffffffffffffffffffffffff919091165f90815260096020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b610a90611ceb565b60108110610aff576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4d617820636f6f6c646f776e206973203135206d696e7574657300000000000060448201526064015b60405180910390fd5b600c55565b73ffffffffffffffffffffffffffffffffffffffff81165f9081526020819052604081205461090d565b610b36611ceb565b610b3f5f611d76565b565b610b4c823383611512565b610a1a8282611d6c565b610b5e611ceb565b678ac7230489e800008111610bcf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f4d617820696e69744c696d6974206973203135206d696e7574657300000000006044820152606401610af6565b600d55565b610bdc611ceb565b600f55565b60606004805461087990612b2a565b610bf8611ceb565b6010805473ffffffffffffffffffffffffffffffffffffffff9092167fffffffffffffffffffffffff0000000000000000000000000000000000000000909216821790555f90815260086020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b335f81815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490919083811015610d37576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610af6565b61092b8286868403611360565b5f336109078185856115e8565b610d59611ceb565b73ffffffffffffffffffffffffffffffffffffffff8281165f818152600b602052604080822060010180547fffffffffffffffffffffffff0000000000000000000000000000000000000000169486169485179055517fd482e95abb3d8f5eaf8f07dbd4c204ea55842bacc8cf5d530aa104716551e2169190a35050565b610ddf611ceb565b73ffffffffffffffffffffffffffffffffffffffff82165f9081526008602052604090205481151560ff909116151503610e75576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4163636f756e7420616c72656164792061742073657474696e670000000000006044820152606401610af6565b73ffffffffffffffffffffffffffffffffffffffff82165f8181526008602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f33e0bf3ce98fac4118d5a0a8fe49e83b6acdfdef32871c9eca20e1528d7701ba910160405180910390a25050565b5f610f07611ceb565b73ffffffffffffffffffffffffffffffffffffffff8381165f908152600b60205260409020600101541615610f98576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f43616e2774207472616e73666572206f7574204c5020746f6b656e73210000006044820152606401610af6565b6040517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85811660048301526024820184905284169063a9059cbb906044016020604051808303815f875af115801561100a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061102e9190612bbb565b611094576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600760248201527f7478206661696c000000000000000000000000000000000000000000000000006044820152606401610af6565b5060019392505050565b5f6110a7611ceb565b73ffffffffffffffffffffffffffffffffffffffff8381165f908152600b60205260409020600101541615611138576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f43616e2774207472616e73666572206f7574204c5020746f6b656e73210000006044820152606401610af6565b61109473ffffffffffffffffffffffffffffffffffffffff84168584611dec565b611161611ceb565b612af88111156111cd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4d617820657869742066656520697320313125000000000000000000000000006044820152606401610af6565b600e55565b6111da611ceb565b601054760100000000000000000000000000000000000000000000900460ff16611260576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f507265747261646520616c7265616479207365740000000000000000000000006044820152606401610af6565b60108054911515760100000000000000000000000000000000000000000000027fffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffff909216919091179055565b6112b4611ceb565b73ffffffffffffffffffffffffffffffffffffffff8116611357576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610af6565b610a2881611d76565b73ffffffffffffffffffffffffffffffffffffffff8316611402576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610af6565b73ffffffffffffffffffffffffffffffffffffffff82166114a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610af6565b73ffffffffffffffffffffffffffffffffffffffff8381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8381165f908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146115e257818110156115d5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610af6565b6115e28484848403611360565b50505050565b6010547501000000000000000000000000000000000000000000900460ff168061162c575060105474010000000000000000000000000000000000000000900460ff165b156116415761163c838383611e79565b505050565b601054760100000000000000000000000000000000000000000000900460ff16156116f45773ffffffffffffffffffffffffffffffffffffffff83165f9081526008602052604090205460ff166116f4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600860248201527f50726554726164650000000000000000000000000000000000000000000000006044820152606401610af6565b73ffffffffffffffffffffffffffffffffffffffff83165f9081526009602052604090205460ff1615801561174e575073ffffffffffffffffffffffffffffffffffffffff82165f9081526009602052604090205460ff16155b6117b4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600d60248201527f2121626c61636b6c6973746564000000000000000000000000000000000000006044820152606401610af6565b5f6117be30610b04565b90505f80821180156117d15750600f5482115b6117db57816117df565b600f545b73ffffffffffffffffffffffffffffffffffffffff85165f9081526008602052604090205490915060ff16158061183b575073ffffffffffffffffffffffffffffffffffffffff85165f9081526008602052604090205460ff16155b15611b6a5773ffffffffffffffffffffffffffffffffffffffff8481165f908152600b602052604090206001015416156119675773ffffffffffffffffffffffffffffffffffffffff85165f908152600a60205260409020541561193f5742600c54603c6118a99190612bd6565b73ffffffffffffffffffffffffffffffffffffffff87165f908152600a60205260409020546118d89190612ba8565b1061193f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f2121636f6f6c646f776e000000000000000000000000000000000000000000006044820152606401610af6565b73ffffffffffffffffffffffffffffffffffffffff85165f908152600a602052604090204290555b73ffffffffffffffffffffffffffffffffffffffff8581165f908152600b60205260409020600101541615611a8e5773ffffffffffffffffffffffffffffffffffffffff84165f908152600a602052604090205415611a665742600c54603c6119d09190612bd6565b73ffffffffffffffffffffffffffffffffffffffff86165f908152600a60205260409020546119ff9190612ba8565b10611a66576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f2121636f6f6c646f776e000000000000000000000000000000000000000000006044820152606401610af6565b73ffffffffffffffffffffffffffffffffffffffff84165f908152600a602052604090204290555b73ffffffffffffffffffffffffffffffffffffffff8481165f908152600b602052604090206001015416151580611af9575073ffffffffffffffffffffffffffffffffffffffff8581165f908152600b60205260409020600101541615801590611af95750600d5415155b15611b6a57600d54831115611b6a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f21696e69744c696d6974000000000000000000000000000000000000000000006044820152606401610af6565b6010547501000000000000000000000000000000000000000000900460ff16158015611bbe575073ffffffffffffffffffffffffffffffffffffffff8481165f908152600b60205260409020600101541615155b8015611bef575073ffffffffffffffffffffffffffffffffffffffff85165f9081526008602052604090205460ff16155b8015611c20575073ffffffffffffffffffffffffffffffffffffffff84165f9081526008602052604090205460ff16155b15611cd9575f620186a0600e5485611c389190612bd6565b611c429190612bed565b9050611c4e8185612c25565b601080547fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff1675010000000000000000000000000000000000000000001790559350611c9b308684611e79565b611ca6868683611e79565b611caf856120e6565b50601080547fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff1690555b611ce4858585611e79565b5050505050565b60075473ffffffffffffffffffffffffffffffffffffffff163314610b3f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610af6565b610a1a82826121ae565b6007805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6040805173ffffffffffffffffffffffffffffffffffffffff8416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb0000000000000000000000000000000000000000000000000000000017905261163c908490612370565b73ffffffffffffffffffffffffffffffffffffffff8316611f1c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610af6565b73ffffffffffffffffffffffffffffffffffffffff8216611fbf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610af6565b73ffffffffffffffffffffffffffffffffffffffff83165f9081526020819052604090205481811015612074576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610af6565b73ffffffffffffffffffffffffffffffffffffffff8481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36115e2565b600260065403612152576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610af6565b600260065560408051808201825230815273ffffffffffffffffffffffffffffffffffffffff8084165f908152600b6020908152939020600101548116928201929092526010546121a6928492911661247d565b506001600655565b73ffffffffffffffffffffffffffffffffffffffff8216612251576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610af6565b73ffffffffffffffffffffffffffffffffffffffff82165f9081526020819052604090205481811015612306576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f63650000000000000000000000000000000000000000000000000000000000006064820152608401610af6565b73ffffffffffffffffffffffffffffffffffffffff83165f818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b5f6123d1826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff1661271b9092919063ffffffff16565b905080515f14806123f15750808060200190518101906123f19190612bbb565b61163c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610af6565b815160208301515f73ffffffffffffffffffffffffffffffffffffffff808316908416106124ac5781836124af565b82825b5090505f805f808973ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa1580156124ff573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906125239190612c5a565b506dffffffffffffffffffffffffffff1691506dffffffffffffffffffffffffffff1691505f808673ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff1614612584578284612587565b83835b6040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8f8116600483015292945090925083918b16906370a0823190602401602060405180830381865afa1580156125f9573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061261d9190612ca6565b6126279190612c25565b9550612634868383612731565b9450505050505f808473ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff161461267657825f612679565b5f835b604080515f815260208101918290527f022c0d9f00000000000000000000000000000000000000000000000000000000909152919350915073ffffffffffffffffffffffffffffffffffffffff8b169063022c0d9f906126e290859085908d9060248101612cbd565b5f604051808303815f87803b1580156126f9575f80fd5b505af115801561270b573d5f803e3d5ffd5b5050505050505050505050505050565b606061272984845f8561277d565b949350505050565b5f8061273f856103e5612bd6565b90505f61274c8483612bd6565b90505f8261275c876103e8612bd6565b6127669190612ba8565b90506127728183612bed565b979650505050505050565b60608247101561280f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c00000000000000000000000000000000000000000000000000006064820152608401610af6565b5f808673ffffffffffffffffffffffffffffffffffffffff1685876040516128379190612d01565b5f6040518083038185875af1925050503d805f8114612871576040519150601f19603f3d011682016040523d82523d5f602084013e612876565b606091505b509150915061277287838387606083156129175782515f036129105773ffffffffffffffffffffffffffffffffffffffff85163b612910576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610af6565b5081612729565b612729838381511561292c5781518083602001fd5b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af69190612a0e565b73ffffffffffffffffffffffffffffffffffffffff81168114610a28575f80fd5b5f60208284031215612991575f80fd5b813561299c81612960565b9392505050565b5f5b838110156129bd5781810151838201526020016129a5565b50505f910152565b5f81518084526129dc8160208601602086016129a3565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b602081525f61299c60208301846129c5565b5f8060408385031215612a31575f80fd5b8235612a3c81612960565b946020939093013593505050565b5f805f60608486031215612a5c575f80fd5b8335612a6781612960565b92506020840135612a7781612960565b929592945050506040919091013590565b8015158114610a28575f80fd5b5f60208284031215612aa5575f80fd5b813561299c81612a88565b5f60208284031215612ac0575f80fd5b5035919050565b5f8060408385031215612ad8575f80fd5b8235612ae381612960565b91506020830135612af381612a88565b809150509250929050565b5f8060408385031215612b0f575f80fd5b8235612b1a81612960565b91506020830135612af381612960565b600181811c90821680612b3e57607f821691505b602082108103612b75577f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b8082018082111561090d5761090d612b7b565b5f60208284031215612bcb575f80fd5b815161299c81612a88565b808202811582820484141761090d5761090d612b7b565b5f82612c20577f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b500490565b8181038181111561090d5761090d612b7b565b80516dffffffffffffffffffffffffffff81168114612c55575f80fd5b919050565b5f805f60608486031215612c6c575f80fd5b612c7584612c38565b9250612c8360208501612c38565b9150604084015163ffffffff81168114612c9b575f80fd5b809150509250925092565b5f60208284031215612cb6575f80fd5b5051919050565b84815283602082015273ffffffffffffffffffffffffffffffffffffffff83166040820152608060608201525f612cf760808301846129c5565b9695505050505050565b5f8251612d128184602087016129a3565b919091019291505056fea2646970667358221220f80b8e8d16854f3094b180a20eef337323606cf2ef86c68565a3717ffe3eff7764736f6c63430008160033

Deployed Bytecode

0x6080604052600436106102ae575f3560e01c8063787a08a611610165578063b3f579f5116100c6578063dd62ed3e1161007c578063eca2b4d311610062578063eca2b4d3146107f9578063f2fde38b14610818578063f33c86cd14610837575f80fd5b8063dd62ed3e14610789578063e5a583a9146107da575f80fd5b8063b9a45aac116100ac578063b9a45aac1461072c578063cea9d26f1461074b578063ceacd4511461076a575f80fd5b8063b3f579f514610694578063b6f3e0871461070d575f80fd5b80638da5cb5b1161011b5780639819d24e116101015780639819d24e14610637578063a457c2d714610656578063a9059cbb14610675575f80fd5b80638da5cb5b146105f957806395d89b4114610623575f80fd5b80637a6d69b41161014b5780637a6d69b41461058d5780637c6800b3146105bb57806387bde549146105da575f80fd5b8063787a08a61461055957806379cc67901461056e575f80fd5b806339d8d2da1161020f5780634fc3f41a116101c557806366692ff0116101ab57806366692ff01461051157806370a0823114610526578063715018a614610545575f80fd5b80634fc3f41a146104dd5780636284ae41146104fc575f80fd5b80633c4b40b8116101f55780633c4b40b81461047357806342966c681461049f578063455a4396146104be575f80fd5b806339d8d2da146104335780633b1ab44c14610454575f80fd5b806323b872dd11610264578063313ce5671161024a578063313ce567146103e35780633410fe6e146103fe5780633950935114610414575f80fd5b806323b872dd146103735780632d68efc914610392575f80fd5b806306fdde031161029457806306fdde031461031f578063095ea7b31461034057806318160ddd1461035f575f80fd5b80630103a158146102b957806304876746146102fc575f80fd5b366102b557005b5f80fd5b3480156102c4575f80fd5b506102e76102d3366004612981565b60086020525f908152604090205460ff1681565b60405190151581526020015b60405180910390f35b348015610307575f80fd5b50610311600d5481565b6040519081526020016102f3565b34801561032a575f80fd5b5061033361086a565b6040516102f39190612a0e565b34801561034b575f80fd5b506102e761035a366004612a20565b6108fa565b34801561036a575f80fd5b50600254610311565b34801561037e575f80fd5b506102e761038d366004612a4a565b610913565b34801561039d575f80fd5b506005546103be9073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016102f3565b3480156103ee575f80fd5b50604051601281526020016102f3565b348015610409575f80fd5b50610311620186a081565b34801561041f575f80fd5b506102e761042e366004612a20565b610936565b34801561043e575f80fd5b5061045261044d366004612a95565b610981565b005b34801561045f575f80fd5b5061045261046e366004612981565b6109d3565b34801561047e575f80fd5b506010546103be9073ffffffffffffffffffffffffffffffffffffffff1681565b3480156104aa575f80fd5b506104526104b9366004612ab0565b610a1e565b3480156104c9575f80fd5b506104526104d8366004612ac7565b610a2b565b3480156104e8575f80fd5b506104526104f7366004612ab0565b610a88565b348015610507575f80fd5b50610311600e5481565b34801561051c575f80fd5b50610311600f5481565b348015610531575f80fd5b50610311610540366004612981565b610b04565b348015610550575f80fd5b50610452610b2e565b348015610564575f80fd5b50610311600c5481565b348015610579575f80fd5b50610452610588366004612a20565b610b41565b348015610598575f80fd5b506102e76105a7366004612981565b60096020525f908152604090205460ff1681565b3480156105c6575f80fd5b506104526105d5366004612ab0565b610b56565b3480156105e5575f80fd5b506104526105f4366004612ab0565b610bd4565b348015610604575f80fd5b5060075473ffffffffffffffffffffffffffffffffffffffff166103be565b34801561062e575f80fd5b50610333610be1565b348015610642575f80fd5b50610452610651366004612981565b610bf0565b348015610661575f80fd5b506102e7610670366004612a20565b610c74565b348015610680575f80fd5b506102e761068f366004612a20565b610d44565b34801561069f575f80fd5b506106e06106ae366004612981565b600b6020525f90815260409020805460019091015473ffffffffffffffffffffffffffffffffffffffff918216911682565b6040805173ffffffffffffffffffffffffffffffffffffffff9384168152929091166020830152016102f3565b348015610718575f80fd5b50610452610727366004612afe565b610d51565b348015610737575f80fd5b50610452610746366004612ac7565b610dd7565b348015610756575f80fd5b506102e7610765366004612a4a565b610efe565b348015610775575f80fd5b506102e7610784366004612a4a565b61109e565b348015610794575f80fd5b506103116107a3366004612afe565b73ffffffffffffffffffffffffffffffffffffffff9182165f90815260016020908152604080832093909416825291909152205490565b3480156107e5575f80fd5b506104526107f4366004612ab0565b611159565b348015610804575f80fd5b50610452610813366004612a95565b6111d2565b348015610823575f80fd5b50610452610832366004612981565b6112ac565b348015610842575f80fd5b506010546102e790760100000000000000000000000000000000000000000000900460ff1681565b60606003805461087990612b2a565b80601f01602080910402602001604051908101604052809291908181526020018280546108a590612b2a565b80156108f05780601f106108c7576101008083540402835291602001916108f0565b820191905f5260205f20905b8154815290600101906020018083116108d357829003601f168201915b5050505050905090565b5f33610907818585611360565b60019150505b92915050565b5f33610920858285611512565b61092b8585856115e8565b506001949350505050565b335f81815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909190610907908290869061097c908790612ba8565b611360565b610989611ceb565b6010805491151574010000000000000000000000000000000000000000027fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff909216919091179055565b6109db611ceb565b60405173ffffffffffffffffffffffffffffffffffffffff8216904780156108fc02915f818181858888f19350505050158015610a1a573d5f803e3d5ffd5b5050565b610a283382611d6c565b50565b610a33611ceb565b73ffffffffffffffffffffffffffffffffffffffff919091165f90815260096020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b610a90611ceb565b60108110610aff576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4d617820636f6f6c646f776e206973203135206d696e7574657300000000000060448201526064015b60405180910390fd5b600c55565b73ffffffffffffffffffffffffffffffffffffffff81165f9081526020819052604081205461090d565b610b36611ceb565b610b3f5f611d76565b565b610b4c823383611512565b610a1a8282611d6c565b610b5e611ceb565b678ac7230489e800008111610bcf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f4d617820696e69744c696d6974206973203135206d696e7574657300000000006044820152606401610af6565b600d55565b610bdc611ceb565b600f55565b60606004805461087990612b2a565b610bf8611ceb565b6010805473ffffffffffffffffffffffffffffffffffffffff9092167fffffffffffffffffffffffff0000000000000000000000000000000000000000909216821790555f90815260086020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b335f81815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490919083811015610d37576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610af6565b61092b8286868403611360565b5f336109078185856115e8565b610d59611ceb565b73ffffffffffffffffffffffffffffffffffffffff8281165f818152600b602052604080822060010180547fffffffffffffffffffffffff0000000000000000000000000000000000000000169486169485179055517fd482e95abb3d8f5eaf8f07dbd4c204ea55842bacc8cf5d530aa104716551e2169190a35050565b610ddf611ceb565b73ffffffffffffffffffffffffffffffffffffffff82165f9081526008602052604090205481151560ff909116151503610e75576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4163636f756e7420616c72656164792061742073657474696e670000000000006044820152606401610af6565b73ffffffffffffffffffffffffffffffffffffffff82165f8181526008602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f33e0bf3ce98fac4118d5a0a8fe49e83b6acdfdef32871c9eca20e1528d7701ba910160405180910390a25050565b5f610f07611ceb565b73ffffffffffffffffffffffffffffffffffffffff8381165f908152600b60205260409020600101541615610f98576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f43616e2774207472616e73666572206f7574204c5020746f6b656e73210000006044820152606401610af6565b6040517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85811660048301526024820184905284169063a9059cbb906044016020604051808303815f875af115801561100a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061102e9190612bbb565b611094576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600760248201527f7478206661696c000000000000000000000000000000000000000000000000006044820152606401610af6565b5060019392505050565b5f6110a7611ceb565b73ffffffffffffffffffffffffffffffffffffffff8381165f908152600b60205260409020600101541615611138576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f43616e2774207472616e73666572206f7574204c5020746f6b656e73210000006044820152606401610af6565b61109473ffffffffffffffffffffffffffffffffffffffff84168584611dec565b611161611ceb565b612af88111156111cd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4d617820657869742066656520697320313125000000000000000000000000006044820152606401610af6565b600e55565b6111da611ceb565b601054760100000000000000000000000000000000000000000000900460ff16611260576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f507265747261646520616c7265616479207365740000000000000000000000006044820152606401610af6565b60108054911515760100000000000000000000000000000000000000000000027fffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffff909216919091179055565b6112b4611ceb565b73ffffffffffffffffffffffffffffffffffffffff8116611357576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610af6565b610a2881611d76565b73ffffffffffffffffffffffffffffffffffffffff8316611402576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610af6565b73ffffffffffffffffffffffffffffffffffffffff82166114a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610af6565b73ffffffffffffffffffffffffffffffffffffffff8381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8381165f908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146115e257818110156115d5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610af6565b6115e28484848403611360565b50505050565b6010547501000000000000000000000000000000000000000000900460ff168061162c575060105474010000000000000000000000000000000000000000900460ff165b156116415761163c838383611e79565b505050565b601054760100000000000000000000000000000000000000000000900460ff16156116f45773ffffffffffffffffffffffffffffffffffffffff83165f9081526008602052604090205460ff166116f4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600860248201527f50726554726164650000000000000000000000000000000000000000000000006044820152606401610af6565b73ffffffffffffffffffffffffffffffffffffffff83165f9081526009602052604090205460ff1615801561174e575073ffffffffffffffffffffffffffffffffffffffff82165f9081526009602052604090205460ff16155b6117b4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600d60248201527f2121626c61636b6c6973746564000000000000000000000000000000000000006044820152606401610af6565b5f6117be30610b04565b90505f80821180156117d15750600f5482115b6117db57816117df565b600f545b73ffffffffffffffffffffffffffffffffffffffff85165f9081526008602052604090205490915060ff16158061183b575073ffffffffffffffffffffffffffffffffffffffff85165f9081526008602052604090205460ff16155b15611b6a5773ffffffffffffffffffffffffffffffffffffffff8481165f908152600b602052604090206001015416156119675773ffffffffffffffffffffffffffffffffffffffff85165f908152600a60205260409020541561193f5742600c54603c6118a99190612bd6565b73ffffffffffffffffffffffffffffffffffffffff87165f908152600a60205260409020546118d89190612ba8565b1061193f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f2121636f6f6c646f776e000000000000000000000000000000000000000000006044820152606401610af6565b73ffffffffffffffffffffffffffffffffffffffff85165f908152600a602052604090204290555b73ffffffffffffffffffffffffffffffffffffffff8581165f908152600b60205260409020600101541615611a8e5773ffffffffffffffffffffffffffffffffffffffff84165f908152600a602052604090205415611a665742600c54603c6119d09190612bd6565b73ffffffffffffffffffffffffffffffffffffffff86165f908152600a60205260409020546119ff9190612ba8565b10611a66576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f2121636f6f6c646f776e000000000000000000000000000000000000000000006044820152606401610af6565b73ffffffffffffffffffffffffffffffffffffffff84165f908152600a602052604090204290555b73ffffffffffffffffffffffffffffffffffffffff8481165f908152600b602052604090206001015416151580611af9575073ffffffffffffffffffffffffffffffffffffffff8581165f908152600b60205260409020600101541615801590611af95750600d5415155b15611b6a57600d54831115611b6a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f21696e69744c696d6974000000000000000000000000000000000000000000006044820152606401610af6565b6010547501000000000000000000000000000000000000000000900460ff16158015611bbe575073ffffffffffffffffffffffffffffffffffffffff8481165f908152600b60205260409020600101541615155b8015611bef575073ffffffffffffffffffffffffffffffffffffffff85165f9081526008602052604090205460ff16155b8015611c20575073ffffffffffffffffffffffffffffffffffffffff84165f9081526008602052604090205460ff16155b15611cd9575f620186a0600e5485611c389190612bd6565b611c429190612bed565b9050611c4e8185612c25565b601080547fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff1675010000000000000000000000000000000000000000001790559350611c9b308684611e79565b611ca6868683611e79565b611caf856120e6565b50601080547fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff1690555b611ce4858585611e79565b5050505050565b60075473ffffffffffffffffffffffffffffffffffffffff163314610b3f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610af6565b610a1a82826121ae565b6007805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6040805173ffffffffffffffffffffffffffffffffffffffff8416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb0000000000000000000000000000000000000000000000000000000017905261163c908490612370565b73ffffffffffffffffffffffffffffffffffffffff8316611f1c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610af6565b73ffffffffffffffffffffffffffffffffffffffff8216611fbf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610af6565b73ffffffffffffffffffffffffffffffffffffffff83165f9081526020819052604090205481811015612074576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610af6565b73ffffffffffffffffffffffffffffffffffffffff8481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36115e2565b600260065403612152576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610af6565b600260065560408051808201825230815273ffffffffffffffffffffffffffffffffffffffff8084165f908152600b6020908152939020600101548116928201929092526010546121a6928492911661247d565b506001600655565b73ffffffffffffffffffffffffffffffffffffffff8216612251576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610af6565b73ffffffffffffffffffffffffffffffffffffffff82165f9081526020819052604090205481811015612306576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f63650000000000000000000000000000000000000000000000000000000000006064820152608401610af6565b73ffffffffffffffffffffffffffffffffffffffff83165f818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b5f6123d1826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff1661271b9092919063ffffffff16565b905080515f14806123f15750808060200190518101906123f19190612bbb565b61163c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610af6565b815160208301515f73ffffffffffffffffffffffffffffffffffffffff808316908416106124ac5781836124af565b82825b5090505f805f808973ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa1580156124ff573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906125239190612c5a565b506dffffffffffffffffffffffffffff1691506dffffffffffffffffffffffffffff1691505f808673ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff1614612584578284612587565b83835b6040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8f8116600483015292945090925083918b16906370a0823190602401602060405180830381865afa1580156125f9573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061261d9190612ca6565b6126279190612c25565b9550612634868383612731565b9450505050505f808473ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff161461267657825f612679565b5f835b604080515f815260208101918290527f022c0d9f00000000000000000000000000000000000000000000000000000000909152919350915073ffffffffffffffffffffffffffffffffffffffff8b169063022c0d9f906126e290859085908d9060248101612cbd565b5f604051808303815f87803b1580156126f9575f80fd5b505af115801561270b573d5f803e3d5ffd5b5050505050505050505050505050565b606061272984845f8561277d565b949350505050565b5f8061273f856103e5612bd6565b90505f61274c8483612bd6565b90505f8261275c876103e8612bd6565b6127669190612ba8565b90506127728183612bed565b979650505050505050565b60608247101561280f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c00000000000000000000000000000000000000000000000000006064820152608401610af6565b5f808673ffffffffffffffffffffffffffffffffffffffff1685876040516128379190612d01565b5f6040518083038185875af1925050503d805f8114612871576040519150601f19603f3d011682016040523d82523d5f602084013e612876565b606091505b509150915061277287838387606083156129175782515f036129105773ffffffffffffffffffffffffffffffffffffffff85163b612910576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610af6565b5081612729565b612729838381511561292c5781518083602001fd5b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af69190612a0e565b73ffffffffffffffffffffffffffffffffffffffff81168114610a28575f80fd5b5f60208284031215612991575f80fd5b813561299c81612960565b9392505050565b5f5b838110156129bd5781810151838201526020016129a5565b50505f910152565b5f81518084526129dc8160208601602086016129a3565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b602081525f61299c60208301846129c5565b5f8060408385031215612a31575f80fd5b8235612a3c81612960565b946020939093013593505050565b5f805f60608486031215612a5c575f80fd5b8335612a6781612960565b92506020840135612a7781612960565b929592945050506040919091013590565b8015158114610a28575f80fd5b5f60208284031215612aa5575f80fd5b813561299c81612a88565b5f60208284031215612ac0575f80fd5b5035919050565b5f8060408385031215612ad8575f80fd5b8235612ae381612960565b91506020830135612af381612a88565b809150509250929050565b5f8060408385031215612b0f575f80fd5b8235612b1a81612960565b91506020830135612af381612960565b600181811c90821680612b3e57607f821691505b602082108103612b75577f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b8082018082111561090d5761090d612b7b565b5f60208284031215612bcb575f80fd5b815161299c81612a88565b808202811582820484141761090d5761090d612b7b565b5f82612c20577f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b500490565b8181038181111561090d5761090d612b7b565b80516dffffffffffffffffffffffffffff81168114612c55575f80fd5b919050565b5f805f60608486031215612c6c575f80fd5b612c7584612c38565b9250612c8360208501612c38565b9150604084015163ffffffff81168114612c9b575f80fd5b809150509250925092565b5f60208284031215612cb6575f80fd5b5051919050565b84815283602082015273ffffffffffffffffffffffffffffffffffffffff83166040820152608060608201525f612cf760808301846129c5565b9695505050505050565b5f8251612d128184602087016129a3565b919091019291505056fea2646970667358221220f80b8e8d16854f3094b180a20eef337323606cf2ef86c68565a3717ffe3eff7764736f6c63430008160033

Deployed Bytecode Sourcemap

43959:6496:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44187:44;;;;;;;;;;-1:-1:-1;44187:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;590:14:1;;583:22;565:41;;553:2;538:18;44187:44:0;;;;;;;;44511:52;;;;;;;;;;;;;;;;;;;763:25:1;;;751:2;736:18;44511:52:0;617:177:1;9526:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;11886:201::-;;;;;;;;;;-1:-1:-1;11886:201:0;;;;;:::i;:::-;;:::i;10655:108::-;;;;;;;;;;-1:-1:-1;10743:12:0;;10655:108;;12667:261;;;;;;;;;;-1:-1:-1;12667:261:0;;;;;:::i;:::-;;:::i;41830:22::-;;;;;;;;;;-1:-1:-1;41830:22:0;;;;;;;;;;;2571:42:1;2559:55;;;2541:74;;2529:2;2514:18;41830:22:0;2395:226:1;10497:93:0;;;;;;;;;;-1:-1:-1;10497:93:0;;10580:2;2768:36:1;;2756:2;2741:18;10497:93:0;2626:184:1;44402:41:0;;;;;;;;;;;;44436:7;44402:41;;13337:238;;;;;;;;;;-1:-1:-1;13337:238:0;;;;;:::i;:::-;;:::i;48682:77::-;;;;;;;;;;-1:-1:-1;48682:77:0;;;;;:::i;:::-;;:::i;:::-;;50335:117;;;;;;;;;;-1:-1:-1;50335:117:0;;;;;:::i;:::-;;:::i;44695:36::-;;;;;;;;;;-1:-1:-1;44695:36:0;;;;;;;;21157:91;;;;;;;;;;-1:-1:-1;21157:91:0;;;;;:::i;:::-;;:::i;48921:116::-;;;;;;;;;;-1:-1:-1;48921:116:0;;;;;:::i;:::-;;:::i;47775:152::-;;;;;;;;;;-1:-1:-1;47775:152:0;;;;;:::i;:::-;;:::i;44599:30::-;;;;;;;;;;;;;;;;44634:54;;;;;;;;;;;;;;;;45099:119;;;;;;;;;;-1:-1:-1;45099:119:0;;;;;:::i;:::-;;:::i;2814:103::-;;;;;;;;;;;;;:::i;44479:27::-;;;;;;;;;;;;;;;;21567:164;;;;;;;;;;-1:-1:-1;21567:164:0;;;;;:::i;:::-;;:::i;44236:44::-;;;;;;;;;;-1:-1:-1;44236:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;47933:169;;;;;;;;;;-1:-1:-1;47933:169:0;;;;;:::i;:::-;;:::i;48560:116::-;;;;;;;;;;-1:-1:-1;48560:116:0;;;;;:::i;:::-;;:::i;2173:87::-;;;;;;;;;;-1:-1:-1;2246:6:0;;;;2173:87;;9745:104;;;;;;;;;;;;;:::i;48765:150::-;;;;;;;;;;-1:-1:-1;48765:150:0;;;;;:::i;:::-;;:::i;14078:436::-;;;;;;;;;;-1:-1:-1;14078:436:0;;;;;:::i;:::-;;:::i;11159:193::-;;;;;;;;;;-1:-1:-1;11159:193:0;;;;;:::i;:::-;;:::i;44341:54::-;;;;;;;;;;-1:-1:-1;44341:54:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4447:42:1;4516:15;;;4498:34;;4568:15;;;;4563:2;4548:18;;4541:43;4410:18;44341:54:0;4263:327:1;48401:153:0;;;;;;;;;;-1:-1:-1;48401:153:0;;;;;:::i;:::-;;:::i;45404:244::-;;;;;;;;;;-1:-1:-1;45404:244:0;;;;;:::i;:::-;;:::i;49597:369::-;;;;;;;;;;-1:-1:-1;49597:369:0;;;;;:::i;:::-;;:::i;49972:357::-;;;;;;;;;;-1:-1:-1;49972:357:0;;;;;:::i;:::-;;:::i;11415:151::-;;;;;;;;;;-1:-1:-1;11415:151:0;;;;;:::i;:::-;11531:18;;;;11504:7;11531:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11415:151;48108:144;;;;;;;;;;-1:-1:-1;48108:144:0;;;;;:::i;:::-;;:::i;48258:137::-;;;;;;;;;;-1:-1:-1;48258:137:0;;;;;:::i;:::-;;:::i;3072:201::-;;;;;;;;;;-1:-1:-1;3072:201:0;;;;;:::i;:::-;;:::i;44795:27::-;;;;;;;;;;-1:-1:-1;44795:27:0;;;;;;;;;;;9526:100;9580:13;9613:5;9606:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9526:100;:::o;11886:201::-;11969:4;749:10;12025:32;749:10;12041:7;12050:6;12025:8;:32::i;:::-;12075:4;12068:11;;;11886:201;;;;;:::o;12667:261::-;12764:4;749:10;12822:38;12838:4;749:10;12853:6;12822:15;:38::i;:::-;12871:27;12881:4;12887:2;12891:6;12871:9;:27::i;:::-;-1:-1:-1;12916:4:0;;12667:261;-1:-1:-1;;;;12667:261:0:o;13337:238::-;749:10;13425:4;11531:18;;;:11;:18;;;;;;;;;:27;;;;;;;;;;13425:4;;749:10;13481:64;;749:10;;11531:27;;13506:38;;13534:10;;13506:38;:::i;:::-;13481:8;:64::i;48682:77::-;2059:13;:11;:13::i;:::-;48739:5:::1;:14:::0;;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;48682:77::o;50335:117::-;2059:13;:11;:13::i;:::-;50405:41:::1;::::0;:18:::1;::::0;::::1;::::0;50424:21:::1;50405:41:::0;::::1;;;::::0;::::1;::::0;;;50424:21;50405:18;:41;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;50335:117:::0;:::o;21157:91::-;21213:27;749:10;21233:6;21213:5;:27::i;:::-;21157:91;:::o;48921:116::-;2059:13;:11;:13::i;:::-;49002:21:::1;::::0;;;::::1;;::::0;;;:12:::1;:21;::::0;;;;:29;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;48921:116::o;47775:152::-;2059:13;:11;:13::i;:::-;47861:2:::1;47849:9;:14;47841:53;;;::::0;::::1;::::0;;5951:2:1;47841:53:0::1;::::0;::::1;5933:21:1::0;5990:2;5970:18;;;5963:30;6029:28;6009:18;;;6002:56;6075:18;;47841:53:0::1;;;;;;;;;47901:8;:20:::0;47775:152::o;45099:119::-;10927:18;;;45165:7;10927:18;;;;;;;;;;;45188:24;10826:127;2814:103;2059:13;:11;:13::i;:::-;2879:30:::1;2906:1;2879:18;:30::i;:::-;2814:103::o:0;21567:164::-;21644:46;21660:7;749:10;21683:6;21644:15;:46::i;:::-;21701:22;21707:7;21716:6;21701:5;:22::i;47933:169::-;2059:13;:11;:13::i;:::-;48022::::1;48009:10;:26;48001:66;;;::::0;::::1;::::0;;6306:2:1;48001:66:0::1;::::0;::::1;6288:21:1::0;6345:2;6325:18;;;6318:30;6384:29;6364:18;;;6357:57;6431:18;;48001:66:0::1;6104:351:1::0;48001:66:0::1;48074:9;:22:::0;47933:169::o;48560:116::-;2059:13;:11;:13::i;:::-;48638:14:::1;:32:::0;48560:116::o;9745:104::-;9801:13;9834:7;9827:14;;;;;:::i;48765:150::-;2059:13;:11;:13::i;:::-;48842::::1;:23:::0;;::::1;::::0;;::::1;::::0;;;::::1;::::0;::::1;::::0;;:13:::1;48872:30:::0;;;:12:::1;:30;::::0;;;;:37;;;::::1;48842:23:::0;48872:37:::1;::::0;;48765:150::o;14078:436::-;749:10;14171:4;11531:18;;;:11;:18;;;;;;;;;:27;;;;;;;;;;14171:4;;749:10;14318:15;14298:16;:35;;14290:85;;;;;;;6662:2:1;14290:85:0;;;6644:21:1;6701:2;6681:18;;;6674:30;6740:34;6720:18;;;6713:62;6811:7;6791:18;;;6784:35;6836:19;;14290:85:0;6460:401:1;14290:85:0;14411:60;14420:5;14427:7;14455:15;14436:16;:34;14411:8;:60::i;11159:193::-;11238:4;749:10;11294:28;749:10;11311:2;11315:6;11294:9;:28::i;48401:153::-;2059:13;:11;:13::i;:::-;48485:18:::1;::::0;;::::1;;::::0;;;:12:::1;:18;::::0;;;;;:23:::1;;:30:::0;;;::::1;::::0;;::::1;::::0;;::::1;::::0;;48529:19;::::1;::::0;48485:18;48529:19:::1;48401:153:::0;;:::o;45404:244::-;2059:13;:11;:13::i;:::-;45493:21:::1;::::0;::::1;;::::0;;;:12:::1;:21;::::0;;;;;:32;::::1;;:21;::::0;;::::1;:32;;::::0;45485:71:::1;;;::::0;::::1;::::0;;7068:2:1;45485:71:0::1;::::0;::::1;7050:21:1::0;7107:2;7087:18;;;7080:30;7146:28;7126:18;;;7119:56;7192:18;;45485:71:0::1;6866:350:1::0;45485:71:0::1;45563:21;::::0;::::1;;::::0;;;:12:::1;:21;::::0;;;;;;;;:31;;;::::1;::::0;::::1;;::::0;;::::1;::::0;;;45608:34;;565:41:1;;;45608:34:0::1;::::0;538:18:1;45608:34:0::1;;;;;;;45404:244:::0;;:::o;49597:369::-;49715:4;2059:13;:11;:13::i;:::-;49744:38:::1;:19:::0;;::::1;49780:1;49744:19:::0;;;:12:::1;:19;::::0;;;;:24:::1;;::::0;::::1;:38:::0;49728:101:::1;;;::::0;::::1;::::0;;7423:2:1;49728:101:0::1;::::0;::::1;7405:21:1::0;7462:2;7442:18;;;7435:30;7501:31;7481:18;;;7474:59;7550:18;;49728:101:0::1;7221:353:1::0;49728:101:0::1;49846:41;::::0;;;;:22:::1;7771:55:1::0;;;49846:41:0::1;::::0;::::1;7753:74:1::0;7843:18;;;7836:34;;;49846:22:0;::::1;::::0;::::1;::::0;7726:18:1;;49846:41:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;49838:61;;;::::0;::::1;::::0;;8333:2:1;49838:61:0::1;::::0;::::1;8315:21:1::0;8372:1;8352:18;;;8345:29;8410:9;8390:18;;;8383:37;8437:18;;49838:61:0::1;8131:330:1::0;49838:61:0::1;-1:-1:-1::0;49956:4:0::1;49597:369:::0;;;;;:::o;49972:357::-;50094:4;2059:13;:11;:13::i;:::-;50123:38:::1;:19:::0;;::::1;50159:1;50123:19:::0;;;:12:::1;:19;::::0;;;;:24:::1;;::::0;::::1;:38:::0;50107:101:::1;;;::::0;::::1;::::0;;7423:2:1;50107:101:0::1;::::0;::::1;7405:21:1::0;7462:2;7442:18;;;7435:30;7501:31;7481:18;;;7474:59;7550:18;;50107:101:0::1;7221:353:1::0;50107:101:0::1;50217:45;:26;::::0;::::1;50244:9:::0;50255:6;50217:26:::1;:45::i;48108:144::-:0;2059:13;:11;:13::i;:::-;48192:5:::1;48180:8;:17;;48172:49;;;::::0;::::1;::::0;;8668:2:1;48172:49:0::1;::::0;::::1;8650:21:1::0;8707:2;8687:18;;;8680:30;8746:21;8726:18;;;8719:49;8785:18;;48172:49:0::1;8466:343:1::0;48172:49:0::1;48228:7;:18:::0;48108:144::o;48258:137::-;2059:13;:11;:13::i;:::-;48329:8:::1;::::0;;;::::1;;;48321:41;;;::::0;::::1;::::0;;9016:2:1;48321:41:0::1;::::0;::::1;8998:21:1::0;9055:2;9035:18;;;9028:30;9094:22;9074:18;;;9067:50;9134:18;;48321:41:0::1;8814:344:1::0;48321:41:0::1;48369:8;:20:::0;;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;48258:137::o;3072:201::-;2059:13;:11;:13::i;:::-;3161:22:::1;::::0;::::1;3153:73;;;::::0;::::1;::::0;;9365:2:1;3153:73:0::1;::::0;::::1;9347:21:1::0;9404:2;9384:18;;;9377:30;9443:34;9423:18;;;9416:62;9514:8;9494:18;;;9487:36;9540:19;;3153:73:0::1;9163:402:1::0;3153:73:0::1;3237:28;3256:8;3237:18;:28::i;18071:346::-:0;18173:19;;;18165:68;;;;;;;9772:2:1;18165:68:0;;;9754:21:1;9811:2;9791:18;;;9784:30;9850:34;9830:18;;;9823:62;9921:6;9901:18;;;9894:34;9945:19;;18165:68:0;9570:400:1;18165:68:0;18252:21;;;18244:68;;;;;;;10177:2:1;18244:68:0;;;10159:21:1;10216:2;10196:18;;;10189:30;10255:34;10235:18;;;10228:62;10326:4;10306:18;;;10299:32;10348:19;;18244:68:0;9975:398:1;18244:68:0;18325:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18377:32;;763:25:1;;;18377:32:0;;736:18:1;18377:32:0;;;;;;;18071:346;;;:::o;18708:419::-;11531:18;;;;18809:24;11531:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;18896:17;18876:37;;18872:248;;18958:6;18938:16;:26;;18930:68;;;;;;;10580:2:1;18930:68:0;;;10562:21:1;10619:2;10599:18;;;10592:30;10658:31;10638:18;;;10631:59;10707:18;;18930:68:0;10378:353:1;18930:68:0;19042:51;19051:5;19058:7;19086:6;19067:16;:25;19042:8;:51::i;:::-;18798:329;18708:419;;;:::o;45654:1892::-;45780:8;;;;;;;;:17;;-1:-1:-1;45792:5:0;;;;;;;45780:17;45776:72;;;45806:42;45822:6;45830:9;45841:6;45806:15;:42::i;:::-;45654:1892;;;:::o;45776:72::-;45859:8;;;;;;;45855:55;;;45877:20;;;;;;;:12;:20;;;;;;;;45869:41;;;;;;;10938:2:1;45869:41:0;;;10920:21:1;10977:1;10957:18;;;10950:29;11015:10;10995:18;;;10988:38;11043:18;;45869:41:0;10736:331:1;45869:41:0;45926:20;;;;;;;:12;:20;;;;;;;;45925:21;:49;;;;-1:-1:-1;45951:23:0;;;;;;;:12;:23;;;;;;;;45950:24;45925:49;45917:75;;;;;;;11274:2:1;45917:75:0;;;11256:21:1;11313:2;11293:18;;;11286:30;11352:15;11332:18;;;11325:43;11385:18;;45917:75:0;11072:337:1;45917:75:0;46001:23;46027:24;46045:4;46027:9;:24::i;:::-;46001:50;;46165:25;46211:1;46193:15;:19;:62;;;;;46241:14;;46223:15;:32;46193:62;:111;;46289:15;46193:111;;;46265:14;;46193:111;46318:23;;;;;;;:12;:23;;;;;;46165:139;;-1:-1:-1;46318:23:0;;46317:24;;:49;;-1:-1:-1;46346:20:0;;;;;;;:12;:20;;;;;;;;46345:21;46317:49;46313:731;;;46381:42;:23;;;46421:1;46381:23;;;:12;:23;;;;;:28;;;;:42;46377:237;;46439:21;;;;;;;:13;:21;;;;;;:26;46436:118;;46524:15;46500:8;;46511:9;46500:20;;;;:::i;:::-;46475:21;;;;;;;:13;:21;;;;;;:46;;;;:::i;:::-;:64;46467:87;;;;;;;11789:2:1;46467:87:0;;;11771:21:1;11828:2;11808:18;;;11801:30;11867:12;11847:18;;;11840:40;11897:18;;46467:87:0;11587:334:1;46467:87:0;46565:21;;;;;;;:13;:21;;;;;46589:15;46565:39;;46377:237;46626:39;:20;;;46663:1;46626:20;;;:12;:20;;;;;:25;;;;:39;46622:243;;46681:24;;;;;;;:13;:24;;;;;;:29;46678:124;;46772:15;46748:8;;46759:9;46748:20;;;;:::i;:::-;46720:24;;;;;;;:13;:24;;;;;;:49;;;;:::i;:::-;:67;46712:90;;;;;;;11789:2:1;46712:90:0;;;11771:21:1;11828:2;11808:18;;;11801:30;11867:12;11847:18;;;11840:40;11897:18;;46712:90:0;11587:334:1;46712:90:0;46813:24;;;;;;;:13;:24;;;;;46840:15;46813:42;;46622:243;46879:42;:23;;;46919:1;46879:23;;;:12;:23;;;;;:28;;;;:42;;;:103;;-1:-1:-1;46925:39:0;:20;;;46962:1;46925:20;;;:12;:20;;;;;:25;;;;:39;;;;:57;;-1:-1:-1;46968:9:0;;:14;;46925:57;46875:161;;;47012:9;;47002:6;:19;;46994:42;;;;;;;12128:2:1;46994:42:0;;;12110:21:1;12167:2;12147:18;;;12140:30;12206:12;12186:18;;;12179:40;12236:18;;46994:42:0;11926:334:1;46994:42:0;47065:8;;;;;;;47064:9;:62;;;;-1:-1:-1;47084:42:0;:23;;;47124:1;47084:23;;;:12;:23;;;;;:28;;;;:42;;47064:62;:94;;;;-1:-1:-1;47138:20:0;;;;;;;:12;:20;;;;;;;;47137:21;47064:94;:129;;;;-1:-1:-1;47170:23:0;;;;;;;:12;:23;;;;;;;;47169:24;47064:129;47052:438;;;47210:12;44436:7;47235;;47226:6;:16;;;;:::i;:::-;47225:28;;;;:::i;:::-;47210:43;-1:-1:-1;47262:14:0;47210:43;47262:14;;:::i;:::-;47287:8;:15;;;;;;;;47262:14;-1:-1:-1;47311:60:0;47335:4;47342:9;47353:17;47311:15;:60::i;:::-;47380:40;47396:6;47404:9;47415:4;47380:15;:40::i;:::-;47429:28;47447:9;47429:17;:28::i;:::-;-1:-1:-1;47466:8:0;:16;;;;;;47052:438;47498:42;47514:6;47522:9;47533:6;47498:15;:42::i;:::-;45769:1777;;45654:1892;;;:::o;2338:132::-;2246:6;;2402:23;2246:6;749:10;2402:23;2394:68;;;;;;;12879:2:1;2394:68:0;;;12861:21:1;;;12898:18;;;12891:30;12957:34;12937:18;;;12930:62;13009:18;;2394:68:0;12677:356:1;49289:114:0;49369:28;49381:7;49390:6;49369:11;:28::i;3433:191::-;3526:6;;;;3543:17;;;;;;;;;;;3576:40;;3526:6;;;3543:17;3526:6;;3576:40;;3507:16;;3576:40;3496:128;3433:191;:::o;34810:177::-;34920:58;;;7783:42:1;7771:55;;34920:58:0;;;7753:74:1;7843:18;;;;7836:34;;;34920:58:0;;;;;;;;;;7726:18:1;;;;34920:58:0;;;;;;;;;;34943:23;34920:58;;;34893:86;;34913:5;;34893:19;:86::i;14984:806::-;15081:18;;;15073:68;;;;;;;13240:2:1;15073:68:0;;;13222:21:1;13279:2;13259:18;;;13252:30;13318:34;13298:18;;;13291:62;13389:7;13369:18;;;13362:35;13414:19;;15073:68:0;13038:401:1;15073:68:0;15160:16;;;15152:64;;;;;;;13646:2:1;15152:64:0;;;13628:21:1;13685:2;13665:18;;;13658:30;13724:34;13704:18;;;13697:62;13795:5;13775:18;;;13768:33;13818:19;;15152:64:0;13444:399:1;15152:64:0;15302:15;;;15280:19;15302:15;;;;;;;;;;;15336:21;;;;15328:72;;;;;;;14050:2:1;15328:72:0;;;14032:21:1;14089:2;14069:18;;;14062:30;14128:34;14108:18;;;14101:62;14199:8;14179:18;;;14172:36;14225:19;;15328:72:0;13848:402:1;15328:72:0;15436:15;;;;:9;:15;;;;;;;;;;;15454:20;;;15436:38;;15654:13;;;;;;;;;;:23;;;;;;15706:26;;763:25:1;;;15654:13:0;;15706:26;;736:18:1;15706:26:0;;;;;;;15745:37;45654:1892;47552:217;41945:1;42043:7;;:19;42035:63;;;;;;;14457:2:1;42035:63:0;;;14439:21:1;14496:2;14476:18;;;14469:30;14535:33;14515:18;;;14508:61;14586:18;;42035:63:0;14255:355:1;42035:63:0;41945:1;42109:7;:18;47626:137:::1;::::0;;;;::::1;::::0;;47697:4:::1;47626:137:::0;;::::1;47704:24:::0;;::::1;-1:-1:-1::0;47704:24:0;;;:12:::1;47626:137;47704:24:::0;;;;;;:29:::1;;::::0;;::::1;47626:137:::0;;::::1;::::0;;;;47743:13:::1;::::0;47626:137:::1;::::0;47669:10;;47626:137;47743:13:::1;47626:34;:137::i;:::-;-1:-1:-1::0;41901:1:0;42150:7;:22;47552:217::o;16958:675::-;17042:21;;;17034:67;;;;;;;14817:2:1;17034:67:0;;;14799:21:1;14856:2;14836:18;;;14829:30;14895:34;14875:18;;;14868:62;14966:3;14946:18;;;14939:31;14987:19;;17034:67:0;14615:397:1;17034:67:0;17201:18;;;17176:22;17201:18;;;;;;;;;;;17238:24;;;;17230:71;;;;;;;15219:2:1;17230:71:0;;;15201:21:1;15258:2;15238:18;;;15231:30;15297:34;15277:18;;;15270:62;15368:4;15348:18;;;15341:32;15390:19;;17230:71:0;15017:398:1;17230:71:0;17337:18;;;:9;:18;;;;;;;;;;;17358:23;;;17337:44;;17476:12;:22;;;;;;;17527:37;763:25:1;;;17337:9:0;;:18;17527:37;;736:18:1;17527:37:0;;;;;;;45654:1892;;;:::o;39156:649::-;39580:23;39606:69;39634:4;39606:69;;;;;;;;;;;;;;;;;39614:5;39606:27;;;;:69;;;;;:::i;:::-;39580:95;;39694:10;:17;39715:1;39694:22;:56;;;;39731:10;39720:30;;;;;;;;;;;;:::i;:::-;39686:111;;;;;;;15622:2:1;39686:111:0;;;15604:21:1;15661:2;15641:18;;;15634:30;15700:34;15680:18;;;15673:62;15771:12;15751:18;;;15744:40;15801:19;;39686:111:0;15420:406:1;42188:950:0;42341:7;;;42350;;;42307:13;42393:14;;;;;;;;:50;;42429:6;42437:5;42393:50;;;42411:5;42418:6;42393:50;42373:70;;;42458:16;42489:17;42577:13;42592;42620:4;42610:27;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;42576:63;;;;;;;;;42655:17;42674:18;42705:6;42696:15;;:5;:15;;;:61;;42738:8;42748;42696:61;;;42715:8;42725;42696:61;42786:32;;;;;:26;2559:55:1;;;42786:32:0;;;2541:74:1;42654:103:0;;-1:-1:-1;42654:103:0;;-1:-1:-1;42654:103:0;;42786:26;;;;;2514:18:1;;42786:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:49;;;;:::i;:::-;42772:63;;42865:54;42878:11;42891:12;42905:13;42865:12;:54::i;:::-;42850:69;;42521:414;;;;42950:15;42967;42995:6;42986:15;;:5;:15;;;:67;;43031:12;43050:1;42986:67;;;43010:1;43014:12;42986:67;43117:12;;;43127:1;43117:12;;;;;;;;;43068:62;;;;42949:104;;-1:-1:-1;42949:104:0;-1:-1:-1;43068:20:0;;;;;;:62;;42949:104;;;;43113:2;;43068:62;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42291:847;;;;;;;42188:950;;;:::o;28449:229::-;28586:12;28618:52;28640:6;28648:4;28654:1;28657:12;28618:21;:52::i;:::-;28611:59;28449:229;-1:-1:-1;;;;28449:229:0:o;43146:339::-;43239:14;;43289:16;:8;43301:3;43289:16;:::i;:::-;43266:39;-1:-1:-1;43316:14:0;43333:30;43352:10;43266:39;43333:30;:::i;:::-;43316:47;-1:-1:-1;43374:16:0;43415:15;43393:18;:9;43406:4;43393:18;:::i;:::-;:38;;;;:::i;:::-;43374:57;-1:-1:-1;43454:23:0;43374:57;43454:9;:23;:::i;:::-;43442:35;43146:339;-1:-1:-1;;;;;;;43146:339:0:o;29535:455::-;29705:12;29763:5;29738:21;:30;;29730:81;;;;;;;17735:2:1;29730:81:0;;;17717:21:1;17774:2;17754:18;;;17747:30;17813:34;17793:18;;;17786:62;17884:8;17864:18;;;17857:36;17910:19;;29730:81:0;17533:402:1;29730:81:0;29823:12;29837:23;29864:6;:11;;29883:5;29890:4;29864:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29822:73;;;;29913:69;29940:6;29948:7;29957:10;29969:12;32293;32322:7;32318:427;;;32350:10;:17;32371:1;32350:22;32346:290;;25989:19;;;;32560:60;;;;;;;18434:2:1;32560:60:0;;;18416:21:1;18473:2;18453:18;;;18446:30;18512:31;18492:18;;;18485:59;18561:18;;32560:60:0;18232:353:1;32560:60:0;-1:-1:-1;32657:10:0;32650:17;;32318:427;32700:33;32708:10;32720:12;33455:17;;:21;33451:388;;33687:10;33681:17;33744:15;33731:10;33727:2;33723:19;33716:44;33451:388;33814:12;33807:20;;;;;;;;;;;:::i;14:154:1:-;100:42;93:5;89:54;82:5;79:65;69:93;;158:1;155;148:12;173:247;232:6;285:2;273:9;264:7;260:23;256:32;253:52;;;301:1;298;291:12;253:52;340:9;327:23;359:31;384:5;359:31;:::i;:::-;409:5;173:247;-1:-1:-1;;;173:247:1:o;799:250::-;884:1;894:113;908:6;905:1;902:13;894:113;;;984:11;;;978:18;965:11;;;958:39;930:2;923:10;894:113;;;-1:-1:-1;;1041:1:1;1023:16;;1016:27;799:250::o;1054:330::-;1096:3;1134:5;1128:12;1161:6;1156:3;1149:19;1177:76;1246:6;1239:4;1234:3;1230:14;1223:4;1216:5;1212:16;1177:76;:::i;:::-;1298:2;1286:15;1303:66;1282:88;1273:98;;;;1373:4;1269:109;;1054:330;-1:-1:-1;;1054:330:1:o;1389:220::-;1538:2;1527:9;1520:21;1501:4;1558:45;1599:2;1588:9;1584:18;1576:6;1558:45;:::i;1614:315::-;1682:6;1690;1743:2;1731:9;1722:7;1718:23;1714:32;1711:52;;;1759:1;1756;1749:12;1711:52;1798:9;1785:23;1817:31;1842:5;1817:31;:::i;:::-;1867:5;1919:2;1904:18;;;;1891:32;;-1:-1:-1;;;1614:315:1:o;1934:456::-;2011:6;2019;2027;2080:2;2068:9;2059:7;2055:23;2051:32;2048:52;;;2096:1;2093;2086:12;2048:52;2135:9;2122:23;2154:31;2179:5;2154:31;:::i;:::-;2204:5;-1:-1:-1;2261:2:1;2246:18;;2233:32;2274:33;2233:32;2274:33;:::i;:::-;1934:456;;2326:7;;-1:-1:-1;;;2380:2:1;2365:18;;;;2352:32;;1934:456::o;2815:118::-;2901:5;2894:13;2887:21;2880:5;2877:32;2867:60;;2923:1;2920;2913:12;2938:241;2994:6;3047:2;3035:9;3026:7;3022:23;3018:32;3015:52;;;3063:1;3060;3053:12;3015:52;3102:9;3089:23;3121:28;3143:5;3121:28;:::i;3691:180::-;3750:6;3803:2;3791:9;3782:7;3778:23;3774:32;3771:52;;;3819:1;3816;3809:12;3771:52;-1:-1:-1;3842:23:1;;3691:180;-1:-1:-1;3691:180:1:o;3876:382::-;3941:6;3949;4002:2;3990:9;3981:7;3977:23;3973:32;3970:52;;;4018:1;4015;4008:12;3970:52;4057:9;4044:23;4076:31;4101:5;4076:31;:::i;:::-;4126:5;-1:-1:-1;4183:2:1;4168:18;;4155:32;4196:30;4155:32;4196:30;:::i;:::-;4245:7;4235:17;;;3876:382;;;;;:::o;4595:388::-;4663:6;4671;4724:2;4712:9;4703:7;4699:23;4695:32;4692:52;;;4740:1;4737;4730:12;4692:52;4779:9;4766:23;4798:31;4823:5;4798:31;:::i;:::-;4848:5;-1:-1:-1;4905:2:1;4890:18;;4877:32;4918:33;4877:32;4918:33;:::i;4988:437::-;5067:1;5063:12;;;;5110;;;5131:61;;5185:4;5177:6;5173:17;5163:27;;5131:61;5238:2;5230:6;5227:14;5207:18;5204:38;5201:218;;5275:77;5272:1;5265:88;5376:4;5373:1;5366:15;5404:4;5401:1;5394:15;5201:218;;4988:437;;;:::o;5430:184::-;5482:77;5479:1;5472:88;5579:4;5576:1;5569:15;5603:4;5600:1;5593:15;5619:125;5684:9;;;5705:10;;;5702:36;;;5718:18;;:::i;7881:245::-;7948:6;8001:2;7989:9;7980:7;7976:23;7972:32;7969:52;;;8017:1;8014;8007:12;7969:52;8049:9;8043:16;8068:28;8090:5;8068:28;:::i;11414:168::-;11487:9;;;11518;;11535:15;;;11529:22;;11515:37;11505:71;;11556:18;;:::i;12265:274::-;12305:1;12331;12321:189;;12366:77;12363:1;12356:88;12467:4;12464:1;12457:15;12495:4;12492:1;12485:15;12321:189;-1:-1:-1;12524:9:1;;12265:274::o;12544:128::-;12611:9;;;12632:11;;;12629:37;;;12646:18;;:::i;16020:188::-;16099:13;;16152:30;16141:42;;16131:53;;16121:81;;16198:1;16195;16188:12;16121:81;16020:188;;;:::o;16213:450::-;16300:6;16308;16316;16369:2;16357:9;16348:7;16344:23;16340:32;16337:52;;;16385:1;16382;16375:12;16337:52;16408:40;16438:9;16408:40;:::i;:::-;16398:50;;16467:49;16512:2;16501:9;16497:18;16467:49;:::i;:::-;16457:59;;16559:2;16548:9;16544:18;16538:25;16603:10;16596:5;16592:22;16585:5;16582:33;16572:61;;16629:1;16626;16619:12;16572:61;16652:5;16642:15;;;16213:450;;;;;:::o;16668:184::-;16738:6;16791:2;16779:9;16770:7;16766:23;16762:32;16759:52;;;16807:1;16804;16797:12;16759:52;-1:-1:-1;16830:16:1;;16668:184;-1:-1:-1;16668:184:1:o;17046:482::-;17277:6;17266:9;17259:25;17320:6;17315:2;17304:9;17300:18;17293:34;17375:42;17367:6;17363:55;17358:2;17347:9;17343:18;17336:83;17455:3;17450:2;17439:9;17435:18;17428:31;17240:4;17476:46;17517:3;17506:9;17502:19;17494:6;17476:46;:::i;:::-;17468:54;17046:482;-1:-1:-1;;;;;;17046:482:1:o;17940:287::-;18069:3;18107:6;18101:13;18123:66;18182:6;18177:3;18170:4;18162:6;18158:17;18123:66;:::i;:::-;18205:16;;;;;17940:287;-1:-1:-1;;17940:287:1:o

Swarm Source

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