ETH Price: $2,505.76 (-0.42%)

Token

Greatest Of All Tokens (GOAT)
 

Overview

Max Total Supply

1,000,000 GOAT

Holders

81

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2,660.991814521293658831 GOAT

Value
$0.00
0x7383cb23c4b4be6c3ed1cae6c72faca2e5d9c80f
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
GOAT

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 6 : GOAT.sol
/*

TG: https://t.me/GOATverify
TWITTER: https://twitter.com/GOATonETH
Website: https://goateth.info
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

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

contract GOAT is ERC20, Ownable {
    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

    // Limits
    uint256 public maxTx = 10; // 10 = 1%
    uint256 public maxWallet = 20; // 20 = 2%

    // Fees
    uint256 public marketingFee = 215; // 20 = 2%
    uint256 public liquidityFee = 10; // 20 = 2%
    uint256 public totalFees = marketingFee + liquidityFee;
    uint256 public numTokensToLiquify = 3000 * 10 ** 18;
    address public marketingWallet = 0x6aB81297e2E9F075d7F6C1B95722629E9C90B8E6;
    bool inSwapAndLiq;
    bool public SwapAndSendEnabled = true;

    //Mappings
    mapping(address => bool) public _isExcludedFromFee;
    mapping(address => bool) public _isExcluded;
    mapping(address => bool) public _isBlacklisted;

    // Anti-Bot/Sniper
    mapping(address => bool) public earlyBuyerHODL;
    mapping(address => uint256) public earlyBuyerTimeOut;
    uint8 public HODLBLOCKS;
    uint8 public botsCaught;
    uint32 public tradingStartBlock = 77777777;

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

    receive() external payable {}

    constructor() ERC20("Greatest Of All Tokens", "GOAT") {
        _mint(msg.sender, 1000000 * 10 ** decimals());
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

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

        // set the rest of the contract variables
        uniswapV2Router = _uniswapV2Router;

        _isExcludedFromFee[msg.sender] = true;
        _isExcludedFromFee[address(this)] = true;
        _isExcludedFromFee[marketingWallet] = true;
        _isExcludedFromFee[uniswapV2Pair] = true;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        uint256 maxTxAmount = (totalSupply() * maxTx) / 1000;
        uint256 maxWalletAmount = (totalSupply() * maxWallet) / 1000;
        uint256 taxAmount;

        if (block.number <= tradingStartBlock) {
            require(from == owner(), "Trading hasnt started");
        }

        if (from == uniswapV2Pair) {
            //Buy
            if (!_isExcludedFromFee[to]) {
                require(amount <= maxTxAmount, "Amount over max tx");
                require(
                    balanceOf(to) + amount <= maxWalletAmount,
                    "Max wallet in effect"
                );
                taxAmount = (amount * totalFees) / 1000;
            }

            if (block.number <= tradingStartBlock + HODLBLOCKS) {
                earlyBuyerHODL[to] = true;
                earlyBuyerTimeOut[to] = block.timestamp + 1 weeks;
                botsCaught += 1;
            }
        }

        if (to == uniswapV2Pair) {
            //Sell
            if (!_isExcludedFromFee[from]) {
                require(amount <= maxTxAmount, "Amount over max tx");
                require(!_isBlacklisted[from], "Account blacklisted");
                taxAmount = (amount * totalFees) / 1000;
            }

            if (earlyBuyerHODL[from]) {
                require(block.timestamp > earlyBuyerTimeOut[from]);
            }
        }

        if (to != uniswapV2Pair && from != uniswapV2Pair) {
            if (!_isExcludedFromFee[to] || !_isExcludedFromFee[from]) {
                require(
                    balanceOf(to) + amount <= maxWalletAmount,
                    "Max wallet in effect"
                );
            }

            if (earlyBuyerHODL[to])
                require(block.timestamp > earlyBuyerTimeOut[to]);
        }

        uint256 contractTokenBalance = balanceOf(address(this));
        bool overMinTokenBalance = contractTokenBalance >= numTokensToLiquify;

        if (contractTokenBalance >= numTokensToLiquify) {
            contractTokenBalance = numTokensToLiquify;
        }

        if (
            overMinTokenBalance &&
            !inSwapAndLiq &&
            from != uniswapV2Pair &&
            SwapAndSendEnabled
        ) {
            handleTax(contractTokenBalance);
        }
        // Fees
        if (taxAmount > 0) {
            uint256 userAmount = amount - taxAmount;

            super._transfer(from, address(this), taxAmount);
            super._transfer(from, to, userAmount);
        } else {
            super._transfer(from, to, amount);
        }
    }

    function handleTax(uint256 _contractTokenBalance) internal lockTheSwap {
        uint256 tokensToLiquidity = (((((liquidityFee) * 1000) / totalFees)) *
            _contractTokenBalance) / 1000;

        uint256 tokensToMarketing = _contractTokenBalance - tokensToLiquidity;
        _transfer(address(this), marketingWallet, tokensToMarketing);
        addLiquidity(tokensToLiquidity);
    }

    function addLiquidity(uint256 amount) internal {
        uint256 half = amount / 2;
        uint256 otherHalf = amount - half;
        uint256 initialBalance = address(this).balance;
        swapTokensForEth(half);
        uint256 newBalance = address(this).balance - initialBalance;
        _addLiquidity(otherHalf, newBalance);
    }

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

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

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

    function _addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        _approve(address(this), address(uniswapV2Router), tokenAmount);

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

    // SETTERS

    function startTrading(uint8 _blacklistBlocks) external onlyOwner {
        tradingStartBlock = uint32(block.number);
        HODLBLOCKS = _blacklistBlocks;
    }

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

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

    function addToBlackList(address _address) external onlyOwner {
        _isBlacklisted[_address] = true;
    }

    function removeFromBlackList(address account) external onlyOwner {
        _isBlacklisted[account] = false;
    }

    function _setMarketingWallet(address payable wallet) external onlyOwner {
        marketingWallet = wallet;
    }

    function _setMaxTxAmount(uint256 _maxTxAmount) external onlyOwner {
        maxTx = _maxTxAmount;
    }

    function _setMaxWalletAmount(uint256 _maxWalletAmount) external onlyOwner {
        maxWallet = _maxWalletAmount;
    }

    function setNewFees(uint256 _marketingFee, uint256 _liquidityFee) external onlyOwner {
        marketingFee = _marketingFee;
        liquidityFee = _liquidityFee;
         totalFees = marketingFee + liquidityFee;
    }

    function setSwapAndSendEnabled(bool _active) external onlyOwner {
        SwapAndSendEnabled = _active;
    }

    function decreaseEarlyBuyerTimeOut(
        address _address,
        uint256 _newTimeOut
    ) external onlyOwner {
        require(
            _newTimeOut < earlyBuyerTimeOut[_address],
            "Cannot increase time, only decrease"
        );
        earlyBuyerTimeOut[_address] = _newTimeOut;
    }

    function removeEarlyBuyerHODL(address _address) external onlyOwner {
        require(earlyBuyerHODL[_address], "Address is not on forced HODL");
        earlyBuyerHODL[_address] = false;
    }
}

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint);

    function price1CumulativeLast() external view returns (uint);

    function kLast() external view returns (uint);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

    function WETH() external pure returns (address);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 2 of 6 : 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 3 of 6 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 4 of 6 : 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 6 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

File 6 of 6 : 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

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"HODLBLOCKS","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SwapAndSendEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"wallet","type":"address"}],"name":"_setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTxAmount","type":"uint256"}],"name":"_setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWalletAmount","type":"uint256"}],"name":"_setMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"addToBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"botsCaught","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_newTimeOut","type":"uint256"}],"name":"decreaseEarlyBuyerTimeOut","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"earlyBuyerHODL","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"earlyBuyerTimeOut","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numTokensToLiquify","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"removeEarlyBuyerHODL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeFromBlackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"setNewFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_active","type":"bool"}],"name":"setSwapAndSendEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_blacklistBlocks","type":"uint8"}],"name":"startTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingStartBlock","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600a600655601460075560d7600855600a6009556009546008546200002a9190620008b4565b600a5568a2a15d09519be00000600b55736ab81297e2e9f075d7f6c1b95722629e9c90b8e6600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600c60156101000a81548160ff0219169083151502179055506304a2cb71601260026101000a81548163ffffffff021916908363ffffffff160217905550348015620000dc57600080fd5b506040518060400160405280601681526020017f4772656174657374204f6620416c6c20546f6b656e73000000000000000000008152506040518060400160405280600481526020017f474f415400000000000000000000000000000000000000000000000000000000815250816003908051906020019062000161929190620007cb565b5080600490805190602001906200017a929190620007cb565b5050506200019d620001916200057c60201b60201c565b6200058460201b60201c565b620001dc33620001b26200064a60201b60201c565b600a620001c0919062000a72565b620f4240620001d0919062000ac3565b6200065360201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200023c57600080fd5b505afa15801562000251573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000277919062000b8e565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620002da57600080fd5b505afa158015620002ef573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000315919062000b8e565b6040518363ffffffff1660e01b81526004016200033492919062000bd1565b602060405180830381600087803b1580156200034f57600080fd5b505af115801562000364573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200038a919062000b8e565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250506001600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600d60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600d6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600d600060a05173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505062000d14565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620006c6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006bd9062000c5f565b60405180910390fd5b620006da60008383620007c160201b60201c565b8060026000828254620006ee9190620008b4565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620007a1919062000c92565b60405180910390a3620007bd60008383620007c660201b60201c565b5050565b505050565b505050565b828054620007d99062000cde565b90600052602060002090601f016020900481019282620007fd576000855562000849565b82601f106200081857805160ff191683800117855562000849565b8280016001018555821562000849579182015b82811115620008485782518255916020019190600101906200082b565b5b5090506200085891906200085c565b5090565b5b80821115620008775760008160009055506001016200085d565b5090565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620008c1826200087b565b9150620008ce836200087b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000906576200090562000885565b5b828201905092915050565b60008160011c9050919050565b6000808291508390505b6001851115620009705780860481111562000948576200094762000885565b5b6001851615620009585780820291505b8081029050620009688562000911565b945062000928565b94509492505050565b6000826200098b576001905062000a5e565b816200099b576000905062000a5e565b8160018114620009b45760028114620009bf57620009f5565b600191505062000a5e565b60ff841115620009d457620009d362000885565b5b8360020a915084821115620009ee57620009ed62000885565b5b5062000a5e565b5060208310610133831016604e8410600b841016171562000a2f5782820a90508381111562000a295762000a2862000885565b5b62000a5e565b62000a3e84848460016200091e565b9250905081840481111562000a585762000a5762000885565b5b81810290505b9392505050565b600060ff82169050919050565b600062000a7f826200087b565b915062000a8c8362000a65565b925062000abb7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000979565b905092915050565b600062000ad0826200087b565b915062000add836200087b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000b195762000b1862000885565b5b828202905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000b568262000b29565b9050919050565b62000b688162000b49565b811462000b7457600080fd5b50565b60008151905062000b888162000b5d565b92915050565b60006020828403121562000ba75762000ba662000b24565b5b600062000bb78482850162000b77565b91505092915050565b62000bcb8162000b49565b82525050565b600060408201905062000be8600083018562000bc0565b62000bf7602083018462000bc0565b9392505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000c47601f8362000bfe565b915062000c548262000c0f565b602082019050919050565b6000602082019050818103600083015262000c7a8162000c38565b9050919050565b62000c8c816200087b565b82525050565b600060208201905062000ca9600083018462000c81565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000cf757607f821691505b6020821081141562000d0e5762000d0d62000caf565b5b50919050565b60805160a05161399f62000d8060003960008181610e760152818161180301528181611a7e01528181611cb001528181611d070152611f42015260008181610b62015281816124f4015281816125e40152818161260b015281816126a701526126ce015261399f6000f3fe60806040526004361061026b5760003560e01c80636b0a894c11610144578063a062e3ba116100b6578063dd62ed3e1161007a578063dd62ed3e14610977578063e42ea14b146109b4578063ea2f0b37146109dd578063f05d932014610a06578063f2fde38b14610a31578063f8b45b0514610a5a57610272565b8063a062e3ba1461087e578063a457c2d7146108a9578063a9059cbb146108e6578063baccf5cf14610923578063d798cbd21461094c57610272565b80637437681e116101085780637437681e1461076a57806375f0a87414610795578063768dc710146107c05780638da5cb5b146107fd57806395d89b411461082857806398118cb41461085357610272565b80636b0a894c146106835780636b67c4df146106ae57806370a08231146106d9578063715018a61461071657806373c9e98d1461072d57610272565b80632663236f116101dd57806339509351116101a15780633950935114610577578063417c73a7146105b4578063437823ec146105dd57806349bd5a5e146106065780634a49ac4c146106315780635d5aa4141461065a57610272565b80632663236f1461049457806328f90df2146104bd5780632a7d0d33146104fa5780633129c1fc14610523578063313ce5671461054c57610272565b806318160ddd1161022f57806318160ddd146103725780631bbae6e01461039d5780631cdd3be3146103c65780631ff53b601461040357806321c5a7421461042c57806323b872dd1461045757610272565b806306fdde0314610277578063095ea7b3146102a25780630b285b1f146102df57806313114a9d1461031c5780631694505e1461034757610272565b3661027257005b600080fd5b34801561028357600080fd5b5061028c610a85565b604051610299919061282a565b60405180910390f35b3480156102ae57600080fd5b506102c960048036038101906102c491906128e5565b610b17565b6040516102d69190612940565b60405180910390f35b3480156102eb57600080fd5b506103066004803603810190610301919061295b565b610b3a565b6040516103139190612940565b60405180910390f35b34801561032857600080fd5b50610331610b5a565b60405161033e9190612997565b60405180910390f35b34801561035357600080fd5b5061035c610b60565b6040516103699190612a11565b60405180910390f35b34801561037e57600080fd5b50610387610b84565b6040516103949190612997565b60405180910390f35b3480156103a957600080fd5b506103c460048036038101906103bf9190612a2c565b610b8e565b005b3480156103d257600080fd5b506103ed60048036038101906103e8919061295b565b610ba0565b6040516103fa9190612940565b60405180910390f35b34801561040f57600080fd5b5061042a60048036038101906104259190612a97565b610bc0565b005b34801561043857600080fd5b50610441610c0c565b60405161044e9190612ae0565b60405180910390f35b34801561046357600080fd5b5061047e60048036038101906104799190612afb565b610c1f565b60405161048b9190612940565b60405180910390f35b3480156104a057600080fd5b506104bb60048036038101906104b69190612b7a565b610c4e565b005b3480156104c957600080fd5b506104e460048036038101906104df919061295b565b610c73565b6040516104f19190612997565b60405180910390f35b34801561050657600080fd5b50610521600480360381019061051c9190612a2c565b610c8b565b005b34801561052f57600080fd5b5061054a600480360381019061054591906128e5565b610c9d565b005b34801561055857600080fd5b50610561610d6e565b60405161056e9190612ae0565b60405180910390f35b34801561058357600080fd5b5061059e600480360381019061059991906128e5565b610d77565b6040516105ab9190612940565b60405180910390f35b3480156105c057600080fd5b506105db60048036038101906105d6919061295b565b610dae565b005b3480156105e957600080fd5b5061060460048036038101906105ff919061295b565b610e11565b005b34801561061257600080fd5b5061061b610e74565b6040516106289190612bb6565b60405180910390f35b34801561063d57600080fd5b506106586004803603810190610653919061295b565b610e98565b005b34801561066657600080fd5b50610681600480360381019061067c9190612bfd565b610efb565b005b34801561068f57600080fd5b50610698610f42565b6040516106a59190612ae0565b60405180910390f35b3480156106ba57600080fd5b506106c3610f55565b6040516106d09190612997565b60405180910390f35b3480156106e557600080fd5b5061070060048036038101906106fb919061295b565b610f5b565b60405161070d9190612997565b60405180910390f35b34801561072257600080fd5b5061072b610fa3565b005b34801561073957600080fd5b50610754600480360381019061074f919061295b565b610fb7565b6040516107619190612940565b60405180910390f35b34801561077657600080fd5b5061077f610fd7565b60405161078c9190612997565b60405180910390f35b3480156107a157600080fd5b506107aa610fdd565b6040516107b79190612bb6565b60405180910390f35b3480156107cc57600080fd5b506107e760048036038101906107e2919061295b565b611003565b6040516107f49190612940565b60405180910390f35b34801561080957600080fd5b50610812611023565b60405161081f9190612bb6565b60405180910390f35b34801561083457600080fd5b5061083d61104d565b60405161084a919061282a565b60405180910390f35b34801561085f57600080fd5b506108686110df565b6040516108759190612997565b60405180910390f35b34801561088a57600080fd5b506108936110e5565b6040516108a09190612940565b60405180910390f35b3480156108b557600080fd5b506108d060048036038101906108cb91906128e5565b6110f8565b6040516108dd9190612940565b60405180910390f35b3480156108f257600080fd5b5061090d600480360381019061090891906128e5565b61116f565b60405161091a9190612940565b60405180910390f35b34801561092f57600080fd5b5061094a60048036038101906109459190612c2a565b611192565b005b34801561095857600080fd5b506109616111c2565b60405161096e9190612c89565b60405180910390f35b34801561098357600080fd5b5061099e60048036038101906109999190612ca4565b6111d8565b6040516109ab9190612997565b60405180910390f35b3480156109c057600080fd5b506109db60048036038101906109d6919061295b565b61125f565b005b3480156109e957600080fd5b50610a0460048036038101906109ff919061295b565b61134e565b005b348015610a1257600080fd5b50610a1b6113b1565b604051610a289190612997565b60405180910390f35b348015610a3d57600080fd5b50610a586004803603810190610a53919061295b565b6113b7565b005b348015610a6657600080fd5b50610a6f61143b565b604051610a7c9190612997565b60405180910390f35b606060038054610a9490612d13565b80601f0160208091040260200160405190810160405280929190818152602001828054610ac090612d13565b8015610b0d5780601f10610ae257610100808354040283529160200191610b0d565b820191906000526020600020905b815481529060010190602001808311610af057829003601f168201915b5050505050905090565b600080610b22611441565b9050610b2f818585611449565b600191505092915050565b600e6020528060005260406000206000915054906101000a900460ff1681565b600a5481565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610b96611614565b8060068190555050565b600f6020528060005260406000206000915054906101000a900460ff1681565b610bc8611614565b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601260009054906101000a900460ff1681565b600080610c2a611441565b9050610c37858285611692565b610c4285858561171e565b60019150509392505050565b610c56611614565b80600c60156101000a81548160ff02191690831515021790555050565b60116020528060005260406000206000915090505481565b610c93611614565b8060078190555050565b610ca5611614565b601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548110610d26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1d90612db7565b60405180910390fd5b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b60006012905090565b600080610d82611441565b9050610da3818585610d9485896111d8565b610d9e9190612e06565b611449565b600191505092915050565b610db6611614565b6001600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610e19611614565b6001600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b7f000000000000000000000000000000000000000000000000000000000000000081565b610ea0611614565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610f03611614565b43601260026101000a81548163ffffffff021916908363ffffffff16021790555080601260006101000a81548160ff021916908360ff16021790555050565b601260019054906101000a900460ff1681565b60085481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610fab611614565b610fb56000612003565b565b60106020528060005260406000206000915054906101000a900460ff1681565b60065481565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d6020528060005260406000206000915054906101000a900460ff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461105c90612d13565b80601f016020809104026020016040519081016040528092919081815260200182805461108890612d13565b80156110d55780601f106110aa576101008083540402835291602001916110d5565b820191906000526020600020905b8154815290600101906020018083116110b857829003601f168201915b5050505050905090565b60095481565b600c60159054906101000a900460ff1681565b600080611103611441565b9050600061111182866111d8565b905083811015611156576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114d90612ece565b60405180910390fd5b6111638286868403611449565b60019250505092915050565b60008061117a611441565b905061118781858561171e565b600191505092915050565b61119a611614565b81600881905550806009819055506009546008546111b89190612e06565b600a819055505050565b601260029054906101000a900463ffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611267611614565b601060008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166112f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ea90612f3a565b60405180910390fd5b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b611356611614565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600b5481565b6113bf611614565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561142f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142690612fcc565b60405180910390fd5b61143881612003565b50565b60075481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156114b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b09061305e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611529576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611520906130f0565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516116079190612997565b60405180910390a3505050565b61161c611441565b73ffffffffffffffffffffffffffffffffffffffff1661163a611023565b73ffffffffffffffffffffffffffffffffffffffff1614611690576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116879061315c565b60405180910390fd5b565b600061169e84846111d8565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611718578181101561170a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611701906131c8565b60405180910390fd5b6117178484848403611449565b5b50505050565b60006103e860065461172e610b84565b61173891906131e8565b6117429190613271565b905060006103e8600754611754610b84565b61175e91906131e8565b6117689190613271565b90506000601260029054906101000a900463ffffffff1663ffffffff16431161180157611793611023565b73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614611800576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f7906132ee565b60405180910390fd5b5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161415611a7c57600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661195d57828411156118e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e09061335a565b60405180910390fd5b81846118f487610f5b565b6118fe9190612e06565b111561193f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611936906133c6565b60405180910390fd5b6103e8600a548561195091906131e8565b61195a9190613271565b90505b601260009054906101000a900460ff1660ff16601260029054906101000a900463ffffffff1661198d91906133e6565b63ffffffff164311611a7b576001601060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062093a8042611a009190612e06565b601160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506001601260018282829054906101000a900460ff16611a629190613420565b92506101000a81548160ff021916908360ff1602179055505b5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611cae57600d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611c0f5782841115611b64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5b9061335a565b60405180910390fd5b600f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611bf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be8906134a3565b60405180910390fd5b6103e8600a5485611c0291906131e8565b611c0c9190613271565b90505b601060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611cad57601160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020544211611cac57600080fd5b5b5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614158015611d5657507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614155b15611ef957600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580611dfe5750600d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611e5a578184611e0e87610f5b565b611e189190612e06565b1115611e59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e50906133c6565b60405180910390fd5b5b601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611ef857601160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020544211611ef757600080fd5b5b5b6000611f0430610f5b565b90506000600b548210159050600b548210611f1f57600b5491505b808015611f395750600c60149054906101000a900460ff16155b8015611f9157507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff1614155b8015611fa95750600c60159054906101000a900460ff165b15611fb857611fb7826120c9565b5b6000831115611fed5760008387611fcf91906134c3565b9050611fdc893086612183565b611fe7898983612183565b50611ff9565b611ff8888888612183565b5b5050505050505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001600c60146101000a81548160ff02191690831515021790555060006103e882600a546103e86009546120fd91906131e8565b6121079190613271565b61211191906131e8565b61211b9190613271565b90506000818361212b91906134c3565b905061215a30600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168361171e565b612163826123fb565b50506000600c60146101000a81548160ff02191690831515021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ea90613569565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612263576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225a906135fb565b60405180910390fd5b61226e83838361244b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156122f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122eb9061368d565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516123e29190612997565b60405180910390a36123f5848484612450565b50505050565b600060028261240a9190613271565b90506000818361241a91906134c3565b9050600047905061242a83612455565b6000814761243891906134c3565b905061244483826126a1565b5050505050565b505050565b505050565b6000600267ffffffffffffffff811115612472576124716136ad565b5b6040519080825280602002602001820160405280156124a05781602001602082028036833780820191505090505b50905030816000815181106124b8576124b76136dc565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561255857600080fd5b505afa15801561256c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125909190613720565b816001815181106125a4576125a36136dc565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612609307f000000000000000000000000000000000000000000000000000000000000000084611449565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161266b959493929190613846565b600060405180830381600087803b15801561268557600080fd5b505af1158015612699573d6000803e3d6000fd5b505050505050565b6126cc307f000000000000000000000000000000000000000000000000000000000000000084611449565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080612716611023565b426040518863ffffffff1660e01b8152600401612738969594939291906138a0565b6060604051808303818588803b15801561275157600080fd5b505af1158015612765573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061278a9190613916565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156127cb5780820151818401526020810190506127b0565b838111156127da576000848401525b50505050565b6000601f19601f8301169050919050565b60006127fc82612791565b612806818561279c565b93506128168185602086016127ad565b61281f816127e0565b840191505092915050565b6000602082019050818103600083015261284481846127f1565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061287c82612851565b9050919050565b61288c81612871565b811461289757600080fd5b50565b6000813590506128a981612883565b92915050565b6000819050919050565b6128c2816128af565b81146128cd57600080fd5b50565b6000813590506128df816128b9565b92915050565b600080604083850312156128fc576128fb61284c565b5b600061290a8582860161289a565b925050602061291b858286016128d0565b9150509250929050565b60008115159050919050565b61293a81612925565b82525050565b60006020820190506129556000830184612931565b92915050565b6000602082840312156129715761297061284c565b5b600061297f8482850161289a565b91505092915050565b612991816128af565b82525050565b60006020820190506129ac6000830184612988565b92915050565b6000819050919050565b60006129d76129d26129cd84612851565b6129b2565b612851565b9050919050565b60006129e9826129bc565b9050919050565b60006129fb826129de565b9050919050565b612a0b816129f0565b82525050565b6000602082019050612a266000830184612a02565b92915050565b600060208284031215612a4257612a4161284c565b5b6000612a50848285016128d0565b91505092915050565b6000612a6482612851565b9050919050565b612a7481612a59565b8114612a7f57600080fd5b50565b600081359050612a9181612a6b565b92915050565b600060208284031215612aad57612aac61284c565b5b6000612abb84828501612a82565b91505092915050565b600060ff82169050919050565b612ada81612ac4565b82525050565b6000602082019050612af56000830184612ad1565b92915050565b600080600060608486031215612b1457612b1361284c565b5b6000612b228682870161289a565b9350506020612b338682870161289a565b9250506040612b44868287016128d0565b9150509250925092565b612b5781612925565b8114612b6257600080fd5b50565b600081359050612b7481612b4e565b92915050565b600060208284031215612b9057612b8f61284c565b5b6000612b9e84828501612b65565b91505092915050565b612bb081612871565b82525050565b6000602082019050612bcb6000830184612ba7565b92915050565b612bda81612ac4565b8114612be557600080fd5b50565b600081359050612bf781612bd1565b92915050565b600060208284031215612c1357612c1261284c565b5b6000612c2184828501612be8565b91505092915050565b60008060408385031215612c4157612c4061284c565b5b6000612c4f858286016128d0565b9250506020612c60858286016128d0565b9150509250929050565b600063ffffffff82169050919050565b612c8381612c6a565b82525050565b6000602082019050612c9e6000830184612c7a565b92915050565b60008060408385031215612cbb57612cba61284c565b5b6000612cc98582860161289a565b9250506020612cda8582860161289a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612d2b57607f821691505b60208210811415612d3f57612d3e612ce4565b5b50919050565b7f43616e6e6f7420696e6372656173652074696d652c206f6e6c7920646563726560008201527f6173650000000000000000000000000000000000000000000000000000000000602082015250565b6000612da160238361279c565b9150612dac82612d45565b604082019050919050565b60006020820190508181036000830152612dd081612d94565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612e11826128af565b9150612e1c836128af565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612e5157612e50612dd7565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612eb860258361279c565b9150612ec382612e5c565b604082019050919050565b60006020820190508181036000830152612ee781612eab565b9050919050565b7f41646472657373206973206e6f74206f6e20666f7263656420484f444c000000600082015250565b6000612f24601d8361279c565b9150612f2f82612eee565b602082019050919050565b60006020820190508181036000830152612f5381612f17565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612fb660268361279c565b9150612fc182612f5a565b604082019050919050565b60006020820190508181036000830152612fe581612fa9565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061304860248361279c565b915061305382612fec565b604082019050919050565b600060208201905081810360008301526130778161303b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006130da60228361279c565b91506130e58261307e565b604082019050919050565b60006020820190508181036000830152613109816130cd565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061314660208361279c565b915061315182613110565b602082019050919050565b6000602082019050818103600083015261317581613139565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006131b2601d8361279c565b91506131bd8261317c565b602082019050919050565b600060208201905081810360008301526131e1816131a5565b9050919050565b60006131f3826128af565b91506131fe836128af565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561323757613236612dd7565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061327c826128af565b9150613287836128af565b92508261329757613296613242565b5b828204905092915050565b7f54726164696e67206861736e7420737461727465640000000000000000000000600082015250565b60006132d860158361279c565b91506132e3826132a2565b602082019050919050565b60006020820190508181036000830152613307816132cb565b9050919050565b7f416d6f756e74206f766572206d61782074780000000000000000000000000000600082015250565b600061334460128361279c565b915061334f8261330e565b602082019050919050565b6000602082019050818103600083015261337381613337565b9050919050565b7f4d61782077616c6c657420696e20656666656374000000000000000000000000600082015250565b60006133b060148361279c565b91506133bb8261337a565b602082019050919050565b600060208201905081810360008301526133df816133a3565b9050919050565b60006133f182612c6a565b91506133fc83612c6a565b92508263ffffffff0382111561341557613414612dd7565b5b828201905092915050565b600061342b82612ac4565b915061343683612ac4565b92508260ff0382111561344c5761344b612dd7565b5b828201905092915050565b7f4163636f756e7420626c61636b6c697374656400000000000000000000000000600082015250565b600061348d60138361279c565b915061349882613457565b602082019050919050565b600060208201905081810360008301526134bc81613480565b9050919050565b60006134ce826128af565b91506134d9836128af565b9250828210156134ec576134eb612dd7565b5b828203905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061355360258361279c565b915061355e826134f7565b604082019050919050565b6000602082019050818103600083015261358281613546565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006135e560238361279c565b91506135f082613589565b604082019050919050565b60006020820190508181036000830152613614816135d8565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061367760268361279c565b91506136828261361b565b604082019050919050565b600060208201905081810360008301526136a68161366a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061371a81612883565b92915050565b6000602082840312156137365761373561284c565b5b60006137448482850161370b565b91505092915050565b6000819050919050565b600061377261376d6137688461374d565b6129b2565b6128af565b9050919050565b61378281613757565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6137bd81612871565b82525050565b60006137cf83836137b4565b60208301905092915050565b6000602082019050919050565b60006137f382613788565b6137fd8185613793565b9350613808836137a4565b8060005b8381101561383957815161382088826137c3565b975061382b836137db565b92505060018101905061380c565b5085935050505092915050565b600060a08201905061385b6000830188612988565b6138686020830187613779565b818103604083015261387a81866137e8565b90506138896060830185612ba7565b6138966080830184612988565b9695505050505050565b600060c0820190506138b56000830189612ba7565b6138c26020830188612988565b6138cf6040830187613779565b6138dc6060830186613779565b6138e96080830185612ba7565b6138f660a0830184612988565b979650505050505050565b600081519050613910816128b9565b92915050565b60008060006060848603121561392f5761392e61284c565b5b600061393d86828701613901565b935050602061394e86828701613901565b925050604061395f86828701613901565b915050925092509256fea2646970667358221220f8a4a7dfb213dd1f6019c5094ebda314225e7d184baa08aee7f565f69628326664736f6c63430008090033

Deployed Bytecode

0x60806040526004361061026b5760003560e01c80636b0a894c11610144578063a062e3ba116100b6578063dd62ed3e1161007a578063dd62ed3e14610977578063e42ea14b146109b4578063ea2f0b37146109dd578063f05d932014610a06578063f2fde38b14610a31578063f8b45b0514610a5a57610272565b8063a062e3ba1461087e578063a457c2d7146108a9578063a9059cbb146108e6578063baccf5cf14610923578063d798cbd21461094c57610272565b80637437681e116101085780637437681e1461076a57806375f0a87414610795578063768dc710146107c05780638da5cb5b146107fd57806395d89b411461082857806398118cb41461085357610272565b80636b0a894c146106835780636b67c4df146106ae57806370a08231146106d9578063715018a61461071657806373c9e98d1461072d57610272565b80632663236f116101dd57806339509351116101a15780633950935114610577578063417c73a7146105b4578063437823ec146105dd57806349bd5a5e146106065780634a49ac4c146106315780635d5aa4141461065a57610272565b80632663236f1461049457806328f90df2146104bd5780632a7d0d33146104fa5780633129c1fc14610523578063313ce5671461054c57610272565b806318160ddd1161022f57806318160ddd146103725780631bbae6e01461039d5780631cdd3be3146103c65780631ff53b601461040357806321c5a7421461042c57806323b872dd1461045757610272565b806306fdde0314610277578063095ea7b3146102a25780630b285b1f146102df57806313114a9d1461031c5780631694505e1461034757610272565b3661027257005b600080fd5b34801561028357600080fd5b5061028c610a85565b604051610299919061282a565b60405180910390f35b3480156102ae57600080fd5b506102c960048036038101906102c491906128e5565b610b17565b6040516102d69190612940565b60405180910390f35b3480156102eb57600080fd5b506103066004803603810190610301919061295b565b610b3a565b6040516103139190612940565b60405180910390f35b34801561032857600080fd5b50610331610b5a565b60405161033e9190612997565b60405180910390f35b34801561035357600080fd5b5061035c610b60565b6040516103699190612a11565b60405180910390f35b34801561037e57600080fd5b50610387610b84565b6040516103949190612997565b60405180910390f35b3480156103a957600080fd5b506103c460048036038101906103bf9190612a2c565b610b8e565b005b3480156103d257600080fd5b506103ed60048036038101906103e8919061295b565b610ba0565b6040516103fa9190612940565b60405180910390f35b34801561040f57600080fd5b5061042a60048036038101906104259190612a97565b610bc0565b005b34801561043857600080fd5b50610441610c0c565b60405161044e9190612ae0565b60405180910390f35b34801561046357600080fd5b5061047e60048036038101906104799190612afb565b610c1f565b60405161048b9190612940565b60405180910390f35b3480156104a057600080fd5b506104bb60048036038101906104b69190612b7a565b610c4e565b005b3480156104c957600080fd5b506104e460048036038101906104df919061295b565b610c73565b6040516104f19190612997565b60405180910390f35b34801561050657600080fd5b50610521600480360381019061051c9190612a2c565b610c8b565b005b34801561052f57600080fd5b5061054a600480360381019061054591906128e5565b610c9d565b005b34801561055857600080fd5b50610561610d6e565b60405161056e9190612ae0565b60405180910390f35b34801561058357600080fd5b5061059e600480360381019061059991906128e5565b610d77565b6040516105ab9190612940565b60405180910390f35b3480156105c057600080fd5b506105db60048036038101906105d6919061295b565b610dae565b005b3480156105e957600080fd5b5061060460048036038101906105ff919061295b565b610e11565b005b34801561061257600080fd5b5061061b610e74565b6040516106289190612bb6565b60405180910390f35b34801561063d57600080fd5b506106586004803603810190610653919061295b565b610e98565b005b34801561066657600080fd5b50610681600480360381019061067c9190612bfd565b610efb565b005b34801561068f57600080fd5b50610698610f42565b6040516106a59190612ae0565b60405180910390f35b3480156106ba57600080fd5b506106c3610f55565b6040516106d09190612997565b60405180910390f35b3480156106e557600080fd5b5061070060048036038101906106fb919061295b565b610f5b565b60405161070d9190612997565b60405180910390f35b34801561072257600080fd5b5061072b610fa3565b005b34801561073957600080fd5b50610754600480360381019061074f919061295b565b610fb7565b6040516107619190612940565b60405180910390f35b34801561077657600080fd5b5061077f610fd7565b60405161078c9190612997565b60405180910390f35b3480156107a157600080fd5b506107aa610fdd565b6040516107b79190612bb6565b60405180910390f35b3480156107cc57600080fd5b506107e760048036038101906107e2919061295b565b611003565b6040516107f49190612940565b60405180910390f35b34801561080957600080fd5b50610812611023565b60405161081f9190612bb6565b60405180910390f35b34801561083457600080fd5b5061083d61104d565b60405161084a919061282a565b60405180910390f35b34801561085f57600080fd5b506108686110df565b6040516108759190612997565b60405180910390f35b34801561088a57600080fd5b506108936110e5565b6040516108a09190612940565b60405180910390f35b3480156108b557600080fd5b506108d060048036038101906108cb91906128e5565b6110f8565b6040516108dd9190612940565b60405180910390f35b3480156108f257600080fd5b5061090d600480360381019061090891906128e5565b61116f565b60405161091a9190612940565b60405180910390f35b34801561092f57600080fd5b5061094a60048036038101906109459190612c2a565b611192565b005b34801561095857600080fd5b506109616111c2565b60405161096e9190612c89565b60405180910390f35b34801561098357600080fd5b5061099e60048036038101906109999190612ca4565b6111d8565b6040516109ab9190612997565b60405180910390f35b3480156109c057600080fd5b506109db60048036038101906109d6919061295b565b61125f565b005b3480156109e957600080fd5b50610a0460048036038101906109ff919061295b565b61134e565b005b348015610a1257600080fd5b50610a1b6113b1565b604051610a289190612997565b60405180910390f35b348015610a3d57600080fd5b50610a586004803603810190610a53919061295b565b6113b7565b005b348015610a6657600080fd5b50610a6f61143b565b604051610a7c9190612997565b60405180910390f35b606060038054610a9490612d13565b80601f0160208091040260200160405190810160405280929190818152602001828054610ac090612d13565b8015610b0d5780601f10610ae257610100808354040283529160200191610b0d565b820191906000526020600020905b815481529060010190602001808311610af057829003601f168201915b5050505050905090565b600080610b22611441565b9050610b2f818585611449565b600191505092915050565b600e6020528060005260406000206000915054906101000a900460ff1681565b600a5481565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610b96611614565b8060068190555050565b600f6020528060005260406000206000915054906101000a900460ff1681565b610bc8611614565b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601260009054906101000a900460ff1681565b600080610c2a611441565b9050610c37858285611692565b610c4285858561171e565b60019150509392505050565b610c56611614565b80600c60156101000a81548160ff02191690831515021790555050565b60116020528060005260406000206000915090505481565b610c93611614565b8060078190555050565b610ca5611614565b601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548110610d26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1d90612db7565b60405180910390fd5b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b60006012905090565b600080610d82611441565b9050610da3818585610d9485896111d8565b610d9e9190612e06565b611449565b600191505092915050565b610db6611614565b6001600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610e19611614565b6001600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b7f0000000000000000000000004aa642cce1180f5e60d48be9f4da5ca89a484f2881565b610ea0611614565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610f03611614565b43601260026101000a81548163ffffffff021916908363ffffffff16021790555080601260006101000a81548160ff021916908360ff16021790555050565b601260019054906101000a900460ff1681565b60085481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610fab611614565b610fb56000612003565b565b60106020528060005260406000206000915054906101000a900460ff1681565b60065481565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d6020528060005260406000206000915054906101000a900460ff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461105c90612d13565b80601f016020809104026020016040519081016040528092919081815260200182805461108890612d13565b80156110d55780601f106110aa576101008083540402835291602001916110d5565b820191906000526020600020905b8154815290600101906020018083116110b857829003601f168201915b5050505050905090565b60095481565b600c60159054906101000a900460ff1681565b600080611103611441565b9050600061111182866111d8565b905083811015611156576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114d90612ece565b60405180910390fd5b6111638286868403611449565b60019250505092915050565b60008061117a611441565b905061118781858561171e565b600191505092915050565b61119a611614565b81600881905550806009819055506009546008546111b89190612e06565b600a819055505050565b601260029054906101000a900463ffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611267611614565b601060008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166112f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ea90612f3a565b60405180910390fd5b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b611356611614565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600b5481565b6113bf611614565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561142f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142690612fcc565b60405180910390fd5b61143881612003565b50565b60075481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156114b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b09061305e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611529576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611520906130f0565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516116079190612997565b60405180910390a3505050565b61161c611441565b73ffffffffffffffffffffffffffffffffffffffff1661163a611023565b73ffffffffffffffffffffffffffffffffffffffff1614611690576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116879061315c565b60405180910390fd5b565b600061169e84846111d8565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611718578181101561170a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611701906131c8565b60405180910390fd5b6117178484848403611449565b5b50505050565b60006103e860065461172e610b84565b61173891906131e8565b6117429190613271565b905060006103e8600754611754610b84565b61175e91906131e8565b6117689190613271565b90506000601260029054906101000a900463ffffffff1663ffffffff16431161180157611793611023565b73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614611800576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f7906132ee565b60405180910390fd5b5b7f0000000000000000000000004aa642cce1180f5e60d48be9f4da5ca89a484f2873ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161415611a7c57600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661195d57828411156118e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e09061335a565b60405180910390fd5b81846118f487610f5b565b6118fe9190612e06565b111561193f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611936906133c6565b60405180910390fd5b6103e8600a548561195091906131e8565b61195a9190613271565b90505b601260009054906101000a900460ff1660ff16601260029054906101000a900463ffffffff1661198d91906133e6565b63ffffffff164311611a7b576001601060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062093a8042611a009190612e06565b601160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506001601260018282829054906101000a900460ff16611a629190613420565b92506101000a81548160ff021916908360ff1602179055505b5b7f0000000000000000000000004aa642cce1180f5e60d48be9f4da5ca89a484f2873ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611cae57600d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611c0f5782841115611b64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5b9061335a565b60405180910390fd5b600f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611bf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be8906134a3565b60405180910390fd5b6103e8600a5485611c0291906131e8565b611c0c9190613271565b90505b601060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611cad57601160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020544211611cac57600080fd5b5b5b7f0000000000000000000000004aa642cce1180f5e60d48be9f4da5ca89a484f2873ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614158015611d5657507f0000000000000000000000004aa642cce1180f5e60d48be9f4da5ca89a484f2873ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614155b15611ef957600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580611dfe5750600d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611e5a578184611e0e87610f5b565b611e189190612e06565b1115611e59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e50906133c6565b60405180910390fd5b5b601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611ef857601160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020544211611ef757600080fd5b5b5b6000611f0430610f5b565b90506000600b548210159050600b548210611f1f57600b5491505b808015611f395750600c60149054906101000a900460ff16155b8015611f9157507f0000000000000000000000004aa642cce1180f5e60d48be9f4da5ca89a484f2873ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff1614155b8015611fa95750600c60159054906101000a900460ff165b15611fb857611fb7826120c9565b5b6000831115611fed5760008387611fcf91906134c3565b9050611fdc893086612183565b611fe7898983612183565b50611ff9565b611ff8888888612183565b5b5050505050505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001600c60146101000a81548160ff02191690831515021790555060006103e882600a546103e86009546120fd91906131e8565b6121079190613271565b61211191906131e8565b61211b9190613271565b90506000818361212b91906134c3565b905061215a30600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168361171e565b612163826123fb565b50506000600c60146101000a81548160ff02191690831515021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ea90613569565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612263576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225a906135fb565b60405180910390fd5b61226e83838361244b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156122f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122eb9061368d565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516123e29190612997565b60405180910390a36123f5848484612450565b50505050565b600060028261240a9190613271565b90506000818361241a91906134c3565b9050600047905061242a83612455565b6000814761243891906134c3565b905061244483826126a1565b5050505050565b505050565b505050565b6000600267ffffffffffffffff811115612472576124716136ad565b5b6040519080825280602002602001820160405280156124a05781602001602082028036833780820191505090505b50905030816000815181106124b8576124b76136dc565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561255857600080fd5b505afa15801561256c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125909190613720565b816001815181106125a4576125a36136dc565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612609307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611449565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161266b959493929190613846565b600060405180830381600087803b15801561268557600080fd5b505af1158015612699573d6000803e3d6000fd5b505050505050565b6126cc307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611449565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080612716611023565b426040518863ffffffff1660e01b8152600401612738969594939291906138a0565b6060604051808303818588803b15801561275157600080fd5b505af1158015612765573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061278a9190613916565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156127cb5780820151818401526020810190506127b0565b838111156127da576000848401525b50505050565b6000601f19601f8301169050919050565b60006127fc82612791565b612806818561279c565b93506128168185602086016127ad565b61281f816127e0565b840191505092915050565b6000602082019050818103600083015261284481846127f1565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061287c82612851565b9050919050565b61288c81612871565b811461289757600080fd5b50565b6000813590506128a981612883565b92915050565b6000819050919050565b6128c2816128af565b81146128cd57600080fd5b50565b6000813590506128df816128b9565b92915050565b600080604083850312156128fc576128fb61284c565b5b600061290a8582860161289a565b925050602061291b858286016128d0565b9150509250929050565b60008115159050919050565b61293a81612925565b82525050565b60006020820190506129556000830184612931565b92915050565b6000602082840312156129715761297061284c565b5b600061297f8482850161289a565b91505092915050565b612991816128af565b82525050565b60006020820190506129ac6000830184612988565b92915050565b6000819050919050565b60006129d76129d26129cd84612851565b6129b2565b612851565b9050919050565b60006129e9826129bc565b9050919050565b60006129fb826129de565b9050919050565b612a0b816129f0565b82525050565b6000602082019050612a266000830184612a02565b92915050565b600060208284031215612a4257612a4161284c565b5b6000612a50848285016128d0565b91505092915050565b6000612a6482612851565b9050919050565b612a7481612a59565b8114612a7f57600080fd5b50565b600081359050612a9181612a6b565b92915050565b600060208284031215612aad57612aac61284c565b5b6000612abb84828501612a82565b91505092915050565b600060ff82169050919050565b612ada81612ac4565b82525050565b6000602082019050612af56000830184612ad1565b92915050565b600080600060608486031215612b1457612b1361284c565b5b6000612b228682870161289a565b9350506020612b338682870161289a565b9250506040612b44868287016128d0565b9150509250925092565b612b5781612925565b8114612b6257600080fd5b50565b600081359050612b7481612b4e565b92915050565b600060208284031215612b9057612b8f61284c565b5b6000612b9e84828501612b65565b91505092915050565b612bb081612871565b82525050565b6000602082019050612bcb6000830184612ba7565b92915050565b612bda81612ac4565b8114612be557600080fd5b50565b600081359050612bf781612bd1565b92915050565b600060208284031215612c1357612c1261284c565b5b6000612c2184828501612be8565b91505092915050565b60008060408385031215612c4157612c4061284c565b5b6000612c4f858286016128d0565b9250506020612c60858286016128d0565b9150509250929050565b600063ffffffff82169050919050565b612c8381612c6a565b82525050565b6000602082019050612c9e6000830184612c7a565b92915050565b60008060408385031215612cbb57612cba61284c565b5b6000612cc98582860161289a565b9250506020612cda8582860161289a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612d2b57607f821691505b60208210811415612d3f57612d3e612ce4565b5b50919050565b7f43616e6e6f7420696e6372656173652074696d652c206f6e6c7920646563726560008201527f6173650000000000000000000000000000000000000000000000000000000000602082015250565b6000612da160238361279c565b9150612dac82612d45565b604082019050919050565b60006020820190508181036000830152612dd081612d94565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612e11826128af565b9150612e1c836128af565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612e5157612e50612dd7565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612eb860258361279c565b9150612ec382612e5c565b604082019050919050565b60006020820190508181036000830152612ee781612eab565b9050919050565b7f41646472657373206973206e6f74206f6e20666f7263656420484f444c000000600082015250565b6000612f24601d8361279c565b9150612f2f82612eee565b602082019050919050565b60006020820190508181036000830152612f5381612f17565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612fb660268361279c565b9150612fc182612f5a565b604082019050919050565b60006020820190508181036000830152612fe581612fa9565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061304860248361279c565b915061305382612fec565b604082019050919050565b600060208201905081810360008301526130778161303b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006130da60228361279c565b91506130e58261307e565b604082019050919050565b60006020820190508181036000830152613109816130cd565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061314660208361279c565b915061315182613110565b602082019050919050565b6000602082019050818103600083015261317581613139565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006131b2601d8361279c565b91506131bd8261317c565b602082019050919050565b600060208201905081810360008301526131e1816131a5565b9050919050565b60006131f3826128af565b91506131fe836128af565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561323757613236612dd7565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061327c826128af565b9150613287836128af565b92508261329757613296613242565b5b828204905092915050565b7f54726164696e67206861736e7420737461727465640000000000000000000000600082015250565b60006132d860158361279c565b91506132e3826132a2565b602082019050919050565b60006020820190508181036000830152613307816132cb565b9050919050565b7f416d6f756e74206f766572206d61782074780000000000000000000000000000600082015250565b600061334460128361279c565b915061334f8261330e565b602082019050919050565b6000602082019050818103600083015261337381613337565b9050919050565b7f4d61782077616c6c657420696e20656666656374000000000000000000000000600082015250565b60006133b060148361279c565b91506133bb8261337a565b602082019050919050565b600060208201905081810360008301526133df816133a3565b9050919050565b60006133f182612c6a565b91506133fc83612c6a565b92508263ffffffff0382111561341557613414612dd7565b5b828201905092915050565b600061342b82612ac4565b915061343683612ac4565b92508260ff0382111561344c5761344b612dd7565b5b828201905092915050565b7f4163636f756e7420626c61636b6c697374656400000000000000000000000000600082015250565b600061348d60138361279c565b915061349882613457565b602082019050919050565b600060208201905081810360008301526134bc81613480565b9050919050565b60006134ce826128af565b91506134d9836128af565b9250828210156134ec576134eb612dd7565b5b828203905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061355360258361279c565b915061355e826134f7565b604082019050919050565b6000602082019050818103600083015261358281613546565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006135e560238361279c565b91506135f082613589565b604082019050919050565b60006020820190508181036000830152613614816135d8565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061367760268361279c565b91506136828261361b565b604082019050919050565b600060208201905081810360008301526136a68161366a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061371a81612883565b92915050565b6000602082840312156137365761373561284c565b5b60006137448482850161370b565b91505092915050565b6000819050919050565b600061377261376d6137688461374d565b6129b2565b6128af565b9050919050565b61378281613757565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6137bd81612871565b82525050565b60006137cf83836137b4565b60208301905092915050565b6000602082019050919050565b60006137f382613788565b6137fd8185613793565b9350613808836137a4565b8060005b8381101561383957815161382088826137c3565b975061382b836137db565b92505060018101905061380c565b5085935050505092915050565b600060a08201905061385b6000830188612988565b6138686020830187613779565b818103604083015261387a81866137e8565b90506138896060830185612ba7565b6138966080830184612988565b9695505050505050565b600060c0820190506138b56000830189612ba7565b6138c26020830188612988565b6138cf6040830187613779565b6138dc6060830186613779565b6138e96080830185612ba7565b6138f660a0830184612988565b979650505050505050565b600081519050613910816128b9565b92915050565b60008060006060848603121561392f5761392e61284c565b5b600061393d86828701613901565b935050602061394e86828701613901565b925050604061395f86828701613901565b915050925092509256fea2646970667358221220f8a4a7dfb213dd1f6019c5094ebda314225e7d184baa08aee7f565f69628326664736f6c63430008090033

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.