ETH Price: $3,396.02 (+6.40%)
Gas: 19 Gwei

Token

BATMAN (BATMAN)
 

Overview

Max Total Supply

420,000,000,000,000 BATMAN

Holders

181

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
132,375,540,043.00558909115627165 BATMAN

Value
$0.00
0xf963dd43d6382fdea08b20c9b5ad4738535f7813
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:
BATMAN

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : batmandeploy.sol
/**
 *Submitted for verification at Etherscan.io on 2023-03-21
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.10;
pragma experimental ABIEncoderV2;

////// lib/openzeppelin-contracts/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.0 (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;
    }
}

////// lib/openzeppelin-contracts/contracts/access/Ownable.sol
// OpenZeppelin Contracts v4.4.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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

/* pragma solidity ^0.8.0; */

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, 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 `sender` to `recipient` 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 sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @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);
}

////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol
// OpenZeppelin Contracts v4.4.0 (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);
}

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, 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}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), 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}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - 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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * 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:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, 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;
        _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;
        }
        _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 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 {}
}

////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol
// OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol)

/* pragma solidity ^0.8.0; */

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

////// src/IUniswapV2Factory.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

////// src/IUniswapV2Pair.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

    function name() external pure returns (string memory);

    function symbol() external pure returns (string memory);

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

    function balanceOf(address owner) external view returns (uint256);

    function allowance(address owner, address spender)
        external
        view
        returns (uint256);

    function approve(address spender, uint256 value) external returns (bool);

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

    function nonces(address owner) external view returns (uint256);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function mint(address to) external returns (uint256 liquidity);

    function burn(address to)
        external
        returns (uint256 amount0, uint256 amount1);

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

////// src/IUniswapV2Router02.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

    function WETH() external pure returns (address);

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

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

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

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

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

/* pragma solidity >=0.8.10; */

/* import {IUniswapV2Router02} from "./IUniswapV2Router02.sol"; */
/* import {IUniswapV2Factory} from "./IUniswapV2Factory.sol"; */
/* import {IUniswapV2Pair} from "./IUniswapV2Pair.sol"; */
/* import {IERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol"; */
/* import {ERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol"; */
/* import {Ownable} from "lib/openzeppelin-contracts/contracts/access/Ownable.sol"; */
/* import {SafeMath} from "lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol"; */

contract BATMAN is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public constant deadAddress = address(0xdead);

    bool private swapping;

    address public marketingWallet;
    address public devWallet;

    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;

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

    // Anti-bot and anti-whale mappings and variables
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
    bool public transferDelayEnabled = true;

    uint256 public buyTotalFees;
    uint256 public buyMarketingFee;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;

    uint256 public sellTotalFees;
    uint256 public sellMarketingFee;
    uint256 public sellLiquidityFee;
    uint256 public sellDevFee;

    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;

    /******************/

    // deadblock
    uint256 public deadBlock;
    uint256 public constant feeDuration = 2;
    bool public isFeeUpdated = false;

    /******************/

    // exlcude from fees and max transaction amount
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;

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

    event UpdateUniswapV2Router(
        address indexed newAddress,
        address indexed oldAddress
    );

    event ExcludeFromFees(address indexed account, bool isExcluded);

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

    event marketingWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event devWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    event AutoNukeLP();

    event ManualNukeLP();

    constructor() ERC20("BATMAN", unicode"BATMAN") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        uint256 _buyMarketingFee = 1;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 99;

        uint256 _sellMarketingFee = 1;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 99;

        uint256 totalSupply = 420_000_000_000_000 * 10**18;

        maxTransactionAmount = 20_000_000 * 1e18; // 2% from total supply maxTransactionAmountTxn
        maxWallet = 20_000_000 * 1e18; // 2% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 10) / 10000; // 0.1% swap wallet

        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;

        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;

        marketingWallet = address(0x712bf6aB115E7cEf3511f77AfDB18f4A1D051857); // set as marketing wallet
        devWallet = address(0xa4b28bD1439a7cFFc6D109e74CcDbc0848De78bF); // set as dev wallet

        deadBlock = block.number; // set the initial deadblock

        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);

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

    receive() external payable {}

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
    }

    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool) {
        limitsInEffect = false;
        return true;
    }

    // disable Transfer delay - cannot be reenabled
    function disableTransferDelay() external onlyOwner returns (bool) {
        transferDelayEnabled = false;
        return true;
    }

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 5) / 1000,
            "Swap amount cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

    function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 1) / 1000) / 1e18,
            "Cannot set maxTransactionAmount lower than 0.1%"
        );
        maxTransactionAmount = newNum * (10**18);
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxWallet lower than 0.5%"
        );
        maxWallet = newNum * (10**18);
    }

    function excludeFromMaxTransaction(address updAds, bool isEx)
        public
        onlyOwner
    {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner {
        swapEnabled = enabled;
    }

    function updateBuyFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        isFeeUpdated = true;

        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
        require(buyTotalFees <= 40, "Must keep fees at 40% or less");
    }

    function updateSellFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        isFeeUpdated = true;

        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
        require(sellTotalFees <= 40, "Must keep fees at 40% or less");
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    function setAutomatedMarketMakerPair(address pair, bool value)
        public
        onlyOwner
    {
        require(
            pair != uniswapV2Pair,
            "The pair cannot be removed from automatedMarketMakerPairs"
        );

        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;
        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateMarketingWallet(address newMarketingWallet)
        external
        onlyOwner
    {
        emit marketingWalletUpdated(newMarketingWallet, marketingWallet);
        marketingWallet = newMarketingWallet;
    }

    function updateDevWallet(address newWallet) external onlyOwner {
        emit devWalletUpdated(newWallet, devWallet);
        devWallet = newWallet;
    }

    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

    event BoughtEarly(address indexed sniper);

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

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

        if (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!tradingActive) {
                    require(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to],
                        "Trading is not active."
                    );
                }

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
                if (transferDelayEnabled) {
                    if (
                        to != owner() &&
                        to != address(uniswapV2Router) &&
                        to != address(uniswapV2Pair)
                    ) {
                        require(
                            _holderLastTransferTimestamp[tx.origin] <
                                block.number,
                            "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed."
                        );
                        _holderLastTransferTimestamp[tx.origin] = block.number;
                    }
                }

                //when buy
                if (
                    automatedMarketMakerPairs[from] &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Buy transfer amount exceeds the maxTransactionAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
                //when sell
                else if (
                    automatedMarketMakerPairs[to] &&
                    !_isExcludedMaxTransactionAmount[from]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Sell transfer amount exceeds the maxTransactionAmount."
                    );
                } else if (!_isExcludedMaxTransactionAmount[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (
            canSwap &&
            swapEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

        // set deadblock when add initial lp
        if(automatedMarketMakerPairs[to] && from == owner()){
            deadBlock = block.number;
        }

        // check if we are in a fee period and adjust fee accordingly
        if(!isFeeUpdated){
            // until fee is updated
            if (block.number >= (deadBlock + feeDuration)) {
                buyMarketingFee = 7;
                buyLiquidityFee = 0;
                buyDevFee = 8;
                buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;

                sellMarketingFee = 15;
                sellLiquidityFee = 0;
                sellDevFee = 15;
                sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
            }
        }

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForDev += (fees * sellDevFee) / sellTotalFees;
                tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForDev += (fees * buyDevFee) / buyTotalFees;
                tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees;
            }

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

            amount -= fees;
        }

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

    function swapTokensForEth(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            deadAddress,
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity +
            tokensForMarketing +
            tokensForDev;
        bool success;

        if (contractBalance == 0 || totalTokensToSwap == 0) {
            return;
        }

        if (contractBalance > swapTokensAtAmount * 20) {
            contractBalance = swapTokensAtAmount * 20;
        }

        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = (contractBalance * tokensForLiquidity) /
            totalTokensToSwap /
            2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

        uint256 ethBalance = address(this).balance.sub(initialETHBalance);

        uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(
            totalTokensToSwap
        );
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;

        tokensForLiquidity = 0;
        tokensForMarketing = 0;
        tokensForDev = 0;

        (success, ) = address(devWallet).call{value: ethForDev}("");

        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(
                amountToSwapForETH,
                ethForLiquidity,
                tokensForLiquidity
            );
        }

        (success, ) = address(marketingWallet).call{
            value: address(this).balance
        }("");
    }

}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[],"name":"ManualNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isFeeUpdated","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","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":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526001600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff0219169083151502179055506000600b60026101000a81548160ff0219169083151502179055506001600d60006101000a81548160ff0219169083151502179055506000601a60006101000a81548160ff0219169083151502179055503480156200009857600080fd5b506040518060400160405280600681526020017f4241544d414e00000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f4241544d414e0000000000000000000000000000000000000000000000000000815250816003908162000116919062000d78565b50806004908162000128919062000d78565b5050506200014b6200013f620005bf60201b60201c565b620005c760201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001778160016200068d60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001f7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200021d919062000ec9565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000285573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ab919062000ec9565b6040518363ffffffff1660e01b8152600401620002ca92919062000f0c565b6020604051808303816000875af1158015620002ea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000310919062000ec9565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200035860a05160016200068d60201b60201c565b6200036d60a05160016200077760201b60201c565b600060019050600080606390506000600190506000806063905060006d14b5253145b397d654510000000090506a108b2a2c280290940000006008819055506a108b2a2c28029094000000600a81905550612710600a82620003d0919062000f68565b620003dc919062000ff8565b60098190555086600f819055508560108190555084601181905550601154601054600f546200040c919062001030565b62000418919062001030565b600e8190555083601381905550826014819055508160158190555060155460145460135462000448919062001030565b62000454919062001030565b60128190555073712bf6ab115e7cef3511f77afdb18f4a1d051857600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073a4b28bd1439a7cffc6d109e74ccdbc0848de78bf600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550436019819055506200052d6200051f6200081860201b60201c565b60016200084260201b60201c565b620005403060016200084260201b60201c565b6200055561dead60016200084260201b60201c565b62000577620005696200081860201b60201c565b60016200068d60201b60201c565b6200058a3060016200068d60201b60201c565b6200059f61dead60016200068d60201b60201c565b620005b133826200097c60201b60201c565b5050505050505050620011ea565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200069d620005bf60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620006c36200081860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200071c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200071390620010ee565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b62000852620005bf60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008786200081860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620008d1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008c890620010ee565b60405180910390fd5b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516200097091906200112d565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620009ee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009e5906200119a565b60405180910390fd5b62000a026000838362000af460201b60201c565b806002600082825462000a16919062001030565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000a6d919062001030565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000ad49190620011cd565b60405180910390a362000af06000838362000af960201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000b8057607f821691505b60208210810362000b965762000b9562000b38565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000c007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000bc1565b62000c0c868362000bc1565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000c5962000c5362000c4d8462000c24565b62000c2e565b62000c24565b9050919050565b6000819050919050565b62000c758362000c38565b62000c8d62000c848262000c60565b84845462000bce565b825550505050565b600090565b62000ca462000c95565b62000cb181848462000c6a565b505050565b5b8181101562000cd95762000ccd60008262000c9a565b60018101905062000cb7565b5050565b601f82111562000d285762000cf28162000b9c565b62000cfd8462000bb1565b8101602085101562000d0d578190505b62000d2562000d1c8562000bb1565b83018262000cb6565b50505b505050565b600082821c905092915050565b600062000d4d6000198460080262000d2d565b1980831691505092915050565b600062000d68838362000d3a565b9150826002028217905092915050565b62000d838262000afe565b67ffffffffffffffff81111562000d9f5762000d9e62000b09565b5b62000dab825462000b67565b62000db882828562000cdd565b600060209050601f83116001811462000df0576000841562000ddb578287015190505b62000de7858262000d5a565b86555062000e57565b601f19841662000e008662000b9c565b60005b8281101562000e2a5784890151825560018201915060208501945060208101905062000e03565b8683101562000e4a578489015162000e46601f89168262000d3a565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000e918262000e64565b9050919050565b62000ea38162000e84565b811462000eaf57600080fd5b50565b60008151905062000ec38162000e98565b92915050565b60006020828403121562000ee25762000ee162000e5f565b5b600062000ef28482850162000eb2565b91505092915050565b62000f068162000e84565b82525050565b600060408201905062000f23600083018562000efb565b62000f32602083018462000efb565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000f758262000c24565b915062000f828362000c24565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000fbe5762000fbd62000f39565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620010058262000c24565b9150620010128362000c24565b92508262001025576200102462000fc9565b5b828204905092915050565b60006200103d8262000c24565b91506200104a8362000c24565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562001082576200108162000f39565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620010d66020836200108d565b9150620010e3826200109e565b602082019050919050565b600060208201905081810360008301526200110981620010c7565b9050919050565b60008115159050919050565b620011278162001110565b82525050565b60006020820190506200114460008301846200111c565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001182601f836200108d565b91506200118f826200114a565b602082019050919050565b60006020820190508181036000830152620011b58162001173565b9050919050565b620011c78162000c24565b82525050565b6000602082019050620011e46000830184620011bc565b92915050565b60805160a05161527c62001248600039600081816112b0015281816119ad015261294f015260008181610e73015281816128f701528181613b2201528181613c0301528181613c2a01528181613cc60152613ced015261527c6000f3fe60806040526004361061037a5760003560e01c80638a8c523c116101d1578063bbc0c74211610102578063d85ba063116100a0578063f11a24d31161006f578063f11a24d314610cf7578063f2fde38b14610d22578063f637434214610d4b578063f8b45b0514610d7657610381565b8063d85ba06314610c39578063dd62ed3e14610c64578063e2f4560514610ca1578063e884f26014610ccc57610381565b8063c18bc195116100dc578063c18bc19514610b7d578063c876d0b914610ba6578063c8c8ebe414610bd1578063d257b34f14610bfc57610381565b8063bbc0c74214610b00578063c024666814610b2b578063c17b5b8c14610b5457610381565b80639c3b4fdc1161016f578063a457c2d711610149578063a457c2d714610a20578063a9059cbb14610a5d578063aacebbe314610a9a578063b62496f514610ac357610381565b80639c3b4fdc1461099f5780639fccce32146109ca578063a0d82dc5146109f557610381565b806392136913116101ab57806392136913146108f7578063924de9b71461092257806395d89b411461094b5780639a7a23d61461097657610381565b80638a8c523c1461088a5780638da5cb5b146108a15780638ea5220f146108cc57610381565b806349bd5a5e116102ab578063751039fc116102495780637bce5a04116102235780637bce5a04146107e05780637c7d09ff1461080b5780638095d56414610836578063877f4de51461085f57610381565b8063751039fc146107615780637571336a1461078c57806375f0a874146107b557610381565b80636a486a8e116102855780636a486a8e146106b75780636ddd1713146106e257806370a082311461070d578063715018a61461074a57610381565b806349bd5a5e146106245780634a62bb651461064f5780634fbee1931461067a57610381565b80631f3fed8f1161031857806327c8f835116102f257806327c8f83514610566578063313ce5671461059157806332ef9c87146105bc57806339509351146105e757610381565b80631f3fed8f146104d5578063203e727e1461050057806323b872dd1461052957610381565b80631694505e116103545780631694505e1461042b57806318160ddd146104565780631816467f146104815780631a8145bb146104aa57610381565b806306fdde0314610386578063095ea7b3146103b157806310d5de53146103ee57610381565b3661038157005b600080fd5b34801561039257600080fd5b5061039b610da1565b6040516103a89190613e35565b60405180910390f35b3480156103bd57600080fd5b506103d860048036038101906103d39190613ef0565b610e33565b6040516103e59190613f4b565b60405180910390f35b3480156103fa57600080fd5b5061041560048036038101906104109190613f66565b610e51565b6040516104229190613f4b565b60405180910390f35b34801561043757600080fd5b50610440610e71565b60405161044d9190613ff2565b60405180910390f35b34801561046257600080fd5b5061046b610e95565b604051610478919061401c565b60405180910390f35b34801561048d57600080fd5b506104a860048036038101906104a39190613f66565b610e9f565b005b3480156104b657600080fd5b506104bf610fdb565b6040516104cc919061401c565b60405180910390f35b3480156104e157600080fd5b506104ea610fe1565b6040516104f7919061401c565b60405180910390f35b34801561050c57600080fd5b5061052760048036038101906105229190614037565b610fe7565b005b34801561053557600080fd5b50610550600480360381019061054b9190614064565b6110f6565b60405161055d9190613f4b565b60405180910390f35b34801561057257600080fd5b5061057b6111ee565b60405161058891906140c6565b60405180910390f35b34801561059d57600080fd5b506105a66111f4565b6040516105b391906140fd565b60405180910390f35b3480156105c857600080fd5b506105d16111fd565b6040516105de919061401c565b60405180910390f35b3480156105f357600080fd5b5061060e60048036038101906106099190613ef0565b611202565b60405161061b9190613f4b565b60405180910390f35b34801561063057600080fd5b506106396112ae565b60405161064691906140c6565b60405180910390f35b34801561065b57600080fd5b506106646112d2565b6040516106719190613f4b565b60405180910390f35b34801561068657600080fd5b506106a1600480360381019061069c9190613f66565b6112e5565b6040516106ae9190613f4b565b60405180910390f35b3480156106c357600080fd5b506106cc61133b565b6040516106d9919061401c565b60405180910390f35b3480156106ee57600080fd5b506106f7611341565b6040516107049190613f4b565b60405180910390f35b34801561071957600080fd5b50610734600480360381019061072f9190613f66565b611354565b604051610741919061401c565b60405180910390f35b34801561075657600080fd5b5061075f61139c565b005b34801561076d57600080fd5b50610776611424565b6040516107839190613f4b565b60405180910390f35b34801561079857600080fd5b506107b360048036038101906107ae9190614144565b6114c4565b005b3480156107c157600080fd5b506107ca61159b565b6040516107d791906140c6565b60405180910390f35b3480156107ec57600080fd5b506107f56115c1565b604051610802919061401c565b60405180910390f35b34801561081757600080fd5b506108206115c7565b60405161082d9190613f4b565b60405180910390f35b34801561084257600080fd5b5061085d60048036038101906108589190614184565b6115da565b005b34801561086b57600080fd5b506108746116f4565b604051610881919061401c565b60405180910390f35b34801561089657600080fd5b5061089f6116fa565b005b3480156108ad57600080fd5b506108b66117ae565b6040516108c391906140c6565b60405180910390f35b3480156108d857600080fd5b506108e16117d8565b6040516108ee91906140c6565b60405180910390f35b34801561090357600080fd5b5061090c6117fe565b604051610919919061401c565b60405180910390f35b34801561092e57600080fd5b50610949600480360381019061094491906141d7565b611804565b005b34801561095757600080fd5b5061096061189d565b60405161096d9190613e35565b60405180910390f35b34801561098257600080fd5b5061099d60048036038101906109989190614144565b61192f565b005b3480156109ab57600080fd5b506109b4611a47565b6040516109c1919061401c565b60405180910390f35b3480156109d657600080fd5b506109df611a4d565b6040516109ec919061401c565b60405180910390f35b348015610a0157600080fd5b50610a0a611a53565b604051610a17919061401c565b60405180910390f35b348015610a2c57600080fd5b50610a476004803603810190610a429190613ef0565b611a59565b604051610a549190613f4b565b60405180910390f35b348015610a6957600080fd5b50610a846004803603810190610a7f9190613ef0565b611b44565b604051610a919190613f4b565b60405180910390f35b348015610aa657600080fd5b50610ac16004803603810190610abc9190613f66565b611b62565b005b348015610acf57600080fd5b50610aea6004803603810190610ae59190613f66565b611c9e565b604051610af79190613f4b565b60405180910390f35b348015610b0c57600080fd5b50610b15611cbe565b604051610b229190613f4b565b60405180910390f35b348015610b3757600080fd5b50610b526004803603810190610b4d9190614144565b611cd1565b005b348015610b6057600080fd5b50610b7b6004803603810190610b769190614184565b611df6565b005b348015610b8957600080fd5b50610ba46004803603810190610b9f9190614037565b611f10565b005b348015610bb257600080fd5b50610bbb61201f565b604051610bc89190613f4b565b60405180910390f35b348015610bdd57600080fd5b50610be6612032565b604051610bf3919061401c565b60405180910390f35b348015610c0857600080fd5b50610c236004803603810190610c1e9190614037565b612038565b604051610c309190613f4b565b60405180910390f35b348015610c4557600080fd5b50610c4e61218d565b604051610c5b919061401c565b60405180910390f35b348015610c7057600080fd5b50610c8b6004803603810190610c869190614204565b612193565b604051610c98919061401c565b60405180910390f35b348015610cad57600080fd5b50610cb661221a565b604051610cc3919061401c565b60405180910390f35b348015610cd857600080fd5b50610ce1612220565b604051610cee9190613f4b565b60405180910390f35b348015610d0357600080fd5b50610d0c6122c0565b604051610d19919061401c565b60405180910390f35b348015610d2e57600080fd5b50610d496004803603810190610d449190613f66565b6122c6565b005b348015610d5757600080fd5b50610d606123bd565b604051610d6d919061401c565b60405180910390f35b348015610d8257600080fd5b50610d8b6123c3565b604051610d98919061401c565b60405180910390f35b606060038054610db090614273565b80601f0160208091040260200160405190810160405280929190818152602001828054610ddc90614273565b8015610e295780601f10610dfe57610100808354040283529160200191610e29565b820191906000526020600020905b815481529060010190602001808311610e0c57829003601f168201915b5050505050905090565b6000610e47610e406123c9565b84846123d1565b6001905092915050565b601c6020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610ea76123c9565b73ffffffffffffffffffffffffffffffffffffffff16610ec56117ae565b73ffffffffffffffffffffffffffffffffffffffff1614610f1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f12906142f0565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60175481565b60165481565b610fef6123c9565b73ffffffffffffffffffffffffffffffffffffffff1661100d6117ae565b73ffffffffffffffffffffffffffffffffffffffff1614611063576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105a906142f0565b60405180910390fd5b670de0b6b3a76400006103e86001611079610e95565b611083919061433f565b61108d91906143c8565b61109791906143c8565b8110156110d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d09061446b565b60405180910390fd5b670de0b6b3a7640000816110ed919061433f565b60088190555050565b600061110384848461259a565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061114e6123c9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156111ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c5906144fd565b60405180910390fd5b6111e2856111da6123c9565b8584036123d1565b60019150509392505050565b61dead81565b60006012905090565b600281565b60006112a461120f6123c9565b84846001600061121d6123c9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461129f919061451d565b6123d1565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b60009054906101000a900460ff1681565b6000601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60125481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113a46123c9565b73ffffffffffffffffffffffffffffffffffffffff166113c26117ae565b73ffffffffffffffffffffffffffffffffffffffff1614611418576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140f906142f0565b60405180910390fd5b611422600061336a565b565b600061142e6123c9565b73ffffffffffffffffffffffffffffffffffffffff1661144c6117ae565b73ffffffffffffffffffffffffffffffffffffffff16146114a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611499906142f0565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b6114cc6123c9565b73ffffffffffffffffffffffffffffffffffffffff166114ea6117ae565b73ffffffffffffffffffffffffffffffffffffffff1614611540576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611537906142f0565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f5481565b601a60009054906101000a900460ff1681565b6115e26123c9565b73ffffffffffffffffffffffffffffffffffffffff166116006117ae565b73ffffffffffffffffffffffffffffffffffffffff1614611656576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164d906142f0565b60405180910390fd5b6001601a60006101000a81548160ff02191690831515021790555082600f819055508160108190555080601181905550601154601054600f54611699919061451d565b6116a3919061451d565b600e819055506028600e5411156116ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e6906145bf565b60405180910390fd5b505050565b60195481565b6117026123c9565b73ffffffffffffffffffffffffffffffffffffffff166117206117ae565b73ffffffffffffffffffffffffffffffffffffffff1614611776576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176d906142f0565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60135481565b61180c6123c9565b73ffffffffffffffffffffffffffffffffffffffff1661182a6117ae565b73ffffffffffffffffffffffffffffffffffffffff1614611880576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611877906142f0565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b6060600480546118ac90614273565b80601f01602080910402602001604051908101604052809291908181526020018280546118d890614273565b80156119255780601f106118fa57610100808354040283529160200191611925565b820191906000526020600020905b81548152906001019060200180831161190857829003601f168201915b5050505050905090565b6119376123c9565b73ffffffffffffffffffffffffffffffffffffffff166119556117ae565b73ffffffffffffffffffffffffffffffffffffffff16146119ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a2906142f0565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3090614651565b60405180910390fd5b611a438282613430565b5050565b60115481565b60185481565b60155481565b60008060016000611a686123c9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611b25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1c906146e3565b60405180910390fd5b611b39611b306123c9565b858584036123d1565b600191505092915050565b6000611b58611b516123c9565b848461259a565b6001905092915050565b611b6a6123c9565b73ffffffffffffffffffffffffffffffffffffffff16611b886117ae565b73ffffffffffffffffffffffffffffffffffffffff1614611bde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd5906142f0565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601d6020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b611cd96123c9565b73ffffffffffffffffffffffffffffffffffffffff16611cf76117ae565b73ffffffffffffffffffffffffffffffffffffffff1614611d4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d44906142f0565b60405180910390fd5b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611dea9190613f4b565b60405180910390a25050565b611dfe6123c9565b73ffffffffffffffffffffffffffffffffffffffff16611e1c6117ae565b73ffffffffffffffffffffffffffffffffffffffff1614611e72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e69906142f0565b60405180910390fd5b6001601a60006101000a81548160ff021916908315150217905550826013819055508160148190555080601581905550601554601454601354611eb5919061451d565b611ebf919061451d565b60128190555060286012541115611f0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f02906145bf565b60405180910390fd5b505050565b611f186123c9565b73ffffffffffffffffffffffffffffffffffffffff16611f366117ae565b73ffffffffffffffffffffffffffffffffffffffff1614611f8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f83906142f0565b60405180910390fd5b670de0b6b3a76400006103e86005611fa2610e95565b611fac919061433f565b611fb691906143c8565b611fc091906143c8565b811015612002576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff990614775565b60405180910390fd5b670de0b6b3a764000081612016919061433f565b600a8190555050565b600d60009054906101000a900460ff1681565b60085481565b60006120426123c9565b73ffffffffffffffffffffffffffffffffffffffff166120606117ae565b73ffffffffffffffffffffffffffffffffffffffff16146120b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ad906142f0565b60405180910390fd5b620186a060016120c4610e95565b6120ce919061433f565b6120d891906143c8565b82101561211a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211190614807565b60405180910390fd5b6103e86005612127610e95565b612131919061433f565b61213b91906143c8565b82111561217d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217490614899565b60405180910390fd5b8160098190555060019050919050565b600e5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600061222a6123c9565b73ffffffffffffffffffffffffffffffffffffffff166122486117ae565b73ffffffffffffffffffffffffffffffffffffffff161461229e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612295906142f0565b60405180910390fd5b6000600d60006101000a81548160ff0219169083151502179055506001905090565b60105481565b6122ce6123c9565b73ffffffffffffffffffffffffffffffffffffffff166122ec6117ae565b73ffffffffffffffffffffffffffffffffffffffff1614612342576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612339906142f0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036123b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a89061492b565b60405180910390fd5b6123ba8161336a565b50565b60145481565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612440576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612437906149bd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036124af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a690614a4f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161258d919061401c565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612609576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260090614ae1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612678576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266f90614b73565b60405180910390fd5b600081036126915761268c838360006134d1565b613365565b600b60009054906101000a900460ff1615612d54576126ae6117ae565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561271c57506126ec6117ae565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156127555750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561278f575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156127a85750600560149054906101000a900460ff16155b15612d5357600b60019054906101000a900460ff166128a257601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806128625750601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6128a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289890614bdf565b60405180910390fd5b5b600d60009054906101000a900460ff1615612a6a576128bf6117ae565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561294657507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561299e57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612a695743600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612a24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1b90614c97565b60405180910390fd5b43600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612b0d5750601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612bb457600854811115612b57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4e90614d29565b60405180910390fd5b600a54612b6383611354565b82612b6e919061451d565b1115612baf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ba690614d95565b60405180910390fd5b612d52565b601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612c575750601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612ca657600854811115612ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c9890614e27565b60405180910390fd5b612d51565b601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612d5057600a54612d0383611354565b82612d0e919061451d565b1115612d4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d4690614d95565b60405180910390fd5b5b5b5b5b5b6000612d5f30611354565b905060006009548210159050808015612d845750600b60029054906101000a900460ff165b8015612d9d5750600560149054906101000a900460ff16155b8015612df35750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612e495750601b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612e9f5750601b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612ee3576001600560146101000a81548160ff021916908315150217905550612ec7613750565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612f835750612f546117ae565b73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16145b15612f9057436019819055505b601a60009054906101000a900460ff16613031576002601954612fb3919061451d565b4310613030576007600f8190555060006010819055506008601181905550601154601054600f54612fe4919061451d565b612fee919061451d565b600e81905550600f6013819055506000601481905550600f60158190555060155460145460135461301f919061451d565b613029919061451d565b6012819055505b5b601b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806130d25750601b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156130dc57600090505b6000811561335557601d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561313f57506000601254115b1561320c5761316c606461315e60125488613a3790919063ffffffff16565b613a4d90919063ffffffff16565b90506012546014548261317f919061433f565b61318991906143c8565b6017600082825461319a919061451d565b92505081905550601254601554826131b2919061433f565b6131bc91906143c8565b601860008282546131cd919061451d565b92505081905550601254601354826131e5919061433f565b6131ef91906143c8565b60166000828254613200919061451d565b92505081905550613331565b601d60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561326757506000600e54115b15613330576132946064613286600e5488613a3790919063ffffffff16565b613a4d90919063ffffffff16565b9050600e54601054826132a7919061433f565b6132b191906143c8565b601760008282546132c2919061451d565b92505081905550600e54601154826132da919061433f565b6132e491906143c8565b601860008282546132f5919061451d565b92505081905550600e54600f548261330d919061433f565b61331791906143c8565b60166000828254613328919061451d565b925050819055505b5b6000811115613346576133458730836134d1565b5b80856133529190614e47565b94505b6133608787876134d1565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613540576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161353790614ae1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036135af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135a690614b73565b60405180910390fd5b6135ba838383613a63565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613640576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161363790614eed565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546136d3919061451d565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613737919061401c565b60405180910390a361374a848484613a68565b50505050565b600061375b30611354565b90506000601854601654601754613772919061451d565b61377c919061451d565b905060008083148061378e5750600082145b1561379b57505050613a35565b60146009546137aa919061433f565b8311156137c35760146009546137c0919061433f565b92505b6000600283601754866137d6919061433f565b6137e091906143c8565b6137ea91906143c8565b905060006138018286613a6d90919063ffffffff16565b9050600047905061381182613a83565b60006138268247613a6d90919063ffffffff16565b905060006138518761384360165485613a3790919063ffffffff16565b613a4d90919063ffffffff16565b9050600061387c8861386e60185486613a3790919063ffffffff16565b613a4d90919063ffffffff16565b9050600081838561388d9190614e47565b6138979190614e47565b9050600060178190555060006016819055506000601881905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516138f790614f3e565b60006040518083038185875af1925050503d8060008114613934576040519150601f19603f3d011682016040523d82523d6000602084013e613939565b606091505b50508098505060008711801561394f5750600081115b1561399c5761395e8782613cc0565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561868260175460405161399393929190614f53565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516139e290614f3e565b60006040518083038185875af1925050503d8060008114613a1f576040519150601f19603f3d011682016040523d82523d6000602084013e613a24565b606091505b505080985050505050505050505050505b565b60008183613a45919061433f565b905092915050565b60008183613a5b91906143c8565b905092915050565b505050565b505050565b60008183613a7b9190614e47565b905092915050565b6000600267ffffffffffffffff811115613aa057613a9f614f8a565b5b604051908082528060200260200182016040528015613ace5781602001602082028036833780820191505090505b5090503081600081518110613ae657613ae5614fb9565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613b8b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613baf9190614ffd565b81600181518110613bc357613bc2614fb9565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613c28307f0000000000000000000000000000000000000000000000000000000000000000846123d1565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613c8a959493929190615123565b600060405180830381600087803b158015613ca457600080fd5b505af1158015613cb8573d6000803e3d6000fd5b505050505050565b613ceb307f0000000000000000000000000000000000000000000000000000000000000000846123d1565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401613d529695949392919061517d565b60606040518083038185885af1158015613d70573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613d9591906151f3565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613dd6578082015181840152602081019050613dbb565b83811115613de5576000848401525b50505050565b6000601f19601f8301169050919050565b6000613e0782613d9c565b613e118185613da7565b9350613e21818560208601613db8565b613e2a81613deb565b840191505092915050565b60006020820190508181036000830152613e4f8184613dfc565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613e8782613e5c565b9050919050565b613e9781613e7c565b8114613ea257600080fd5b50565b600081359050613eb481613e8e565b92915050565b6000819050919050565b613ecd81613eba565b8114613ed857600080fd5b50565b600081359050613eea81613ec4565b92915050565b60008060408385031215613f0757613f06613e57565b5b6000613f1585828601613ea5565b9250506020613f2685828601613edb565b9150509250929050565b60008115159050919050565b613f4581613f30565b82525050565b6000602082019050613f606000830184613f3c565b92915050565b600060208284031215613f7c57613f7b613e57565b5b6000613f8a84828501613ea5565b91505092915050565b6000819050919050565b6000613fb8613fb3613fae84613e5c565b613f93565b613e5c565b9050919050565b6000613fca82613f9d565b9050919050565b6000613fdc82613fbf565b9050919050565b613fec81613fd1565b82525050565b60006020820190506140076000830184613fe3565b92915050565b61401681613eba565b82525050565b6000602082019050614031600083018461400d565b92915050565b60006020828403121561404d5761404c613e57565b5b600061405b84828501613edb565b91505092915050565b60008060006060848603121561407d5761407c613e57565b5b600061408b86828701613ea5565b935050602061409c86828701613ea5565b92505060406140ad86828701613edb565b9150509250925092565b6140c081613e7c565b82525050565b60006020820190506140db60008301846140b7565b92915050565b600060ff82169050919050565b6140f7816140e1565b82525050565b600060208201905061411260008301846140ee565b92915050565b61412181613f30565b811461412c57600080fd5b50565b60008135905061413e81614118565b92915050565b6000806040838503121561415b5761415a613e57565b5b600061416985828601613ea5565b925050602061417a8582860161412f565b9150509250929050565b60008060006060848603121561419d5761419c613e57565b5b60006141ab86828701613edb565b93505060206141bc86828701613edb565b92505060406141cd86828701613edb565b9150509250925092565b6000602082840312156141ed576141ec613e57565b5b60006141fb8482850161412f565b91505092915050565b6000806040838503121561421b5761421a613e57565b5b600061422985828601613ea5565b925050602061423a85828601613ea5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061428b57607f821691505b60208210810361429e5761429d614244565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006142da602083613da7565b91506142e5826142a4565b602082019050919050565b60006020820190508181036000830152614309816142cd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061434a82613eba565b915061435583613eba565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561438e5761438d614310565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006143d382613eba565b91506143de83613eba565b9250826143ee576143ed614399565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614455602f83613da7565b9150614460826143f9565b604082019050919050565b6000602082019050818103600083015261448481614448565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006144e7602883613da7565b91506144f28261448b565b604082019050919050565b60006020820190508181036000830152614516816144da565b9050919050565b600061452882613eba565b915061453383613eba565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561456857614567614310565b5b828201905092915050565b7f4d757374206b656570206665657320617420343025206f72206c657373000000600082015250565b60006145a9601d83613da7565b91506145b482614573565b602082019050919050565b600060208201905081810360008301526145d88161459c565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b600061463b603983613da7565b9150614646826145df565b604082019050919050565b6000602082019050818103600083015261466a8161462e565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006146cd602583613da7565b91506146d882614671565b604082019050919050565b600060208201905081810360008301526146fc816146c0565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b600061475f602483613da7565b915061476a82614703565b604082019050919050565b6000602082019050818103600083015261478e81614752565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006147f1603583613da7565b91506147fc82614795565b604082019050919050565b60006020820190508181036000830152614820816147e4565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614883603483613da7565b915061488e82614827565b604082019050919050565b600060208201905081810360008301526148b281614876565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614915602683613da7565b9150614920826148b9565b604082019050919050565b6000602082019050818103600083015261494481614908565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006149a7602483613da7565b91506149b28261494b565b604082019050919050565b600060208201905081810360008301526149d68161499a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614a39602283613da7565b9150614a44826149dd565b604082019050919050565b60006020820190508181036000830152614a6881614a2c565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614acb602583613da7565b9150614ad682614a6f565b604082019050919050565b60006020820190508181036000830152614afa81614abe565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614b5d602383613da7565b9150614b6882614b01565b604082019050919050565b60006020820190508181036000830152614b8c81614b50565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614bc9601683613da7565b9150614bd482614b93565b602082019050919050565b60006020820190508181036000830152614bf881614bbc565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614c81604983613da7565b9150614c8c82614bff565b606082019050919050565b60006020820190508181036000830152614cb081614c74565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614d13603583613da7565b9150614d1e82614cb7565b604082019050919050565b60006020820190508181036000830152614d4281614d06565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614d7f601383613da7565b9150614d8a82614d49565b602082019050919050565b60006020820190508181036000830152614dae81614d72565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614e11603683613da7565b9150614e1c82614db5565b604082019050919050565b60006020820190508181036000830152614e4081614e04565b9050919050565b6000614e5282613eba565b9150614e5d83613eba565b925082821015614e7057614e6f614310565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614ed7602683613da7565b9150614ee282614e7b565b604082019050919050565b60006020820190508181036000830152614f0681614eca565b9050919050565b600081905092915050565b50565b6000614f28600083614f0d565b9150614f3382614f18565b600082019050919050565b6000614f4982614f1b565b9150819050919050565b6000606082019050614f68600083018661400d565b614f75602083018561400d565b614f82604083018461400d565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614ff781613e8e565b92915050565b60006020828403121561501357615012613e57565b5b600061502184828501614fe8565b91505092915050565b6000819050919050565b600061504f61504a6150458461502a565b613f93565b613eba565b9050919050565b61505f81615034565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61509a81613e7c565b82525050565b60006150ac8383615091565b60208301905092915050565b6000602082019050919050565b60006150d082615065565b6150da8185615070565b93506150e583615081565b8060005b838110156151165781516150fd88826150a0565b9750615108836150b8565b9250506001810190506150e9565b5085935050505092915050565b600060a082019050615138600083018861400d565b6151456020830187615056565b818103604083015261515781866150c5565b905061516660608301856140b7565b615173608083018461400d565b9695505050505050565b600060c08201905061519260008301896140b7565b61519f602083018861400d565b6151ac6040830187615056565b6151b96060830186615056565b6151c660808301856140b7565b6151d360a083018461400d565b979650505050505050565b6000815190506151ed81613ec4565b92915050565b60008060006060848603121561520c5761520b613e57565b5b600061521a868287016151de565b935050602061522b868287016151de565b925050604061523c868287016151de565b915050925092509256fea2646970667358221220fd8e2582f0cb1684178c09c75935736413e2ac0b10cfa25911174c461b517fcd64736f6c634300080f0033

Deployed Bytecode

0x60806040526004361061037a5760003560e01c80638a8c523c116101d1578063bbc0c74211610102578063d85ba063116100a0578063f11a24d31161006f578063f11a24d314610cf7578063f2fde38b14610d22578063f637434214610d4b578063f8b45b0514610d7657610381565b8063d85ba06314610c39578063dd62ed3e14610c64578063e2f4560514610ca1578063e884f26014610ccc57610381565b8063c18bc195116100dc578063c18bc19514610b7d578063c876d0b914610ba6578063c8c8ebe414610bd1578063d257b34f14610bfc57610381565b8063bbc0c74214610b00578063c024666814610b2b578063c17b5b8c14610b5457610381565b80639c3b4fdc1161016f578063a457c2d711610149578063a457c2d714610a20578063a9059cbb14610a5d578063aacebbe314610a9a578063b62496f514610ac357610381565b80639c3b4fdc1461099f5780639fccce32146109ca578063a0d82dc5146109f557610381565b806392136913116101ab57806392136913146108f7578063924de9b71461092257806395d89b411461094b5780639a7a23d61461097657610381565b80638a8c523c1461088a5780638da5cb5b146108a15780638ea5220f146108cc57610381565b806349bd5a5e116102ab578063751039fc116102495780637bce5a04116102235780637bce5a04146107e05780637c7d09ff1461080b5780638095d56414610836578063877f4de51461085f57610381565b8063751039fc146107615780637571336a1461078c57806375f0a874146107b557610381565b80636a486a8e116102855780636a486a8e146106b75780636ddd1713146106e257806370a082311461070d578063715018a61461074a57610381565b806349bd5a5e146106245780634a62bb651461064f5780634fbee1931461067a57610381565b80631f3fed8f1161031857806327c8f835116102f257806327c8f83514610566578063313ce5671461059157806332ef9c87146105bc57806339509351146105e757610381565b80631f3fed8f146104d5578063203e727e1461050057806323b872dd1461052957610381565b80631694505e116103545780631694505e1461042b57806318160ddd146104565780631816467f146104815780631a8145bb146104aa57610381565b806306fdde0314610386578063095ea7b3146103b157806310d5de53146103ee57610381565b3661038157005b600080fd5b34801561039257600080fd5b5061039b610da1565b6040516103a89190613e35565b60405180910390f35b3480156103bd57600080fd5b506103d860048036038101906103d39190613ef0565b610e33565b6040516103e59190613f4b565b60405180910390f35b3480156103fa57600080fd5b5061041560048036038101906104109190613f66565b610e51565b6040516104229190613f4b565b60405180910390f35b34801561043757600080fd5b50610440610e71565b60405161044d9190613ff2565b60405180910390f35b34801561046257600080fd5b5061046b610e95565b604051610478919061401c565b60405180910390f35b34801561048d57600080fd5b506104a860048036038101906104a39190613f66565b610e9f565b005b3480156104b657600080fd5b506104bf610fdb565b6040516104cc919061401c565b60405180910390f35b3480156104e157600080fd5b506104ea610fe1565b6040516104f7919061401c565b60405180910390f35b34801561050c57600080fd5b5061052760048036038101906105229190614037565b610fe7565b005b34801561053557600080fd5b50610550600480360381019061054b9190614064565b6110f6565b60405161055d9190613f4b565b60405180910390f35b34801561057257600080fd5b5061057b6111ee565b60405161058891906140c6565b60405180910390f35b34801561059d57600080fd5b506105a66111f4565b6040516105b391906140fd565b60405180910390f35b3480156105c857600080fd5b506105d16111fd565b6040516105de919061401c565b60405180910390f35b3480156105f357600080fd5b5061060e60048036038101906106099190613ef0565b611202565b60405161061b9190613f4b565b60405180910390f35b34801561063057600080fd5b506106396112ae565b60405161064691906140c6565b60405180910390f35b34801561065b57600080fd5b506106646112d2565b6040516106719190613f4b565b60405180910390f35b34801561068657600080fd5b506106a1600480360381019061069c9190613f66565b6112e5565b6040516106ae9190613f4b565b60405180910390f35b3480156106c357600080fd5b506106cc61133b565b6040516106d9919061401c565b60405180910390f35b3480156106ee57600080fd5b506106f7611341565b6040516107049190613f4b565b60405180910390f35b34801561071957600080fd5b50610734600480360381019061072f9190613f66565b611354565b604051610741919061401c565b60405180910390f35b34801561075657600080fd5b5061075f61139c565b005b34801561076d57600080fd5b50610776611424565b6040516107839190613f4b565b60405180910390f35b34801561079857600080fd5b506107b360048036038101906107ae9190614144565b6114c4565b005b3480156107c157600080fd5b506107ca61159b565b6040516107d791906140c6565b60405180910390f35b3480156107ec57600080fd5b506107f56115c1565b604051610802919061401c565b60405180910390f35b34801561081757600080fd5b506108206115c7565b60405161082d9190613f4b565b60405180910390f35b34801561084257600080fd5b5061085d60048036038101906108589190614184565b6115da565b005b34801561086b57600080fd5b506108746116f4565b604051610881919061401c565b60405180910390f35b34801561089657600080fd5b5061089f6116fa565b005b3480156108ad57600080fd5b506108b66117ae565b6040516108c391906140c6565b60405180910390f35b3480156108d857600080fd5b506108e16117d8565b6040516108ee91906140c6565b60405180910390f35b34801561090357600080fd5b5061090c6117fe565b604051610919919061401c565b60405180910390f35b34801561092e57600080fd5b50610949600480360381019061094491906141d7565b611804565b005b34801561095757600080fd5b5061096061189d565b60405161096d9190613e35565b60405180910390f35b34801561098257600080fd5b5061099d60048036038101906109989190614144565b61192f565b005b3480156109ab57600080fd5b506109b4611a47565b6040516109c1919061401c565b60405180910390f35b3480156109d657600080fd5b506109df611a4d565b6040516109ec919061401c565b60405180910390f35b348015610a0157600080fd5b50610a0a611a53565b604051610a17919061401c565b60405180910390f35b348015610a2c57600080fd5b50610a476004803603810190610a429190613ef0565b611a59565b604051610a549190613f4b565b60405180910390f35b348015610a6957600080fd5b50610a846004803603810190610a7f9190613ef0565b611b44565b604051610a919190613f4b565b60405180910390f35b348015610aa657600080fd5b50610ac16004803603810190610abc9190613f66565b611b62565b005b348015610acf57600080fd5b50610aea6004803603810190610ae59190613f66565b611c9e565b604051610af79190613f4b565b60405180910390f35b348015610b0c57600080fd5b50610b15611cbe565b604051610b229190613f4b565b60405180910390f35b348015610b3757600080fd5b50610b526004803603810190610b4d9190614144565b611cd1565b005b348015610b6057600080fd5b50610b7b6004803603810190610b769190614184565b611df6565b005b348015610b8957600080fd5b50610ba46004803603810190610b9f9190614037565b611f10565b005b348015610bb257600080fd5b50610bbb61201f565b604051610bc89190613f4b565b60405180910390f35b348015610bdd57600080fd5b50610be6612032565b604051610bf3919061401c565b60405180910390f35b348015610c0857600080fd5b50610c236004803603810190610c1e9190614037565b612038565b604051610c309190613f4b565b60405180910390f35b348015610c4557600080fd5b50610c4e61218d565b604051610c5b919061401c565b60405180910390f35b348015610c7057600080fd5b50610c8b6004803603810190610c869190614204565b612193565b604051610c98919061401c565b60405180910390f35b348015610cad57600080fd5b50610cb661221a565b604051610cc3919061401c565b60405180910390f35b348015610cd857600080fd5b50610ce1612220565b604051610cee9190613f4b565b60405180910390f35b348015610d0357600080fd5b50610d0c6122c0565b604051610d19919061401c565b60405180910390f35b348015610d2e57600080fd5b50610d496004803603810190610d449190613f66565b6122c6565b005b348015610d5757600080fd5b50610d606123bd565b604051610d6d919061401c565b60405180910390f35b348015610d8257600080fd5b50610d8b6123c3565b604051610d98919061401c565b60405180910390f35b606060038054610db090614273565b80601f0160208091040260200160405190810160405280929190818152602001828054610ddc90614273565b8015610e295780601f10610dfe57610100808354040283529160200191610e29565b820191906000526020600020905b815481529060010190602001808311610e0c57829003601f168201915b5050505050905090565b6000610e47610e406123c9565b84846123d1565b6001905092915050565b601c6020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610ea76123c9565b73ffffffffffffffffffffffffffffffffffffffff16610ec56117ae565b73ffffffffffffffffffffffffffffffffffffffff1614610f1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f12906142f0565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60175481565b60165481565b610fef6123c9565b73ffffffffffffffffffffffffffffffffffffffff1661100d6117ae565b73ffffffffffffffffffffffffffffffffffffffff1614611063576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105a906142f0565b60405180910390fd5b670de0b6b3a76400006103e86001611079610e95565b611083919061433f565b61108d91906143c8565b61109791906143c8565b8110156110d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d09061446b565b60405180910390fd5b670de0b6b3a7640000816110ed919061433f565b60088190555050565b600061110384848461259a565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061114e6123c9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156111ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c5906144fd565b60405180910390fd5b6111e2856111da6123c9565b8584036123d1565b60019150509392505050565b61dead81565b60006012905090565b600281565b60006112a461120f6123c9565b84846001600061121d6123c9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461129f919061451d565b6123d1565b6001905092915050565b7f0000000000000000000000003176777bbcd359b3ee994de925311c1f1696c23081565b600b60009054906101000a900460ff1681565b6000601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60125481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113a46123c9565b73ffffffffffffffffffffffffffffffffffffffff166113c26117ae565b73ffffffffffffffffffffffffffffffffffffffff1614611418576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140f906142f0565b60405180910390fd5b611422600061336a565b565b600061142e6123c9565b73ffffffffffffffffffffffffffffffffffffffff1661144c6117ae565b73ffffffffffffffffffffffffffffffffffffffff16146114a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611499906142f0565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b6114cc6123c9565b73ffffffffffffffffffffffffffffffffffffffff166114ea6117ae565b73ffffffffffffffffffffffffffffffffffffffff1614611540576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611537906142f0565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f5481565b601a60009054906101000a900460ff1681565b6115e26123c9565b73ffffffffffffffffffffffffffffffffffffffff166116006117ae565b73ffffffffffffffffffffffffffffffffffffffff1614611656576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164d906142f0565b60405180910390fd5b6001601a60006101000a81548160ff02191690831515021790555082600f819055508160108190555080601181905550601154601054600f54611699919061451d565b6116a3919061451d565b600e819055506028600e5411156116ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e6906145bf565b60405180910390fd5b505050565b60195481565b6117026123c9565b73ffffffffffffffffffffffffffffffffffffffff166117206117ae565b73ffffffffffffffffffffffffffffffffffffffff1614611776576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176d906142f0565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60135481565b61180c6123c9565b73ffffffffffffffffffffffffffffffffffffffff1661182a6117ae565b73ffffffffffffffffffffffffffffffffffffffff1614611880576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611877906142f0565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b6060600480546118ac90614273565b80601f01602080910402602001604051908101604052809291908181526020018280546118d890614273565b80156119255780601f106118fa57610100808354040283529160200191611925565b820191906000526020600020905b81548152906001019060200180831161190857829003601f168201915b5050505050905090565b6119376123c9565b73ffffffffffffffffffffffffffffffffffffffff166119556117ae565b73ffffffffffffffffffffffffffffffffffffffff16146119ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a2906142f0565b60405180910390fd5b7f0000000000000000000000003176777bbcd359b3ee994de925311c1f1696c23073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3090614651565b60405180910390fd5b611a438282613430565b5050565b60115481565b60185481565b60155481565b60008060016000611a686123c9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611b25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1c906146e3565b60405180910390fd5b611b39611b306123c9565b858584036123d1565b600191505092915050565b6000611b58611b516123c9565b848461259a565b6001905092915050565b611b6a6123c9565b73ffffffffffffffffffffffffffffffffffffffff16611b886117ae565b73ffffffffffffffffffffffffffffffffffffffff1614611bde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd5906142f0565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601d6020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b611cd96123c9565b73ffffffffffffffffffffffffffffffffffffffff16611cf76117ae565b73ffffffffffffffffffffffffffffffffffffffff1614611d4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d44906142f0565b60405180910390fd5b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611dea9190613f4b565b60405180910390a25050565b611dfe6123c9565b73ffffffffffffffffffffffffffffffffffffffff16611e1c6117ae565b73ffffffffffffffffffffffffffffffffffffffff1614611e72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e69906142f0565b60405180910390fd5b6001601a60006101000a81548160ff021916908315150217905550826013819055508160148190555080601581905550601554601454601354611eb5919061451d565b611ebf919061451d565b60128190555060286012541115611f0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f02906145bf565b60405180910390fd5b505050565b611f186123c9565b73ffffffffffffffffffffffffffffffffffffffff16611f366117ae565b73ffffffffffffffffffffffffffffffffffffffff1614611f8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f83906142f0565b60405180910390fd5b670de0b6b3a76400006103e86005611fa2610e95565b611fac919061433f565b611fb691906143c8565b611fc091906143c8565b811015612002576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff990614775565b60405180910390fd5b670de0b6b3a764000081612016919061433f565b600a8190555050565b600d60009054906101000a900460ff1681565b60085481565b60006120426123c9565b73ffffffffffffffffffffffffffffffffffffffff166120606117ae565b73ffffffffffffffffffffffffffffffffffffffff16146120b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ad906142f0565b60405180910390fd5b620186a060016120c4610e95565b6120ce919061433f565b6120d891906143c8565b82101561211a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211190614807565b60405180910390fd5b6103e86005612127610e95565b612131919061433f565b61213b91906143c8565b82111561217d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217490614899565b60405180910390fd5b8160098190555060019050919050565b600e5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600061222a6123c9565b73ffffffffffffffffffffffffffffffffffffffff166122486117ae565b73ffffffffffffffffffffffffffffffffffffffff161461229e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612295906142f0565b60405180910390fd5b6000600d60006101000a81548160ff0219169083151502179055506001905090565b60105481565b6122ce6123c9565b73ffffffffffffffffffffffffffffffffffffffff166122ec6117ae565b73ffffffffffffffffffffffffffffffffffffffff1614612342576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612339906142f0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036123b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a89061492b565b60405180910390fd5b6123ba8161336a565b50565b60145481565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612440576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612437906149bd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036124af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a690614a4f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161258d919061401c565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612609576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260090614ae1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612678576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266f90614b73565b60405180910390fd5b600081036126915761268c838360006134d1565b613365565b600b60009054906101000a900460ff1615612d54576126ae6117ae565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561271c57506126ec6117ae565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156127555750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561278f575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156127a85750600560149054906101000a900460ff16155b15612d5357600b60019054906101000a900460ff166128a257601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806128625750601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6128a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289890614bdf565b60405180910390fd5b5b600d60009054906101000a900460ff1615612a6a576128bf6117ae565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561294657507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561299e57507f0000000000000000000000003176777bbcd359b3ee994de925311c1f1696c23073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612a695743600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612a24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1b90614c97565b60405180910390fd5b43600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612b0d5750601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612bb457600854811115612b57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4e90614d29565b60405180910390fd5b600a54612b6383611354565b82612b6e919061451d565b1115612baf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ba690614d95565b60405180910390fd5b612d52565b601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612c575750601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612ca657600854811115612ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c9890614e27565b60405180910390fd5b612d51565b601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612d5057600a54612d0383611354565b82612d0e919061451d565b1115612d4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d4690614d95565b60405180910390fd5b5b5b5b5b5b6000612d5f30611354565b905060006009548210159050808015612d845750600b60029054906101000a900460ff165b8015612d9d5750600560149054906101000a900460ff16155b8015612df35750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612e495750601b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612e9f5750601b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612ee3576001600560146101000a81548160ff021916908315150217905550612ec7613750565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612f835750612f546117ae565b73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16145b15612f9057436019819055505b601a60009054906101000a900460ff16613031576002601954612fb3919061451d565b4310613030576007600f8190555060006010819055506008601181905550601154601054600f54612fe4919061451d565b612fee919061451d565b600e81905550600f6013819055506000601481905550600f60158190555060155460145460135461301f919061451d565b613029919061451d565b6012819055505b5b601b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806130d25750601b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156130dc57600090505b6000811561335557601d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561313f57506000601254115b1561320c5761316c606461315e60125488613a3790919063ffffffff16565b613a4d90919063ffffffff16565b90506012546014548261317f919061433f565b61318991906143c8565b6017600082825461319a919061451d565b92505081905550601254601554826131b2919061433f565b6131bc91906143c8565b601860008282546131cd919061451d565b92505081905550601254601354826131e5919061433f565b6131ef91906143c8565b60166000828254613200919061451d565b92505081905550613331565b601d60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561326757506000600e54115b15613330576132946064613286600e5488613a3790919063ffffffff16565b613a4d90919063ffffffff16565b9050600e54601054826132a7919061433f565b6132b191906143c8565b601760008282546132c2919061451d565b92505081905550600e54601154826132da919061433f565b6132e491906143c8565b601860008282546132f5919061451d565b92505081905550600e54600f548261330d919061433f565b61331791906143c8565b60166000828254613328919061451d565b925050819055505b5b6000811115613346576133458730836134d1565b5b80856133529190614e47565b94505b6133608787876134d1565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603613540576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161353790614ae1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036135af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135a690614b73565b60405180910390fd5b6135ba838383613a63565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613640576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161363790614eed565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546136d3919061451d565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613737919061401c565b60405180910390a361374a848484613a68565b50505050565b600061375b30611354565b90506000601854601654601754613772919061451d565b61377c919061451d565b905060008083148061378e5750600082145b1561379b57505050613a35565b60146009546137aa919061433f565b8311156137c35760146009546137c0919061433f565b92505b6000600283601754866137d6919061433f565b6137e091906143c8565b6137ea91906143c8565b905060006138018286613a6d90919063ffffffff16565b9050600047905061381182613a83565b60006138268247613a6d90919063ffffffff16565b905060006138518761384360165485613a3790919063ffffffff16565b613a4d90919063ffffffff16565b9050600061387c8861386e60185486613a3790919063ffffffff16565b613a4d90919063ffffffff16565b9050600081838561388d9190614e47565b6138979190614e47565b9050600060178190555060006016819055506000601881905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516138f790614f3e565b60006040518083038185875af1925050503d8060008114613934576040519150601f19603f3d011682016040523d82523d6000602084013e613939565b606091505b50508098505060008711801561394f5750600081115b1561399c5761395e8782613cc0565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561868260175460405161399393929190614f53565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516139e290614f3e565b60006040518083038185875af1925050503d8060008114613a1f576040519150601f19603f3d011682016040523d82523d6000602084013e613a24565b606091505b505080985050505050505050505050505b565b60008183613a45919061433f565b905092915050565b60008183613a5b91906143c8565b905092915050565b505050565b505050565b60008183613a7b9190614e47565b905092915050565b6000600267ffffffffffffffff811115613aa057613a9f614f8a565b5b604051908082528060200260200182016040528015613ace5781602001602082028036833780820191505090505b5090503081600081518110613ae657613ae5614fb9565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613b8b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613baf9190614ffd565b81600181518110613bc357613bc2614fb9565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613c28307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846123d1565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613c8a959493929190615123565b600060405180830381600087803b158015613ca457600080fd5b505af1158015613cb8573d6000803e3d6000fd5b505050505050565b613ceb307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846123d1565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401613d529695949392919061517d565b60606040518083038185885af1158015613d70573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613d9591906151f3565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613dd6578082015181840152602081019050613dbb565b83811115613de5576000848401525b50505050565b6000601f19601f8301169050919050565b6000613e0782613d9c565b613e118185613da7565b9350613e21818560208601613db8565b613e2a81613deb565b840191505092915050565b60006020820190508181036000830152613e4f8184613dfc565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613e8782613e5c565b9050919050565b613e9781613e7c565b8114613ea257600080fd5b50565b600081359050613eb481613e8e565b92915050565b6000819050919050565b613ecd81613eba565b8114613ed857600080fd5b50565b600081359050613eea81613ec4565b92915050565b60008060408385031215613f0757613f06613e57565b5b6000613f1585828601613ea5565b9250506020613f2685828601613edb565b9150509250929050565b60008115159050919050565b613f4581613f30565b82525050565b6000602082019050613f606000830184613f3c565b92915050565b600060208284031215613f7c57613f7b613e57565b5b6000613f8a84828501613ea5565b91505092915050565b6000819050919050565b6000613fb8613fb3613fae84613e5c565b613f93565b613e5c565b9050919050565b6000613fca82613f9d565b9050919050565b6000613fdc82613fbf565b9050919050565b613fec81613fd1565b82525050565b60006020820190506140076000830184613fe3565b92915050565b61401681613eba565b82525050565b6000602082019050614031600083018461400d565b92915050565b60006020828403121561404d5761404c613e57565b5b600061405b84828501613edb565b91505092915050565b60008060006060848603121561407d5761407c613e57565b5b600061408b86828701613ea5565b935050602061409c86828701613ea5565b92505060406140ad86828701613edb565b9150509250925092565b6140c081613e7c565b82525050565b60006020820190506140db60008301846140b7565b92915050565b600060ff82169050919050565b6140f7816140e1565b82525050565b600060208201905061411260008301846140ee565b92915050565b61412181613f30565b811461412c57600080fd5b50565b60008135905061413e81614118565b92915050565b6000806040838503121561415b5761415a613e57565b5b600061416985828601613ea5565b925050602061417a8582860161412f565b9150509250929050565b60008060006060848603121561419d5761419c613e57565b5b60006141ab86828701613edb565b93505060206141bc86828701613edb565b92505060406141cd86828701613edb565b9150509250925092565b6000602082840312156141ed576141ec613e57565b5b60006141fb8482850161412f565b91505092915050565b6000806040838503121561421b5761421a613e57565b5b600061422985828601613ea5565b925050602061423a85828601613ea5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061428b57607f821691505b60208210810361429e5761429d614244565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006142da602083613da7565b91506142e5826142a4565b602082019050919050565b60006020820190508181036000830152614309816142cd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061434a82613eba565b915061435583613eba565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561438e5761438d614310565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006143d382613eba565b91506143de83613eba565b9250826143ee576143ed614399565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614455602f83613da7565b9150614460826143f9565b604082019050919050565b6000602082019050818103600083015261448481614448565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006144e7602883613da7565b91506144f28261448b565b604082019050919050565b60006020820190508181036000830152614516816144da565b9050919050565b600061452882613eba565b915061453383613eba565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561456857614567614310565b5b828201905092915050565b7f4d757374206b656570206665657320617420343025206f72206c657373000000600082015250565b60006145a9601d83613da7565b91506145b482614573565b602082019050919050565b600060208201905081810360008301526145d88161459c565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b600061463b603983613da7565b9150614646826145df565b604082019050919050565b6000602082019050818103600083015261466a8161462e565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006146cd602583613da7565b91506146d882614671565b604082019050919050565b600060208201905081810360008301526146fc816146c0565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b600061475f602483613da7565b915061476a82614703565b604082019050919050565b6000602082019050818103600083015261478e81614752565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006147f1603583613da7565b91506147fc82614795565b604082019050919050565b60006020820190508181036000830152614820816147e4565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614883603483613da7565b915061488e82614827565b604082019050919050565b600060208201905081810360008301526148b281614876565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614915602683613da7565b9150614920826148b9565b604082019050919050565b6000602082019050818103600083015261494481614908565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006149a7602483613da7565b91506149b28261494b565b604082019050919050565b600060208201905081810360008301526149d68161499a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614a39602283613da7565b9150614a44826149dd565b604082019050919050565b60006020820190508181036000830152614a6881614a2c565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614acb602583613da7565b9150614ad682614a6f565b604082019050919050565b60006020820190508181036000830152614afa81614abe565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614b5d602383613da7565b9150614b6882614b01565b604082019050919050565b60006020820190508181036000830152614b8c81614b50565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614bc9601683613da7565b9150614bd482614b93565b602082019050919050565b60006020820190508181036000830152614bf881614bbc565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614c81604983613da7565b9150614c8c82614bff565b606082019050919050565b60006020820190508181036000830152614cb081614c74565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614d13603583613da7565b9150614d1e82614cb7565b604082019050919050565b60006020820190508181036000830152614d4281614d06565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614d7f601383613da7565b9150614d8a82614d49565b602082019050919050565b60006020820190508181036000830152614dae81614d72565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614e11603683613da7565b9150614e1c82614db5565b604082019050919050565b60006020820190508181036000830152614e4081614e04565b9050919050565b6000614e5282613eba565b9150614e5d83613eba565b925082821015614e7057614e6f614310565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614ed7602683613da7565b9150614ee282614e7b565b604082019050919050565b60006020820190508181036000830152614f0681614eca565b9050919050565b600081905092915050565b50565b6000614f28600083614f0d565b9150614f3382614f18565b600082019050919050565b6000614f4982614f1b565b9150819050919050565b6000606082019050614f68600083018661400d565b614f75602083018561400d565b614f82604083018461400d565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614ff781613e8e565b92915050565b60006020828403121561501357615012613e57565b5b600061502184828501614fe8565b91505092915050565b6000819050919050565b600061504f61504a6150458461502a565b613f93565b613eba565b9050919050565b61505f81615034565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61509a81613e7c565b82525050565b60006150ac8383615091565b60208301905092915050565b6000602082019050919050565b60006150d082615065565b6150da8185615070565b93506150e583615081565b8060005b838110156151165781516150fd88826150a0565b9750615108836150b8565b9250506001810190506150e9565b5085935050505092915050565b600060a082019050615138600083018861400d565b6151456020830187615056565b818103604083015261515781866150c5565b905061516660608301856140b7565b615173608083018461400d565b9695505050505050565b600060c08201905061519260008301896140b7565b61519f602083018861400d565b6151ac6040830187615056565b6151b96060830186615056565b6151c660808301856140b7565b6151d360a083018461400d565b979650505050505050565b6000815190506151ed81613ec4565b92915050565b60008060006060848603121561520c5761520b613e57565b5b600061521a868287016151de565b935050602061522b868287016151de565b925050604061523c868287016151de565b915050925092509256fea2646970667358221220fd8e2582f0cb1684178c09c75935736413e2ac0b10cfa25911174c461b517fcd64736f6c634300080f0033

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.