ETH Price: $3,389.32 (-2.63%)
Gas: 1 Gwei

Token

TAORACLE (TAORACLE)
 

Overview

Max Total Supply

100,000,000 TAORACLE

Holders

38

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
7,547,136.88795930558380023 TAORACLE

Value
$0.00
0xe00e23c676f8a3c657c91dde36b79393a176bba6
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:
TAORACLE

Compiler Version
v0.8.23+commit.f704f362

Optimization Enabled:
No with 200 runs

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

File 6 of 8 : IUniswapV2Router01.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.23;

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

    function WETH() external pure returns (address);

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

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

    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);

    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint amountA, uint amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint amountToken, uint amountETH);

    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);

    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);

    function swapExactETHForTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable returns (uint[] memory amounts);

    function swapTokensForExactETH(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);

    function swapExactTokensForETH(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);

    function swapETHForExactTokens(
        uint amountOut,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable returns (uint[] memory amounts);

    function quote(
        uint amountA,
        uint reserveA,
        uint reserveB
    ) external pure returns (uint amountB);

    function getAmountOut(
        uint amountIn,
        uint reserveIn,
        uint reserveOut
    ) external pure returns (uint amountOut);

    function getAmountIn(
        uint amountOut,
        uint reserveIn,
        uint reserveOut
    ) external pure returns (uint amountIn);

    function getAmountsOut(
        uint amountIn,
        address[] calldata path
    ) external view returns (uint[] memory amounts);

    function getAmountsIn(
        uint amountOut,
        address[] calldata path
    ) external view returns (uint[] memory amounts);
}

File 7 of 8 : IUniswapV2Router02.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.23;

import "./IUniswapV2Router01.sol";

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);

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

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

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

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

File 8 of 8 : TAORACLE.sol
// Website: https://taoracle.com
// Twitter: https://twitter.com/Taoracle
// Telegram: https://t.me/jointaoraclegroup

// SPDX-License-Identifier: MIT

pragma solidity 0.8.23;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "./interfaces/IUniswapV2Router02.sol";

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

contract TAORACLE is Ownable, ERC20 {
    error MaxWalletAmountExceeded();
    event OpenTrading();
    event DisableLimits();
    event SwapBack(uint256 amount);
    event UpdateSwapTokenAt(uint256 amount);
    error MaxTxAmountExceeded();
    error NotAuthorized();


    IUniswapV2Router02 immutable router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

    uint256 _totalSupply = 100_000_000 * 10 ** 18;

    uint256 private _maxAmount = (_totalSupply * 15) / 1_000;
    uint256 private _maxWallet = _maxAmount;

    bool private _tradingEnable;

    address public pair;

    uint256 TAX = 5;
    uint256 private _initialTax = 31;
    uint256 private _reduceTaxAt = 20;
    bool private _taxManuallyReduced = false;

    uint256 private _buyCount = 0;
    uint256 private _sellCount = 0;

    address public marketingWallet;
    address public machineLearningWallet;
    address public rewardsWallet;
    bool public limit = true;
    uint256 public swapTokenAt = (_totalSupply * 4) / 1_000;

    mapping(address => bool) private _isExcludedFromFees;

    bool private _swaping = false;

    modifier onSwap() {
        _swaping = true;
        _;
        _swaping = false;
    }

    constructor(
        address _marketing,
        address _machineLearning,
        address _rewardsWallet
    ) ERC20("TAORACLE", "TAORACLE") {
        marketingWallet = _marketing;
        machineLearningWallet = _machineLearning;
        rewardsWallet = _rewardsWallet;
        _isExcludedFromFees[_msgSender()] = true;
        _isExcludedFromFees[_marketing] = true;
        _isExcludedFromFees[_machineLearning] = true;
        _isExcludedFromFees[_rewardsWallet] = true;
        _isExcludedFromFees[address(this)] = true;
        _isExcludedFromFees[address(router)] = true;
        _mint(_msgSender(), _totalSupply);
        _approve(_msgSender(), address(router), type(uint256).max);
    }

    receive() external payable {}

    function setSwapTokenAt(uint256 value) external onlyOwner {
        require(
            value <= _totalSupply / 50,
            "Value must be less than or equal to SUPPLY / 50"
        );
        swapTokenAt = value;
        emit UpdateSwapTokenAt(value);
    }

    function openTrading() external onlyOwner {
        require(pair != address(0), "Pair not created yet");
        _tradingEnable = true;
        emit OpenTrading();
    }

    function excludedFromFees(
        address _address,
        bool _value
    ) external onlyOwner {
        _isExcludedFromFees[_address] = _value;
    }

    function disableLimits() external onlyOwner {
        require(limit, "Limits already removed");
        limit = false;
        _maxWallet = _totalSupply;
        _maxAmount = _totalSupply;
        emit DisableLimits();
    }

    function reduceTax() external onlyOwner {
        require(!_taxManuallyReduced, "Tax already reduced");
        _taxManuallyReduced = true;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        if (
            _isExcludedFromFees[from] ||
            _isExcludedFromFees[to] ||
            (to != pair && from != pair) ||
            _swaping
        ) {
            super._transfer(from, to, amount);
            return;
        }

        require(_tradingEnable, "Trading is not open");

        if (limit) {
            if ((from == pair || to == pair) && amount > _maxAmount) {
                revert MaxTxAmountExceeded();
            }
            if (to != pair && balanceOf(to) + amount > _maxWallet) {
                revert MaxWalletAmountExceeded();
            }
        }

        uint256 _totalFees = (amount * TAX) / 100;

        if (to == pair) {
            _sellCount += 1;
            _totalFees =
                (amount *
                    ((_taxManuallyReduced || _sellCount > (_reduceTaxAt / 2)) ? TAX : _initialTax)) /
                100;

            if (balanceOf(address(this)) >= swapTokenAt)
                swapBack();
        }

        if (from == pair) {
            _buyCount += 1;
            _totalFees =
                (amount * ((_taxManuallyReduced || _buyCount > _reduceTaxAt) ? TAX : _initialTax)) /
                100;
        }

        if (_totalFees > 0) {
            super._transfer(from, address(this), _totalFees);
            amount = amount - _totalFees;
        }

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

    function swapBack() public onSwap
    {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = router.WETH();

        _approve(address(this), address(router), swapTokenAt);

        router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            swapTokenAt,
            0,
            path,
            address(this),
            block.timestamp
        );

        uint256 balance = address(this).balance;

        if (balance > 0) {
            uint256 marketingAmount = (balance * 40) / 100;
            uint256 machineLearningAmount = (balance * 40) / 100;
            uint256 rewardsAmount = balance - (marketingAmount + machineLearningAmount);

            (bool sent, ) = payable(marketingWallet).call{value: marketingAmount}("");
            require(sent, "Failed to send Ether to marketing wallet");

            (sent, ) = payable(machineLearningWallet).call{value: machineLearningAmount}("");
            require(sent, "Failed to send Ether to machineLearning wallet");

            (sent, ) = payable(rewardsWallet).call{value: rewardsAmount}("");
            require(sent, "Failed to send Ether to rewards wallet");
        }

        emit SwapBack(swapTokenAt);
    }

    function createPair() external onlyOwner {
        require(pair == address(0), "pair address already set");
        pair = IUniswapV2Factory(router.factory()).createPair(
            address(this),
            router.WETH()
        );
    }

    function setMarketingWallet(address _marketingWallet) external {
        require(_msgSender() == owner() || _msgSender() == marketingWallet, "not authorized");
        marketingWallet = _marketingWallet;
    }

    function setMachineLearningWallet(address _machineLearningWallet) external {
        require(_msgSender() == owner() || _msgSender() == machineLearningWallet, "not authorized");
        machineLearningWallet = _machineLearningWallet;
    }

    function setRewardsWallet(address _rewardsWallet) external {
        require(_msgSender() == owner() || _msgSender() == rewardsWallet, "not authorized");
        rewardsWallet = _rewardsWallet;
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_marketing","type":"address"},{"internalType":"address","name":"_machineLearning","type":"address"},{"internalType":"address","name":"_rewardsWallet","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"MaxTxAmountExceeded","type":"error"},{"inputs":[],"name":"MaxWalletAmountExceeded","type":"error"},{"inputs":[],"name":"NotAuthorized","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"DisableLimits","type":"event"},{"anonymous":false,"inputs":[],"name":"OpenTrading","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SwapBack","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"UpdateSwapTokenAt","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"createPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_value","type":"bool"}],"name":"excludedFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"machineLearningWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reduceTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardsWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_machineLearningWallet","type":"address"}],"name":"setMachineLearningWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_marketingWallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_rewardsWallet","type":"address"}],"name":"setRewardsWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setSwapTokenAt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapBack","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapTokenAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a0604052737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1660809073ffffffffffffffffffffffffffffffffffffffff168152506a52b7d2dcc80cd2e40000006006556103e8600f6006546200006e919062000966565b6200007a9190620009dd565b6007556007546008556005600a55601f600b556014600c555f600d5f6101000a81548160ff0219169083151502179055505f600e555f600f556001601260146101000a81548160ff0219169083151502179055506103e86004600654620000e2919062000966565b620000ee9190620009dd565b6013555f60155f6101000a81548160ff02191690831515021790555034801562000116575f80fd5b50604051620046053803806200460583398181016040528101906200013c919062000a79565b6040518060400160405280600881526020017f54414f5241434c450000000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f54414f5241434c45000000000000000000000000000000000000000000000000815250620001c8620001bc6200052d60201b60201c565b6200053460201b60201c565b8160049081620001d9919062000d2d565b508060059081620001eb919062000d2d565b5050508260105f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508160115f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508060125f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600160145f620002c36200052d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160145f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160145f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160145f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160145f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160145f60805173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550620004e0620004d16200052d60201b60201c565b600654620005f560201b60201c565b62000524620004f46200052d60201b60201c565b6080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6200075b60201b60201c565b5050506200101d565b5f33905090565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000666576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200065d9062000e6f565b60405180910390fd5b620006795f83836200092660201b60201c565b8060035f8282546200068c919062000e8f565b925050819055508060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200073c919062000eda565b60405180910390a3620007575f83836200092b60201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603620007cc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007c39062000f69565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200083d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008349062000ffd565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405162000919919062000eda565b60405180910390a3505050565b505050565b505050565b5f819050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f620009728262000930565b91506200097f8362000930565b92508282026200098f8162000930565b91508282048414831517620009a957620009a862000939565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f620009e98262000930565b9150620009f68362000930565b92508262000a095762000a08620009b0565b5b828204905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000a438262000a18565b9050919050565b62000a558162000a37565b811462000a60575f80fd5b50565b5f8151905062000a738162000a4a565b92915050565b5f805f6060848603121562000a935762000a9262000a14565b5b5f62000aa28682870162000a63565b935050602062000ab58682870162000a63565b925050604062000ac88682870162000a63565b9150509250925092565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168062000b4e57607f821691505b60208210810362000b645762000b6362000b09565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830262000bc87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000b8b565b62000bd4868362000b8b565b95508019841693508086168417925050509392505050565b5f819050919050565b5f62000c1562000c0f62000c098462000930565b62000bec565b62000930565b9050919050565b5f819050919050565b62000c308362000bf5565b62000c4862000c3f8262000c1c565b84845462000b97565b825550505050565b5f90565b62000c5e62000c50565b62000c6b81848462000c25565b505050565b5b8181101562000c925762000c865f8262000c54565b60018101905062000c71565b5050565b601f82111562000ce15762000cab8162000b6a565b62000cb68462000b7c565b8101602085101562000cc6578190505b62000cde62000cd58562000b7c565b83018262000c70565b50505b505050565b5f82821c905092915050565b5f62000d035f198460080262000ce6565b1980831691505092915050565b5f62000d1d838362000cf2565b9150826002028217905092915050565b62000d388262000ad2565b67ffffffffffffffff81111562000d545762000d5362000adc565b5b62000d60825462000b36565b62000d6d82828562000c96565b5f60209050601f83116001811462000da3575f841562000d8e578287015190505b62000d9a858262000d10565b86555062000e09565b601f19841662000db38662000b6a565b5f5b8281101562000ddc5784890151825560018201915060208501945060208101905062000db5565b8683101562000dfc578489015162000df8601f89168262000cf2565b8355505b6001600288020188555050505b505050505050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000e57601f8362000e11565b915062000e648262000e21565b602082019050919050565b5f6020820190508181035f83015262000e888162000e49565b9050919050565b5f62000e9b8262000930565b915062000ea88362000930565b925082820190508082111562000ec35762000ec262000939565b5b92915050565b62000ed48162000930565b82525050565b5f60208201905062000eef5f83018462000ec9565b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f62000f5160248362000e11565b915062000f5e8262000ef5565b604082019050919050565b5f6020820190508181035f83015262000f828162000f43565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f62000fe560228362000e11565b915062000ff28262000f89565b604082019050919050565b5f6020820190508181035f830152620010168162000fd7565b9050919050565b6080516135b3620010525f395f8181610ad901528181610bb801528181610be10152818161131101526113ba01526135b35ff3fe6080604052600436106101d0575f3560e01c806375f0a874116100f6578063a457c2d711610094578063c9567bf911610063578063c9567bf914610631578063dd62ed3e14610647578063f2fde38b14610683578063f928364c146106ab576101d7565b8063a457c2d714610565578063a4d66daf146105a1578063a8aa1b31146105cb578063a9059cbb146105f5576101d7565b806395d89b41116100d057806395d89b41146104d55780639b8608a2146104ff5780639e78fb4f14610527578063a19804301461053d576101d7565b806375f0a87414610459578063864b3167146104835780638da5cb5b146104ab576101d7565b8063395093511161016e5780636ac5eeee1161013d5780636ac5eeee146103c757806370a08231146103dd578063715018a61461041957806373bc5a361461042f576101d7565b8063395093511461032357806341fb0d211461035f5780635b35f9c9146103755780635d098b381461039f576101d7565b806318160ddd116101aa57806318160ddd1461026957806323b872dd1461029357806325afbf53146102cf578063313ce567146102f9576101d7565b806306fdde03146101db578063095ea7b31461020557806316697fc514610241576101d7565b366101d757005b5f80fd5b3480156101e6575f80fd5b506101ef6106c1565b6040516101fc9190612551565b60405180910390f35b348015610210575f80fd5b5061022b60048036038101906102269190612602565b610751565b604051610238919061265a565b60405180910390f35b34801561024c575f80fd5b506102676004803603810190610262919061269d565b610773565b005b348015610274575f80fd5b5061027d6107d3565b60405161028a91906126ea565b60405180910390f35b34801561029e575f80fd5b506102b960048036038101906102b49190612703565b6107dc565b6040516102c6919061265a565b60405180910390f35b3480156102da575f80fd5b506102e361080a565b6040516102f09190612762565b60405180910390f35b348015610304575f80fd5b5061030d61082f565b60405161031a9190612796565b60405180910390f35b34801561032e575f80fd5b5061034960048036038101906103449190612602565b610837565b604051610356919061265a565b60405180910390f35b34801561036a575f80fd5b5061037361086d565b005b348015610380575f80fd5b506103896108e0565b6040516103969190612762565b60405180910390f35b3480156103aa575f80fd5b506103c560048036038101906103c091906127af565b610905565b005b3480156103d2575f80fd5b506103db610a22565b005b3480156103e8575f80fd5b5061040360048036038101906103fe91906127af565b610f85565b60405161041091906126ea565b60405180910390f35b348015610424575f80fd5b5061042d610fcb565b005b34801561043a575f80fd5b50610443610fde565b60405161045091906126ea565b60405180910390f35b348015610464575f80fd5b5061046d610fe4565b60405161047a9190612762565b60405180910390f35b34801561048e575f80fd5b506104a960048036038101906104a491906127da565b611009565b005b3480156104b6575f80fd5b506104bf6110a3565b6040516104cc9190612762565b60405180910390f35b3480156104e0575f80fd5b506104e96110ca565b6040516104f69190612551565b60405180910390f35b34801561050a575f80fd5b50610525600480360381019061052091906127af565b61115a565b005b348015610532575f80fd5b5061053b611277565b005b348015610548575f80fd5b50610563600480360381019061055e91906127af565b6114e4565b005b348015610570575f80fd5b5061058b60048036038101906105869190612602565b611601565b604051610598919061265a565b60405180910390f35b3480156105ac575f80fd5b506105b5611676565b6040516105c2919061265a565b60405180910390f35b3480156105d6575f80fd5b506105df611689565b6040516105ec9190612762565b60405180910390f35b348015610600575f80fd5b5061061b60048036038101906106169190612602565b6116af565b604051610628919061265a565b60405180910390f35b34801561063c575f80fd5b506106456116d1565b005b348015610652575f80fd5b5061066d60048036038101906106689190612805565b6117b1565b60405161067a91906126ea565b60405180910390f35b34801561068e575f80fd5b506106a960048036038101906106a491906127af565b611833565b005b3480156106b6575f80fd5b506106bf6118b5565b005b6060600480546106d090612870565b80601f01602080910402602001604051908101604052809291908181526020018280546106fc90612870565b80156107475780601f1061071e57610100808354040283529160200191610747565b820191905f5260205f20905b81548152906001019060200180831161072a57829003601f168201915b5050505050905090565b5f8061075b611966565b905061076881858561196d565b600191505092915050565b61077b611b30565b8060145f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f600354905090565b5f806107e6611966565b90506107f3858285611bae565b6107fe858585611c39565b60019150509392505050565b60115f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f6012905090565b5f80610841611966565b905061086281858561085385896117b1565b61085d91906128cd565b61196d565b600191505092915050565b610875611b30565b600d5f9054906101000a900460ff16156108c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108bb9061294a565b60405180910390fd5b6001600d5f6101000a81548160ff021916908315150217905550565b60125f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61090d6110a3565b73ffffffffffffffffffffffffffffffffffffffff1661092b611966565b73ffffffffffffffffffffffffffffffffffffffff1614806109a0575060105f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610988611966565b73ffffffffffffffffffffffffffffffffffffffff16145b6109df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d6906129b2565b60405180910390fd5b8060105f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600160155f6101000a81548160ff0219169083151502179055505f600267ffffffffffffffff811115610a5857610a576129d0565b5b604051908082528060200260200182016040528015610a865781602001602082028036833780820191505090505b50905030815f81518110610a9d57610a9c6129fd565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b40573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b649190612a3e565b81600181518110610b7857610b776129fd565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050610bdf307f000000000000000000000000000000000000000000000000000000000000000060135461196d565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9476013545f8430426040518663ffffffff1660e01b8152600401610c42959493929190612b62565b5f604051808303815f87803b158015610c59575f80fd5b505af1158015610c6b573d5f803e3d5ffd5b505050505f4790505f811115610f2f575f6064602883610c8b9190612bba565b610c959190612c28565b90505f6064602884610ca79190612bba565b610cb19190612c28565b90505f8183610cc091906128cd565b84610ccb9190612c58565b90505f60105f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1684604051610d1390612cb8565b5f6040518083038185875af1925050503d805f8114610d4d576040519150601f19603f3d011682016040523d82523d5f602084013e610d52565b606091505b5050905080610d96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8d90612d3c565b60405180910390fd5b60115f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1683604051610ddb90612cb8565b5f6040518083038185875af1925050503d805f8114610e15576040519150601f19603f3d011682016040523d82523d5f602084013e610e1a565b606091505b50508091505080610e60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5790612dca565b60405180910390fd5b60125f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051610ea590612cb8565b5f6040518083038185875af1925050503d805f8114610edf576040519150601f19603f3d011682016040523d82523d5f602084013e610ee4565b606091505b50508091505080610f2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2190612e58565b60405180910390fd5b505050505b7fd851aeb8e2074b285cc12da5e2fbf79e642e38f62ef8e59590790c157491ee05601354604051610f6091906126ea565b60405180910390a150505f60155f6101000a81548160ff021916908315150217905550565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610fd3611b30565b610fdc5f61218d565b565b60135481565b60105f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611011611b30565b60326006546110209190612c28565b811115611062576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105990612ee6565b60405180910390fd5b806013819055507f4cba14fd4026630e64b03f8c6a0130ca310c15a5376cf7f6735c66880bb7bceb8160405161109891906126ea565b60405180910390a150565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546110d990612870565b80601f016020809104026020016040519081016040528092919081815260200182805461110590612870565b80156111505780601f1061112757610100808354040283529160200191611150565b820191905f5260205f20905b81548152906001019060200180831161113357829003601f168201915b5050505050905090565b6111626110a3565b73ffffffffffffffffffffffffffffffffffffffff16611180611966565b73ffffffffffffffffffffffffffffffffffffffff1614806111f5575060115f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166111dd611966565b73ffffffffffffffffffffffffffffffffffffffff16145b611234576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122b906129b2565b60405180910390fd5b8060115f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61127f611b30565b5f73ffffffffffffffffffffffffffffffffffffffff16600960019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461130f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130690612f4e565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015611378573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061139c9190612a3e565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396307f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611421573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114459190612a3e565b6040518363ffffffff1660e01b8152600401611462929190612f6c565b6020604051808303815f875af115801561147e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114a29190612a3e565b600960016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6114ec6110a3565b73ffffffffffffffffffffffffffffffffffffffff1661150a611966565b73ffffffffffffffffffffffffffffffffffffffff16148061157f575060125f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611567611966565b73ffffffffffffffffffffffffffffffffffffffff16145b6115be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b5906129b2565b60405180910390fd5b8060125f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f8061160b611966565b90505f61161882866117b1565b90508381101561165d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165490613003565b60405180910390fd5b61166a828686840361196d565b60019250505092915050565b601260149054906101000a900460ff1681565b600960019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f806116b9611966565b90506116c6818585611c39565b600191505092915050565b6116d9611b30565b5f73ffffffffffffffffffffffffffffffffffffffff16600960019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611769576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117609061306b565b60405180910390fd5b600160095f6101000a81548160ff0219169083151502179055507f51cd7cc33235a1c89f708fecec535bf7cca0f94ed05216751befb052ca83e67960405160405180910390a1565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b61183b611b30565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036118a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a0906130f9565b60405180910390fd5b6118b28161218d565b50565b6118bd611b30565b601260149054906101000a900460ff1661190c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190390613161565b60405180910390fd5b5f601260146101000a81548160ff0219169083151502179055506006546008819055506006546007819055507fe9070d302280cd857033f56893647494c1410643fe239daabee29e9292199b3d60405160405180910390a1565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036119db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d2906131ef565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a409061327d565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611b2391906126ea565b60405180910390a3505050565b611b38611966565b73ffffffffffffffffffffffffffffffffffffffff16611b566110a3565b73ffffffffffffffffffffffffffffffffffffffff1614611bac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba3906132e5565b60405180910390fd5b565b5f611bb984846117b1565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611c335781811015611c25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1c9061334d565b60405180910390fd5b611c32848484840361196d565b5b50505050565b60145f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611cd4575060145f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b80611d875750600960019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015611d865750600960019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b5b80611d9d575060155f9054906101000a900460ff165b15611db257611dad83838361224e565b612188565b60095f9054906101000a900460ff16611e00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df7906133b5565b60405180910390fd5b601260149054906101000a900460ff1615611fac57600960019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480611ebe5750600960019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b8015611ecb575060075481115b15611f02576040517f801bc44b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600960019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015611f74575060085481611f6884610f85565b611f7291906128cd565b115b15611fab576040517fa9a44dff00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f6064600a5483611fbd9190612bba565b611fc79190612c28565b9050600960019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036120a4576001600f5f82825461203091906128cd565b925050819055506064600d5f9054906101000a900460ff168061206257506002600c5461205d9190612c28565b600f54115b61206e57600b54612072565b600a545b8361207d9190612bba565b6120879190612c28565b905060135461209530610f85565b106120a3576120a2610a22565b5b5b600960019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612159576001600e5f82825461210b91906128cd565b925050819055506064600d5f9054906101000a900460ff16806121315750600c54600e54115b61213d57600b54612141565b600a545b8361214c9190612bba565b6121569190612c28565b90505b5f81111561217b5761216c84308361224e565b80826121789190612c58565b91505b61218684848461224e565b505b505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036122bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b390613443565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361232a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612321906134d1565b60405180910390fd5b6123358383836124bd565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156123b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b09061355f565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516124a491906126ea565b60405180910390a36124b78484846124c2565b50505050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156124fe5780820151818401526020810190506124e3565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612523826124c7565b61252d81856124d1565b935061253d8185602086016124e1565b61254681612509565b840191505092915050565b5f6020820190508181035f8301526125698184612519565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61259e82612575565b9050919050565b6125ae81612594565b81146125b8575f80fd5b50565b5f813590506125c9816125a5565b92915050565b5f819050919050565b6125e1816125cf565b81146125eb575f80fd5b50565b5f813590506125fc816125d8565b92915050565b5f806040838503121561261857612617612571565b5b5f612625858286016125bb565b9250506020612636858286016125ee565b9150509250929050565b5f8115159050919050565b61265481612640565b82525050565b5f60208201905061266d5f83018461264b565b92915050565b61267c81612640565b8114612686575f80fd5b50565b5f8135905061269781612673565b92915050565b5f80604083850312156126b3576126b2612571565b5b5f6126c0858286016125bb565b92505060206126d185828601612689565b9150509250929050565b6126e4816125cf565b82525050565b5f6020820190506126fd5f8301846126db565b92915050565b5f805f6060848603121561271a57612719612571565b5b5f612727868287016125bb565b9350506020612738868287016125bb565b9250506040612749868287016125ee565b9150509250925092565b61275c81612594565b82525050565b5f6020820190506127755f830184612753565b92915050565b5f60ff82169050919050565b6127908161277b565b82525050565b5f6020820190506127a95f830184612787565b92915050565b5f602082840312156127c4576127c3612571565b5b5f6127d1848285016125bb565b91505092915050565b5f602082840312156127ef576127ee612571565b5b5f6127fc848285016125ee565b91505092915050565b5f806040838503121561281b5761281a612571565b5b5f612828858286016125bb565b9250506020612839858286016125bb565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061288757607f821691505b60208210810361289a57612899612843565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6128d7826125cf565b91506128e2836125cf565b92508282019050808211156128fa576128f96128a0565b5b92915050565b7f54617820616c72656164792072656475636564000000000000000000000000005f82015250565b5f6129346013836124d1565b915061293f82612900565b602082019050919050565b5f6020820190508181035f83015261296181612928565b9050919050565b7f6e6f7420617574686f72697a65640000000000000000000000000000000000005f82015250565b5f61299c600e836124d1565b91506129a782612968565b602082019050919050565b5f6020820190508181035f8301526129c981612990565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050612a38816125a5565b92915050565b5f60208284031215612a5357612a52612571565b5b5f612a6084828501612a2a565b91505092915050565b5f819050919050565b5f819050919050565b5f612a95612a90612a8b84612a69565b612a72565b6125cf565b9050919050565b612aa581612a7b565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b612add81612594565b82525050565b5f612aee8383612ad4565b60208301905092915050565b5f602082019050919050565b5f612b1082612aab565b612b1a8185612ab5565b9350612b2583612ac5565b805f5b83811015612b55578151612b3c8882612ae3565b9750612b4783612afa565b925050600181019050612b28565b5085935050505092915050565b5f60a082019050612b755f8301886126db565b612b826020830187612a9c565b8181036040830152612b948186612b06565b9050612ba36060830185612753565b612bb060808301846126db565b9695505050505050565b5f612bc4826125cf565b9150612bcf836125cf565b9250828202612bdd816125cf565b91508282048414831517612bf457612bf36128a0565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f612c32826125cf565b9150612c3d836125cf565b925082612c4d57612c4c612bfb565b5b828204905092915050565b5f612c62826125cf565b9150612c6d836125cf565b9250828203905081811115612c8557612c846128a0565b5b92915050565b5f81905092915050565b50565b5f612ca35f83612c8b565b9150612cae82612c95565b5f82019050919050565b5f612cc282612c98565b9150819050919050565b7f4661696c656420746f2073656e6420457468657220746f206d61726b6574696e5f8201527f672077616c6c6574000000000000000000000000000000000000000000000000602082015250565b5f612d266028836124d1565b9150612d3182612ccc565b604082019050919050565b5f6020820190508181035f830152612d5381612d1a565b9050919050565b7f4661696c656420746f2073656e6420457468657220746f206d616368696e654c5f8201527f6561726e696e672077616c6c6574000000000000000000000000000000000000602082015250565b5f612db4602e836124d1565b9150612dbf82612d5a565b604082019050919050565b5f6020820190508181035f830152612de181612da8565b9050919050565b7f4661696c656420746f2073656e6420457468657220746f2072657761726473205f8201527f77616c6c65740000000000000000000000000000000000000000000000000000602082015250565b5f612e426026836124d1565b9150612e4d82612de8565b604082019050919050565b5f6020820190508181035f830152612e6f81612e36565b9050919050565b7f56616c7565206d757374206265206c657373207468616e206f7220657175616c5f8201527f20746f20535550504c59202f2035300000000000000000000000000000000000602082015250565b5f612ed0602f836124d1565b9150612edb82612e76565b604082019050919050565b5f6020820190508181035f830152612efd81612ec4565b9050919050565b7f70616972206164647265737320616c72656164792073657400000000000000005f82015250565b5f612f386018836124d1565b9150612f4382612f04565b602082019050919050565b5f6020820190508181035f830152612f6581612f2c565b9050919050565b5f604082019050612f7f5f830185612753565b612f8c6020830184612753565b9392505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f612fed6025836124d1565b9150612ff882612f93565b604082019050919050565b5f6020820190508181035f83015261301a81612fe1565b9050919050565b7f50616972206e6f742063726561746564207965740000000000000000000000005f82015250565b5f6130556014836124d1565b915061306082613021565b602082019050919050565b5f6020820190508181035f83015261308281613049565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6130e36026836124d1565b91506130ee82613089565b604082019050919050565b5f6020820190508181035f830152613110816130d7565b9050919050565b7f4c696d69747320616c72656164792072656d6f766564000000000000000000005f82015250565b5f61314b6016836124d1565b915061315682613117565b602082019050919050565b5f6020820190508181035f8301526131788161313f565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6131d96024836124d1565b91506131e48261317f565b604082019050919050565b5f6020820190508181035f830152613206816131cd565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6132676022836124d1565b91506132728261320d565b604082019050919050565b5f6020820190508181035f8301526132948161325b565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6132cf6020836124d1565b91506132da8261329b565b602082019050919050565b5f6020820190508181035f8301526132fc816132c3565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f613337601d836124d1565b915061334282613303565b602082019050919050565b5f6020820190508181035f8301526133648161332b565b9050919050565b7f54726164696e67206973206e6f74206f70656e000000000000000000000000005f82015250565b5f61339f6013836124d1565b91506133aa8261336b565b602082019050919050565b5f6020820190508181035f8301526133cc81613393565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61342d6025836124d1565b9150613438826133d3565b604082019050919050565b5f6020820190508181035f83015261345a81613421565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6134bb6023836124d1565b91506134c682613461565b604082019050919050565b5f6020820190508181035f8301526134e8816134af565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6135496026836124d1565b9150613554826134ef565b604082019050919050565b5f6020820190508181035f8301526135768161353d565b905091905056fea264697066735822122074f179e54eb17f88eea469e8b22a19ccb0620fac4adb46084354541744586a2964736f6c63430008170033000000000000000000000000bd3314e5791dc68993664febcc8a79e04350595d0000000000000000000000001cfcb553f4f72ec738464eddfd155048358ab43900000000000000000000000042b6a777e4945cbf97851e9c6e721c8e5649816d

Deployed Bytecode

0x6080604052600436106101d0575f3560e01c806375f0a874116100f6578063a457c2d711610094578063c9567bf911610063578063c9567bf914610631578063dd62ed3e14610647578063f2fde38b14610683578063f928364c146106ab576101d7565b8063a457c2d714610565578063a4d66daf146105a1578063a8aa1b31146105cb578063a9059cbb146105f5576101d7565b806395d89b41116100d057806395d89b41146104d55780639b8608a2146104ff5780639e78fb4f14610527578063a19804301461053d576101d7565b806375f0a87414610459578063864b3167146104835780638da5cb5b146104ab576101d7565b8063395093511161016e5780636ac5eeee1161013d5780636ac5eeee146103c757806370a08231146103dd578063715018a61461041957806373bc5a361461042f576101d7565b8063395093511461032357806341fb0d211461035f5780635b35f9c9146103755780635d098b381461039f576101d7565b806318160ddd116101aa57806318160ddd1461026957806323b872dd1461029357806325afbf53146102cf578063313ce567146102f9576101d7565b806306fdde03146101db578063095ea7b31461020557806316697fc514610241576101d7565b366101d757005b5f80fd5b3480156101e6575f80fd5b506101ef6106c1565b6040516101fc9190612551565b60405180910390f35b348015610210575f80fd5b5061022b60048036038101906102269190612602565b610751565b604051610238919061265a565b60405180910390f35b34801561024c575f80fd5b506102676004803603810190610262919061269d565b610773565b005b348015610274575f80fd5b5061027d6107d3565b60405161028a91906126ea565b60405180910390f35b34801561029e575f80fd5b506102b960048036038101906102b49190612703565b6107dc565b6040516102c6919061265a565b60405180910390f35b3480156102da575f80fd5b506102e361080a565b6040516102f09190612762565b60405180910390f35b348015610304575f80fd5b5061030d61082f565b60405161031a9190612796565b60405180910390f35b34801561032e575f80fd5b5061034960048036038101906103449190612602565b610837565b604051610356919061265a565b60405180910390f35b34801561036a575f80fd5b5061037361086d565b005b348015610380575f80fd5b506103896108e0565b6040516103969190612762565b60405180910390f35b3480156103aa575f80fd5b506103c560048036038101906103c091906127af565b610905565b005b3480156103d2575f80fd5b506103db610a22565b005b3480156103e8575f80fd5b5061040360048036038101906103fe91906127af565b610f85565b60405161041091906126ea565b60405180910390f35b348015610424575f80fd5b5061042d610fcb565b005b34801561043a575f80fd5b50610443610fde565b60405161045091906126ea565b60405180910390f35b348015610464575f80fd5b5061046d610fe4565b60405161047a9190612762565b60405180910390f35b34801561048e575f80fd5b506104a960048036038101906104a491906127da565b611009565b005b3480156104b6575f80fd5b506104bf6110a3565b6040516104cc9190612762565b60405180910390f35b3480156104e0575f80fd5b506104e96110ca565b6040516104f69190612551565b60405180910390f35b34801561050a575f80fd5b50610525600480360381019061052091906127af565b61115a565b005b348015610532575f80fd5b5061053b611277565b005b348015610548575f80fd5b50610563600480360381019061055e91906127af565b6114e4565b005b348015610570575f80fd5b5061058b60048036038101906105869190612602565b611601565b604051610598919061265a565b60405180910390f35b3480156105ac575f80fd5b506105b5611676565b6040516105c2919061265a565b60405180910390f35b3480156105d6575f80fd5b506105df611689565b6040516105ec9190612762565b60405180910390f35b348015610600575f80fd5b5061061b60048036038101906106169190612602565b6116af565b604051610628919061265a565b60405180910390f35b34801561063c575f80fd5b506106456116d1565b005b348015610652575f80fd5b5061066d60048036038101906106689190612805565b6117b1565b60405161067a91906126ea565b60405180910390f35b34801561068e575f80fd5b506106a960048036038101906106a491906127af565b611833565b005b3480156106b6575f80fd5b506106bf6118b5565b005b6060600480546106d090612870565b80601f01602080910402602001604051908101604052809291908181526020018280546106fc90612870565b80156107475780601f1061071e57610100808354040283529160200191610747565b820191905f5260205f20905b81548152906001019060200180831161072a57829003601f168201915b5050505050905090565b5f8061075b611966565b905061076881858561196d565b600191505092915050565b61077b611b30565b8060145f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f600354905090565b5f806107e6611966565b90506107f3858285611bae565b6107fe858585611c39565b60019150509392505050565b60115f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f6012905090565b5f80610841611966565b905061086281858561085385896117b1565b61085d91906128cd565b61196d565b600191505092915050565b610875611b30565b600d5f9054906101000a900460ff16156108c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108bb9061294a565b60405180910390fd5b6001600d5f6101000a81548160ff021916908315150217905550565b60125f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61090d6110a3565b73ffffffffffffffffffffffffffffffffffffffff1661092b611966565b73ffffffffffffffffffffffffffffffffffffffff1614806109a0575060105f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610988611966565b73ffffffffffffffffffffffffffffffffffffffff16145b6109df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d6906129b2565b60405180910390fd5b8060105f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600160155f6101000a81548160ff0219169083151502179055505f600267ffffffffffffffff811115610a5857610a576129d0565b5b604051908082528060200260200182016040528015610a865781602001602082028036833780820191505090505b50905030815f81518110610a9d57610a9c6129fd565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b40573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b649190612a3e565b81600181518110610b7857610b776129fd565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050610bdf307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d60135461196d565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9476013545f8430426040518663ffffffff1660e01b8152600401610c42959493929190612b62565b5f604051808303815f87803b158015610c59575f80fd5b505af1158015610c6b573d5f803e3d5ffd5b505050505f4790505f811115610f2f575f6064602883610c8b9190612bba565b610c959190612c28565b90505f6064602884610ca79190612bba565b610cb19190612c28565b90505f8183610cc091906128cd565b84610ccb9190612c58565b90505f60105f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1684604051610d1390612cb8565b5f6040518083038185875af1925050503d805f8114610d4d576040519150601f19603f3d011682016040523d82523d5f602084013e610d52565b606091505b5050905080610d96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8d90612d3c565b60405180910390fd5b60115f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1683604051610ddb90612cb8565b5f6040518083038185875af1925050503d805f8114610e15576040519150601f19603f3d011682016040523d82523d5f602084013e610e1a565b606091505b50508091505080610e60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5790612dca565b60405180910390fd5b60125f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051610ea590612cb8565b5f6040518083038185875af1925050503d805f8114610edf576040519150601f19603f3d011682016040523d82523d5f602084013e610ee4565b606091505b50508091505080610f2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2190612e58565b60405180910390fd5b505050505b7fd851aeb8e2074b285cc12da5e2fbf79e642e38f62ef8e59590790c157491ee05601354604051610f6091906126ea565b60405180910390a150505f60155f6101000a81548160ff021916908315150217905550565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610fd3611b30565b610fdc5f61218d565b565b60135481565b60105f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611011611b30565b60326006546110209190612c28565b811115611062576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105990612ee6565b60405180910390fd5b806013819055507f4cba14fd4026630e64b03f8c6a0130ca310c15a5376cf7f6735c66880bb7bceb8160405161109891906126ea565b60405180910390a150565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546110d990612870565b80601f016020809104026020016040519081016040528092919081815260200182805461110590612870565b80156111505780601f1061112757610100808354040283529160200191611150565b820191905f5260205f20905b81548152906001019060200180831161113357829003601f168201915b5050505050905090565b6111626110a3565b73ffffffffffffffffffffffffffffffffffffffff16611180611966565b73ffffffffffffffffffffffffffffffffffffffff1614806111f5575060115f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166111dd611966565b73ffffffffffffffffffffffffffffffffffffffff16145b611234576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122b906129b2565b60405180910390fd5b8060115f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61127f611b30565b5f73ffffffffffffffffffffffffffffffffffffffff16600960019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461130f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130690612f4e565b60405180910390fd5b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015611378573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061139c9190612a3e565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611421573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114459190612a3e565b6040518363ffffffff1660e01b8152600401611462929190612f6c565b6020604051808303815f875af115801561147e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114a29190612a3e565b600960016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6114ec6110a3565b73ffffffffffffffffffffffffffffffffffffffff1661150a611966565b73ffffffffffffffffffffffffffffffffffffffff16148061157f575060125f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611567611966565b73ffffffffffffffffffffffffffffffffffffffff16145b6115be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b5906129b2565b60405180910390fd5b8060125f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f8061160b611966565b90505f61161882866117b1565b90508381101561165d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165490613003565b60405180910390fd5b61166a828686840361196d565b60019250505092915050565b601260149054906101000a900460ff1681565b600960019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f806116b9611966565b90506116c6818585611c39565b600191505092915050565b6116d9611b30565b5f73ffffffffffffffffffffffffffffffffffffffff16600960019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611769576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117609061306b565b60405180910390fd5b600160095f6101000a81548160ff0219169083151502179055507f51cd7cc33235a1c89f708fecec535bf7cca0f94ed05216751befb052ca83e67960405160405180910390a1565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b61183b611b30565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036118a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a0906130f9565b60405180910390fd5b6118b28161218d565b50565b6118bd611b30565b601260149054906101000a900460ff1661190c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190390613161565b60405180910390fd5b5f601260146101000a81548160ff0219169083151502179055506006546008819055506006546007819055507fe9070d302280cd857033f56893647494c1410643fe239daabee29e9292199b3d60405160405180910390a1565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036119db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d2906131ef565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a409061327d565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611b2391906126ea565b60405180910390a3505050565b611b38611966565b73ffffffffffffffffffffffffffffffffffffffff16611b566110a3565b73ffffffffffffffffffffffffffffffffffffffff1614611bac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba3906132e5565b60405180910390fd5b565b5f611bb984846117b1565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611c335781811015611c25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1c9061334d565b60405180910390fd5b611c32848484840361196d565b5b50505050565b60145f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611cd4575060145f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b80611d875750600960019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015611d865750600960019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b5b80611d9d575060155f9054906101000a900460ff165b15611db257611dad83838361224e565b612188565b60095f9054906101000a900460ff16611e00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df7906133b5565b60405180910390fd5b601260149054906101000a900460ff1615611fac57600960019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480611ebe5750600960019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b8015611ecb575060075481115b15611f02576040517f801bc44b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600960019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015611f74575060085481611f6884610f85565b611f7291906128cd565b115b15611fab576040517fa9a44dff00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f6064600a5483611fbd9190612bba565b611fc79190612c28565b9050600960019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036120a4576001600f5f82825461203091906128cd565b925050819055506064600d5f9054906101000a900460ff168061206257506002600c5461205d9190612c28565b600f54115b61206e57600b54612072565b600a545b8361207d9190612bba565b6120879190612c28565b905060135461209530610f85565b106120a3576120a2610a22565b5b5b600960019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612159576001600e5f82825461210b91906128cd565b925050819055506064600d5f9054906101000a900460ff16806121315750600c54600e54115b61213d57600b54612141565b600a545b8361214c9190612bba565b6121569190612c28565b90505b5f81111561217b5761216c84308361224e565b80826121789190612c58565b91505b61218684848461224e565b505b505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036122bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b390613443565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361232a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612321906134d1565b60405180910390fd5b6123358383836124bd565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156123b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b09061355f565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516124a491906126ea565b60405180910390a36124b78484846124c2565b50505050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156124fe5780820151818401526020810190506124e3565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612523826124c7565b61252d81856124d1565b935061253d8185602086016124e1565b61254681612509565b840191505092915050565b5f6020820190508181035f8301526125698184612519565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61259e82612575565b9050919050565b6125ae81612594565b81146125b8575f80fd5b50565b5f813590506125c9816125a5565b92915050565b5f819050919050565b6125e1816125cf565b81146125eb575f80fd5b50565b5f813590506125fc816125d8565b92915050565b5f806040838503121561261857612617612571565b5b5f612625858286016125bb565b9250506020612636858286016125ee565b9150509250929050565b5f8115159050919050565b61265481612640565b82525050565b5f60208201905061266d5f83018461264b565b92915050565b61267c81612640565b8114612686575f80fd5b50565b5f8135905061269781612673565b92915050565b5f80604083850312156126b3576126b2612571565b5b5f6126c0858286016125bb565b92505060206126d185828601612689565b9150509250929050565b6126e4816125cf565b82525050565b5f6020820190506126fd5f8301846126db565b92915050565b5f805f6060848603121561271a57612719612571565b5b5f612727868287016125bb565b9350506020612738868287016125bb565b9250506040612749868287016125ee565b9150509250925092565b61275c81612594565b82525050565b5f6020820190506127755f830184612753565b92915050565b5f60ff82169050919050565b6127908161277b565b82525050565b5f6020820190506127a95f830184612787565b92915050565b5f602082840312156127c4576127c3612571565b5b5f6127d1848285016125bb565b91505092915050565b5f602082840312156127ef576127ee612571565b5b5f6127fc848285016125ee565b91505092915050565b5f806040838503121561281b5761281a612571565b5b5f612828858286016125bb565b9250506020612839858286016125bb565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061288757607f821691505b60208210810361289a57612899612843565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6128d7826125cf565b91506128e2836125cf565b92508282019050808211156128fa576128f96128a0565b5b92915050565b7f54617820616c72656164792072656475636564000000000000000000000000005f82015250565b5f6129346013836124d1565b915061293f82612900565b602082019050919050565b5f6020820190508181035f83015261296181612928565b9050919050565b7f6e6f7420617574686f72697a65640000000000000000000000000000000000005f82015250565b5f61299c600e836124d1565b91506129a782612968565b602082019050919050565b5f6020820190508181035f8301526129c981612990565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050612a38816125a5565b92915050565b5f60208284031215612a5357612a52612571565b5b5f612a6084828501612a2a565b91505092915050565b5f819050919050565b5f819050919050565b5f612a95612a90612a8b84612a69565b612a72565b6125cf565b9050919050565b612aa581612a7b565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b612add81612594565b82525050565b5f612aee8383612ad4565b60208301905092915050565b5f602082019050919050565b5f612b1082612aab565b612b1a8185612ab5565b9350612b2583612ac5565b805f5b83811015612b55578151612b3c8882612ae3565b9750612b4783612afa565b925050600181019050612b28565b5085935050505092915050565b5f60a082019050612b755f8301886126db565b612b826020830187612a9c565b8181036040830152612b948186612b06565b9050612ba36060830185612753565b612bb060808301846126db565b9695505050505050565b5f612bc4826125cf565b9150612bcf836125cf565b9250828202612bdd816125cf565b91508282048414831517612bf457612bf36128a0565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f612c32826125cf565b9150612c3d836125cf565b925082612c4d57612c4c612bfb565b5b828204905092915050565b5f612c62826125cf565b9150612c6d836125cf565b9250828203905081811115612c8557612c846128a0565b5b92915050565b5f81905092915050565b50565b5f612ca35f83612c8b565b9150612cae82612c95565b5f82019050919050565b5f612cc282612c98565b9150819050919050565b7f4661696c656420746f2073656e6420457468657220746f206d61726b6574696e5f8201527f672077616c6c6574000000000000000000000000000000000000000000000000602082015250565b5f612d266028836124d1565b9150612d3182612ccc565b604082019050919050565b5f6020820190508181035f830152612d5381612d1a565b9050919050565b7f4661696c656420746f2073656e6420457468657220746f206d616368696e654c5f8201527f6561726e696e672077616c6c6574000000000000000000000000000000000000602082015250565b5f612db4602e836124d1565b9150612dbf82612d5a565b604082019050919050565b5f6020820190508181035f830152612de181612da8565b9050919050565b7f4661696c656420746f2073656e6420457468657220746f2072657761726473205f8201527f77616c6c65740000000000000000000000000000000000000000000000000000602082015250565b5f612e426026836124d1565b9150612e4d82612de8565b604082019050919050565b5f6020820190508181035f830152612e6f81612e36565b9050919050565b7f56616c7565206d757374206265206c657373207468616e206f7220657175616c5f8201527f20746f20535550504c59202f2035300000000000000000000000000000000000602082015250565b5f612ed0602f836124d1565b9150612edb82612e76565b604082019050919050565b5f6020820190508181035f830152612efd81612ec4565b9050919050565b7f70616972206164647265737320616c72656164792073657400000000000000005f82015250565b5f612f386018836124d1565b9150612f4382612f04565b602082019050919050565b5f6020820190508181035f830152612f6581612f2c565b9050919050565b5f604082019050612f7f5f830185612753565b612f8c6020830184612753565b9392505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f612fed6025836124d1565b9150612ff882612f93565b604082019050919050565b5f6020820190508181035f83015261301a81612fe1565b9050919050565b7f50616972206e6f742063726561746564207965740000000000000000000000005f82015250565b5f6130556014836124d1565b915061306082613021565b602082019050919050565b5f6020820190508181035f83015261308281613049565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6130e36026836124d1565b91506130ee82613089565b604082019050919050565b5f6020820190508181035f830152613110816130d7565b9050919050565b7f4c696d69747320616c72656164792072656d6f766564000000000000000000005f82015250565b5f61314b6016836124d1565b915061315682613117565b602082019050919050565b5f6020820190508181035f8301526131788161313f565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6131d96024836124d1565b91506131e48261317f565b604082019050919050565b5f6020820190508181035f830152613206816131cd565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6132676022836124d1565b91506132728261320d565b604082019050919050565b5f6020820190508181035f8301526132948161325b565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6132cf6020836124d1565b91506132da8261329b565b602082019050919050565b5f6020820190508181035f8301526132fc816132c3565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f613337601d836124d1565b915061334282613303565b602082019050919050565b5f6020820190508181035f8301526133648161332b565b9050919050565b7f54726164696e67206973206e6f74206f70656e000000000000000000000000005f82015250565b5f61339f6013836124d1565b91506133aa8261336b565b602082019050919050565b5f6020820190508181035f8301526133cc81613393565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61342d6025836124d1565b9150613438826133d3565b604082019050919050565b5f6020820190508181035f83015261345a81613421565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6134bb6023836124d1565b91506134c682613461565b604082019050919050565b5f6020820190508181035f8301526134e8816134af565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6135496026836124d1565b9150613554826134ef565b604082019050919050565b5f6020820190508181035f8301526135768161353d565b905091905056fea264697066735822122074f179e54eb17f88eea469e8b22a19ccb0620fac4adb46084354541744586a2964736f6c63430008170033

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

000000000000000000000000bd3314e5791dc68993664febcc8a79e04350595d0000000000000000000000001cfcb553f4f72ec738464eddfd155048358ab43900000000000000000000000042b6a777e4945cbf97851e9c6e721c8e5649816d

-----Decoded View---------------
Arg [0] : _marketing (address): 0xBD3314E5791DC68993664Febcc8A79e04350595D
Arg [1] : _machineLearning (address): 0x1cfcB553f4F72Ec738464EDDfd155048358AB439
Arg [2] : _rewardsWallet (address): 0x42B6a777E4945cBF97851E9c6e721C8e5649816D

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000bd3314e5791dc68993664febcc8a79e04350595d
Arg [1] : 0000000000000000000000001cfcb553f4f72ec738464eddfd155048358ab439
Arg [2] : 00000000000000000000000042b6a777e4945cbf97851e9c6e721c8e5649816d


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.