ETH Price: $2,532.98 (+3.04%)

Token

2k24 (2k24)
 

Overview

Max Total Supply

2,024,000,000 2k24

Holders

4

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
134,595,681.719481163519786014 2k24

Value
$0.00
0x26e31739B47D5228eBcF8a17e7812B4411A3a01c
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:
_2k24

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : 2k24.sol
// File: https://github.com/aifeelit/pink-antibot-guide-binance-solidity/blob/main/IPinkAntiBot.sol

pragma solidity >=0.5.0;

interface IPinkAntiBot {
  function setTokenOwner(address owner) external;

  function onPreTransferCheck(
    address from,
    address to,
    uint256 amount
  ) external;
}

// File: https://github.com/Uniswap/v2-core/blob/master/contracts/interfaces/IUniswapV2Pair.sol

pragma solidity >=0.5.0;

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

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

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

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

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

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

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

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

    function initialize(address, address) external;
}

// File: https://github.com/Uniswap/v2-core/blob/master/contracts/interfaces/IUniswapV2Factory.sol

pragma solidity >=0.5.0;

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

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

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

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

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

// File: https://github.com/Uniswap/v2-periphery/blob/master/contracts/interfaces/IUniswapV2Router01.sol

pragma solidity >=0.6.2;

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

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

// File: https://github.com/Uniswap/v2-periphery/blob/master/contracts/interfaces/IUniswapV2Router02.sol

pragma solidity >=0.6.2;


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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/math/SafeMath.sol


// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

//SPDX-License-Identifier: MIT

pragma solidity =0.8.17;

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

    IUniswapV2Router02 public uniswapV2Router;
    address public  uniswapV2Pair;

    bool private feeActive = true;
    bool public tradingEnabled;
    uint256 public launchTime;

    uint256 internal totaltokensupply = 2024000000 * (10**18); // 2,024,000,000 token with 18 decimals

    address public deadWallet = 0x000000000000000000000000000000000000dEaD;

    IPinkAntiBot public pinkAntiBot;

    uint256 public buyFee = 2024; // 2,024%
    uint256 public sellFee = 2024; // 2,024%

    
    bool public antiBotEnabled;
    bool private inSwapAndSend;

    address public feeWallet     = 0x4b6C4ffcD2c3A6896a5d8a933aDC72896c2Fc752; 
    address public pinkAntiBot_  = 0xf4f071EB637b64fC78C9eA87DaCE4445D119CA35;

    mapping (address => bool) private _isExcludedFromFees;

    // 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 ExcludeMultipleAccountsFromFees(address[] accounts, bool isExcluded);

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

    event LiquidityWalletUpdated(address indexed newLiquidityWallet, address indexed oldLiquidityWallet);

     modifier lockTheSwap {
        inSwapAndSend = true;
        _;
        inSwapAndSend = false;
    }

    constructor() ERC20("2k24", "2k24") {

    	IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
         // Create a uniswap pair for this new token
        address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());

        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = _uniswapV2Pair;

        _setAutomatedMarketMakerPair(_uniswapV2Pair, true);
        pinkAntiBot = IPinkAntiBot(pinkAntiBot_);
        pinkAntiBot.setTokenOwner(msg.sender);
        antiBotEnabled = true;

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

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

    receive() external payable {

  	}

    function setEnableAntiBot(bool _enable) external onlyOwner {
        antiBotEnabled = _enable;
    }

    function swapTokensAndSendETH(uint256 tokenAmount) private lockTheSwap {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

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

        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, 
            path,
            feeWallet,
            block.timestamp
        );
    }

    function updateUniswapV2Router(address newAddress) public onlyOwner {
        require(newAddress != address(uniswapV2Router), "2k24: The router already has that address");
        require(newAddress != address(0), "new address is zero address");
        emit UpdateUniswapV2Router(newAddress, address(uniswapV2Router));
        uniswapV2Router = IUniswapV2Router02(newAddress);
        address _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory())
            .createPair(address(this), uniswapV2Router.WETH());
        uniswapV2Pair = _uniswapV2Pair;
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        require(_isExcludedFromFees[account] != excluded, "2k24: Account is already the value of 'excluded'");
        _isExcludedFromFees[account] = excluded;

        emit ExcludeFromFees(account, excluded);
    }

    function excludeMultipleAccountsFromFees(address[] calldata accounts, bool excluded) public onlyOwner {
        for(uint256 i = 0; i < accounts.length; i++) {
            _isExcludedFromFees[accounts[i]] = excluded;
        }

        emit ExcludeMultipleAccountsFromFees(accounts, excluded);
    }

        function setbuyFee(uint256 value) external onlyOwner{
            require(value <= 15000, "Max 15%"); // 3 decimals
            buyFee = value;
        }

        function setsellFee(uint256 value) external onlyOwner{
            require(value <= 15000, "Max 15%"); // 3 decimals
            sellFee = value;
        }

    function setfeeWallet(address feaddress) public onlyOwner {
        feeWallet = feaddress;
    }


    function burn(uint256 amount) external {
        _burn(_msgSender(), amount);
    }

    function setfeeActive(bool value) external onlyOwner {
        feeActive = value;
    }


    function startTrading() external onlyOwner{
        require(launchTime == 0, "Already Listed!");
        launchTime = block.timestamp;
        tradingEnabled = true;
    }

    function pauseTrading() external onlyOwner{
        launchTime = 0 ;
        tradingEnabled = false;

    }


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

        _setAutomatedMarketMakerPair(pair, value);
    }


    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        require(automatedMarketMakerPairs[pair] != value, "2k24: Automated market maker pair is already set to that value");
        automatedMarketMakerPairs[pair] = value;

        emit SetAutomatedMarketMakerPair(pair, value);
    }

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

    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(!inSwapAndSend && from != uniswapV2Pair && tradingEnabled) {
        uint256 contractTokenBalance = balanceOf(address(this));
        if (contractTokenBalance > 0) {
            swapTokensAndSendETH(contractTokenBalance);
        }
         }
        if (antiBotEnabled) {
        pinkAntiBot.onPreTransferCheck(from, to, amount);
        }
        
        if(!_isExcludedFromFees[from]) { require(tradingEnabled == true, "Trading not enabled yet"); }


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


        if (
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to] 
        ) {
            if (launchTime + 60 seconds >= block.timestamp)
                // don't allow sell for 60 seconds after launch
                require(
                    automatedMarketMakerPairs[to],
                    "AntiBot: Sell Banned!"
                );
        }


        bool takeFee = feeActive;

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

        if(takeFee) {
        uint256 fees = 0;
        if(automatedMarketMakerPairs[from]) {
            fees += amount.mul(buyFee).div(100000); 
        }
        if(automatedMarketMakerPairs[to]){
            fees += amount.mul(sellFee).div(100000); 
        }
        	amount = amount.sub(fees);



            super._transfer(from, feeWallet, fees);
        }

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

    function recoverothertokens(address tokenAddress, uint256 tokenAmount) public  onlyOwner {
        require(tokenAddress != address(this), "cannot be same contract address");
        IERC20(tokenAddress).transfer(owner(), tokenAmount);
    }


    function recovertoken(address payable destination) public onlyOwner {
        require(destination != address(0), "destination is zero address");
        destination.transfer(address(this).balance);
    }

    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
            address(0),
            block.timestamp
        );

    }
}

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":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"accounts","type":"address[]"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeMultipleAccountsFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newLiquidityWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldLiquidityWallet","type":"address"}],"name":"LiquidityWalletUpdated","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":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"},{"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":[],"name":"antiBotEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeMultipleAccountsFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchTime","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":"pauseTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"pinkAntiBot","outputs":[{"internalType":"contract IPinkAntiBot","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pinkAntiBot_","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"recoverothertokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"destination","type":"address"}],"name":"recovertoken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee","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":[{"internalType":"bool","name":"_enable","type":"bool"}],"name":"setEnableAntiBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setbuyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setfeeActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"feaddress","type":"address"}],"name":"setfeeWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setsellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":"address","name":"newAddress","type":"address"}],"name":"updateUniswapV2Router","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526001600760146101000a81548160ff0219169083151502179055506b068a36abdb0436c0e800000060095561dead600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506107e8600c556107e8600d55734b6c4ffcd2c3a6896a5d8a933adc72896c2fc752600e60026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073f4f071eb637b64fc78c9ea87dace4445d119ca35600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200013557600080fd5b506040518060400160405280600481526020017f326b3234000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f326b3234000000000000000000000000000000000000000000000000000000008152508160039081620001b3919062000d6e565b508060049081620001c5919062000d6e565b505050620001e8620001dc6200056e60201b60201c565b6200057660201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d905060008173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200024f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000275919062000ebf565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002dd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000303919062000ebf565b6040518363ffffffff1660e01b81526004016200032292919062000f02565b6020604051808303816000875af115801562000342573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000368919062000ebf565b905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620003ff8160016200063c60201b60201c565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318e02bd9336040518263ffffffff1660e01b8152600401620004bf919062000f2f565b600060405180830381600087803b158015620004da57600080fd5b505af1158015620004ef573d6000803e3d6000fd5b505050506001600e60006101000a81548160ff02191690831515021790555062000530620005226200077260201b60201c565b60016200079c60201b60201c565b620005433060016200079c60201b60201c565b62000566620005576200077260201b60201c565b600954620008ec60201b60201c565b505062001243565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b801515601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503620006d1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006c89062000fd3565b60405180910390fd5b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620007ac62000a5960201b60201c565b801515601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615150362000841576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000838906200106b565b60405180910390fd5b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620008e09190620010aa565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200095e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009559062001117565b60405180910390fd5b620009726000838362000aea60201b60201c565b806002600082825462000986919062001168565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000a399190620011b4565b60405180910390a362000a556000838362000aef60201b60201c565b5050565b62000a696200056e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000a8f6200077260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000ae8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000adf9062001221565b60405180910390fd5b565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000b7657607f821691505b60208210810362000b8c5762000b8b62000b2e565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000bf67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000bb7565b62000c02868362000bb7565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000c4f62000c4962000c438462000c1a565b62000c24565b62000c1a565b9050919050565b6000819050919050565b62000c6b8362000c2e565b62000c8362000c7a8262000c56565b84845462000bc4565b825550505050565b600090565b62000c9a62000c8b565b62000ca781848462000c60565b505050565b5b8181101562000ccf5762000cc360008262000c90565b60018101905062000cad565b5050565b601f82111562000d1e5762000ce88162000b92565b62000cf38462000ba7565b8101602085101562000d03578190505b62000d1b62000d128562000ba7565b83018262000cac565b50505b505050565b600082821c905092915050565b600062000d436000198460080262000d23565b1980831691505092915050565b600062000d5e838362000d30565b9150826002028217905092915050565b62000d798262000af4565b67ffffffffffffffff81111562000d955762000d9462000aff565b5b62000da1825462000b5d565b62000dae82828562000cd3565b600060209050601f83116001811462000de6576000841562000dd1578287015190505b62000ddd858262000d50565b86555062000e4d565b601f19841662000df68662000b92565b60005b8281101562000e205784890151825560018201915060208501945060208101905062000df9565b8683101562000e40578489015162000e3c601f89168262000d30565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000e878262000e5a565b9050919050565b62000e998162000e7a565b811462000ea557600080fd5b50565b60008151905062000eb98162000e8e565b92915050565b60006020828403121562000ed85762000ed762000e55565b5b600062000ee88482850162000ea8565b91505092915050565b62000efc8162000e7a565b82525050565b600060408201905062000f19600083018562000ef1565b62000f28602083018462000ef1565b9392505050565b600060208201905062000f46600083018462000ef1565b92915050565b600082825260208201905092915050565b7f326b32343a204175746f6d61746564206d61726b6574206d616b65722070616960008201527f7220697320616c72656164792073657420746f20746861742076616c75650000602082015250565b600062000fbb603e8362000f4c565b915062000fc88262000f5d565b604082019050919050565b6000602082019050818103600083015262000fee8162000fac565b9050919050565b7f326b32343a204163636f756e7420697320616c7265616479207468652076616c60008201527f7565206f6620276578636c756465642700000000000000000000000000000000602082015250565b60006200105360308362000f4c565b9150620010608262000ff5565b604082019050919050565b60006020820190508181036000830152620010868162001044565b9050919050565b60008115159050919050565b620010a4816200108d565b82525050565b6000602082019050620010c1600083018462001099565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620010ff601f8362000f4c565b91506200110c82620010c7565b602082019050919050565b600060208201905081810360008301526200113281620010f0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620011758262000c1a565b9150620011828362000c1a565b92508282019050808211156200119d576200119c62001139565b5b92915050565b620011ae8162000c1a565b82525050565b6000602082019050620011cb6000830184620011a3565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200120960208362000f4c565b91506200121682620011d1565b602082019050919050565b600060208201905081810360008301526200123c81620011fa565b9050919050565b61424980620012536000396000f3fe6080604052600436106102495760003560e01c806368c1e14c11610139578063a6e30b69116100b6578063c492f0461161007a578063c492f04614610876578063d8c6404b1461089f578063dd62ed3e146108ca578063f121275f14610907578063f25f4b5614610930578063f2fde38b1461095b57610250565b8063a6e30b6914610781578063a9059cbb146107aa578063b62496f5146107e7578063c024666814610824578063c1a63c021461084d57610250565b80638da5cb5b116100fd5780638da5cb5b1461069c57806395d89b41146106c757806397d66f80146106f25780639a7a23d61461071b578063a457c2d71461074457610250565b806368c1e14c146105c957806370a08231146105f2578063715018a61461062f578063790ca4131461064657806385141a771461067157610250565b80632b14ca56116101c7578063470624021161018b57806347062402146104e257806349bd5a5e1461050d5780634ada218b146105385780634fbee1931461056357806365b8dbc0146105a057610250565b80632b14ca56146103fb578063313ce567146104265780633950935114610451578063407133d21461048e57806342966c68146104b957610250565b80631694505e1161020e5780631694505e1461032857806318160ddd146103535780631f46b1c61461037e57806323b872dd146103a7578063293230b8146103e457610250565b80625abb00146102555780630459a91e1461027e57806306fdde03146102a9578063095ea7b3146102d45780631031e36e1461031157610250565b3661025057005b600080fd5b34801561026157600080fd5b5061027c60048036038101906102779190612be0565b610984565b005b34801561028a57600080fd5b506102936109a9565b6040516102a09190612c4e565b60405180910390f35b3480156102b557600080fd5b506102be6109cf565b6040516102cb9190612cf9565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f69190612d7d565b610a61565b6040516103089190612dcc565b60405180910390f35b34801561031d57600080fd5b50610326610a84565b005b34801561033457600080fd5b5061033d610ab1565b60405161034a9190612e46565b60405180910390f35b34801561035f57600080fd5b50610368610ad7565b6040516103759190612e70565b60405180910390f35b34801561038a57600080fd5b506103a560048036038101906103a09190612be0565b610ae1565b005b3480156103b357600080fd5b506103ce60048036038101906103c99190612e8b565b610b06565b6040516103db9190612dcc565b60405180910390f35b3480156103f057600080fd5b506103f9610b35565b005b34801561040757600080fd5b50610410610ba6565b60405161041d9190612e70565b60405180910390f35b34801561043257600080fd5b5061043b610bac565b6040516104489190612efa565b60405180910390f35b34801561045d57600080fd5b5061047860048036038101906104739190612d7d565b610bb5565b6040516104859190612dcc565b60405180910390f35b34801561049a57600080fd5b506104a3610bec565b6040516104b09190612f36565b60405180910390f35b3480156104c557600080fd5b506104e060048036038101906104db9190612f51565b610c12565b005b3480156104ee57600080fd5b506104f7610c26565b6040516105049190612e70565b60405180910390f35b34801561051957600080fd5b50610522610c2c565b60405161052f9190612c4e565b60405180910390f35b34801561054457600080fd5b5061054d610c52565b60405161055a9190612dcc565b60405180910390f35b34801561056f57600080fd5b5061058a60048036038101906105859190612f7e565b610c65565b6040516105979190612dcc565b60405180910390f35b3480156105ac57600080fd5b506105c760048036038101906105c29190612f7e565b610cbb565b005b3480156105d557600080fd5b506105f060048036038101906105eb9190612f7e565b611066565b005b3480156105fe57600080fd5b5061061960048036038101906106149190612f7e565b6110b2565b6040516106269190612e70565b60405180910390f35b34801561063b57600080fd5b506106446110fa565b005b34801561065257600080fd5b5061065b61110e565b6040516106689190612e70565b60405180910390f35b34801561067d57600080fd5b50610686611114565b6040516106939190612c4e565b60405180910390f35b3480156106a857600080fd5b506106b161113a565b6040516106be9190612c4e565b60405180910390f35b3480156106d357600080fd5b506106dc611164565b6040516106e99190612cf9565b60405180910390f35b3480156106fe57600080fd5b5061071960048036038101906107149190612fe9565b6111f6565b005b34801561072757600080fd5b50610742600480360381019061073d9190613016565b6112b7565b005b34801561075057600080fd5b5061076b60048036038101906107669190612d7d565b61135d565b6040516107789190612dcc565b60405180910390f35b34801561078d57600080fd5b506107a860048036038101906107a39190612f51565b6113d4565b005b3480156107b657600080fd5b506107d160048036038101906107cc9190612d7d565b61142b565b6040516107de9190612dcc565b60405180910390f35b3480156107f357600080fd5b5061080e60048036038101906108099190612f7e565b61144e565b60405161081b9190612dcc565b60405180910390f35b34801561083057600080fd5b5061084b60048036038101906108469190613016565b61146e565b005b34801561085957600080fd5b50610874600480360381019061086f9190612f51565b6115b1565b005b34801561088257600080fd5b5061089d600480360381019061089891906130bb565b611608565b005b3480156108ab57600080fd5b506108b46116f0565b6040516108c19190612dcc565b60405180910390f35b3480156108d657600080fd5b506108f160048036038101906108ec919061311b565b611703565b6040516108fe9190612e70565b60405180910390f35b34801561091357600080fd5b5061092e60048036038101906109299190612d7d565b61178a565b005b34801561093c57600080fd5b5061094561188a565b6040516109529190612c4e565b60405180910390f35b34801561096757600080fd5b50610982600480360381019061097d9190612f7e565b6118b0565b005b61098c611933565b80600760146101000a81548160ff02191690831515021790555050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600380546109de9061318a565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0a9061318a565b8015610a575780601f10610a2c57610100808354040283529160200191610a57565b820191906000526020600020905b815481529060010190602001808311610a3a57829003601f168201915b5050505050905090565b600080610a6c6119b1565b9050610a798185856119b9565b600191505092915050565b610a8c611933565b60006008819055506000600760156101000a81548160ff021916908315150217905550565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b610ae9611933565b80600e60006101000a81548160ff02191690831515021790555050565b600080610b116119b1565b9050610b1e858285611b82565b610b29858585611c0e565b60019150509392505050565b610b3d611933565b600060085414610b82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7990613207565b60405180910390fd5b426008819055506001600760156101000a81548160ff021916908315150217905550565b600d5481565b60006012905090565b600080610bc06119b1565b9050610be1818585610bd28589611703565b610bdc9190613256565b6119b9565b600191505092915050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610c23610c1d6119b1565b8261227b565b50565b600c5481565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600760159054906101000a900460ff1681565b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610cc3611933565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4a906132fc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610dc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db990613368565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8fc842bbd331dfa973645f4ed48b11683d501ebf1352708d77a5da2ab49a576e60405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610eee573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f12919061339d565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f9b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fbf919061339d565b6040518363ffffffff1660e01b8152600401610fdc9291906133ca565b6020604051808303816000875af1158015610ffb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061101f919061339d565b905080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b61106e611933565b80600e60026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611102611933565b61110c6000612448565b565b60085481565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546111739061318a565b80601f016020809104026020016040519081016040528092919081815260200182805461119f9061318a565b80156111ec5780601f106111c1576101008083540402835291602001916111ec565b820191906000526020600020905b8154815290600101906020018083116111cf57829003601f168201915b5050505050905090565b6111fe611933565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361126d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112649061343f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156112b3573d6000803e3d6000fd5b5050565b6112bf611933565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361134f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611346906134f7565b60405180910390fd5b611359828261250e565b5050565b6000806113686119b1565b905060006113768286611703565b9050838110156113bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b290613589565b60405180910390fd5b6113c882868684036119b9565b60019250505092915050565b6113dc611933565b613a98811115611421576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611418906135f5565b60405180910390fd5b80600c8190555050565b6000806114366119b1565b9050611443818585611c0e565b600191505092915050565b60116020528060005260406000206000915054906101000a900460ff1681565b611476611933565b801515601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503611508576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ff90613687565b60405180910390fd5b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516115a59190612dcc565b60405180910390a25050565b6115b9611933565b613a988111156115fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f5906135f5565b60405180910390fd5b80600d8190555050565b611610611933565b60005b838390508110156116af578160106000868685818110611636576116356136a7565b5b905060200201602081019061164b9190612f7e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806116a7906136d6565b915050611613565b507f7fdaf542373fa84f4ee8d662c642f44e4c2276a217d7d29e548b6eb29a233b358383836040516116e3939291906137e1565b60405180910390a1505050565b600e60009054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611792611933565b3073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611800576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f79061385f565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb61182461113a565b836040518363ffffffff1660e01b815260040161184292919061387f565b6020604051808303816000875af1158015611861573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061188591906138bd565b505050565b600e60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6118b8611933565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611927576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191e9061395c565b60405180910390fd5b61193081612448565b50565b61193b6119b1565b73ffffffffffffffffffffffffffffffffffffffff1661195961113a565b73ffffffffffffffffffffffffffffffffffffffff16146119af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a6906139c8565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1f90613a5a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8e90613aec565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611b759190612e70565b60405180910390a3505050565b6000611b8e8484611703565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611c085781811015611bfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf190613b58565b60405180910390fd5b611c0784848484036119b9565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611c7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7490613bea565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611cec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce390613c7c565b60405180910390fd5b600e60019054906101000a900460ff16158015611d575750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015611d6f5750600760159054906101000a900460ff165b15611d96576000611d7f306110b2565b90506000811115611d9457611d9381612641565b5b505b600e60009054906101000a900460ff1615611e3d57600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663487608588484846040518463ffffffff1660e01b8152600401611e0a93929190613c9c565b600060405180830381600087803b158015611e2457600080fd5b505af1158015611e38573d6000803e3d6000fd5b505050505b601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611ee55760011515600760159054906101000a900460ff16151514611ee4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edb90613d1f565b60405180910390fd5b5b60008103611efe57611ef9838360006128dc565b612276565b601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611fa25750601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561204a5742603c600854611fb79190613256565b1061204957601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612048576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203f90613d8b565b60405180910390fd5b5b5b6000600760149054906101000a900460ff169050601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806120ff5750601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561210957600090505b8015612269576000601160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561219b5761218d620186a061217f600c5486612b5290919063ffffffff16565b612b6890919063ffffffff16565b816121989190613256565b90505b601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561222557612217620186a0612209600d5486612b5290919063ffffffff16565b612b6890919063ffffffff16565b816122229190613256565b90505b6122388184612b7e90919063ffffffff16565b925061226785600e60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836128dc565b505b6122748484846128dc565b505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036122ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e190613e1d565b60405180910390fd5b6122f682600083612b94565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561237c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237390613eaf565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161242f9190612e70565b60405180910390a361244383600084612b99565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b801515601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515036125a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259790613f41565b60405180910390fd5b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6001600e60016101000a81548160ff0219169083151502179055506000600267ffffffffffffffff81111561267957612678613f61565b5b6040519080825280602002602001820160405280156126a75781602001602082028036833780820191505090505b50905030816000815181106126bf576126be6136a7565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612766573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061278a919061339d565b8160018151811061279e5761279d6136a7565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061280530600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846119b9565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac94783600084600e60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b815260040161288b959493929190614051565b600060405180830381600087803b1580156128a557600080fd5b505af11580156128b9573d6000803e3d6000fd5b50505050506000600e60016101000a81548160ff02191690831515021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361294b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294290613bea565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036129ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b190613c7c565b60405180910390fd5b6129c5838383612b94565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612a4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a429061411d565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612b399190612e70565b60405180910390a3612b4c848484612b99565b50505050565b60008183612b60919061413d565b905092915050565b60008183612b7691906141ae565b905092915050565b60008183612b8c91906141df565b905092915050565b505050565b505050565b600080fd5b600080fd5b60008115159050919050565b612bbd81612ba8565b8114612bc857600080fd5b50565b600081359050612bda81612bb4565b92915050565b600060208284031215612bf657612bf5612b9e565b5b6000612c0484828501612bcb565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612c3882612c0d565b9050919050565b612c4881612c2d565b82525050565b6000602082019050612c636000830184612c3f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ca3578082015181840152602081019050612c88565b60008484015250505050565b6000601f19601f8301169050919050565b6000612ccb82612c69565b612cd58185612c74565b9350612ce5818560208601612c85565b612cee81612caf565b840191505092915050565b60006020820190508181036000830152612d138184612cc0565b905092915050565b612d2481612c2d565b8114612d2f57600080fd5b50565b600081359050612d4181612d1b565b92915050565b6000819050919050565b612d5a81612d47565b8114612d6557600080fd5b50565b600081359050612d7781612d51565b92915050565b60008060408385031215612d9457612d93612b9e565b5b6000612da285828601612d32565b9250506020612db385828601612d68565b9150509250929050565b612dc681612ba8565b82525050565b6000602082019050612de16000830184612dbd565b92915050565b6000819050919050565b6000612e0c612e07612e0284612c0d565b612de7565b612c0d565b9050919050565b6000612e1e82612df1565b9050919050565b6000612e3082612e13565b9050919050565b612e4081612e25565b82525050565b6000602082019050612e5b6000830184612e37565b92915050565b612e6a81612d47565b82525050565b6000602082019050612e856000830184612e61565b92915050565b600080600060608486031215612ea457612ea3612b9e565b5b6000612eb286828701612d32565b9350506020612ec386828701612d32565b9250506040612ed486828701612d68565b9150509250925092565b600060ff82169050919050565b612ef481612ede565b82525050565b6000602082019050612f0f6000830184612eeb565b92915050565b6000612f2082612e13565b9050919050565b612f3081612f15565b82525050565b6000602082019050612f4b6000830184612f27565b92915050565b600060208284031215612f6757612f66612b9e565b5b6000612f7584828501612d68565b91505092915050565b600060208284031215612f9457612f93612b9e565b5b6000612fa284828501612d32565b91505092915050565b6000612fb682612c0d565b9050919050565b612fc681612fab565b8114612fd157600080fd5b50565b600081359050612fe381612fbd565b92915050565b600060208284031215612fff57612ffe612b9e565b5b600061300d84828501612fd4565b91505092915050565b6000806040838503121561302d5761302c612b9e565b5b600061303b85828601612d32565b925050602061304c85828601612bcb565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f84011261307b5761307a613056565b5b8235905067ffffffffffffffff8111156130985761309761305b565b5b6020830191508360208202830111156130b4576130b3613060565b5b9250929050565b6000806000604084860312156130d4576130d3612b9e565b5b600084013567ffffffffffffffff8111156130f2576130f1612ba3565b5b6130fe86828701613065565b9350935050602061311186828701612bcb565b9150509250925092565b6000806040838503121561313257613131612b9e565b5b600061314085828601612d32565b925050602061315185828601612d32565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806131a257607f821691505b6020821081036131b5576131b461315b565b5b50919050565b7f416c7265616479204c6973746564210000000000000000000000000000000000600082015250565b60006131f1600f83612c74565b91506131fc826131bb565b602082019050919050565b60006020820190508181036000830152613220816131e4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061326182612d47565b915061326c83612d47565b925082820190508082111561328457613283613227565b5b92915050565b7f326b32343a2054686520726f7574657220616c7265616479206861732074686160008201527f7420616464726573730000000000000000000000000000000000000000000000602082015250565b60006132e6602983612c74565b91506132f18261328a565b604082019050919050565b60006020820190508181036000830152613315816132d9565b9050919050565b7f6e65772061646472657373206973207a65726f20616464726573730000000000600082015250565b6000613352601b83612c74565b915061335d8261331c565b602082019050919050565b6000602082019050818103600083015261338181613345565b9050919050565b60008151905061339781612d1b565b92915050565b6000602082840312156133b3576133b2612b9e565b5b60006133c184828501613388565b91505092915050565b60006040820190506133df6000830185612c3f565b6133ec6020830184612c3f565b9392505050565b7f64657374696e6174696f6e206973207a65726f20616464726573730000000000600082015250565b6000613429601b83612c74565b9150613434826133f3565b602082019050919050565b600060208201905081810360008301526134588161341c565b9050919050565b7f326b32343a2054686520556e695377617020706169722063616e6e6f7420626560008201527f2072656d6f7665642066726f6d206175746f6d617465644d61726b65744d616b60208201527f6572506169727300000000000000000000000000000000000000000000000000604082015250565b60006134e1604783612c74565b91506134ec8261345f565b606082019050919050565b60006020820190508181036000830152613510816134d4565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613573602583612c74565b915061357e82613517565b604082019050919050565b600060208201905081810360008301526135a281613566565b9050919050565b7f4d61782031352500000000000000000000000000000000000000000000000000600082015250565b60006135df600783612c74565b91506135ea826135a9565b602082019050919050565b6000602082019050818103600083015261360e816135d2565b9050919050565b7f326b32343a204163636f756e7420697320616c7265616479207468652076616c60008201527f7565206f6620276578636c756465642700000000000000000000000000000000602082015250565b6000613671603083612c74565b915061367c82613615565b604082019050919050565b600060208201905081810360008301526136a081613664565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006136e182612d47565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361371357613712613227565b5b600182019050919050565b600082825260208201905092915050565b6000819050919050565b61374281612c2d565b82525050565b60006137548383613739565b60208301905092915050565b600061376f6020840184612d32565b905092915050565b6000602082019050919050565b6000613790838561371e565b935061379b8261372f565b8060005b858110156137d4576137b18284613760565b6137bb8882613748565b97506137c683613777565b92505060018101905061379f565b5085925050509392505050565b600060408201905081810360008301526137fc818587613784565b905061380b6020830184612dbd565b949350505050565b7f63616e6e6f742062652073616d6520636f6e7472616374206164647265737300600082015250565b6000613849601f83612c74565b915061385482613813565b602082019050919050565b600060208201905081810360008301526138788161383c565b9050919050565b60006040820190506138946000830185612c3f565b6138a16020830184612e61565b9392505050565b6000815190506138b781612bb4565b92915050565b6000602082840312156138d3576138d2612b9e565b5b60006138e1848285016138a8565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613946602683612c74565b9150613951826138ea565b604082019050919050565b6000602082019050818103600083015261397581613939565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006139b2602083612c74565b91506139bd8261397c565b602082019050919050565b600060208201905081810360008301526139e1816139a5565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613a44602483612c74565b9150613a4f826139e8565b604082019050919050565b60006020820190508181036000830152613a7381613a37565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613ad6602283612c74565b9150613ae182613a7a565b604082019050919050565b60006020820190508181036000830152613b0581613ac9565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613b42601d83612c74565b9150613b4d82613b0c565b602082019050919050565b60006020820190508181036000830152613b7181613b35565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613bd4602583612c74565b9150613bdf82613b78565b604082019050919050565b60006020820190508181036000830152613c0381613bc7565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613c66602383612c74565b9150613c7182613c0a565b604082019050919050565b60006020820190508181036000830152613c9581613c59565b9050919050565b6000606082019050613cb16000830186612c3f565b613cbe6020830185612c3f565b613ccb6040830184612e61565b949350505050565b7f54726164696e67206e6f7420656e61626c656420796574000000000000000000600082015250565b6000613d09601783612c74565b9150613d1482613cd3565b602082019050919050565b60006020820190508181036000830152613d3881613cfc565b9050919050565b7f416e7469426f743a2053656c6c2042616e6e6564210000000000000000000000600082015250565b6000613d75601583612c74565b9150613d8082613d3f565b602082019050919050565b60006020820190508181036000830152613da481613d68565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000613e07602183612c74565b9150613e1282613dab565b604082019050919050565b60006020820190508181036000830152613e3681613dfa565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000613e99602283612c74565b9150613ea482613e3d565b604082019050919050565b60006020820190508181036000830152613ec881613e8c565b9050919050565b7f326b32343a204175746f6d61746564206d61726b6574206d616b65722070616960008201527f7220697320616c72656164792073657420746f20746861742076616c75650000602082015250565b6000613f2b603e83612c74565b9150613f3682613ecf565b604082019050919050565b60006020820190508181036000830152613f5a81613f1e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000819050919050565b6000613fb5613fb0613fab84613f90565b612de7565b612d47565b9050919050565b613fc581613f9a565b82525050565b600081519050919050565b6000819050602082019050919050565b6000602082019050919050565b6000613ffe82613fcb565b614008818561371e565b935061401383613fd6565b8060005b8381101561404457815161402b8882613748565b975061403683613fe6565b925050600181019050614017565b5085935050505092915050565b600060a0820190506140666000830188612e61565b6140736020830187613fbc565b81810360408301526140858186613ff3565b90506140946060830185612c3f565b6140a16080830184612e61565b9695505050505050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614107602683612c74565b9150614112826140ab565b604082019050919050565b60006020820190508181036000830152614136816140fa565b9050919050565b600061414882612d47565b915061415383612d47565b925082820261416181612d47565b9150828204841483151761417857614177613227565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006141b982612d47565b91506141c483612d47565b9250826141d4576141d361417f565b5b828204905092915050565b60006141ea82612d47565b91506141f583612d47565b925082820390508181111561420d5761420c613227565b5b9291505056fea2646970667358221220417b0e3de877e8c69c729e19ad1ba64d75a4608ad8fad40806ee6e7e54d281a964736f6c63430008110033

Deployed Bytecode

0x6080604052600436106102495760003560e01c806368c1e14c11610139578063a6e30b69116100b6578063c492f0461161007a578063c492f04614610876578063d8c6404b1461089f578063dd62ed3e146108ca578063f121275f14610907578063f25f4b5614610930578063f2fde38b1461095b57610250565b8063a6e30b6914610781578063a9059cbb146107aa578063b62496f5146107e7578063c024666814610824578063c1a63c021461084d57610250565b80638da5cb5b116100fd5780638da5cb5b1461069c57806395d89b41146106c757806397d66f80146106f25780639a7a23d61461071b578063a457c2d71461074457610250565b806368c1e14c146105c957806370a08231146105f2578063715018a61461062f578063790ca4131461064657806385141a771461067157610250565b80632b14ca56116101c7578063470624021161018b57806347062402146104e257806349bd5a5e1461050d5780634ada218b146105385780634fbee1931461056357806365b8dbc0146105a057610250565b80632b14ca56146103fb578063313ce567146104265780633950935114610451578063407133d21461048e57806342966c68146104b957610250565b80631694505e1161020e5780631694505e1461032857806318160ddd146103535780631f46b1c61461037e57806323b872dd146103a7578063293230b8146103e457610250565b80625abb00146102555780630459a91e1461027e57806306fdde03146102a9578063095ea7b3146102d45780631031e36e1461031157610250565b3661025057005b600080fd5b34801561026157600080fd5b5061027c60048036038101906102779190612be0565b610984565b005b34801561028a57600080fd5b506102936109a9565b6040516102a09190612c4e565b60405180910390f35b3480156102b557600080fd5b506102be6109cf565b6040516102cb9190612cf9565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f69190612d7d565b610a61565b6040516103089190612dcc565b60405180910390f35b34801561031d57600080fd5b50610326610a84565b005b34801561033457600080fd5b5061033d610ab1565b60405161034a9190612e46565b60405180910390f35b34801561035f57600080fd5b50610368610ad7565b6040516103759190612e70565b60405180910390f35b34801561038a57600080fd5b506103a560048036038101906103a09190612be0565b610ae1565b005b3480156103b357600080fd5b506103ce60048036038101906103c99190612e8b565b610b06565b6040516103db9190612dcc565b60405180910390f35b3480156103f057600080fd5b506103f9610b35565b005b34801561040757600080fd5b50610410610ba6565b60405161041d9190612e70565b60405180910390f35b34801561043257600080fd5b5061043b610bac565b6040516104489190612efa565b60405180910390f35b34801561045d57600080fd5b5061047860048036038101906104739190612d7d565b610bb5565b6040516104859190612dcc565b60405180910390f35b34801561049a57600080fd5b506104a3610bec565b6040516104b09190612f36565b60405180910390f35b3480156104c557600080fd5b506104e060048036038101906104db9190612f51565b610c12565b005b3480156104ee57600080fd5b506104f7610c26565b6040516105049190612e70565b60405180910390f35b34801561051957600080fd5b50610522610c2c565b60405161052f9190612c4e565b60405180910390f35b34801561054457600080fd5b5061054d610c52565b60405161055a9190612dcc565b60405180910390f35b34801561056f57600080fd5b5061058a60048036038101906105859190612f7e565b610c65565b6040516105979190612dcc565b60405180910390f35b3480156105ac57600080fd5b506105c760048036038101906105c29190612f7e565b610cbb565b005b3480156105d557600080fd5b506105f060048036038101906105eb9190612f7e565b611066565b005b3480156105fe57600080fd5b5061061960048036038101906106149190612f7e565b6110b2565b6040516106269190612e70565b60405180910390f35b34801561063b57600080fd5b506106446110fa565b005b34801561065257600080fd5b5061065b61110e565b6040516106689190612e70565b60405180910390f35b34801561067d57600080fd5b50610686611114565b6040516106939190612c4e565b60405180910390f35b3480156106a857600080fd5b506106b161113a565b6040516106be9190612c4e565b60405180910390f35b3480156106d357600080fd5b506106dc611164565b6040516106e99190612cf9565b60405180910390f35b3480156106fe57600080fd5b5061071960048036038101906107149190612fe9565b6111f6565b005b34801561072757600080fd5b50610742600480360381019061073d9190613016565b6112b7565b005b34801561075057600080fd5b5061076b60048036038101906107669190612d7d565b61135d565b6040516107789190612dcc565b60405180910390f35b34801561078d57600080fd5b506107a860048036038101906107a39190612f51565b6113d4565b005b3480156107b657600080fd5b506107d160048036038101906107cc9190612d7d565b61142b565b6040516107de9190612dcc565b60405180910390f35b3480156107f357600080fd5b5061080e60048036038101906108099190612f7e565b61144e565b60405161081b9190612dcc565b60405180910390f35b34801561083057600080fd5b5061084b60048036038101906108469190613016565b61146e565b005b34801561085957600080fd5b50610874600480360381019061086f9190612f51565b6115b1565b005b34801561088257600080fd5b5061089d600480360381019061089891906130bb565b611608565b005b3480156108ab57600080fd5b506108b46116f0565b6040516108c19190612dcc565b60405180910390f35b3480156108d657600080fd5b506108f160048036038101906108ec919061311b565b611703565b6040516108fe9190612e70565b60405180910390f35b34801561091357600080fd5b5061092e60048036038101906109299190612d7d565b61178a565b005b34801561093c57600080fd5b5061094561188a565b6040516109529190612c4e565b60405180910390f35b34801561096757600080fd5b50610982600480360381019061097d9190612f7e565b6118b0565b005b61098c611933565b80600760146101000a81548160ff02191690831515021790555050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600380546109de9061318a565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0a9061318a565b8015610a575780601f10610a2c57610100808354040283529160200191610a57565b820191906000526020600020905b815481529060010190602001808311610a3a57829003601f168201915b5050505050905090565b600080610a6c6119b1565b9050610a798185856119b9565b600191505092915050565b610a8c611933565b60006008819055506000600760156101000a81548160ff021916908315150217905550565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b610ae9611933565b80600e60006101000a81548160ff02191690831515021790555050565b600080610b116119b1565b9050610b1e858285611b82565b610b29858585611c0e565b60019150509392505050565b610b3d611933565b600060085414610b82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7990613207565b60405180910390fd5b426008819055506001600760156101000a81548160ff021916908315150217905550565b600d5481565b60006012905090565b600080610bc06119b1565b9050610be1818585610bd28589611703565b610bdc9190613256565b6119b9565b600191505092915050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610c23610c1d6119b1565b8261227b565b50565b600c5481565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600760159054906101000a900460ff1681565b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610cc3611933565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4a906132fc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610dc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db990613368565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8fc842bbd331dfa973645f4ed48b11683d501ebf1352708d77a5da2ab49a576e60405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610eee573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f12919061339d565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f9b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fbf919061339d565b6040518363ffffffff1660e01b8152600401610fdc9291906133ca565b6020604051808303816000875af1158015610ffb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061101f919061339d565b905080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b61106e611933565b80600e60026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611102611933565b61110c6000612448565b565b60085481565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546111739061318a565b80601f016020809104026020016040519081016040528092919081815260200182805461119f9061318a565b80156111ec5780601f106111c1576101008083540402835291602001916111ec565b820191906000526020600020905b8154815290600101906020018083116111cf57829003601f168201915b5050505050905090565b6111fe611933565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361126d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112649061343f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156112b3573d6000803e3d6000fd5b5050565b6112bf611933565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361134f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611346906134f7565b60405180910390fd5b611359828261250e565b5050565b6000806113686119b1565b905060006113768286611703565b9050838110156113bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b290613589565b60405180910390fd5b6113c882868684036119b9565b60019250505092915050565b6113dc611933565b613a98811115611421576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611418906135f5565b60405180910390fd5b80600c8190555050565b6000806114366119b1565b9050611443818585611c0e565b600191505092915050565b60116020528060005260406000206000915054906101000a900460ff1681565b611476611933565b801515601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503611508576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ff90613687565b60405180910390fd5b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516115a59190612dcc565b60405180910390a25050565b6115b9611933565b613a988111156115fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f5906135f5565b60405180910390fd5b80600d8190555050565b611610611933565b60005b838390508110156116af578160106000868685818110611636576116356136a7565b5b905060200201602081019061164b9190612f7e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806116a7906136d6565b915050611613565b507f7fdaf542373fa84f4ee8d662c642f44e4c2276a217d7d29e548b6eb29a233b358383836040516116e3939291906137e1565b60405180910390a1505050565b600e60009054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611792611933565b3073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611800576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f79061385f565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb61182461113a565b836040518363ffffffff1660e01b815260040161184292919061387f565b6020604051808303816000875af1158015611861573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061188591906138bd565b505050565b600e60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6118b8611933565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611927576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191e9061395c565b60405180910390fd5b61193081612448565b50565b61193b6119b1565b73ffffffffffffffffffffffffffffffffffffffff1661195961113a565b73ffffffffffffffffffffffffffffffffffffffff16146119af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a6906139c8565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611a28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1f90613a5a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8e90613aec565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611b759190612e70565b60405180910390a3505050565b6000611b8e8484611703565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611c085781811015611bfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf190613b58565b60405180910390fd5b611c0784848484036119b9565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611c7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7490613bea565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611cec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce390613c7c565b60405180910390fd5b600e60019054906101000a900460ff16158015611d575750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015611d6f5750600760159054906101000a900460ff165b15611d96576000611d7f306110b2565b90506000811115611d9457611d9381612641565b5b505b600e60009054906101000a900460ff1615611e3d57600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663487608588484846040518463ffffffff1660e01b8152600401611e0a93929190613c9c565b600060405180830381600087803b158015611e2457600080fd5b505af1158015611e38573d6000803e3d6000fd5b505050505b601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611ee55760011515600760159054906101000a900460ff16151514611ee4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edb90613d1f565b60405180910390fd5b5b60008103611efe57611ef9838360006128dc565b612276565b601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611fa25750601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561204a5742603c600854611fb79190613256565b1061204957601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612048576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203f90613d8b565b60405180910390fd5b5b5b6000600760149054906101000a900460ff169050601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806120ff5750601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561210957600090505b8015612269576000601160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561219b5761218d620186a061217f600c5486612b5290919063ffffffff16565b612b6890919063ffffffff16565b816121989190613256565b90505b601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561222557612217620186a0612209600d5486612b5290919063ffffffff16565b612b6890919063ffffffff16565b816122229190613256565b90505b6122388184612b7e90919063ffffffff16565b925061226785600e60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836128dc565b505b6122748484846128dc565b505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036122ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e190613e1d565b60405180910390fd5b6122f682600083612b94565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561237c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237390613eaf565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161242f9190612e70565b60405180910390a361244383600084612b99565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b801515601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515036125a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259790613f41565b60405180910390fd5b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6001600e60016101000a81548160ff0219169083151502179055506000600267ffffffffffffffff81111561267957612678613f61565b5b6040519080825280602002602001820160405280156126a75781602001602082028036833780820191505090505b50905030816000815181106126bf576126be6136a7565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612766573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061278a919061339d565b8160018151811061279e5761279d6136a7565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061280530600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846119b9565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac94783600084600e60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b815260040161288b959493929190614051565b600060405180830381600087803b1580156128a557600080fd5b505af11580156128b9573d6000803e3d6000fd5b50505050506000600e60016101000a81548160ff02191690831515021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361294b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294290613bea565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036129ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b190613c7c565b60405180910390fd5b6129c5838383612b94565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612a4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a429061411d565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612b399190612e70565b60405180910390a3612b4c848484612b99565b50505050565b60008183612b60919061413d565b905092915050565b60008183612b7691906141ae565b905092915050565b60008183612b8c91906141df565b905092915050565b505050565b505050565b600080fd5b600080fd5b60008115159050919050565b612bbd81612ba8565b8114612bc857600080fd5b50565b600081359050612bda81612bb4565b92915050565b600060208284031215612bf657612bf5612b9e565b5b6000612c0484828501612bcb565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612c3882612c0d565b9050919050565b612c4881612c2d565b82525050565b6000602082019050612c636000830184612c3f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ca3578082015181840152602081019050612c88565b60008484015250505050565b6000601f19601f8301169050919050565b6000612ccb82612c69565b612cd58185612c74565b9350612ce5818560208601612c85565b612cee81612caf565b840191505092915050565b60006020820190508181036000830152612d138184612cc0565b905092915050565b612d2481612c2d565b8114612d2f57600080fd5b50565b600081359050612d4181612d1b565b92915050565b6000819050919050565b612d5a81612d47565b8114612d6557600080fd5b50565b600081359050612d7781612d51565b92915050565b60008060408385031215612d9457612d93612b9e565b5b6000612da285828601612d32565b9250506020612db385828601612d68565b9150509250929050565b612dc681612ba8565b82525050565b6000602082019050612de16000830184612dbd565b92915050565b6000819050919050565b6000612e0c612e07612e0284612c0d565b612de7565b612c0d565b9050919050565b6000612e1e82612df1565b9050919050565b6000612e3082612e13565b9050919050565b612e4081612e25565b82525050565b6000602082019050612e5b6000830184612e37565b92915050565b612e6a81612d47565b82525050565b6000602082019050612e856000830184612e61565b92915050565b600080600060608486031215612ea457612ea3612b9e565b5b6000612eb286828701612d32565b9350506020612ec386828701612d32565b9250506040612ed486828701612d68565b9150509250925092565b600060ff82169050919050565b612ef481612ede565b82525050565b6000602082019050612f0f6000830184612eeb565b92915050565b6000612f2082612e13565b9050919050565b612f3081612f15565b82525050565b6000602082019050612f4b6000830184612f27565b92915050565b600060208284031215612f6757612f66612b9e565b5b6000612f7584828501612d68565b91505092915050565b600060208284031215612f9457612f93612b9e565b5b6000612fa284828501612d32565b91505092915050565b6000612fb682612c0d565b9050919050565b612fc681612fab565b8114612fd157600080fd5b50565b600081359050612fe381612fbd565b92915050565b600060208284031215612fff57612ffe612b9e565b5b600061300d84828501612fd4565b91505092915050565b6000806040838503121561302d5761302c612b9e565b5b600061303b85828601612d32565b925050602061304c85828601612bcb565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f84011261307b5761307a613056565b5b8235905067ffffffffffffffff8111156130985761309761305b565b5b6020830191508360208202830111156130b4576130b3613060565b5b9250929050565b6000806000604084860312156130d4576130d3612b9e565b5b600084013567ffffffffffffffff8111156130f2576130f1612ba3565b5b6130fe86828701613065565b9350935050602061311186828701612bcb565b9150509250925092565b6000806040838503121561313257613131612b9e565b5b600061314085828601612d32565b925050602061315185828601612d32565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806131a257607f821691505b6020821081036131b5576131b461315b565b5b50919050565b7f416c7265616479204c6973746564210000000000000000000000000000000000600082015250565b60006131f1600f83612c74565b91506131fc826131bb565b602082019050919050565b60006020820190508181036000830152613220816131e4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061326182612d47565b915061326c83612d47565b925082820190508082111561328457613283613227565b5b92915050565b7f326b32343a2054686520726f7574657220616c7265616479206861732074686160008201527f7420616464726573730000000000000000000000000000000000000000000000602082015250565b60006132e6602983612c74565b91506132f18261328a565b604082019050919050565b60006020820190508181036000830152613315816132d9565b9050919050565b7f6e65772061646472657373206973207a65726f20616464726573730000000000600082015250565b6000613352601b83612c74565b915061335d8261331c565b602082019050919050565b6000602082019050818103600083015261338181613345565b9050919050565b60008151905061339781612d1b565b92915050565b6000602082840312156133b3576133b2612b9e565b5b60006133c184828501613388565b91505092915050565b60006040820190506133df6000830185612c3f565b6133ec6020830184612c3f565b9392505050565b7f64657374696e6174696f6e206973207a65726f20616464726573730000000000600082015250565b6000613429601b83612c74565b9150613434826133f3565b602082019050919050565b600060208201905081810360008301526134588161341c565b9050919050565b7f326b32343a2054686520556e695377617020706169722063616e6e6f7420626560008201527f2072656d6f7665642066726f6d206175746f6d617465644d61726b65744d616b60208201527f6572506169727300000000000000000000000000000000000000000000000000604082015250565b60006134e1604783612c74565b91506134ec8261345f565b606082019050919050565b60006020820190508181036000830152613510816134d4565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613573602583612c74565b915061357e82613517565b604082019050919050565b600060208201905081810360008301526135a281613566565b9050919050565b7f4d61782031352500000000000000000000000000000000000000000000000000600082015250565b60006135df600783612c74565b91506135ea826135a9565b602082019050919050565b6000602082019050818103600083015261360e816135d2565b9050919050565b7f326b32343a204163636f756e7420697320616c7265616479207468652076616c60008201527f7565206f6620276578636c756465642700000000000000000000000000000000602082015250565b6000613671603083612c74565b915061367c82613615565b604082019050919050565b600060208201905081810360008301526136a081613664565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006136e182612d47565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361371357613712613227565b5b600182019050919050565b600082825260208201905092915050565b6000819050919050565b61374281612c2d565b82525050565b60006137548383613739565b60208301905092915050565b600061376f6020840184612d32565b905092915050565b6000602082019050919050565b6000613790838561371e565b935061379b8261372f565b8060005b858110156137d4576137b18284613760565b6137bb8882613748565b97506137c683613777565b92505060018101905061379f565b5085925050509392505050565b600060408201905081810360008301526137fc818587613784565b905061380b6020830184612dbd565b949350505050565b7f63616e6e6f742062652073616d6520636f6e7472616374206164647265737300600082015250565b6000613849601f83612c74565b915061385482613813565b602082019050919050565b600060208201905081810360008301526138788161383c565b9050919050565b60006040820190506138946000830185612c3f565b6138a16020830184612e61565b9392505050565b6000815190506138b781612bb4565b92915050565b6000602082840312156138d3576138d2612b9e565b5b60006138e1848285016138a8565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613946602683612c74565b9150613951826138ea565b604082019050919050565b6000602082019050818103600083015261397581613939565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006139b2602083612c74565b91506139bd8261397c565b602082019050919050565b600060208201905081810360008301526139e1816139a5565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613a44602483612c74565b9150613a4f826139e8565b604082019050919050565b60006020820190508181036000830152613a7381613a37565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613ad6602283612c74565b9150613ae182613a7a565b604082019050919050565b60006020820190508181036000830152613b0581613ac9565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613b42601d83612c74565b9150613b4d82613b0c565b602082019050919050565b60006020820190508181036000830152613b7181613b35565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613bd4602583612c74565b9150613bdf82613b78565b604082019050919050565b60006020820190508181036000830152613c0381613bc7565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613c66602383612c74565b9150613c7182613c0a565b604082019050919050565b60006020820190508181036000830152613c9581613c59565b9050919050565b6000606082019050613cb16000830186612c3f565b613cbe6020830185612c3f565b613ccb6040830184612e61565b949350505050565b7f54726164696e67206e6f7420656e61626c656420796574000000000000000000600082015250565b6000613d09601783612c74565b9150613d1482613cd3565b602082019050919050565b60006020820190508181036000830152613d3881613cfc565b9050919050565b7f416e7469426f743a2053656c6c2042616e6e6564210000000000000000000000600082015250565b6000613d75601583612c74565b9150613d8082613d3f565b602082019050919050565b60006020820190508181036000830152613da481613d68565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000613e07602183612c74565b9150613e1282613dab565b604082019050919050565b60006020820190508181036000830152613e3681613dfa565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000613e99602283612c74565b9150613ea482613e3d565b604082019050919050565b60006020820190508181036000830152613ec881613e8c565b9050919050565b7f326b32343a204175746f6d61746564206d61726b6574206d616b65722070616960008201527f7220697320616c72656164792073657420746f20746861742076616c75650000602082015250565b6000613f2b603e83612c74565b9150613f3682613ecf565b604082019050919050565b60006020820190508181036000830152613f5a81613f1e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000819050919050565b6000613fb5613fb0613fab84613f90565b612de7565b612d47565b9050919050565b613fc581613f9a565b82525050565b600081519050919050565b6000819050602082019050919050565b6000602082019050919050565b6000613ffe82613fcb565b614008818561371e565b935061401383613fd6565b8060005b8381101561404457815161402b8882613748565b975061403683613fe6565b925050600181019050614017565b5085935050505092915050565b600060a0820190506140666000830188612e61565b6140736020830187613fbc565b81810360408301526140858186613ff3565b90506140946060830185612c3f565b6140a16080830184612e61565b9695505050505050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614107602683612c74565b9150614112826140ab565b604082019050919050565b60006020820190508181036000830152614136816140fa565b9050919050565b600061414882612d47565b915061415383612d47565b925082820261416181612d47565b9150828204841483151761417857614177613227565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006141b982612d47565b91506141c483612d47565b9250826141d4576141d361417f565b5b828204905092915050565b60006141ea82612d47565b91506141f583612d47565b925082820390508181111561420d5761420c613227565b5b9291505056fea2646970667358221220417b0e3de877e8c69c729e19ad1ba64d75a4608ad8fad40806ee6e7e54d281a964736f6c63430008110033

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.