ETH Price: $2,208.85 (-0.02%)

Token

LOLCATS (LOLCATS)
 

Overview

Max Total Supply

1,000,000,000,000 LOLCATS

Holders

108

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
0.707393463 LOLCATS

Value
$0.00
0x1ea38cc4abb66fbf271800f07fccaf7c4d477ee8
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x14d848c3...544A348BE
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
LOLCATS

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 5 : LOLCATS.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";

interface IUniswapV2Factory {
    function createPair(
        address tokenA,
        address tokenB
    ) external returns (address pair);
}

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

    function factory() external pure returns (address);

    function WETH() external pure returns (address);

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

interface SafeToSwapInterface {
    function setSafe() external;

    function safe(address sender) external view returns (bool);
}

error Zero_Address(string where);
error Amount_Zero();
error Swap_Isnot_Safe();
error Exceeds_MaxAmount(string Amount);
error In_Cooldown();
error Already_Open();
error Withdraw_Failed();

contract LOLCATS is Context, IERC20, Ownable {
    using SafeMath for uint256;
    mapping(address => uint256) private _rOwned;
    mapping(address => mapping(address => uint256)) private _allowances;
    mapping(address => bool) private _isExcludedFromFee;
    mapping(address => bool) private bots;
    mapping(address => uint) private cooldown;

    uint256 private constant _tTotal = 1e13 * 10 ** 8;
    uint256 private _buyProjectFee = 2;
    uint256 private _previousBuyProjectFee = _buyProjectFee;
    uint256 private _sellProjectFee = 2;
    uint256 private _previousSellProjectFee = _sellProjectFee;

    address payable private _projectWallet;

    string private constant _name = "LOLCATS";
    string private constant _symbol = "LOLCATS";
    uint8 private constant _decimals = 9;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public uniswapV2Pair;
    SafeToSwapInterface private immutable safe;

    bool public tradingOpen;
    bool private swapping;
    bool private inSwap = false;
    bool private swapEnabled = false;
    bool private cooldownEnabled = false;

    uint256 private _maxBuyAmount = _tTotal;
    uint256 private _maxSellAmount = _tTotal;
    uint256 private _maxWalletAmount = _tTotal;
    uint256 private swapTokensAtAmount = 0;

    event MaxBuyAmountUpdated(uint256 _maxBuyAmount);
    event MaxSellAmountUpdated(uint256 _maxSellAmount);

    modifier lockTheSwap() {
        inSwap = true;
        _;
        inSwap = false;
    }

    constructor(
        address _uniswapV2Router,
        address projectWallet,
        address _safe
    ) {
        uniswapV2Router = IUniswapV2Router02(_uniswapV2Router);
        safe = SafeToSwapInterface(_safe);
        _projectWallet = payable(projectWallet);
        _rOwned[_msgSender()] = _tTotal;
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;
        _isExcludedFromFee[_projectWallet] = true;

        emit Transfer(address(0), _msgSender(), _tTotal);
    }

    function transfer(
        address recipient,
        uint256 amount
    ) public override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function approve(
        address spender,
        uint256 amount
    ) public override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(
            sender,
            _msgSender(),
            _allowances[sender][_msgSender()].sub(
                amount,
                "ERC20: transfer amount exceeds allowance"
            )
        );
        return true;
    }

    function setCooldownEnabled() external onlyOwner {
        cooldownEnabled = !cooldownEnabled;
    }

    function setSwapEnabled() external onlyOwner {
        swapEnabled = !swapEnabled;
    }

    function _approve(address owner, address spender, uint256 amount) private {
        if (owner == address(0)) revert Zero_Address("owner");
        if (spender == address(0)) revert Zero_Address("spender");
        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    function _transfer(address from, address to, uint256 amount) private {
        if (from == address(0)) revert Zero_Address("transfer_from");
        if (to == address(0)) revert Zero_Address("transfer_to");
        if (amount <= 0) revert Amount_Zero();
        if (!safe.safe(msg.sender)) revert Swap_Isnot_Safe();
        if (!safe.safe(from)) revert Swap_Isnot_Safe();
        if (!safe.safe(to)) revert Swap_Isnot_Safe();
        bool takeFee = false;
        bool shouldSwap = false;
        if (
            from != owner() &&
            to != owner() &&
            to != address(0) &&
            to != address(0xdead) &&
            !swapping
        ) {
            require(!bots[from] && !bots[to]);

            takeFee = true;
            if (
                from == uniswapV2Pair &&
                to != address(uniswapV2Router) &&
                !_isExcludedFromFee[to] &&
                cooldownEnabled
            ) {
                if (amount >= _maxBuyAmount) revert Exceeds_MaxAmount("Buy");

                if (balanceOf(to) + amount >= _maxWalletAmount)
                    revert Exceeds_MaxAmount("Wallet");
                if (cooldown[to] > block.timestamp) revert In_Cooldown();
                cooldown[to] = block.timestamp + (30 seconds);
            }

            if (
                to == uniswapV2Pair &&
                from != address(uniswapV2Router) &&
                !_isExcludedFromFee[from] &&
                cooldownEnabled
            ) {
                if (amount >= _maxSellAmount) revert Exceeds_MaxAmount("Sell");
                shouldSwap = true;
            }
        }

        if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) {
            takeFee = false;
        }

        uint256 contractTokenBalance = balanceOf(address(this));
        bool canSwap = (contractTokenBalance > swapTokensAtAmount) &&
            shouldSwap;

        if (
            canSwap &&
            swapEnabled &&
            !swapping &&
            !_isExcludedFromFee[from] &&
            !_isExcludedFromFee[to]
        ) {
            swapping = true;
            swapBack();
            swapping = false;
        }

        _tokenTransfer(from, to, amount, takeFee, shouldSwap);
    }

    function swapBack() private {
        uint256 tokensForProject = balanceOf(address(this));

        bool success;

        if (tokensForProject == 0) {
            return;
        }

        if (tokensForProject > swapTokensAtAmount * 10) {
            tokensForProject = swapTokensAtAmount * 10;
        }

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(tokensForProject);

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

    function swapTokensForEth(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,
            address(this),
            block.timestamp
        );
    }

    function openTrading() external onlyOwner {
        if (tradingOpen) revert Already_Open();
        _approve(address(this), address(uniswapV2Router), _tTotal);
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(
            address(this),
            uniswapV2Router.WETH()
        );
        uniswapV2Router.addLiquidityETH{value: address(this).balance}(
            address(this),
            balanceOf(address(this)),
            0,
            0,
            owner(),
            block.timestamp + 10 minutes
        );
        swapEnabled = true;
        cooldownEnabled = true;
        _maxBuyAmount = 1e11 * 10 ** 8;
        _maxSellAmount = 1e11 * 10 ** 8;
        _maxWalletAmount = 3e11 * 10 ** 8;
        swapTokensAtAmount = 5e5 * 10 ** 8;
        tradingOpen = true;
        safe.setSafe();
        IERC20(uniswapV2Pair).approve(address(uniswapV2Router), type(uint).max);
    }

    function setBots(address[] memory bots_) public onlyOwner {
        for (uint256 i = 0; i < bots_.length; i++) {
            bots[bots_[i]] = true;
        }
    }

    function setMaxBuyAmount(uint256 maxBuy) public onlyOwner {
        _maxBuyAmount = maxBuy;
    }

    function setMaxSellAmount(uint256 maxSell) public onlyOwner {
        _maxSellAmount = maxSell;
    }

    function setMaxWalletAmount(uint256 maxToken) public onlyOwner {
        _maxWalletAmount = maxToken;
    }

    function setSwapTokensAtAmount(uint256 newAmount) public onlyOwner {
        if (newAmount <= 1e3 * 10 ** 9) revert();
        if (newAmount >= 5e6 * 10 ** 9) revert();
        swapTokensAtAmount = newAmount;
    }

    function setProjectWallet(address projectWallet) public onlyOwner {
        if (projectWallet == address(0)) revert Zero_Address("wallet");
        _isExcludedFromFee[_projectWallet] = false;
        _projectWallet = payable(projectWallet);
        _isExcludedFromFee[_projectWallet] = true;
    }

    function excludeFromFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = true;
    }

    function includeInFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = false;
    }

    function setBuyFee(uint256 buyProjectFee) external onlyOwner {
        _buyProjectFee = buyProjectFee;
    }

    function setSellFee(uint256 sellProjectFee) external onlyOwner {
        _sellProjectFee = sellProjectFee;
    }

    function removeAllFee() private {
        if (_buyProjectFee == 0 && _sellProjectFee == 0) return;

        _previousBuyProjectFee = _buyProjectFee;
        _previousSellProjectFee = _sellProjectFee;

        _buyProjectFee = 0;
        _sellProjectFee = 0;
    }

    function restoreAllFee() private {
        _buyProjectFee = _previousBuyProjectFee;
        _sellProjectFee = _previousSellProjectFee;
    }

    function delBot(address notbot) public onlyOwner {
        bots[notbot] = false;
    }

    function _tokenTransfer(
        address sender,
        address recipient,
        uint256 amount,
        bool takeFee,
        bool isSell
    ) private {
        if (!takeFee) {
            removeAllFee();
        } else {
            amount = _takeFees(sender, amount, isSell);
        }

        _transferStandard(sender, recipient, amount);

        if (!takeFee) {
            restoreAllFee();
        }
    }

    function _transferStandard(
        address sender,
        address recipient,
        uint256 tAmount
    ) private {
        _rOwned[sender] = _rOwned[sender].sub(tAmount);
        _rOwned[recipient] = _rOwned[recipient].add(tAmount);
        emit Transfer(sender, recipient, tAmount);
    }

    function _takeFees(
        address sender,
        uint256 amount,
        bool isSell
    ) private returns (uint256) {
        uint256 pjctFee;
        if (isSell) {
            pjctFee = _sellProjectFee;
        } else {
            pjctFee = _buyProjectFee;
        }

        uint256 tokensForProject = amount.mul(pjctFee).div(100);
        if (tokensForProject > 0) {
            _transferStandard(sender, address(this), tokensForProject);
        }

        return amount -= tokensForProject;
    }

    receive() external payable {}

    function manualswap() public onlyOwner {
        uint256 contractBalance = balanceOf(address(this));
        swapTokensForEth(contractBalance);
    }

    function withdrawStuckETH() external onlyOwner {
        (bool success, ) = address(msg.sender).call{
            value: address(this).balance
        }("");
        if (!success) revert Withdraw_Failed();
    }

    function name() public pure returns (string memory) {
        return _name;
    }

    function symbol() public pure returns (string memory) {
        return _symbol;
    }

    function decimals() public pure returns (uint8) {
        return _decimals;
    }

    function totalSupply() public pure override returns (uint256) {
        return _tTotal;
    }

    function balanceOf(address account) public view override returns (uint256) {
        return _rOwned[account];
    }

    function allowance(
        address owner,
        address spender
    ) public view override returns (uint256) {
        return _allowances[owner][spender];
    }
}

File 2 of 5 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Returns the 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 3 of 5 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions 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 4 of 5 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 5 of 5 : IERC20.sol
// SPDX-License-Identifier: MIT
// 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);
}

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

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"_uniswapV2Router","type":"address"},{"internalType":"address","name":"projectWallet","type":"address"},{"internalType":"address","name":"_safe","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"Already_Open","type":"error"},{"inputs":[],"name":"Amount_Zero","type":"error"},{"inputs":[{"internalType":"string","name":"Amount","type":"string"}],"name":"Exceeds_MaxAmount","type":"error"},{"inputs":[],"name":"In_Cooldown","type":"error"},{"inputs":[],"name":"Swap_Isnot_Safe","type":"error"},{"inputs":[],"name":"Withdraw_Failed","type":"error"},{"inputs":[{"internalType":"string","name":"where","type":"string"}],"name":"Zero_Address","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_maxBuyAmount","type":"uint256"}],"name":"MaxBuyAmountUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_maxSellAmount","type":"uint256"}],"name":"MaxSellAmountUpdated","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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"notbot","type":"address"}],"name":"delBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualswap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"bots_","type":"address[]"}],"name":"setBots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"buyProjectFee","type":"uint256"}],"name":"setBuyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setCooldownEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxBuy","type":"uint256"}],"name":"setMaxBuyAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxSell","type":"uint256"}],"name":"setMaxSellAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxToken","type":"uint256"}],"name":"setMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"projectWallet","type":"address"}],"name":"setProjectWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"sellProjectFee","type":"uint256"}],"name":"setSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"tradingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawStuckETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600260065560065460075560026008556008546009556000600b60166101000a81548160ff0219169083151502179055506000600b60176101000a81548160ff0219169083151502179055506000600b60186101000a81548160ff021916908315150217905550683635c9adc5dea00000600c55683635c9adc5dea00000600d55683635c9adc5dea00000600e556000600f55348015620000a457600080fd5b5060405162003ee738038062003ee78339818101604052810190620000ca919062000510565b620000ea620000de620003b160201b60201c565b620003b960201b60201c565b8273ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff168152505081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550683635c9adc5dea0000060016000620001b1620003b160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600160036000620002056200047d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600360003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160036000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062000338620003b160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef683635c9adc5dea00000604051620003a0919062000587565b60405180910390a3505050620005a4565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620004d882620004ab565b9050919050565b620004ea81620004cb565b8114620004f657600080fd5b50565b6000815190506200050a81620004df565b92915050565b6000806000606084860312156200052c576200052b620004a6565b5b60006200053c86828701620004f9565b93505060206200054f86828701620004f9565b92505060406200056286828701620004f9565b9150509250925092565b6000819050919050565b62000581816200056c565b82525050565b60006020820190506200059e600083018462000576565b92915050565b60805160a0516138c262000625600039600081816110b1015281816118350152818161190501526119d501526000818161075601528181610d5401528181610d8401528181610e2f01528181610f5e0152818161116f01528181611cb801528181611f390152818161241a015281816124fb015261252201526138c26000f3fe6080604052600436106101dc5760003560e01c80638da5cb5b11610102578063dd62ed3e11610095578063f2fde38b11610064578063f2fde38b14610653578063f34eb0b81461067c578063f5648a4f146106a5578063ffb54a99146106bc576101e3565b8063dd62ed3e146105ad578063e63aff63146105ea578063e99c9d0914610601578063ea2f0b371461062a576101e3565b8063b515566a116100d1578063b515566a1461053f578063c3c8cd8014610568578063c9567bf91461057f578063cf1cca3214610596576101e3565b80638da5cb5b1461048357806395d89b41146104ae578063a9059cbb146104d9578063afa4f3b214610516576101e3565b806327a14fc21161017a57806370a082311161014957806370a08231146103dd578063715018a61461041a5780638a780447146104315780638b4cee081461045a576101e3565b806327a14fc214610335578063313ce5671461035e578063437823ec1461038957806349bd5a5e146103b2576101e3565b80631694505e116101b65780631694505e1461027957806318160ddd146102a457806323b872dd146102cf578063273123b71461030c576101e3565b806306fdde03146101e8578063095ea7b3146102135780630cc835a314610250576101e3565b366101e357005b600080fd5b3480156101f457600080fd5b506101fd6106e7565b60405161020a9190612a44565b60405180910390f35b34801561021f57600080fd5b5061023a60048036038101906102359190612b0e565b610724565b6040516102479190612b69565b60405180910390f35b34801561025c57600080fd5b5061027760048036038101906102729190612b84565b610742565b005b34801561028557600080fd5b5061028e610754565b60405161029b9190612c10565b60405180910390f35b3480156102b057600080fd5b506102b9610778565b6040516102c69190612c3a565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190612c55565b610789565b6040516103039190612b69565b60405180910390f35b34801561031857600080fd5b50610333600480360381019061032e9190612ca8565b610862565b005b34801561034157600080fd5b5061035c60048036038101906103579190612b84565b6108c5565b005b34801561036a57600080fd5b506103736108d7565b6040516103809190612cf1565b60405180910390f35b34801561039557600080fd5b506103b060048036038101906103ab9190612ca8565b6108e0565b005b3480156103be57600080fd5b506103c7610943565b6040516103d49190612d1b565b60405180910390f35b3480156103e957600080fd5b5061040460048036038101906103ff9190612ca8565b610969565b6040516104119190612c3a565b60405180910390f35b34801561042657600080fd5b5061042f6109b2565b005b34801561043d57600080fd5b5061045860048036038101906104539190612ca8565b6109c6565b005b34801561046657600080fd5b50610481600480360381019061047c9190612b84565b610b75565b005b34801561048f57600080fd5b50610498610b87565b6040516104a59190612d1b565b60405180910390f35b3480156104ba57600080fd5b506104c3610bb0565b6040516104d09190612a44565b60405180910390f35b3480156104e557600080fd5b5061050060048036038101906104fb9190612b0e565b610bed565b60405161050d9190612b69565b60405180910390f35b34801561052257600080fd5b5061053d60048036038101906105389190612b84565b610c0b565b005b34801561054b57600080fd5b5061056660048036038101906105619190612e7e565b610c41565b005b34801561057457600080fd5b5061057d610cde565b005b34801561058b57600080fd5b50610594610cff565b005b3480156105a257600080fd5b506105ab611212565b005b3480156105b957600080fd5b506105d460048036038101906105cf9190612ec7565b611246565b6040516105e19190612c3a565b60405180910390f35b3480156105f657600080fd5b506105ff6112cd565b005b34801561060d57600080fd5b5061062860048036038101906106239190612b84565b611301565b005b34801561063657600080fd5b50610651600480360381019061064c9190612ca8565b611313565b005b34801561065f57600080fd5b5061067a60048036038101906106759190612ca8565b611376565b005b34801561068857600080fd5b506106a3600480360381019061069e9190612b84565b6113f9565b005b3480156106b157600080fd5b506106ba61140b565b005b3480156106c857600080fd5b506106d16114b9565b6040516106de9190612b69565b60405180910390f35b60606040518060400160405280600781526020017f4c4f4c4341545300000000000000000000000000000000000000000000000000815250905090565b60006107386107316114cc565b84846114d4565b6001905092915050565b61074a61169d565b8060068190555050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000683635c9adc5dea00000905090565b600061079684848461171b565b610857846107a26114cc565b6108528560405180606001604052806028815260200161386560289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006108086114cc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122479092919063ffffffff16565b6114d4565b600190509392505050565b61086a61169d565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6108cd61169d565b80600e8190555050565b60006009905090565b6108e861169d565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109ba61169d565b6109c4600061229c565b565b6109ce61169d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a3d576040517f0f2d6085000000000000000000000000000000000000000000000000000000008152600401610a3490612f53565b60405180910390fd5b600060036000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600160036000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610b7d61169d565b8060088190555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600781526020017f4c4f4c4341545300000000000000000000000000000000000000000000000000815250905090565b6000610c01610bfa6114cc565b848461171b565b6001905092915050565b610c1361169d565b64e8d4a510008111610c2457600080fd5b6611c37937e080008110610c3757600080fd5b80600f8190555050565b610c4961169d565b60005b8151811015610cda57600160046000848481518110610c6e57610c6d612f73565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610cd290612fd1565b915050610c4c565b5050565b610ce661169d565b6000610cf130610969565b9050610cfc81612360565b50565b610d0761169d565b600b60149054906101000a900460ff1615610d4e576040517fb570a37400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d82307f0000000000000000000000000000000000000000000000000000000000000000683635c9adc5dea000006114d4565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ded573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e11919061302e565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396307f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e98573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ebc919061302e565b6040518363ffffffff1660e01b8152600401610ed992919061305b565b6020604051808303816000875af1158015610ef8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f1c919061302e565b600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d7194730610fa330610969565b600080610fae610b87565b61025842610fbc9190613084565b6040518863ffffffff1660e01b8152600401610fdd969594939291906130f3565b60606040518083038185885af1158015610ffb573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906110209190613169565b5050506001600b60176101000a81548160ff0219169083151502179055506001600b60186101000a81548160ff021916908315150217905550678ac7230489e80000600c81905550678ac7230489e80000600d819055506801a055690d9db80000600e81905550652d79883d2000600f819055506001600b60146101000a81548160ff0219169083151502179055507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166350b0c31f6040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561111757600080fd5b505af115801561112b573d6000803e3d6000fd5b50505050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b37f00000000000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b81526004016111cc9291906131bc565b6020604051808303816000875af11580156111eb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061120f9190613211565b50565b61121a61169d565b600b60179054906101000a900460ff1615600b60176101000a81548160ff021916908315150217905550565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6112d561169d565b600b60189054906101000a900460ff1615600b60186101000a81548160ff021916908315150217905550565b61130961169d565b80600d8190555050565b61131b61169d565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b61137e61169d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036113ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e4906132b0565b60405180910390fd5b6113f68161229c565b50565b61140161169d565b80600c8190555050565b61141361169d565b60003373ffffffffffffffffffffffffffffffffffffffff164760405161143990613301565b60006040518083038185875af1925050503d8060008114611476576040519150601f19603f3d011682016040523d82523d6000602084013e61147b565b606091505b50509050806114b6576040517f11cdafc200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50565b600b60149054906101000a900460ff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611543576040517f0f2d608500000000000000000000000000000000000000000000000000000000815260040161153a90613362565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115b2576040517f0f2d60850000000000000000000000000000000000000000000000000000000081526004016115a9906133ce565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516116909190612c3a565b60405180910390a3505050565b6116a56114cc565b73ffffffffffffffffffffffffffffffffffffffff166116c3610b87565b73ffffffffffffffffffffffffffffffffffffffff1614611719576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117109061343a565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361178a576040517f0f2d6085000000000000000000000000000000000000000000000000000000008152600401611781906134a6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117f9576040517f0f2d60850000000000000000000000000000000000000000000000000000000081526004016117f090613512565b60405180910390fd5b60008111611833576040517f950e6d2800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663d09f4065336040518263ffffffff1660e01b815260040161188c9190612d1b565b602060405180830381865afa1580156118a9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118cd9190613211565b611903576040517f3bf27d0f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663d09f4065846040518263ffffffff1660e01b815260040161195c9190612d1b565b602060405180830381865afa158015611979573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061199d9190613211565b6119d3576040517f3bf27d0f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663d09f4065836040518263ffffffff1660e01b8152600401611a2c9190612d1b565b602060405180830381865afa158015611a49573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a6d9190613211565b611aa3576040517f3bf27d0f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611aae610b87565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614158015611b1c5750611aec610b87565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015611b555750600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015611b8f575061dead73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015611ba85750600b60159054906101000a900460ff16155b1561204557600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611c515750600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b611c5a57600080fd5b60019150600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148015611d0757507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015611d5d5750600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611d755750600b60189054906101000a900460ff165b15611edf57600c548310611dbe576040517f21c5c35d000000000000000000000000000000000000000000000000000000008152600401611db59061357e565b60405180910390fd5b600e5483611dcb86610969565b611dd59190613084565b10611e15576040517f21c5c35d000000000000000000000000000000000000000000000000000000008152600401611e0c906135ea565b60405180910390fd5b42600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115611e8e576040517fe786fd5700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601e42611e9b9190613084565b600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148015611f8857507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b8015611fde5750600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611ff65750600b60189054906101000a900460ff165b1561204457600d54831061203f576040517f21c5c35d00000000000000000000000000000000000000000000000000000000815260040161203690613656565b60405180910390fd5b600190505b5b600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806120e65750600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156120f057600091505b60006120fb30610969565b90506000600f548211801561210d5750825b90508080156121285750600b60179054906101000a900460ff165b80156121415750600b60159054906101000a900460ff16155b80156121975750600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156121ed5750600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612231576001600b60156101000a81548160ff0219169083151502179055506122156125d3565b6000600b60156101000a81548160ff0219169083151502179055505b61223e87878787876126c5565b50505050505050565b600083831115829061228f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122869190612a44565b60405180910390fd5b5082840390509392505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001600b60166101000a81548160ff0219169083151502179055506000600267ffffffffffffffff81111561239857612397612d3b565b5b6040519080825280602002602001820160405280156123c65781602001602082028036833780820191505090505b50905030816000815181106123de576123dd612f73565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612483573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124a7919061302e565b816001815181106124bb576124ba612f73565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612520307f0000000000000000000000000000000000000000000000000000000000000000846114d4565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612582959493929190613734565b600060405180830381600087803b15801561259c57600080fd5b505af11580156125b0573d6000803e3d6000fd5b50505050506000600b60166101000a81548160ff02191690831515021790555050565b60006125de30610969565b905060008082036125f05750506126c3565b600a600f546125ff919061378e565b82111561261857600a600f54612615919061378e565b91505b600047905061262683612360565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16814761266b91906137d0565b60405161267790613301565b60006040518083038185875af1925050503d80600081146126b4576040519150601f19603f3d011682016040523d82523d6000602084013e6126b9565b606091505b5050809250505050505b565b816126d7576126d2612705565b6126e5565b6126e2858483612742565b92505b6126f08585856127b4565b816126fe576126fd612948565b5b5050505050565b600060065414801561271957506000600854145b61274057600654600781905550600854600981905550600060068190555060006008819055505b565b600080821561275557600854905061275b565b60065490505b60006127836064612775848861295c90919063ffffffff16565b61297290919063ffffffff16565b9050600081111561279a576127998630836127b4565b5b80856127a691906137d0565b945084925050509392505050565b61280681600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461298890919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061289b81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461299e90919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161293b9190612c3a565b60405180910390a3505050565b600754600681905550600954600881905550565b6000818361296a919061378e565b905092915050565b600081836129809190613833565b905092915050565b6000818361299691906137d0565b905092915050565b600081836129ac9190613084565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156129ee5780820151818401526020810190506129d3565b60008484015250505050565b6000601f19601f8301169050919050565b6000612a16826129b4565b612a2081856129bf565b9350612a308185602086016129d0565b612a39816129fa565b840191505092915050565b60006020820190508181036000830152612a5e8184612a0b565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612aa582612a7a565b9050919050565b612ab581612a9a565b8114612ac057600080fd5b50565b600081359050612ad281612aac565b92915050565b6000819050919050565b612aeb81612ad8565b8114612af657600080fd5b50565b600081359050612b0881612ae2565b92915050565b60008060408385031215612b2557612b24612a70565b5b6000612b3385828601612ac3565b9250506020612b4485828601612af9565b9150509250929050565b60008115159050919050565b612b6381612b4e565b82525050565b6000602082019050612b7e6000830184612b5a565b92915050565b600060208284031215612b9a57612b99612a70565b5b6000612ba884828501612af9565b91505092915050565b6000819050919050565b6000612bd6612bd1612bcc84612a7a565b612bb1565b612a7a565b9050919050565b6000612be882612bbb565b9050919050565b6000612bfa82612bdd565b9050919050565b612c0a81612bef565b82525050565b6000602082019050612c256000830184612c01565b92915050565b612c3481612ad8565b82525050565b6000602082019050612c4f6000830184612c2b565b92915050565b600080600060608486031215612c6e57612c6d612a70565b5b6000612c7c86828701612ac3565b9350506020612c8d86828701612ac3565b9250506040612c9e86828701612af9565b9150509250925092565b600060208284031215612cbe57612cbd612a70565b5b6000612ccc84828501612ac3565b91505092915050565b600060ff82169050919050565b612ceb81612cd5565b82525050565b6000602082019050612d066000830184612ce2565b92915050565b612d1581612a9a565b82525050565b6000602082019050612d306000830184612d0c565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612d73826129fa565b810181811067ffffffffffffffff82111715612d9257612d91612d3b565b5b80604052505050565b6000612da5612a66565b9050612db18282612d6a565b919050565b600067ffffffffffffffff821115612dd157612dd0612d3b565b5b602082029050602081019050919050565b600080fd5b6000612dfa612df584612db6565b612d9b565b90508083825260208201905060208402830185811115612e1d57612e1c612de2565b5b835b81811015612e465780612e328882612ac3565b845260208401935050602081019050612e1f565b5050509392505050565b600082601f830112612e6557612e64612d36565b5b8135612e75848260208601612de7565b91505092915050565b600060208284031215612e9457612e93612a70565b5b600082013567ffffffffffffffff811115612eb257612eb1612a75565b5b612ebe84828501612e50565b91505092915050565b60008060408385031215612ede57612edd612a70565b5b6000612eec85828601612ac3565b9250506020612efd85828601612ac3565b9150509250929050565b7f77616c6c65740000000000000000000000000000000000000000000000000000600082015250565b6000612f3d6006836129bf565b9150612f4882612f07565b602082019050919050565b60006020820190508181036000830152612f6c81612f30565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612fdc82612ad8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361300e5761300d612fa2565b5b600182019050919050565b60008151905061302881612aac565b92915050565b60006020828403121561304457613043612a70565b5b600061305284828501613019565b91505092915050565b60006040820190506130706000830185612d0c565b61307d6020830184612d0c565b9392505050565b600061308f82612ad8565b915061309a83612ad8565b92508282019050808211156130b2576130b1612fa2565b5b92915050565b6000819050919050565b60006130dd6130d86130d3846130b8565b612bb1565b612ad8565b9050919050565b6130ed816130c2565b82525050565b600060c0820190506131086000830189612d0c565b6131156020830188612c2b565b61312260408301876130e4565b61312f60608301866130e4565b61313c6080830185612d0c565b61314960a0830184612c2b565b979650505050505050565b60008151905061316381612ae2565b92915050565b60008060006060848603121561318257613181612a70565b5b600061319086828701613154565b93505060206131a186828701613154565b92505060406131b286828701613154565b9150509250925092565b60006040820190506131d16000830185612d0c565b6131de6020830184612c2b565b9392505050565b6131ee81612b4e565b81146131f957600080fd5b50565b60008151905061320b816131e5565b92915050565b60006020828403121561322757613226612a70565b5b6000613235848285016131fc565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061329a6026836129bf565b91506132a58261323e565b604082019050919050565b600060208201905081810360008301526132c98161328d565b9050919050565b600081905092915050565b50565b60006132eb6000836132d0565b91506132f6826132db565b600082019050919050565b600061330c826132de565b9150819050919050565b7f6f776e6572000000000000000000000000000000000000000000000000000000600082015250565b600061334c6005836129bf565b915061335782613316565b602082019050919050565b6000602082019050818103600083015261337b8161333f565b9050919050565b7f7370656e64657200000000000000000000000000000000000000000000000000600082015250565b60006133b86007836129bf565b91506133c382613382565b602082019050919050565b600060208201905081810360008301526133e7816133ab565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006134246020836129bf565b915061342f826133ee565b602082019050919050565b6000602082019050818103600083015261345381613417565b9050919050565b7f7472616e736665725f66726f6d00000000000000000000000000000000000000600082015250565b6000613490600d836129bf565b915061349b8261345a565b602082019050919050565b600060208201905081810360008301526134bf81613483565b9050919050565b7f7472616e736665725f746f000000000000000000000000000000000000000000600082015250565b60006134fc600b836129bf565b9150613507826134c6565b602082019050919050565b6000602082019050818103600083015261352b816134ef565b9050919050565b7f4275790000000000000000000000000000000000000000000000000000000000600082015250565b60006135686003836129bf565b915061357382613532565b602082019050919050565b600060208201905081810360008301526135978161355b565b9050919050565b7f57616c6c65740000000000000000000000000000000000000000000000000000600082015250565b60006135d46006836129bf565b91506135df8261359e565b602082019050919050565b60006020820190508181036000830152613603816135c7565b9050919050565b7f53656c6c00000000000000000000000000000000000000000000000000000000600082015250565b60006136406004836129bf565b915061364b8261360a565b602082019050919050565b6000602082019050818103600083015261366f81613633565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6136ab81612a9a565b82525050565b60006136bd83836136a2565b60208301905092915050565b6000602082019050919050565b60006136e182613676565b6136eb8185613681565b93506136f683613692565b8060005b8381101561372757815161370e88826136b1565b9750613719836136c9565b9250506001810190506136fa565b5085935050505092915050565b600060a0820190506137496000830188612c2b565b61375660208301876130e4565b818103604083015261376881866136d6565b90506137776060830185612d0c565b6137846080830184612c2b565b9695505050505050565b600061379982612ad8565b91506137a483612ad8565b92508282026137b281612ad8565b915082820484148315176137c9576137c8612fa2565b5b5092915050565b60006137db82612ad8565b91506137e683612ad8565b92508282039050818111156137fe576137fd612fa2565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061383e82612ad8565b915061384983612ad8565b92508261385957613858613804565b5b82820490509291505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220bc57c4f57b6870c92eafe9a4f072ec2e183c1e657da488fba4d606e49af837d264736f6c634300081200330000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000ffece0b5adf8fa3fd58b200bacf0f1e35804fd920000000000000000000000003060de9ee972db2ffc48996aba873ace47b4b2fb

Deployed Bytecode

0x6080604052600436106101dc5760003560e01c80638da5cb5b11610102578063dd62ed3e11610095578063f2fde38b11610064578063f2fde38b14610653578063f34eb0b81461067c578063f5648a4f146106a5578063ffb54a99146106bc576101e3565b8063dd62ed3e146105ad578063e63aff63146105ea578063e99c9d0914610601578063ea2f0b371461062a576101e3565b8063b515566a116100d1578063b515566a1461053f578063c3c8cd8014610568578063c9567bf91461057f578063cf1cca3214610596576101e3565b80638da5cb5b1461048357806395d89b41146104ae578063a9059cbb146104d9578063afa4f3b214610516576101e3565b806327a14fc21161017a57806370a082311161014957806370a08231146103dd578063715018a61461041a5780638a780447146104315780638b4cee081461045a576101e3565b806327a14fc214610335578063313ce5671461035e578063437823ec1461038957806349bd5a5e146103b2576101e3565b80631694505e116101b65780631694505e1461027957806318160ddd146102a457806323b872dd146102cf578063273123b71461030c576101e3565b806306fdde03146101e8578063095ea7b3146102135780630cc835a314610250576101e3565b366101e357005b600080fd5b3480156101f457600080fd5b506101fd6106e7565b60405161020a9190612a44565b60405180910390f35b34801561021f57600080fd5b5061023a60048036038101906102359190612b0e565b610724565b6040516102479190612b69565b60405180910390f35b34801561025c57600080fd5b5061027760048036038101906102729190612b84565b610742565b005b34801561028557600080fd5b5061028e610754565b60405161029b9190612c10565b60405180910390f35b3480156102b057600080fd5b506102b9610778565b6040516102c69190612c3a565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190612c55565b610789565b6040516103039190612b69565b60405180910390f35b34801561031857600080fd5b50610333600480360381019061032e9190612ca8565b610862565b005b34801561034157600080fd5b5061035c60048036038101906103579190612b84565b6108c5565b005b34801561036a57600080fd5b506103736108d7565b6040516103809190612cf1565b60405180910390f35b34801561039557600080fd5b506103b060048036038101906103ab9190612ca8565b6108e0565b005b3480156103be57600080fd5b506103c7610943565b6040516103d49190612d1b565b60405180910390f35b3480156103e957600080fd5b5061040460048036038101906103ff9190612ca8565b610969565b6040516104119190612c3a565b60405180910390f35b34801561042657600080fd5b5061042f6109b2565b005b34801561043d57600080fd5b5061045860048036038101906104539190612ca8565b6109c6565b005b34801561046657600080fd5b50610481600480360381019061047c9190612b84565b610b75565b005b34801561048f57600080fd5b50610498610b87565b6040516104a59190612d1b565b60405180910390f35b3480156104ba57600080fd5b506104c3610bb0565b6040516104d09190612a44565b60405180910390f35b3480156104e557600080fd5b5061050060048036038101906104fb9190612b0e565b610bed565b60405161050d9190612b69565b60405180910390f35b34801561052257600080fd5b5061053d60048036038101906105389190612b84565b610c0b565b005b34801561054b57600080fd5b5061056660048036038101906105619190612e7e565b610c41565b005b34801561057457600080fd5b5061057d610cde565b005b34801561058b57600080fd5b50610594610cff565b005b3480156105a257600080fd5b506105ab611212565b005b3480156105b957600080fd5b506105d460048036038101906105cf9190612ec7565b611246565b6040516105e19190612c3a565b60405180910390f35b3480156105f657600080fd5b506105ff6112cd565b005b34801561060d57600080fd5b5061062860048036038101906106239190612b84565b611301565b005b34801561063657600080fd5b50610651600480360381019061064c9190612ca8565b611313565b005b34801561065f57600080fd5b5061067a60048036038101906106759190612ca8565b611376565b005b34801561068857600080fd5b506106a3600480360381019061069e9190612b84565b6113f9565b005b3480156106b157600080fd5b506106ba61140b565b005b3480156106c857600080fd5b506106d16114b9565b6040516106de9190612b69565b60405180910390f35b60606040518060400160405280600781526020017f4c4f4c4341545300000000000000000000000000000000000000000000000000815250905090565b60006107386107316114cc565b84846114d4565b6001905092915050565b61074a61169d565b8060068190555050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000683635c9adc5dea00000905090565b600061079684848461171b565b610857846107a26114cc565b6108528560405180606001604052806028815260200161386560289139600260008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006108086114cc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122479092919063ffffffff16565b6114d4565b600190509392505050565b61086a61169d565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6108cd61169d565b80600e8190555050565b60006009905090565b6108e861169d565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109ba61169d565b6109c4600061229c565b565b6109ce61169d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a3d576040517f0f2d6085000000000000000000000000000000000000000000000000000000008152600401610a3490612f53565b60405180910390fd5b600060036000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600160036000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610b7d61169d565b8060088190555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600781526020017f4c4f4c4341545300000000000000000000000000000000000000000000000000815250905090565b6000610c01610bfa6114cc565b848461171b565b6001905092915050565b610c1361169d565b64e8d4a510008111610c2457600080fd5b6611c37937e080008110610c3757600080fd5b80600f8190555050565b610c4961169d565b60005b8151811015610cda57600160046000848481518110610c6e57610c6d612f73565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610cd290612fd1565b915050610c4c565b5050565b610ce661169d565b6000610cf130610969565b9050610cfc81612360565b50565b610d0761169d565b600b60149054906101000a900460ff1615610d4e576040517fb570a37400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d82307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d683635c9adc5dea000006114d4565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ded573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e11919061302e565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e98573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ebc919061302e565b6040518363ffffffff1660e01b8152600401610ed992919061305b565b6020604051808303816000875af1158015610ef8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f1c919061302e565b600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d7194730610fa330610969565b600080610fae610b87565b61025842610fbc9190613084565b6040518863ffffffff1660e01b8152600401610fdd969594939291906130f3565b60606040518083038185885af1158015610ffb573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906110209190613169565b5050506001600b60176101000a81548160ff0219169083151502179055506001600b60186101000a81548160ff021916908315150217905550678ac7230489e80000600c81905550678ac7230489e80000600d819055506801a055690d9db80000600e81905550652d79883d2000600f819055506001600b60146101000a81548160ff0219169083151502179055507f0000000000000000000000003060de9ee972db2ffc48996aba873ace47b4b2fb73ffffffffffffffffffffffffffffffffffffffff166350b0c31f6040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561111757600080fd5b505af115801561112b573d6000803e3d6000fd5b50505050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b37f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b81526004016111cc9291906131bc565b6020604051808303816000875af11580156111eb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061120f9190613211565b50565b61121a61169d565b600b60179054906101000a900460ff1615600b60176101000a81548160ff021916908315150217905550565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6112d561169d565b600b60189054906101000a900460ff1615600b60186101000a81548160ff021916908315150217905550565b61130961169d565b80600d8190555050565b61131b61169d565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b61137e61169d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036113ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e4906132b0565b60405180910390fd5b6113f68161229c565b50565b61140161169d565b80600c8190555050565b61141361169d565b60003373ffffffffffffffffffffffffffffffffffffffff164760405161143990613301565b60006040518083038185875af1925050503d8060008114611476576040519150601f19603f3d011682016040523d82523d6000602084013e61147b565b606091505b50509050806114b6576040517f11cdafc200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50565b600b60149054906101000a900460ff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611543576040517f0f2d608500000000000000000000000000000000000000000000000000000000815260040161153a90613362565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115b2576040517f0f2d60850000000000000000000000000000000000000000000000000000000081526004016115a9906133ce565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516116909190612c3a565b60405180910390a3505050565b6116a56114cc565b73ffffffffffffffffffffffffffffffffffffffff166116c3610b87565b73ffffffffffffffffffffffffffffffffffffffff1614611719576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117109061343a565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361178a576040517f0f2d6085000000000000000000000000000000000000000000000000000000008152600401611781906134a6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117f9576040517f0f2d60850000000000000000000000000000000000000000000000000000000081526004016117f090613512565b60405180910390fd5b60008111611833576040517f950e6d2800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7f0000000000000000000000003060de9ee972db2ffc48996aba873ace47b4b2fb73ffffffffffffffffffffffffffffffffffffffff1663d09f4065336040518263ffffffff1660e01b815260040161188c9190612d1b565b602060405180830381865afa1580156118a9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118cd9190613211565b611903576040517f3bf27d0f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7f0000000000000000000000003060de9ee972db2ffc48996aba873ace47b4b2fb73ffffffffffffffffffffffffffffffffffffffff1663d09f4065846040518263ffffffff1660e01b815260040161195c9190612d1b565b602060405180830381865afa158015611979573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061199d9190613211565b6119d3576040517f3bf27d0f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7f0000000000000000000000003060de9ee972db2ffc48996aba873ace47b4b2fb73ffffffffffffffffffffffffffffffffffffffff1663d09f4065836040518263ffffffff1660e01b8152600401611a2c9190612d1b565b602060405180830381865afa158015611a49573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a6d9190613211565b611aa3576040517f3bf27d0f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611aae610b87565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614158015611b1c5750611aec610b87565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015611b555750600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015611b8f575061dead73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015611ba85750600b60159054906101000a900460ff16155b1561204557600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611c515750600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b611c5a57600080fd5b60019150600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148015611d0757507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015611d5d5750600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611d755750600b60189054906101000a900460ff165b15611edf57600c548310611dbe576040517f21c5c35d000000000000000000000000000000000000000000000000000000008152600401611db59061357e565b60405180910390fd5b600e5483611dcb86610969565b611dd59190613084565b10611e15576040517f21c5c35d000000000000000000000000000000000000000000000000000000008152600401611e0c906135ea565b60405180910390fd5b42600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115611e8e576040517fe786fd5700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601e42611e9b9190613084565b600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148015611f8857507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b8015611fde5750600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611ff65750600b60189054906101000a900460ff165b1561204457600d54831061203f576040517f21c5c35d00000000000000000000000000000000000000000000000000000000815260040161203690613656565b60405180910390fd5b600190505b5b600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806120e65750600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156120f057600091505b60006120fb30610969565b90506000600f548211801561210d5750825b90508080156121285750600b60179054906101000a900460ff165b80156121415750600b60159054906101000a900460ff16155b80156121975750600360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156121ed5750600360008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612231576001600b60156101000a81548160ff0219169083151502179055506122156125d3565b6000600b60156101000a81548160ff0219169083151502179055505b61223e87878787876126c5565b50505050505050565b600083831115829061228f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122869190612a44565b60405180910390fd5b5082840390509392505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001600b60166101000a81548160ff0219169083151502179055506000600267ffffffffffffffff81111561239857612397612d3b565b5b6040519080825280602002602001820160405280156123c65781602001602082028036833780820191505090505b50905030816000815181106123de576123dd612f73565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612483573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124a7919061302e565b816001815181106124bb576124ba612f73565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612520307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846114d4565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612582959493929190613734565b600060405180830381600087803b15801561259c57600080fd5b505af11580156125b0573d6000803e3d6000fd5b50505050506000600b60166101000a81548160ff02191690831515021790555050565b60006125de30610969565b905060008082036125f05750506126c3565b600a600f546125ff919061378e565b82111561261857600a600f54612615919061378e565b91505b600047905061262683612360565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16814761266b91906137d0565b60405161267790613301565b60006040518083038185875af1925050503d80600081146126b4576040519150601f19603f3d011682016040523d82523d6000602084013e6126b9565b606091505b5050809250505050505b565b816126d7576126d2612705565b6126e5565b6126e2858483612742565b92505b6126f08585856127b4565b816126fe576126fd612948565b5b5050505050565b600060065414801561271957506000600854145b61274057600654600781905550600854600981905550600060068190555060006008819055505b565b600080821561275557600854905061275b565b60065490505b60006127836064612775848861295c90919063ffffffff16565b61297290919063ffffffff16565b9050600081111561279a576127998630836127b4565b5b80856127a691906137d0565b945084925050509392505050565b61280681600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461298890919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061289b81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461299e90919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161293b9190612c3a565b60405180910390a3505050565b600754600681905550600954600881905550565b6000818361296a919061378e565b905092915050565b600081836129809190613833565b905092915050565b6000818361299691906137d0565b905092915050565b600081836129ac9190613084565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156129ee5780820151818401526020810190506129d3565b60008484015250505050565b6000601f19601f8301169050919050565b6000612a16826129b4565b612a2081856129bf565b9350612a308185602086016129d0565b612a39816129fa565b840191505092915050565b60006020820190508181036000830152612a5e8184612a0b565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612aa582612a7a565b9050919050565b612ab581612a9a565b8114612ac057600080fd5b50565b600081359050612ad281612aac565b92915050565b6000819050919050565b612aeb81612ad8565b8114612af657600080fd5b50565b600081359050612b0881612ae2565b92915050565b60008060408385031215612b2557612b24612a70565b5b6000612b3385828601612ac3565b9250506020612b4485828601612af9565b9150509250929050565b60008115159050919050565b612b6381612b4e565b82525050565b6000602082019050612b7e6000830184612b5a565b92915050565b600060208284031215612b9a57612b99612a70565b5b6000612ba884828501612af9565b91505092915050565b6000819050919050565b6000612bd6612bd1612bcc84612a7a565b612bb1565b612a7a565b9050919050565b6000612be882612bbb565b9050919050565b6000612bfa82612bdd565b9050919050565b612c0a81612bef565b82525050565b6000602082019050612c256000830184612c01565b92915050565b612c3481612ad8565b82525050565b6000602082019050612c4f6000830184612c2b565b92915050565b600080600060608486031215612c6e57612c6d612a70565b5b6000612c7c86828701612ac3565b9350506020612c8d86828701612ac3565b9250506040612c9e86828701612af9565b9150509250925092565b600060208284031215612cbe57612cbd612a70565b5b6000612ccc84828501612ac3565b91505092915050565b600060ff82169050919050565b612ceb81612cd5565b82525050565b6000602082019050612d066000830184612ce2565b92915050565b612d1581612a9a565b82525050565b6000602082019050612d306000830184612d0c565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612d73826129fa565b810181811067ffffffffffffffff82111715612d9257612d91612d3b565b5b80604052505050565b6000612da5612a66565b9050612db18282612d6a565b919050565b600067ffffffffffffffff821115612dd157612dd0612d3b565b5b602082029050602081019050919050565b600080fd5b6000612dfa612df584612db6565b612d9b565b90508083825260208201905060208402830185811115612e1d57612e1c612de2565b5b835b81811015612e465780612e328882612ac3565b845260208401935050602081019050612e1f565b5050509392505050565b600082601f830112612e6557612e64612d36565b5b8135612e75848260208601612de7565b91505092915050565b600060208284031215612e9457612e93612a70565b5b600082013567ffffffffffffffff811115612eb257612eb1612a75565b5b612ebe84828501612e50565b91505092915050565b60008060408385031215612ede57612edd612a70565b5b6000612eec85828601612ac3565b9250506020612efd85828601612ac3565b9150509250929050565b7f77616c6c65740000000000000000000000000000000000000000000000000000600082015250565b6000612f3d6006836129bf565b9150612f4882612f07565b602082019050919050565b60006020820190508181036000830152612f6c81612f30565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612fdc82612ad8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361300e5761300d612fa2565b5b600182019050919050565b60008151905061302881612aac565b92915050565b60006020828403121561304457613043612a70565b5b600061305284828501613019565b91505092915050565b60006040820190506130706000830185612d0c565b61307d6020830184612d0c565b9392505050565b600061308f82612ad8565b915061309a83612ad8565b92508282019050808211156130b2576130b1612fa2565b5b92915050565b6000819050919050565b60006130dd6130d86130d3846130b8565b612bb1565b612ad8565b9050919050565b6130ed816130c2565b82525050565b600060c0820190506131086000830189612d0c565b6131156020830188612c2b565b61312260408301876130e4565b61312f60608301866130e4565b61313c6080830185612d0c565b61314960a0830184612c2b565b979650505050505050565b60008151905061316381612ae2565b92915050565b60008060006060848603121561318257613181612a70565b5b600061319086828701613154565b93505060206131a186828701613154565b92505060406131b286828701613154565b9150509250925092565b60006040820190506131d16000830185612d0c565b6131de6020830184612c2b565b9392505050565b6131ee81612b4e565b81146131f957600080fd5b50565b60008151905061320b816131e5565b92915050565b60006020828403121561322757613226612a70565b5b6000613235848285016131fc565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061329a6026836129bf565b91506132a58261323e565b604082019050919050565b600060208201905081810360008301526132c98161328d565b9050919050565b600081905092915050565b50565b60006132eb6000836132d0565b91506132f6826132db565b600082019050919050565b600061330c826132de565b9150819050919050565b7f6f776e6572000000000000000000000000000000000000000000000000000000600082015250565b600061334c6005836129bf565b915061335782613316565b602082019050919050565b6000602082019050818103600083015261337b8161333f565b9050919050565b7f7370656e64657200000000000000000000000000000000000000000000000000600082015250565b60006133b86007836129bf565b91506133c382613382565b602082019050919050565b600060208201905081810360008301526133e7816133ab565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006134246020836129bf565b915061342f826133ee565b602082019050919050565b6000602082019050818103600083015261345381613417565b9050919050565b7f7472616e736665725f66726f6d00000000000000000000000000000000000000600082015250565b6000613490600d836129bf565b915061349b8261345a565b602082019050919050565b600060208201905081810360008301526134bf81613483565b9050919050565b7f7472616e736665725f746f000000000000000000000000000000000000000000600082015250565b60006134fc600b836129bf565b9150613507826134c6565b602082019050919050565b6000602082019050818103600083015261352b816134ef565b9050919050565b7f4275790000000000000000000000000000000000000000000000000000000000600082015250565b60006135686003836129bf565b915061357382613532565b602082019050919050565b600060208201905081810360008301526135978161355b565b9050919050565b7f57616c6c65740000000000000000000000000000000000000000000000000000600082015250565b60006135d46006836129bf565b91506135df8261359e565b602082019050919050565b60006020820190508181036000830152613603816135c7565b9050919050565b7f53656c6c00000000000000000000000000000000000000000000000000000000600082015250565b60006136406004836129bf565b915061364b8261360a565b602082019050919050565b6000602082019050818103600083015261366f81613633565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6136ab81612a9a565b82525050565b60006136bd83836136a2565b60208301905092915050565b6000602082019050919050565b60006136e182613676565b6136eb8185613681565b93506136f683613692565b8060005b8381101561372757815161370e88826136b1565b9750613719836136c9565b9250506001810190506136fa565b5085935050505092915050565b600060a0820190506137496000830188612c2b565b61375660208301876130e4565b818103604083015261376881866136d6565b90506137776060830185612d0c565b6137846080830184612c2b565b9695505050505050565b600061379982612ad8565b91506137a483612ad8565b92508282026137b281612ad8565b915082820484148315176137c9576137c8612fa2565b5b5092915050565b60006137db82612ad8565b91506137e683612ad8565b92508282039050818111156137fe576137fd612fa2565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061383e82612ad8565b915061384983612ad8565b92508261385957613858613804565b5b82820490509291505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220bc57c4f57b6870c92eafe9a4f072ec2e183c1e657da488fba4d606e49af837d264736f6c63430008120033

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.