ETH Price: $3,102.76 (+1.05%)
Gas: 6 Gwei

Token

SOJOURNER INU (SOJO)
 

Overview

Max Total Supply

20,000,000 SOJO

Holders

132

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
180,145.873825452158684283 SOJO

Value
$0.00
0x05c529329ca8ce552b668dd99e4b6c4c496557cf
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:
Sojourner

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 6 : sojo2.sol
// SPDX-License-Identifier: MIT                                                                               
// sojoswap.com

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

pragma solidity 0.8.15;

interface IDexRouter {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
    function swapExactTokensForETHSupportingFeeOnTransferTokens(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external;
    function addLiquidityETH(address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline) external payable returns (uint256 amountToken, uint256 amountETH, uint256 liquidity);
}

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

contract Sojourner is ERC20, Ownable {
    uint256 public maxBuyAmount;
    uint256 public maxSellAmount;
    uint256 public maxWallet;

    IDexRouter public dexRouter;
    address public lpPair;

    bool private swapping;
    uint256 public swapTokensAtAmount;

    address public devAddress;

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

    uint256 public buyTotalFees;
    uint256 public buyDevFee;
    uint256 public buyLiquidityFee;
    uint256 public buyBurnFee;

    uint256 public sellTotalFees;
    uint256 public sellDevFee;
    uint256 public sellLiquidityFee;
    uint256 public sellBurnFee;

    uint256 public constant FEE_DIVISOR = 1000;

    uint256 public tokensForDev;
    uint256 public tokensForLiquidity;

    mapping (address => bool) private _isExcludedFromFees;
    mapping (address => bool) public _isExcludedMaxTransactionAmount;
    mapping (address => bool) public automatedMarketMakerPairs;

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

    event EnabledTrading();

    event RemovedLimits();

    event ExcludeFromFees(address indexed account, bool isExcluded);

    event UpdatedMaxBuyAmount(uint256 newAmount);

    event UpdatedMaxSellAmount(uint256 newAmount);

    event UpdatedMaxWalletAmount(uint256 newAmount);

    event UpdatedDevAddress(address indexed newWallet);

    event MaxTransactionExclusion(address _address, bool excluded);

    event OwnerForcedSwapBack(uint256 timestamp);

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

    constructor(string memory name_, string memory symbol_, uint256 totalSupply_) ERC20(name_, symbol_) payable {
        
        address newOwner = msg.sender; // can leave alone if owner is deployer.
        address _dexRouter;

        if(block.chainid == 1 || block.chainid == 5){
            _dexRouter = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; // ETH: Uniswap V2
        } else if(block.chainid == 42161){
            _dexRouter = 0x1b02dA8Cb0d097eB8D57A175b88c7D8b47997506; // Arbitrum: SushiSwap
        } else {
            revert("Chain not configured");
        }

        // initialize router
        dexRouter = IDexRouter(_dexRouter);

        uint256 totalSupply = totalSupply_ * (10 ** decimals());
        
        maxBuyAmount = totalSupply * 1 / 1000;
        maxSellAmount = totalSupply * 10 / 1000;
        maxWallet = totalSupply * 10 / 1000;
        swapTokensAtAmount = totalSupply * 25 / 100000;

        buyDevFee = 30;
        buyLiquidityFee = 10;
        buyBurnFee = 10;
        buyTotalFees = buyDevFee + buyLiquidityFee + buyBurnFee;

        sellDevFee = 30;
        sellLiquidityFee = 10;
        sellBurnFee = 10;
        sellTotalFees = sellDevFee + sellLiquidityFee + sellBurnFee;

        devAddress = address(msg.sender);

        _excludeFromMaxTransaction(newOwner, true);
        _excludeFromMaxTransaction(address(this), true);
        _excludeFromMaxTransaction(address(0xdead), true);
        _excludeFromMaxTransaction(address(devAddress), true);
        _excludeFromMaxTransaction(address(dexRouter), true);

        excludeFromFees(newOwner, true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);
        excludeFromFees(address(devAddress), true);
        excludeFromFees(address(dexRouter), true);

        _mint(msg.sender, totalSupply);
        transferOwnership(newOwner);
    }

    receive() external payable {}
    
    function enableTrading() external onlyOwner {
        require(!tradingActive, "Cannot reenable trading");
        tradingActive = true;
        swapEnabled = true;
        emit EnabledTrading();
    }
    
    // remove limits after token is stable
    function removeLimits() external onlyOwner {
        limitsInEffect = false;
        transferDelayEnabled = false;
        maxBuyAmount = totalSupply();
        maxSellAmount = totalSupply();
        emit RemovedLimits();
    }

    function emergencyUpdateRouter(address router) external onlyOwner {
        require(!tradingActive, "Cannot update after trading is functional");
        dexRouter = IDexRouter(router);
    }
    
    // disable Transfer delay - cannot be reenabled
    function disableTransferDelay() external onlyOwner {
        transferDelayEnabled = false;
    }
    
    function updateMaxBuyAmount(uint256 newNum) external onlyOwner {
        require(newNum >= 1, "Cannot set max buy amount lower than 0.1%");
        maxBuyAmount = totalSupply() * newNum / 1000;
        emit UpdatedMaxBuyAmount(maxBuyAmount);
    }
    
    function updateMaxSellAmount(uint256 newNum) external onlyOwner {
        require(newNum >= 1, "Cannot set max sell amount lower than 0.1%");
        maxSellAmount = totalSupply() * newNum / 1000;
        emit UpdatedMaxSellAmount(maxSellAmount);
    }

    function updateMaxWallet(uint256 newNum) external onlyOwner {
        require(newNum >= 1, "Cannot set max wallet amount lower than %");
        maxWallet = totalSupply() * newNum / 1000;
        emit UpdatedMaxWalletAmount(maxWallet);
    }

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner {
  	    require(newAmount >= totalSupply() * 1 / 100000, "Swap amount cannot be lower than 0.001% total supply.");
  	    require(newAmount <= totalSupply() * 1 / 1000, "Swap amount cannot be higher than 0.1% total supply.");
  	    swapTokensAtAmount = newAmount;
  	}
    
    function _excludeFromMaxTransaction(address updAds, bool isExcluded) private {
        _isExcludedMaxTransactionAmount[updAds] = isExcluded;
        emit MaxTransactionExclusion(updAds, isExcluded);
    }
     
    function excludeFromMaxTransaction(address updAds, bool isEx) external onlyOwner {
        if(!isEx){
            require(updAds != lpPair, "Cannot remove uniswap pair from max txn");
        }
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    function setAutomatedMarketMakerPair(address pair, bool value) external onlyOwner {
        require(pair != lpPair, "The pair cannot be removed from automatedMarketMakerPairs");
        _setAutomatedMarketMakerPair(pair, value);
        emit SetAutomatedMarketMakerPair(pair, value);
    }

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

    function updateBuyFees(uint256 _devFee, uint256 _liquidityFee, uint256 _burnFee) external onlyOwner {
        buyDevFee = _devFee;
        buyLiquidityFee = _liquidityFee;
        buyBurnFee = _burnFee;
        buyTotalFees = buyDevFee + buyLiquidityFee + buyBurnFee;
        require(buyTotalFees <= 10 * FEE_DIVISOR / 100, "Must keep fees at 10% or less");
    }

    function updateSellFees(uint256 _devFee, uint256 _liquidityFee,uint256 _burnFee) external onlyOwner {
        sellDevFee = _devFee;
        sellLiquidityFee = _liquidityFee;
        sellBurnFee = _burnFee;
        sellTotalFees = sellDevFee + sellLiquidityFee + sellBurnFee;
        require(sellTotalFees <= 20 * FEE_DIVISOR / 100, "Must keep fees at 20% or less");
    }

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

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

    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");
        require(amount > 0, "amount must be greater than 0");
        
        if(!tradingActive){
            require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active.");
        }
        
        if(limitsInEffect){
            if (from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !_isExcludedFromFees[from] && !_isExcludedFromFees[to]){
                
                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.  
                if (transferDelayEnabled){
                    if (to != address(dexRouter) && to != address(lpPair)){
                        require(_holderLastTransferTimestamp[tx.origin] < block.number - 2 && _holderLastTransferTimestamp[to] < block.number - 2, "_transfer:: Transfer Delay enabled.  Try again later.");
                        _holderLastTransferTimestamp[tx.origin] = block.number;
                        _holderLastTransferTimestamp[to] = block.number;
                    }
                }
                 
                //when buy
                if (automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to]) {
                    require(amount <= maxBuyAmount, "Buy transfer amount exceeds the max buy.");
                    require(amount + balanceOf(to) <= maxWallet, "Cannot exceed max wallet");
                } 
                //when sell
                else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from]) {
                    require(amount <= maxSellAmount, "Sell transfer amount exceeds the max sell.");
                }
                else if (!_isExcludedMaxTransactionAmount[to]) {
                    require(amount + balanceOf(to) <= maxWallet, "Cannot exceed max wallet");
                }
            }
        }

        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 = true;
        // if any account belongs to _isExcludedFromFee account then remove the fee
        if(_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }
        
        uint256 fees = 0;
        uint256 tokensToBurn = 0;

        // only take fees on buys/sells, do not take on wallet transfers
        if(takeFee){
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0){
                fees = amount * sellTotalFees / FEE_DIVISOR;
                tokensForLiquidity += fees * sellLiquidityFee / sellTotalFees;
                tokensForDev += fees * sellDevFee / sellTotalFees;
                tokensToBurn = fees * sellBurnFee / buyTotalFees;
            }

            // on buy
            else if(automatedMarketMakerPairs[from] && buyTotalFees > 0) {
        	    fees = amount * buyTotalFees / FEE_DIVISOR;
        	    tokensForLiquidity += fees * buyLiquidityFee / buyTotalFees;
                tokensForDev += fees * buyDevFee / buyTotalFees;
                tokensToBurn = fees * buyBurnFee / buyTotalFees;
            }
            
            if(fees > 0){    
                super._transfer(from, address(this), fees);
                if(tokensToBurn > 0){
                    super._transfer(address(this), address(0xdead), tokensToBurn);
                }
            }
        	
        	amount -= fees;
        }

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

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

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

        // make the swap
        dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }
    
    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(dexRouter), tokenAmount);

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

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity + tokensForDev;
        
        if(contractBalance == 0 || totalTokensToSwap == 0) {return;}

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

        bool success;
        
        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = contractBalance * tokensForLiquidity / totalTokensToSwap / 2;
        
        swapTokensForEth(contractBalance - liquidityTokens); 
        
        uint256 ethBalance = address(this).balance;
        uint256 ethForLiquidity = ethBalance;

        uint256 ethForDev = ethBalance * tokensForDev / (totalTokensToSwap - (tokensForLiquidity/2));

        ethForLiquidity -= ethForDev;
            
        tokensForLiquidity = 0;
        tokensForDev = 0;
        
        if(liquidityTokens > 0 && ethForLiquidity > 0){
            addLiquidity(liquidityTokens, ethForLiquidity);
        }

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

    function transferForeignToken(address _token, address _to) external onlyOwner returns (bool _sent) {
        require(_token != address(0), "_token address cannot be 0");
        require(_token != address(this) || !tradingActive, "Can't withdraw native tokens while trading is active");
        uint256 _contractBalance = IERC20(_token).balanceOf(address(this));
        _sent = IERC20(_token).transfer(_to, _contractBalance);
    }

    // withdraw ETH if stuck or someone sends to the address
    function withdrawStuckETH() external onlyOwner {
        bool success;
        (success,) = address(msg.sender).call{value: address(this).balance}("");
    }

    function setDevAddress(address _devAddress) external onlyOwner {
        require(_devAddress != address(0), "_devAddress address cannot be 0");
        devAddress = payable(_devAddress);
    }

    // force Swap back if slippage issues.
    function forceSwapBack() external onlyOwner {
        require(balanceOf(address(this)) >= swapTokensAtAmount, "Can only swap when token amount is at or higher than restriction");
        swapping = true;
        swapBack();
        swapping = false;
        emit OwnerForcedSwapBack(block.timestamp);
    }

    function launch() external onlyOwner {
        require(!tradingActive, "Trading is already active, cannot relaunch.");

        //standard enable trading
        tradingActive = true;
        swapEnabled = true;
        emit EnabledTrading();

        // create pair
        lpPair = IDexFactory(dexRouter.factory()).createPair(address(this), dexRouter.WETH());
        _excludeFromMaxTransaction(address(lpPair), true);
        _setAutomatedMarketMakerPair(address(lpPair), true);
   
        // add the liquidity

        require(address(this).balance > 0, "Must have ETH on contract to launch");
        require(balanceOf(address(this)) > 0, "Must have Tokens on contract to launch");

        _approve(address(this), address(dexRouter), balanceOf(address(this)));
        dexRouter.addLiquidityETH{value: address(this).balance}(
            address(this),
            balanceOf(address(this)),
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            address(msg.sender),
            block.timestamp
        );
    }
}

File 2 of 6 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

File 3 of 6 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `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;
        }
        _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;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

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

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

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

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

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

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

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

File 4 of 6 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 5 of 6 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

File 6 of 6 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"totalSupply_","type":"uint256"}],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"EnabledTrading","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_address","type":"address"},{"indexed":false,"internalType":"bool","name":"excluded","type":"bool"}],"name":"MaxTransactionExclusion","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"OwnerForcedSwapBack","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":[],"name":"RemovedLimits","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"}],"name":"UpdatedDevAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"UpdatedMaxBuyAmount","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"UpdatedMaxSellAmount","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"UpdatedMaxWalletAmount","type":"event"},{"inputs":[],"name":"FEE_DIVISOR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyBurnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dexRouter","outputs":[{"internalType":"contract IDexRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"router","type":"address"}],"name":"emergencyUpdateRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"forceSwapBack","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":"launch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"massExcludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxBuyAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellBurnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_devAddress","type":"address"}],"name":"setDevAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"transferForeignToken","outputs":[{"internalType":"bool","name":"_sent","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_burnFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxBuyAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxSellAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_burnFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuckETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526001600c60146101000a81548160ff0219169083151502179055506000600c60156101000a81548160ff0219169083151502179055506000600c60166101000a81548160ff0219169083151502179055506001600e60006101000a81548160ff0219169083151502179055506040516200709738038062007097833981810160405281019062000095919062000b88565b82828160039081620000a8919062000e63565b508060049081620000ba919062000e63565b505050620000dd620000d1620004b560201b60201c565b620004bd60201b60201c565b600033905060006001461480620000f45750600546145b156200011757737a250d5630b4cf539739df2c5dacb4c659f2488d90506200017c565b61a4b146036200013e57731b02da8cb0d097eb8d57a175b88c7d8b4799750690506200017b565b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001729062000fab565b60405180910390fd5b5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000620001cf6200058360201b60201c565b600a620001dd91906200115d565b84620001ea9190620011ae565b90506103e8600182620001fe9190620011ae565b6200020a91906200123e565b6006819055506103e8600a82620002229190620011ae565b6200022e91906200123e565b6007819055506103e8600a82620002469190620011ae565b6200025291906200123e565b600881905550620186a06019826200026b9190620011ae565b6200027791906200123e565b600b81905550601e601081905550600a601181905550600a601281905550601254601154601054620002aa919062001276565b620002b6919062001276565b600f81905550601e601481905550600a601581905550600a601681905550601654601554601454620002e9919062001276565b620002f5919062001276565b60138190555033600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200034f8360016200058c60201b60201c565b620003623060016200058c60201b60201c565b6200037761dead60016200058c60201b60201c565b620003ac600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200058c60201b60201c565b620003e1600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200058c60201b60201c565b620003f48360016200062260201b60201c565b620004073060016200062260201b60201c565b6200041c61dead60016200062260201b60201c565b62000451600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200062260201b60201c565b62000486600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200062260201b60201c565b620004983382620006dd60201b60201c565b620004a9836200085560201b60201c565b50505050505062001529565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f6b4f1be9103e6cbcd38ca4a922334f2c3109b260130a6676a987f94088fd674682826040516200061692919062001335565b60405180910390a15050565b62000632620008eb60201b60201c565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620006d1919062001362565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200074f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200074690620013cf565b60405180910390fd5b62000763600083836200097c60201b60201c565b806002600082825462000777919062001276565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620007ce919062001276565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000835919062001402565b60405180910390a362000851600083836200098160201b60201c565b5050565b62000865620008eb60201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620008d7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008ce9062001495565b60405180910390fd5b620008e881620004bd60201b60201c565b50565b620008fb620004b560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620009216200098660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200097a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009719062001507565b60405180910390fd5b565b505050565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000a1982620009ce565b810181811067ffffffffffffffff8211171562000a3b5762000a3a620009df565b5b80604052505050565b600062000a50620009b0565b905062000a5e828262000a0e565b919050565b600067ffffffffffffffff82111562000a815762000a80620009df565b5b62000a8c82620009ce565b9050602081019050919050565b60005b8381101562000ab957808201518184015260208101905062000a9c565b8381111562000ac9576000848401525b50505050565b600062000ae662000ae08462000a63565b62000a44565b90508281526020810184848401111562000b055762000b04620009c9565b5b62000b1284828562000a99565b509392505050565b600082601f83011262000b325762000b31620009c4565b5b815162000b4484826020860162000acf565b91505092915050565b6000819050919050565b62000b628162000b4d565b811462000b6e57600080fd5b50565b60008151905062000b828162000b57565b92915050565b60008060006060848603121562000ba45762000ba3620009ba565b5b600084015167ffffffffffffffff81111562000bc55762000bc4620009bf565b5b62000bd38682870162000b1a565b935050602084015167ffffffffffffffff81111562000bf75762000bf6620009bf565b5b62000c058682870162000b1a565b925050604062000c188682870162000b71565b9150509250925092565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000c7557607f821691505b60208210810362000c8b5762000c8a62000c2d565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000cf57fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000cb6565b62000d01868362000cb6565b95508019841693508086168417925050509392505050565b6000819050919050565b600062000d4462000d3e62000d388462000b4d565b62000d19565b62000b4d565b9050919050565b6000819050919050565b62000d608362000d23565b62000d7862000d6f8262000d4b565b84845462000cc3565b825550505050565b600090565b62000d8f62000d80565b62000d9c81848462000d55565b505050565b5b8181101562000dc45762000db860008262000d85565b60018101905062000da2565b5050565b601f82111562000e135762000ddd8162000c91565b62000de88462000ca6565b8101602085101562000df8578190505b62000e1062000e078562000ca6565b83018262000da1565b50505b505050565b600082821c905092915050565b600062000e386000198460080262000e18565b1980831691505092915050565b600062000e53838362000e25565b9150826002028217905092915050565b62000e6e8262000c22565b67ffffffffffffffff81111562000e8a5762000e89620009df565b5b62000e96825462000c5c565b62000ea382828562000dc8565b600060209050601f83116001811462000edb576000841562000ec6578287015190505b62000ed2858262000e45565b86555062000f42565b601f19841662000eeb8662000c91565b60005b8281101562000f155784890151825560018201915060208501945060208101905062000eee565b8683101562000f35578489015162000f31601f89168262000e25565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f436861696e206e6f7420636f6e66696775726564000000000000000000000000600082015250565b600062000f9360148362000f4a565b915062000fa08262000f5b565b602082019050919050565b6000602082019050818103600083015262000fc68162000f84565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156200105b5780860481111562001033576200103262000fcd565b5b6001851615620010435780820291505b8081029050620010538562000ffc565b945062001013565b94509492505050565b60008262001076576001905062001149565b8162001086576000905062001149565b81600181146200109f5760028114620010aa57620010e0565b600191505062001149565b60ff841115620010bf57620010be62000fcd565b5b8360020a915084821115620010d957620010d862000fcd565b5b5062001149565b5060208310610133831016604e8410600b84101617156200111a5782820a90508381111562001114576200111362000fcd565b5b62001149565b62001129848484600162001009565b9250905081840481111562001143576200114262000fcd565b5b81810290505b9392505050565b600060ff82169050919050565b60006200116a8262000b4d565b9150620011778362001150565b9250620011a67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462001064565b905092915050565b6000620011bb8262000b4d565b9150620011c88362000b4d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562001204576200120362000fcd565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006200124b8262000b4d565b9150620012588362000b4d565b9250826200126b576200126a6200120f565b5b828204905092915050565b6000620012838262000b4d565b9150620012908362000b4d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620012c857620012c762000fcd565b5b828201905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200130082620012d3565b9050919050565b6200131281620012f3565b82525050565b60008115159050919050565b6200132f8162001318565b82525050565b60006040820190506200134c600083018562001307565b6200135b602083018462001324565b9392505050565b600060208201905062001379600083018462001324565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620013b7601f8362000f4a565b9150620013c4826200137f565b602082019050919050565b60006020820190508181036000830152620013ea81620013a8565b9050919050565b620013fc8162000b4d565b82525050565b6000602082019050620014196000830184620013f1565b92915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006200147d60268362000f4a565b91506200148a826200141f565b604082019050919050565b60006020820190508181036000830152620014b0816200146e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620014ef60208362000f4a565b9150620014fc82620014b7565b602082019050919050565b600060208201905081810360008301526200152281620014e0565b9050919050565b615b5e80620015396000396000f3fe60806040526004361061037a5760003560e01c80638da5cb5b116101d1578063c17b5b8c11610102578063e2f45605116100a0578063f2fde38b1161006f578063f2fde38b14610c91578063f5648a4f14610cba578063f637434214610cd1578063f8b45b0514610cfc57610381565b8063e2f4560514610bf9578063e71dc3f514610c24578063e884f26014610c4f578063f11a24d314610c6657610381565b8063d257b34f116100dc578063d257b34f14610b3f578063d85ba06314610b68578063dc3f0d0f14610b93578063dd62ed3e14610bbc57610381565b8063c17b5b8c14610ac2578063c876d0b914610aeb578063d0d41fe114610b1657610381565b8063a457c2d71161016f578063b62496f511610149578063b62496f514610a08578063bbc0c74214610a45578063bd5fb92014610a70578063c024666814610a9957610381565b8063a457c2d714610963578063a9059cbb146109a0578063adb873bd146109dd57610381565b80639c3b4fdc116101ab5780639c3b4fdc146108b75780639e93ad8e146108e25780639fccce321461090d578063a0d82dc51461093857610381565b80638da5cb5b1461083857806395d89b41146108635780639a7a23d61461088e57610381565b8063452ed4f1116102ab578063715018a6116102495780638095d564116102235780638095d564146107905780638366e79a146107b957806388e765ff146107f65780638a8c523c1461082157610381565b8063715018a614610739578063751039fc146107505780637571336a1461076757610381565b806366d602ae1161028557806366d602ae1461067b5780636a486a8e146106a65780636ddd1713146106d157806370a08231146106fc57610381565b8063452ed4f11461060e5780634a62bb651461063957806351f205e41461066457610381565b80631a8145bb116103185780632be32b61116102f25780632be32b6114610552578063313ce5671461057b57806339509351146105a65780633ad10ef6146105e357610381565b80631a8145bb146104c15780631c499ab0146104ec57806323b872dd1461051557610381565b8063095ea7b311610354578063095ea7b3146103f357806310d5de53146104305780631805805b1461046d57806318160ddd1461049657610381565b806301339c211461038657806306fdde031461039d5780630758d924146103c857610381565b3661038157005b600080fd5b34801561039257600080fd5b5061039b610d27565b005b3480156103a957600080fd5b506103b2611193565b6040516103bf9190613f1f565b60405180910390f35b3480156103d457600080fd5b506103dd611225565b6040516103ea9190613fc0565b60405180910390f35b3480156103ff57600080fd5b5061041a60048036038101906104159190614059565b61124b565b60405161042791906140b4565b60405180910390f35b34801561043c57600080fd5b50610457600480360381019061045291906140cf565b61126e565b60405161046491906140b4565b60405180910390f35b34801561047957600080fd5b50610494600480360381019061048f91906140cf565b61128e565b005b3480156104a257600080fd5b506104ab61132a565b6040516104b8919061410b565b60405180910390f35b3480156104cd57600080fd5b506104d6611334565b6040516104e3919061410b565b60405180910390f35b3480156104f857600080fd5b50610513600480360381019061050e9190614126565b61133a565b005b34801561052157600080fd5b5061053c60048036038101906105379190614153565b6113e8565b60405161054991906140b4565b60405180910390f35b34801561055e57600080fd5b5061057960048036038101906105749190614126565b611417565b005b34801561058757600080fd5b506105906114c5565b60405161059d91906141c2565b60405180910390f35b3480156105b257600080fd5b506105cd60048036038101906105c89190614059565b6114ce565b6040516105da91906140b4565b60405180910390f35b3480156105ef57600080fd5b506105f8611505565b60405161060591906141ec565b60405180910390f35b34801561061a57600080fd5b5061062361152b565b60405161063091906141ec565b60405180910390f35b34801561064557600080fd5b5061064e611551565b60405161065b91906140b4565b60405180910390f35b34801561067057600080fd5b50610679611564565b005b34801561068757600080fd5b50610690611630565b60405161069d919061410b565b60405180910390f35b3480156106b257600080fd5b506106bb611636565b6040516106c8919061410b565b60405180910390f35b3480156106dd57600080fd5b506106e661163c565b6040516106f391906140b4565b60405180910390f35b34801561070857600080fd5b50610723600480360381019061071e91906140cf565b61164f565b604051610730919061410b565b60405180910390f35b34801561074557600080fd5b5061074e611697565b005b34801561075c57600080fd5b506107656116ab565b005b34801561077357600080fd5b5061078e60048036038101906107899190614233565b611733565b005b34801561079c57600080fd5b506107b760048036038101906107b29190614273565b61182c565b005b3480156107c557600080fd5b506107e060048036038101906107db91906142c6565b6118d0565b6040516107ed91906140b4565b60405180910390f35b34801561080257600080fd5b5061080b611ad5565b604051610818919061410b565b60405180910390f35b34801561082d57600080fd5b50610836611adb565b005b34801561084457600080fd5b5061084d611b97565b60405161085a91906141ec565b60405180910390f35b34801561086f57600080fd5b50610878611bc1565b6040516108859190613f1f565b60405180910390f35b34801561089a57600080fd5b506108b560048036038101906108b09190614233565b611c53565b005b3480156108c357600080fd5b506108cc611d3f565b6040516108d9919061410b565b60405180910390f35b3480156108ee57600080fd5b506108f7611d45565b604051610904919061410b565b60405180910390f35b34801561091957600080fd5b50610922611d4b565b60405161092f919061410b565b60405180910390f35b34801561094457600080fd5b5061094d611d51565b60405161095a919061410b565b60405180910390f35b34801561096f57600080fd5b5061098a60048036038101906109859190614059565b611d57565b60405161099791906140b4565b60405180910390f35b3480156109ac57600080fd5b506109c760048036038101906109c29190614059565b611dce565b6040516109d491906140b4565b60405180910390f35b3480156109e957600080fd5b506109f2611df1565b6040516109ff919061410b565b60405180910390f35b348015610a1457600080fd5b50610a2f6004803603810190610a2a91906140cf565b611df7565b604051610a3c91906140b4565b60405180910390f35b348015610a5157600080fd5b50610a5a611e17565b604051610a6791906140b4565b60405180910390f35b348015610a7c57600080fd5b50610a976004803603810190610a92919061436b565b611e2a565b005b348015610aa557600080fd5b50610ac06004803603810190610abb9190614233565b611f4c565b005b348015610ace57600080fd5b50610ae96004803603810190610ae49190614273565b611ffd565b005b348015610af757600080fd5b50610b006120a1565b604051610b0d91906140b4565b60405180910390f35b348015610b2257600080fd5b50610b3d6004803603810190610b3891906140cf565b6120b4565b005b348015610b4b57600080fd5b50610b666004803603810190610b619190614126565b61216f565b005b348015610b7457600080fd5b50610b7d612248565b604051610b8a919061410b565b60405180910390f35b348015610b9f57600080fd5b50610bba6004803603810190610bb59190614126565b61224e565b005b348015610bc857600080fd5b50610be36004803603810190610bde91906142c6565b6122fc565b604051610bf0919061410b565b60405180910390f35b348015610c0557600080fd5b50610c0e612383565b604051610c1b919061410b565b60405180910390f35b348015610c3057600080fd5b50610c39612389565b604051610c46919061410b565b60405180910390f35b348015610c5b57600080fd5b50610c6461238f565b005b348015610c7257600080fd5b50610c7b6123b4565b604051610c88919061410b565b60405180910390f35b348015610c9d57600080fd5b50610cb86004803603810190610cb391906140cf565b6123ba565b005b348015610cc657600080fd5b50610ccf61243d565b005b348015610cdd57600080fd5b50610ce66124b6565b604051610cf3919061410b565b60405180910390f35b348015610d0857600080fd5b50610d116124bc565b604051610d1e919061410b565b60405180910390f35b610d2f6124c2565b600c60159054906101000a900460ff1615610d7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d769061443d565b60405180910390fd5b6001600c60156101000a81548160ff0219169083151502179055506001600c60166101000a81548160ff0219169083151502179055507fa56feb2d31b9a7424db0be063fd450863979c9e2382cf5110f869bd1ad361bb760405160405180910390a1600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e4e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e729190614472565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610efb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f1f9190614472565b6040518363ffffffff1660e01b8152600401610f3c92919061449f565b6020604051808303816000875af1158015610f5b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f7f9190614472565b600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610fec600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001612540565b611019600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016125d4565b6000471161105c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110539061453a565b60405180910390fd5b60006110673061164f565b116110a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109e906145cc565b60405180910390fd5b6110dc30600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166110d73061164f565b61267f565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d71947306111253061164f565b60008033426040518863ffffffff1660e01b815260040161114b96959493929190614627565b60606040518083038185885af1158015611169573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061118e919061469d565b505050565b6060600380546111a29061471f565b80601f01602080910402602001604051908101604052809291908181526020018280546111ce9061471f565b801561121b5780601f106111f05761010080835404028352916020019161121b565b820191906000526020600020905b8154815290600101906020018083116111fe57829003601f168201915b5050505050905090565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080611256612848565b905061126381858561267f565b600191505092915050565b601a6020528060005260406000206000915054906101000a900460ff1681565b6112966124c2565b600c60159054906101000a900460ff16156112e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112dd906147c2565b60405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600254905090565b60185481565b6113426124c2565b6001811015611386576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137d90614854565b60405180910390fd5b6103e88161139261132a565b61139c91906148a3565b6113a6919061492c565b6008819055507fefc9add9a9b7382de284ef5ad69d8ea863e2680492b21a81948c2d5f04a442bc6008546040516113dd919061410b565b60405180910390a150565b6000806113f3612848565b9050611400858285612850565b61140b8585856128dc565b60019150509392505050565b61141f6124c2565b6001811015611463576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145a906149cf565b60405180910390fd5b6103e88161146f61132a565b61147991906148a3565b611483919061492c565b6006819055507ffcc0366804aaa8dbf88a2924100c733b70dec8445957a5d5f8ff92898de410096006546040516114ba919061410b565b60405180910390a150565b60006012905090565b6000806114d9612848565b90506114fa8185856114eb85896122fc565b6114f591906149ef565b61267f565b600191505092915050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c60149054906101000a900460ff1681565b61156c6124c2565b600b546115783061164f565b10156115b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b090614ab7565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055506115dc61365e565b6000600a60146101000a81548160ff0219169083151502179055507f1b56c383f4f48fc992e45667ea4eabae777b9cca68b516a9562d8cda78f1bb3242604051611626919061410b565b60405180910390a1565b60075481565b60135481565b600c60169054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61169f6124c2565b6116a96000613816565b565b6116b36124c2565b6000600c60146101000a81548160ff0219169083151502179055506000600e60006101000a81548160ff0219169083151502179055506116f161132a565b6006819055506116ff61132a565b6007819055507fa4ffae85e880608d5d4365c2b682786545d136145537788e7e0940dff9f0b98c60405160405180910390a1565b61173b6124c2565b806117d157600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c790614b49565b60405180910390fd5b5b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6118346124c2565b82601081905550816011819055508060128190555060125460115460105461185c91906149ef565b61186691906149ef565b600f8190555060646103e8600a61187d91906148a3565b611887919061492c565b600f5411156118cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c290614bb5565b60405180910390fd5b505050565b60006118da6124c2565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611949576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194090614c21565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415806119915750600c60159054906101000a900460ff16155b6119d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c790614cb3565b60405180910390fd5b60008373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611a0b91906141ec565b602060405180830381865afa158015611a28573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a4c9190614cd3565b90508373ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84836040518363ffffffff1660e01b8152600401611a89929190614d00565b6020604051808303816000875af1158015611aa8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611acc9190614d3e565b91505092915050565b60065481565b611ae36124c2565b600c60159054906101000a900460ff1615611b33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2a90614db7565b60405180910390fd5b6001600c60156101000a81548160ff0219169083151502179055506001600c60166101000a81548160ff0219169083151502179055507fa56feb2d31b9a7424db0be063fd450863979c9e2382cf5110f869bd1ad361bb760405160405180910390a1565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054611bd09061471f565b80601f0160208091040260200160405190810160405280929190818152602001828054611bfc9061471f565b8015611c495780601f10611c1e57610100808354040283529160200191611c49565b820191906000526020600020905b815481529060010190602001808311611c2c57829003601f168201915b5050505050905090565b611c5b6124c2565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ceb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce290614e49565b60405180910390fd5b611cf582826125d4565b8015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b60105481565b6103e881565b60175481565b60145481565b600080611d62612848565b90506000611d7082866122fc565b905083811015611db5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dac90614edb565b60405180910390fd5b611dc2828686840361267f565b60019250505092915050565b600080611dd9612848565b9050611de68185856128dc565b600191505092915050565b60165481565b601b6020528060005260406000206000915054906101000a900460ff1681565b600c60159054906101000a900460ff1681565b611e326124c2565b60005b83839050811015611f46578160196000868685818110611e5857611e57614efb565b5b9050602002016020810190611e6d91906140cf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550838382818110611ed157611ed0614efb565b5b9050602002016020810190611ee691906140cf565b73ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df783604051611f2b91906140b4565b60405180910390a28080611f3e90614f2a565b915050611e35565b50505050565b611f546124c2565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611ff191906140b4565b60405180910390a25050565b6120056124c2565b82601481905550816015819055508060168190555060165460155460145461202d91906149ef565b61203791906149ef565b60138190555060646103e8601461204e91906148a3565b612058919061492c565b601354111561209c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209390614fbe565b60405180910390fd5b505050565b600e60009054906101000a900460ff1681565b6120bc6124c2565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361212b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121229061502a565b60405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6121776124c2565b620186a0600161218561132a565b61218f91906148a3565b612199919061492c565b8110156121db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d2906150bc565b60405180910390fd5b6103e860016121e861132a565b6121f291906148a3565b6121fc919061492c565b81111561223e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122359061514e565b60405180910390fd5b80600b8190555050565b600f5481565b6122566124c2565b600181101561229a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612291906151e0565b60405180910390fd5b6103e8816122a661132a565b6122b091906148a3565b6122ba919061492c565b6007819055507f53c4eb831d8cfeb750f1c62590d8cd30f4c6f0380d29a05caa09f0d92588560e6007546040516122f1919061410b565b60405180910390a150565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b60125481565b6123976124c2565b6000600e60006101000a81548160ff021916908315150217905550565b60115481565b6123c26124c2565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612431576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242890615272565b60405180910390fd5b61243a81613816565b50565b6124456124c2565b60003373ffffffffffffffffffffffffffffffffffffffff164760405161246b906152c3565b60006040518083038185875af1925050503d80600081146124a8576040519150601f19603f3d011682016040523d82523d6000602084013e6124ad565b606091505b50508091505050565b60155481565b60085481565b6124ca612848565b73ffffffffffffffffffffffffffffffffffffffff166124e8611b97565b73ffffffffffffffffffffffffffffffffffffffff161461253e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253590615324565b60405180910390fd5b565b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f6b4f1be9103e6cbcd38ca4a922334f2c3109b260130a6676a987f94088fd674682826040516125c8929190615344565b60405180910390a15050565b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506126358282612540565b8015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036126ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e5906153df565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361275d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275490615471565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161283b919061410b565b60405180910390a3505050565b600033905090565b600061285c84846122fc565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146128d657818110156128c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128bf906154dd565b60405180910390fd5b6128d5848484840361267f565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361294b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129429061556f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036129ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b190615601565b60405180910390fd5b600081116129fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129f49061566d565b60405180910390fd5b600c60159054906101000a900460ff16612af257601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612ab25750601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612af1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae8906156d9565b60405180910390fd5b5b600c60149054906101000a900460ff16156131be57612b0f611b97565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612b7d5750612b4d611b97565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612bb65750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612bf0575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c465750601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612c9c5750601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156131bd57600e60009054906101000a900460ff1615612ed457600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612d625750600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612ed357600243612d7491906156f9565b600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054108015612e0b5750600243612dc991906156f9565b600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054105b612e4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e419061579f565b60405180910390fd5b43600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555043600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612f775750601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561301e57600654811115612fc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fb890615831565b60405180910390fd5b600854612fcd8361164f565b82612fd891906149ef565b1115613019576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130109061589d565b60405180910390fd5b6131bc565b601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156130c15750601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156131105760075481111561310b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131029061592f565b60405180910390fd5b6131bb565b601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166131ba5760085461316d8361164f565b8261317891906149ef565b11156131b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131b09061589d565b60405180910390fd5b5b5b5b5b5b60006131c93061164f565b90506000600b5482101590508080156131ee5750600c60169054906101000a900460ff165b80156132075750600a60149054906101000a900460ff16155b801561325d5750601b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156132b35750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156133095750601960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561334d576001600a60146101000a81548160ff02191690831515021790555061333161365e565b6000600a60146101000a81548160ff0219169083151502179055505b600060019050601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806133f45750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156133fe57600090505b600080821561364957601b60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561346257506000601354115b1561350c576103e86013548761347891906148a3565b613482919061492c565b91506013546015548361349591906148a3565b61349f919061492c565b601860008282546134b091906149ef565b92505081905550601354601454836134c891906148a3565b6134d2919061492c565b601760008282546134e391906149ef565b92505081905550600f54601654836134fb91906148a3565b613505919061492c565b905061360e565b601b60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561356757506000600f54115b1561360d576103e8600f548761357d91906148a3565b613587919061492c565b9150600f546011548361359a91906148a3565b6135a4919061492c565b601860008282546135b591906149ef565b92505081905550600f54601054836135cd91906148a3565b6135d7919061492c565b601760008282546135e891906149ef565b92505081905550600f546012548361360091906148a3565b61360a919061492c565b90505b5b600082111561363a576136228830846138dc565b6000811115613639576136383061dead836138dc565b5b5b818661364691906156f9565b95505b6136548888886138dc565b5050505050505050565b60006136693061164f565b9050600060175460185461367d91906149ef565b9050600082148061368e5750600081145b1561369a575050613814565b600a600b546136a991906148a3565b8211156136c257600a600b546136bf91906148a3565b91505b600080600283601854866136d691906148a3565b6136e0919061492c565b6136ea919061492c565b905061370081856136fb91906156f9565b613b5b565b600047905060008190506000600260185461371b919061492c565b8661372691906156f9565b6017548461373491906148a3565b61373e919061492c565b9050808261374c91906156f9565b91506000601881905550600060178190555060008411801561376e5750600082115b1561377e5761377d8483613d9e565b5b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516137c4906152c3565b60006040518083038185875af1925050503d8060008114613801576040519150601f19603f3d011682016040523d82523d6000602084013e613806565b606091505b505080955050505050505050505b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361394b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139429061556f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036139ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139b190615601565b60405180910390fd5b6139c5838383613e7c565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613a4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a42906159c1565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613ade91906149ef565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613b42919061410b565b60405180910390a3613b55848484613e81565b50505050565b6000600267ffffffffffffffff811115613b7857613b776159e1565b5b604051908082528060200260200182016040528015613ba65781602001602082028036833780820191505090505b5090503081600081518110613bbe57613bbd614efb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613c65573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613c899190614472565b81600181518110613c9d57613c9c614efb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613d0430600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168461267f565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613d68959493929190615ace565b600060405180830381600087803b158015613d8257600080fd5b505af1158015613d96573d6000803e3d6000fd5b505050505050565b613dcb30600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168461267f565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008030426040518863ffffffff1660e01b8152600401613e3296959493929190614627565b60606040518083038185885af1158015613e50573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613e75919061469d565b5050505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613ec0578082015181840152602081019050613ea5565b83811115613ecf576000848401525b50505050565b6000601f19601f8301169050919050565b6000613ef182613e86565b613efb8185613e91565b9350613f0b818560208601613ea2565b613f1481613ed5565b840191505092915050565b60006020820190508181036000830152613f398184613ee6565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000613f86613f81613f7c84613f41565b613f61565b613f41565b9050919050565b6000613f9882613f6b565b9050919050565b6000613faa82613f8d565b9050919050565b613fba81613f9f565b82525050565b6000602082019050613fd56000830184613fb1565b92915050565b600080fd5b600080fd5b6000613ff082613f41565b9050919050565b61400081613fe5565b811461400b57600080fd5b50565b60008135905061401d81613ff7565b92915050565b6000819050919050565b61403681614023565b811461404157600080fd5b50565b6000813590506140538161402d565b92915050565b600080604083850312156140705761406f613fdb565b5b600061407e8582860161400e565b925050602061408f85828601614044565b9150509250929050565b60008115159050919050565b6140ae81614099565b82525050565b60006020820190506140c960008301846140a5565b92915050565b6000602082840312156140e5576140e4613fdb565b5b60006140f38482850161400e565b91505092915050565b61410581614023565b82525050565b600060208201905061412060008301846140fc565b92915050565b60006020828403121561413c5761413b613fdb565b5b600061414a84828501614044565b91505092915050565b60008060006060848603121561416c5761416b613fdb565b5b600061417a8682870161400e565b935050602061418b8682870161400e565b925050604061419c86828701614044565b9150509250925092565b600060ff82169050919050565b6141bc816141a6565b82525050565b60006020820190506141d760008301846141b3565b92915050565b6141e681613fe5565b82525050565b600060208201905061420160008301846141dd565b92915050565b61421081614099565b811461421b57600080fd5b50565b60008135905061422d81614207565b92915050565b6000806040838503121561424a57614249613fdb565b5b60006142588582860161400e565b92505060206142698582860161421e565b9150509250929050565b60008060006060848603121561428c5761428b613fdb565b5b600061429a86828701614044565b93505060206142ab86828701614044565b92505060406142bc86828701614044565b9150509250925092565b600080604083850312156142dd576142dc613fdb565b5b60006142eb8582860161400e565b92505060206142fc8582860161400e565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f84011261432b5761432a614306565b5b8235905067ffffffffffffffff8111156143485761434761430b565b5b60208301915083602082028301111561436457614363614310565b5b9250929050565b60008060006040848603121561438457614383613fdb565b5b600084013567ffffffffffffffff8111156143a2576143a1613fe0565b5b6143ae86828701614315565b935093505060206143c18682870161421e565b9150509250925092565b7f54726164696e6720697320616c7265616479206163746976652c2063616e6e6f60008201527f742072656c61756e63682e000000000000000000000000000000000000000000602082015250565b6000614427602b83613e91565b9150614432826143cb565b604082019050919050565b600060208201905081810360008301526144568161441a565b9050919050565b60008151905061446c81613ff7565b92915050565b60006020828403121561448857614487613fdb565b5b60006144968482850161445d565b91505092915050565b60006040820190506144b460008301856141dd565b6144c160208301846141dd565b9392505050565b7f4d757374206861766520455448206f6e20636f6e747261637420746f206c617560008201527f6e63680000000000000000000000000000000000000000000000000000000000602082015250565b6000614524602383613e91565b915061452f826144c8565b604082019050919050565b6000602082019050818103600083015261455381614517565b9050919050565b7f4d757374206861766520546f6b656e73206f6e20636f6e747261637420746f2060008201527f6c61756e63680000000000000000000000000000000000000000000000000000602082015250565b60006145b6602683613e91565b91506145c18261455a565b604082019050919050565b600060208201905081810360008301526145e5816145a9565b9050919050565b6000819050919050565b600061461161460c614607846145ec565b613f61565b614023565b9050919050565b614621816145f6565b82525050565b600060c08201905061463c60008301896141dd565b61464960208301886140fc565b6146566040830187614618565b6146636060830186614618565b61467060808301856141dd565b61467d60a08301846140fc565b979650505050505050565b6000815190506146978161402d565b92915050565b6000806000606084860312156146b6576146b5613fdb565b5b60006146c486828701614688565b93505060206146d586828701614688565b92505060406146e686828701614688565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061473757607f821691505b60208210810361474a576147496146f0565b5b50919050565b7f43616e6e6f74207570646174652061667465722074726164696e67206973206660008201527f756e6374696f6e616c0000000000000000000000000000000000000000000000602082015250565b60006147ac602983613e91565b91506147b782614750565b604082019050919050565b600060208201905081810360008301526147db8161479f565b9050919050565b7f43616e6e6f7420736574206d61782077616c6c657420616d6f756e74206c6f7760008201527f6572207468616e20250000000000000000000000000000000000000000000000602082015250565b600061483e602983613e91565b9150614849826147e2565b604082019050919050565b6000602082019050818103600083015261486d81614831565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006148ae82614023565b91506148b983614023565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156148f2576148f1614874565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061493782614023565b915061494283614023565b925082614952576149516148fd565b5b828204905092915050565b7f43616e6e6f7420736574206d61782062757920616d6f756e74206c6f7765722060008201527f7468616e20302e31250000000000000000000000000000000000000000000000602082015250565b60006149b9602983613e91565b91506149c48261495d565b604082019050919050565b600060208201905081810360008301526149e8816149ac565b9050919050565b60006149fa82614023565b9150614a0583614023565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614a3a57614a39614874565b5b828201905092915050565b7f43616e206f6e6c792073776170207768656e20746f6b656e20616d6f756e742060008201527f6973206174206f7220686967686572207468616e207265737472696374696f6e602082015250565b6000614aa1604083613e91565b9150614aac82614a45565b604082019050919050565b60006020820190508181036000830152614ad081614a94565b9050919050565b7f43616e6e6f742072656d6f766520756e697377617020706169722066726f6d2060008201527f6d61782074786e00000000000000000000000000000000000000000000000000602082015250565b6000614b33602783613e91565b9150614b3e82614ad7565b604082019050919050565b60006020820190508181036000830152614b6281614b26565b9050919050565b7f4d757374206b656570206665657320617420313025206f72206c657373000000600082015250565b6000614b9f601d83613e91565b9150614baa82614b69565b602082019050919050565b60006020820190508181036000830152614bce81614b92565b9050919050565b7f5f746f6b656e20616464726573732063616e6e6f742062652030000000000000600082015250565b6000614c0b601a83613e91565b9150614c1682614bd5565b602082019050919050565b60006020820190508181036000830152614c3a81614bfe565b9050919050565b7f43616e2774207769746864726177206e617469766520746f6b656e732077686960008201527f6c652074726164696e6720697320616374697665000000000000000000000000602082015250565b6000614c9d603483613e91565b9150614ca882614c41565b604082019050919050565b60006020820190508181036000830152614ccc81614c90565b9050919050565b600060208284031215614ce957614ce8613fdb565b5b6000614cf784828501614688565b91505092915050565b6000604082019050614d1560008301856141dd565b614d2260208301846140fc565b9392505050565b600081519050614d3881614207565b92915050565b600060208284031215614d5457614d53613fdb565b5b6000614d6284828501614d29565b91505092915050565b7f43616e6e6f74207265656e61626c652074726164696e67000000000000000000600082015250565b6000614da1601783613e91565b9150614dac82614d6b565b602082019050919050565b60006020820190508181036000830152614dd081614d94565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614e33603983613e91565b9150614e3e82614dd7565b604082019050919050565b60006020820190508181036000830152614e6281614e26565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614ec5602583613e91565b9150614ed082614e69565b604082019050919050565b60006020820190508181036000830152614ef481614eb8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000614f3582614023565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614f6757614f66614874565b5b600182019050919050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b6000614fa8601d83613e91565b9150614fb382614f72565b602082019050919050565b60006020820190508181036000830152614fd781614f9b565b9050919050565b7f5f6465764164647265737320616464726573732063616e6e6f74206265203000600082015250565b6000615014601f83613e91565b915061501f82614fde565b602082019050919050565b6000602082019050818103600083015261504381615007565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006150a6603583613e91565b91506150b18261504a565b604082019050919050565b600060208201905081810360008301526150d581615099565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e312520746f74616c20737570706c792e000000000000000000000000602082015250565b6000615138603483613e91565b9150615143826150dc565b604082019050919050565b600060208201905081810360008301526151678161512b565b9050919050565b7f43616e6e6f7420736574206d61782073656c6c20616d6f756e74206c6f77657260008201527f207468616e20302e312500000000000000000000000000000000000000000000602082015250565b60006151ca602a83613e91565b91506151d58261516e565b604082019050919050565b600060208201905081810360008301526151f9816151bd565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061525c602683613e91565b915061526782615200565b604082019050919050565b6000602082019050818103600083015261528b8161524f565b9050919050565b600081905092915050565b50565b60006152ad600083615292565b91506152b88261529d565b600082019050919050565b60006152ce826152a0565b9150819050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061530e602083613e91565b9150615319826152d8565b602082019050919050565b6000602082019050818103600083015261533d81615301565b9050919050565b600060408201905061535960008301856141dd565b61536660208301846140a5565b9392505050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006153c9602483613e91565b91506153d48261536d565b604082019050919050565b600060208201905081810360008301526153f8816153bc565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061545b602283613e91565b9150615466826153ff565b604082019050919050565b6000602082019050818103600083015261548a8161544e565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006154c7601d83613e91565b91506154d282615491565b602082019050919050565b600060208201905081810360008301526154f6816154ba565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000615559602583613e91565b9150615564826154fd565b604082019050919050565b600060208201905081810360008301526155888161554c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006155eb602383613e91565b91506155f68261558f565b604082019050919050565b6000602082019050818103600083015261561a816155de565b9050919050565b7f616d6f756e74206d7573742062652067726561746572207468616e2030000000600082015250565b6000615657601d83613e91565b915061566282615621565b602082019050919050565b600060208201905081810360008301526156868161564a565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006156c3601683613e91565b91506156ce8261568d565b602082019050919050565b600060208201905081810360008301526156f2816156b6565b9050919050565b600061570482614023565b915061570f83614023565b92508282101561572257615721614874565b5b828203905092915050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e202054727920616761696e206c617465722e0000000000000000000000602082015250565b6000615789603583613e91565b91506157948261572d565b604082019050919050565b600060208201905081810360008301526157b88161577c565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d6178206275792e000000000000000000000000000000000000000000000000602082015250565b600061581b602883613e91565b9150615826826157bf565b604082019050919050565b6000602082019050818103600083015261584a8161580e565b9050919050565b7f43616e6e6f7420657863656564206d61782077616c6c65740000000000000000600082015250565b6000615887601883613e91565b915061589282615851565b602082019050919050565b600060208201905081810360008301526158b68161587a565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61782073656c6c2e00000000000000000000000000000000000000000000602082015250565b6000615919602a83613e91565b9150615924826158bd565b604082019050919050565b600060208201905081810360008301526159488161590c565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006159ab602683613e91565b91506159b68261594f565b604082019050919050565b600060208201905081810360008301526159da8161599e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b615a4581613fe5565b82525050565b6000615a578383615a3c565b60208301905092915050565b6000602082019050919050565b6000615a7b82615a10565b615a858185615a1b565b9350615a9083615a2c565b8060005b83811015615ac1578151615aa88882615a4b565b9750615ab383615a63565b925050600181019050615a94565b5085935050505092915050565b600060a082019050615ae360008301886140fc565b615af06020830187614618565b8181036040830152615b028186615a70565b9050615b1160608301856141dd565b615b1e60808301846140fc565b969550505050505056fea264697066735822122037c09433755e7992bb13b864a6eec37ed27632bdd0504c44feb72bb4836ee18064736f6c634300080f0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000001312d00000000000000000000000000000000000000000000000000000000000000000d534f4a4f55524e455220494e55000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004534f4a4f00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061037a5760003560e01c80638da5cb5b116101d1578063c17b5b8c11610102578063e2f45605116100a0578063f2fde38b1161006f578063f2fde38b14610c91578063f5648a4f14610cba578063f637434214610cd1578063f8b45b0514610cfc57610381565b8063e2f4560514610bf9578063e71dc3f514610c24578063e884f26014610c4f578063f11a24d314610c6657610381565b8063d257b34f116100dc578063d257b34f14610b3f578063d85ba06314610b68578063dc3f0d0f14610b93578063dd62ed3e14610bbc57610381565b8063c17b5b8c14610ac2578063c876d0b914610aeb578063d0d41fe114610b1657610381565b8063a457c2d71161016f578063b62496f511610149578063b62496f514610a08578063bbc0c74214610a45578063bd5fb92014610a70578063c024666814610a9957610381565b8063a457c2d714610963578063a9059cbb146109a0578063adb873bd146109dd57610381565b80639c3b4fdc116101ab5780639c3b4fdc146108b75780639e93ad8e146108e25780639fccce321461090d578063a0d82dc51461093857610381565b80638da5cb5b1461083857806395d89b41146108635780639a7a23d61461088e57610381565b8063452ed4f1116102ab578063715018a6116102495780638095d564116102235780638095d564146107905780638366e79a146107b957806388e765ff146107f65780638a8c523c1461082157610381565b8063715018a614610739578063751039fc146107505780637571336a1461076757610381565b806366d602ae1161028557806366d602ae1461067b5780636a486a8e146106a65780636ddd1713146106d157806370a08231146106fc57610381565b8063452ed4f11461060e5780634a62bb651461063957806351f205e41461066457610381565b80631a8145bb116103185780632be32b61116102f25780632be32b6114610552578063313ce5671461057b57806339509351146105a65780633ad10ef6146105e357610381565b80631a8145bb146104c15780631c499ab0146104ec57806323b872dd1461051557610381565b8063095ea7b311610354578063095ea7b3146103f357806310d5de53146104305780631805805b1461046d57806318160ddd1461049657610381565b806301339c211461038657806306fdde031461039d5780630758d924146103c857610381565b3661038157005b600080fd5b34801561039257600080fd5b5061039b610d27565b005b3480156103a957600080fd5b506103b2611193565b6040516103bf9190613f1f565b60405180910390f35b3480156103d457600080fd5b506103dd611225565b6040516103ea9190613fc0565b60405180910390f35b3480156103ff57600080fd5b5061041a60048036038101906104159190614059565b61124b565b60405161042791906140b4565b60405180910390f35b34801561043c57600080fd5b50610457600480360381019061045291906140cf565b61126e565b60405161046491906140b4565b60405180910390f35b34801561047957600080fd5b50610494600480360381019061048f91906140cf565b61128e565b005b3480156104a257600080fd5b506104ab61132a565b6040516104b8919061410b565b60405180910390f35b3480156104cd57600080fd5b506104d6611334565b6040516104e3919061410b565b60405180910390f35b3480156104f857600080fd5b50610513600480360381019061050e9190614126565b61133a565b005b34801561052157600080fd5b5061053c60048036038101906105379190614153565b6113e8565b60405161054991906140b4565b60405180910390f35b34801561055e57600080fd5b5061057960048036038101906105749190614126565b611417565b005b34801561058757600080fd5b506105906114c5565b60405161059d91906141c2565b60405180910390f35b3480156105b257600080fd5b506105cd60048036038101906105c89190614059565b6114ce565b6040516105da91906140b4565b60405180910390f35b3480156105ef57600080fd5b506105f8611505565b60405161060591906141ec565b60405180910390f35b34801561061a57600080fd5b5061062361152b565b60405161063091906141ec565b60405180910390f35b34801561064557600080fd5b5061064e611551565b60405161065b91906140b4565b60405180910390f35b34801561067057600080fd5b50610679611564565b005b34801561068757600080fd5b50610690611630565b60405161069d919061410b565b60405180910390f35b3480156106b257600080fd5b506106bb611636565b6040516106c8919061410b565b60405180910390f35b3480156106dd57600080fd5b506106e661163c565b6040516106f391906140b4565b60405180910390f35b34801561070857600080fd5b50610723600480360381019061071e91906140cf565b61164f565b604051610730919061410b565b60405180910390f35b34801561074557600080fd5b5061074e611697565b005b34801561075c57600080fd5b506107656116ab565b005b34801561077357600080fd5b5061078e60048036038101906107899190614233565b611733565b005b34801561079c57600080fd5b506107b760048036038101906107b29190614273565b61182c565b005b3480156107c557600080fd5b506107e060048036038101906107db91906142c6565b6118d0565b6040516107ed91906140b4565b60405180910390f35b34801561080257600080fd5b5061080b611ad5565b604051610818919061410b565b60405180910390f35b34801561082d57600080fd5b50610836611adb565b005b34801561084457600080fd5b5061084d611b97565b60405161085a91906141ec565b60405180910390f35b34801561086f57600080fd5b50610878611bc1565b6040516108859190613f1f565b60405180910390f35b34801561089a57600080fd5b506108b560048036038101906108b09190614233565b611c53565b005b3480156108c357600080fd5b506108cc611d3f565b6040516108d9919061410b565b60405180910390f35b3480156108ee57600080fd5b506108f7611d45565b604051610904919061410b565b60405180910390f35b34801561091957600080fd5b50610922611d4b565b60405161092f919061410b565b60405180910390f35b34801561094457600080fd5b5061094d611d51565b60405161095a919061410b565b60405180910390f35b34801561096f57600080fd5b5061098a60048036038101906109859190614059565b611d57565b60405161099791906140b4565b60405180910390f35b3480156109ac57600080fd5b506109c760048036038101906109c29190614059565b611dce565b6040516109d491906140b4565b60405180910390f35b3480156109e957600080fd5b506109f2611df1565b6040516109ff919061410b565b60405180910390f35b348015610a1457600080fd5b50610a2f6004803603810190610a2a91906140cf565b611df7565b604051610a3c91906140b4565b60405180910390f35b348015610a5157600080fd5b50610a5a611e17565b604051610a6791906140b4565b60405180910390f35b348015610a7c57600080fd5b50610a976004803603810190610a92919061436b565b611e2a565b005b348015610aa557600080fd5b50610ac06004803603810190610abb9190614233565b611f4c565b005b348015610ace57600080fd5b50610ae96004803603810190610ae49190614273565b611ffd565b005b348015610af757600080fd5b50610b006120a1565b604051610b0d91906140b4565b60405180910390f35b348015610b2257600080fd5b50610b3d6004803603810190610b3891906140cf565b6120b4565b005b348015610b4b57600080fd5b50610b666004803603810190610b619190614126565b61216f565b005b348015610b7457600080fd5b50610b7d612248565b604051610b8a919061410b565b60405180910390f35b348015610b9f57600080fd5b50610bba6004803603810190610bb59190614126565b61224e565b005b348015610bc857600080fd5b50610be36004803603810190610bde91906142c6565b6122fc565b604051610bf0919061410b565b60405180910390f35b348015610c0557600080fd5b50610c0e612383565b604051610c1b919061410b565b60405180910390f35b348015610c3057600080fd5b50610c39612389565b604051610c46919061410b565b60405180910390f35b348015610c5b57600080fd5b50610c6461238f565b005b348015610c7257600080fd5b50610c7b6123b4565b604051610c88919061410b565b60405180910390f35b348015610c9d57600080fd5b50610cb86004803603810190610cb391906140cf565b6123ba565b005b348015610cc657600080fd5b50610ccf61243d565b005b348015610cdd57600080fd5b50610ce66124b6565b604051610cf3919061410b565b60405180910390f35b348015610d0857600080fd5b50610d116124bc565b604051610d1e919061410b565b60405180910390f35b610d2f6124c2565b600c60159054906101000a900460ff1615610d7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d769061443d565b60405180910390fd5b6001600c60156101000a81548160ff0219169083151502179055506001600c60166101000a81548160ff0219169083151502179055507fa56feb2d31b9a7424db0be063fd450863979c9e2382cf5110f869bd1ad361bb760405160405180910390a1600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e4e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e729190614472565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610efb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f1f9190614472565b6040518363ffffffff1660e01b8152600401610f3c92919061449f565b6020604051808303816000875af1158015610f5b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f7f9190614472565b600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610fec600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001612540565b611019600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016125d4565b6000471161105c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110539061453a565b60405180910390fd5b60006110673061164f565b116110a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109e906145cc565b60405180910390fd5b6110dc30600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166110d73061164f565b61267f565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d71947306111253061164f565b60008033426040518863ffffffff1660e01b815260040161114b96959493929190614627565b60606040518083038185885af1158015611169573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061118e919061469d565b505050565b6060600380546111a29061471f565b80601f01602080910402602001604051908101604052809291908181526020018280546111ce9061471f565b801561121b5780601f106111f05761010080835404028352916020019161121b565b820191906000526020600020905b8154815290600101906020018083116111fe57829003601f168201915b5050505050905090565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080611256612848565b905061126381858561267f565b600191505092915050565b601a6020528060005260406000206000915054906101000a900460ff1681565b6112966124c2565b600c60159054906101000a900460ff16156112e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112dd906147c2565b60405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600254905090565b60185481565b6113426124c2565b6001811015611386576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137d90614854565b60405180910390fd5b6103e88161139261132a565b61139c91906148a3565b6113a6919061492c565b6008819055507fefc9add9a9b7382de284ef5ad69d8ea863e2680492b21a81948c2d5f04a442bc6008546040516113dd919061410b565b60405180910390a150565b6000806113f3612848565b9050611400858285612850565b61140b8585856128dc565b60019150509392505050565b61141f6124c2565b6001811015611463576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145a906149cf565b60405180910390fd5b6103e88161146f61132a565b61147991906148a3565b611483919061492c565b6006819055507ffcc0366804aaa8dbf88a2924100c733b70dec8445957a5d5f8ff92898de410096006546040516114ba919061410b565b60405180910390a150565b60006012905090565b6000806114d9612848565b90506114fa8185856114eb85896122fc565b6114f591906149ef565b61267f565b600191505092915050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c60149054906101000a900460ff1681565b61156c6124c2565b600b546115783061164f565b10156115b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b090614ab7565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055506115dc61365e565b6000600a60146101000a81548160ff0219169083151502179055507f1b56c383f4f48fc992e45667ea4eabae777b9cca68b516a9562d8cda78f1bb3242604051611626919061410b565b60405180910390a1565b60075481565b60135481565b600c60169054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61169f6124c2565b6116a96000613816565b565b6116b36124c2565b6000600c60146101000a81548160ff0219169083151502179055506000600e60006101000a81548160ff0219169083151502179055506116f161132a565b6006819055506116ff61132a565b6007819055507fa4ffae85e880608d5d4365c2b682786545d136145537788e7e0940dff9f0b98c60405160405180910390a1565b61173b6124c2565b806117d157600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c790614b49565b60405180910390fd5b5b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6118346124c2565b82601081905550816011819055508060128190555060125460115460105461185c91906149ef565b61186691906149ef565b600f8190555060646103e8600a61187d91906148a3565b611887919061492c565b600f5411156118cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c290614bb5565b60405180910390fd5b505050565b60006118da6124c2565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611949576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194090614c21565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415806119915750600c60159054906101000a900460ff16155b6119d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c790614cb3565b60405180910390fd5b60008373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611a0b91906141ec565b602060405180830381865afa158015611a28573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a4c9190614cd3565b90508373ffffffffffffffffffffffffffffffffffffffff1663a9059cbb84836040518363ffffffff1660e01b8152600401611a89929190614d00565b6020604051808303816000875af1158015611aa8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611acc9190614d3e565b91505092915050565b60065481565b611ae36124c2565b600c60159054906101000a900460ff1615611b33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2a90614db7565b60405180910390fd5b6001600c60156101000a81548160ff0219169083151502179055506001600c60166101000a81548160ff0219169083151502179055507fa56feb2d31b9a7424db0be063fd450863979c9e2382cf5110f869bd1ad361bb760405160405180910390a1565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054611bd09061471f565b80601f0160208091040260200160405190810160405280929190818152602001828054611bfc9061471f565b8015611c495780601f10611c1e57610100808354040283529160200191611c49565b820191906000526020600020905b815481529060010190602001808311611c2c57829003601f168201915b5050505050905090565b611c5b6124c2565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ceb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce290614e49565b60405180910390fd5b611cf582826125d4565b8015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b60105481565b6103e881565b60175481565b60145481565b600080611d62612848565b90506000611d7082866122fc565b905083811015611db5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dac90614edb565b60405180910390fd5b611dc2828686840361267f565b60019250505092915050565b600080611dd9612848565b9050611de68185856128dc565b600191505092915050565b60165481565b601b6020528060005260406000206000915054906101000a900460ff1681565b600c60159054906101000a900460ff1681565b611e326124c2565b60005b83839050811015611f46578160196000868685818110611e5857611e57614efb565b5b9050602002016020810190611e6d91906140cf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550838382818110611ed157611ed0614efb565b5b9050602002016020810190611ee691906140cf565b73ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df783604051611f2b91906140b4565b60405180910390a28080611f3e90614f2a565b915050611e35565b50505050565b611f546124c2565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611ff191906140b4565b60405180910390a25050565b6120056124c2565b82601481905550816015819055508060168190555060165460155460145461202d91906149ef565b61203791906149ef565b60138190555060646103e8601461204e91906148a3565b612058919061492c565b601354111561209c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209390614fbe565b60405180910390fd5b505050565b600e60009054906101000a900460ff1681565b6120bc6124c2565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361212b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121229061502a565b60405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6121776124c2565b620186a0600161218561132a565b61218f91906148a3565b612199919061492c565b8110156121db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d2906150bc565b60405180910390fd5b6103e860016121e861132a565b6121f291906148a3565b6121fc919061492c565b81111561223e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122359061514e565b60405180910390fd5b80600b8190555050565b600f5481565b6122566124c2565b600181101561229a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612291906151e0565b60405180910390fd5b6103e8816122a661132a565b6122b091906148a3565b6122ba919061492c565b6007819055507f53c4eb831d8cfeb750f1c62590d8cd30f4c6f0380d29a05caa09f0d92588560e6007546040516122f1919061410b565b60405180910390a150565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b60125481565b6123976124c2565b6000600e60006101000a81548160ff021916908315150217905550565b60115481565b6123c26124c2565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612431576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242890615272565b60405180910390fd5b61243a81613816565b50565b6124456124c2565b60003373ffffffffffffffffffffffffffffffffffffffff164760405161246b906152c3565b60006040518083038185875af1925050503d80600081146124a8576040519150601f19603f3d011682016040523d82523d6000602084013e6124ad565b606091505b50508091505050565b60155481565b60085481565b6124ca612848565b73ffffffffffffffffffffffffffffffffffffffff166124e8611b97565b73ffffffffffffffffffffffffffffffffffffffff161461253e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253590615324565b60405180910390fd5b565b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f6b4f1be9103e6cbcd38ca4a922334f2c3109b260130a6676a987f94088fd674682826040516125c8929190615344565b60405180910390a15050565b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506126358282612540565b8015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036126ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e5906153df565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361275d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275490615471565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161283b919061410b565b60405180910390a3505050565b600033905090565b600061285c84846122fc565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146128d657818110156128c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128bf906154dd565b60405180910390fd5b6128d5848484840361267f565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361294b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129429061556f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036129ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b190615601565b60405180910390fd5b600081116129fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129f49061566d565b60405180910390fd5b600c60159054906101000a900460ff16612af257601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612ab25750601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612af1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae8906156d9565b60405180910390fd5b5b600c60149054906101000a900460ff16156131be57612b0f611b97565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612b7d5750612b4d611b97565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612bb65750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612bf0575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c465750601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612c9c5750601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156131bd57600e60009054906101000a900460ff1615612ed457600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612d625750600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612ed357600243612d7491906156f9565b600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054108015612e0b5750600243612dc991906156f9565b600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054105b612e4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e419061579f565b60405180910390fd5b43600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555043600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612f775750601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561301e57600654811115612fc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fb890615831565b60405180910390fd5b600854612fcd8361164f565b82612fd891906149ef565b1115613019576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130109061589d565b60405180910390fd5b6131bc565b601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156130c15750601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156131105760075481111561310b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131029061592f565b60405180910390fd5b6131bb565b601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166131ba5760085461316d8361164f565b8261317891906149ef565b11156131b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131b09061589d565b60405180910390fd5b5b5b5b5b5b60006131c93061164f565b90506000600b5482101590508080156131ee5750600c60169054906101000a900460ff165b80156132075750600a60149054906101000a900460ff16155b801561325d5750601b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156132b35750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156133095750601960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561334d576001600a60146101000a81548160ff02191690831515021790555061333161365e565b6000600a60146101000a81548160ff0219169083151502179055505b600060019050601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806133f45750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156133fe57600090505b600080821561364957601b60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561346257506000601354115b1561350c576103e86013548761347891906148a3565b613482919061492c565b91506013546015548361349591906148a3565b61349f919061492c565b601860008282546134b091906149ef565b92505081905550601354601454836134c891906148a3565b6134d2919061492c565b601760008282546134e391906149ef565b92505081905550600f54601654836134fb91906148a3565b613505919061492c565b905061360e565b601b60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561356757506000600f54115b1561360d576103e8600f548761357d91906148a3565b613587919061492c565b9150600f546011548361359a91906148a3565b6135a4919061492c565b601860008282546135b591906149ef565b92505081905550600f54601054836135cd91906148a3565b6135d7919061492c565b601760008282546135e891906149ef565b92505081905550600f546012548361360091906148a3565b61360a919061492c565b90505b5b600082111561363a576136228830846138dc565b6000811115613639576136383061dead836138dc565b5b5b818661364691906156f9565b95505b6136548888886138dc565b5050505050505050565b60006136693061164f565b9050600060175460185461367d91906149ef565b9050600082148061368e5750600081145b1561369a575050613814565b600a600b546136a991906148a3565b8211156136c257600a600b546136bf91906148a3565b91505b600080600283601854866136d691906148a3565b6136e0919061492c565b6136ea919061492c565b905061370081856136fb91906156f9565b613b5b565b600047905060008190506000600260185461371b919061492c565b8661372691906156f9565b6017548461373491906148a3565b61373e919061492c565b9050808261374c91906156f9565b91506000601881905550600060178190555060008411801561376e5750600082115b1561377e5761377d8483613d9e565b5b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516137c4906152c3565b60006040518083038185875af1925050503d8060008114613801576040519150601f19603f3d011682016040523d82523d6000602084013e613806565b606091505b505080955050505050505050505b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361394b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139429061556f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036139ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139b190615601565b60405180910390fd5b6139c5838383613e7c565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613a4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a42906159c1565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613ade91906149ef565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613b42919061410b565b60405180910390a3613b55848484613e81565b50505050565b6000600267ffffffffffffffff811115613b7857613b776159e1565b5b604051908082528060200260200182016040528015613ba65781602001602082028036833780820191505090505b5090503081600081518110613bbe57613bbd614efb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613c65573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613c899190614472565b81600181518110613c9d57613c9c614efb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613d0430600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168461267f565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613d68959493929190615ace565b600060405180830381600087803b158015613d8257600080fd5b505af1158015613d96573d6000803e3d6000fd5b505050505050565b613dcb30600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168461267f565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008030426040518863ffffffff1660e01b8152600401613e3296959493929190614627565b60606040518083038185885af1158015613e50573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613e75919061469d565b5050505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613ec0578082015181840152602081019050613ea5565b83811115613ecf576000848401525b50505050565b6000601f19601f8301169050919050565b6000613ef182613e86565b613efb8185613e91565b9350613f0b818560208601613ea2565b613f1481613ed5565b840191505092915050565b60006020820190508181036000830152613f398184613ee6565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000613f86613f81613f7c84613f41565b613f61565b613f41565b9050919050565b6000613f9882613f6b565b9050919050565b6000613faa82613f8d565b9050919050565b613fba81613f9f565b82525050565b6000602082019050613fd56000830184613fb1565b92915050565b600080fd5b600080fd5b6000613ff082613f41565b9050919050565b61400081613fe5565b811461400b57600080fd5b50565b60008135905061401d81613ff7565b92915050565b6000819050919050565b61403681614023565b811461404157600080fd5b50565b6000813590506140538161402d565b92915050565b600080604083850312156140705761406f613fdb565b5b600061407e8582860161400e565b925050602061408f85828601614044565b9150509250929050565b60008115159050919050565b6140ae81614099565b82525050565b60006020820190506140c960008301846140a5565b92915050565b6000602082840312156140e5576140e4613fdb565b5b60006140f38482850161400e565b91505092915050565b61410581614023565b82525050565b600060208201905061412060008301846140fc565b92915050565b60006020828403121561413c5761413b613fdb565b5b600061414a84828501614044565b91505092915050565b60008060006060848603121561416c5761416b613fdb565b5b600061417a8682870161400e565b935050602061418b8682870161400e565b925050604061419c86828701614044565b9150509250925092565b600060ff82169050919050565b6141bc816141a6565b82525050565b60006020820190506141d760008301846141b3565b92915050565b6141e681613fe5565b82525050565b600060208201905061420160008301846141dd565b92915050565b61421081614099565b811461421b57600080fd5b50565b60008135905061422d81614207565b92915050565b6000806040838503121561424a57614249613fdb565b5b60006142588582860161400e565b92505060206142698582860161421e565b9150509250929050565b60008060006060848603121561428c5761428b613fdb565b5b600061429a86828701614044565b93505060206142ab86828701614044565b92505060406142bc86828701614044565b9150509250925092565b600080604083850312156142dd576142dc613fdb565b5b60006142eb8582860161400e565b92505060206142fc8582860161400e565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f84011261432b5761432a614306565b5b8235905067ffffffffffffffff8111156143485761434761430b565b5b60208301915083602082028301111561436457614363614310565b5b9250929050565b60008060006040848603121561438457614383613fdb565b5b600084013567ffffffffffffffff8111156143a2576143a1613fe0565b5b6143ae86828701614315565b935093505060206143c18682870161421e565b9150509250925092565b7f54726164696e6720697320616c7265616479206163746976652c2063616e6e6f60008201527f742072656c61756e63682e000000000000000000000000000000000000000000602082015250565b6000614427602b83613e91565b9150614432826143cb565b604082019050919050565b600060208201905081810360008301526144568161441a565b9050919050565b60008151905061446c81613ff7565b92915050565b60006020828403121561448857614487613fdb565b5b60006144968482850161445d565b91505092915050565b60006040820190506144b460008301856141dd565b6144c160208301846141dd565b9392505050565b7f4d757374206861766520455448206f6e20636f6e747261637420746f206c617560008201527f6e63680000000000000000000000000000000000000000000000000000000000602082015250565b6000614524602383613e91565b915061452f826144c8565b604082019050919050565b6000602082019050818103600083015261455381614517565b9050919050565b7f4d757374206861766520546f6b656e73206f6e20636f6e747261637420746f2060008201527f6c61756e63680000000000000000000000000000000000000000000000000000602082015250565b60006145b6602683613e91565b91506145c18261455a565b604082019050919050565b600060208201905081810360008301526145e5816145a9565b9050919050565b6000819050919050565b600061461161460c614607846145ec565b613f61565b614023565b9050919050565b614621816145f6565b82525050565b600060c08201905061463c60008301896141dd565b61464960208301886140fc565b6146566040830187614618565b6146636060830186614618565b61467060808301856141dd565b61467d60a08301846140fc565b979650505050505050565b6000815190506146978161402d565b92915050565b6000806000606084860312156146b6576146b5613fdb565b5b60006146c486828701614688565b93505060206146d586828701614688565b92505060406146e686828701614688565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061473757607f821691505b60208210810361474a576147496146f0565b5b50919050565b7f43616e6e6f74207570646174652061667465722074726164696e67206973206660008201527f756e6374696f6e616c0000000000000000000000000000000000000000000000602082015250565b60006147ac602983613e91565b91506147b782614750565b604082019050919050565b600060208201905081810360008301526147db8161479f565b9050919050565b7f43616e6e6f7420736574206d61782077616c6c657420616d6f756e74206c6f7760008201527f6572207468616e20250000000000000000000000000000000000000000000000602082015250565b600061483e602983613e91565b9150614849826147e2565b604082019050919050565b6000602082019050818103600083015261486d81614831565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006148ae82614023565b91506148b983614023565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156148f2576148f1614874565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061493782614023565b915061494283614023565b925082614952576149516148fd565b5b828204905092915050565b7f43616e6e6f7420736574206d61782062757920616d6f756e74206c6f7765722060008201527f7468616e20302e31250000000000000000000000000000000000000000000000602082015250565b60006149b9602983613e91565b91506149c48261495d565b604082019050919050565b600060208201905081810360008301526149e8816149ac565b9050919050565b60006149fa82614023565b9150614a0583614023565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614a3a57614a39614874565b5b828201905092915050565b7f43616e206f6e6c792073776170207768656e20746f6b656e20616d6f756e742060008201527f6973206174206f7220686967686572207468616e207265737472696374696f6e602082015250565b6000614aa1604083613e91565b9150614aac82614a45565b604082019050919050565b60006020820190508181036000830152614ad081614a94565b9050919050565b7f43616e6e6f742072656d6f766520756e697377617020706169722066726f6d2060008201527f6d61782074786e00000000000000000000000000000000000000000000000000602082015250565b6000614b33602783613e91565b9150614b3e82614ad7565b604082019050919050565b60006020820190508181036000830152614b6281614b26565b9050919050565b7f4d757374206b656570206665657320617420313025206f72206c657373000000600082015250565b6000614b9f601d83613e91565b9150614baa82614b69565b602082019050919050565b60006020820190508181036000830152614bce81614b92565b9050919050565b7f5f746f6b656e20616464726573732063616e6e6f742062652030000000000000600082015250565b6000614c0b601a83613e91565b9150614c1682614bd5565b602082019050919050565b60006020820190508181036000830152614c3a81614bfe565b9050919050565b7f43616e2774207769746864726177206e617469766520746f6b656e732077686960008201527f6c652074726164696e6720697320616374697665000000000000000000000000602082015250565b6000614c9d603483613e91565b9150614ca882614c41565b604082019050919050565b60006020820190508181036000830152614ccc81614c90565b9050919050565b600060208284031215614ce957614ce8613fdb565b5b6000614cf784828501614688565b91505092915050565b6000604082019050614d1560008301856141dd565b614d2260208301846140fc565b9392505050565b600081519050614d3881614207565b92915050565b600060208284031215614d5457614d53613fdb565b5b6000614d6284828501614d29565b91505092915050565b7f43616e6e6f74207265656e61626c652074726164696e67000000000000000000600082015250565b6000614da1601783613e91565b9150614dac82614d6b565b602082019050919050565b60006020820190508181036000830152614dd081614d94565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614e33603983613e91565b9150614e3e82614dd7565b604082019050919050565b60006020820190508181036000830152614e6281614e26565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614ec5602583613e91565b9150614ed082614e69565b604082019050919050565b60006020820190508181036000830152614ef481614eb8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000614f3582614023565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614f6757614f66614874565b5b600182019050919050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b6000614fa8601d83613e91565b9150614fb382614f72565b602082019050919050565b60006020820190508181036000830152614fd781614f9b565b9050919050565b7f5f6465764164647265737320616464726573732063616e6e6f74206265203000600082015250565b6000615014601f83613e91565b915061501f82614fde565b602082019050919050565b6000602082019050818103600083015261504381615007565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006150a6603583613e91565b91506150b18261504a565b604082019050919050565b600060208201905081810360008301526150d581615099565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e312520746f74616c20737570706c792e000000000000000000000000602082015250565b6000615138603483613e91565b9150615143826150dc565b604082019050919050565b600060208201905081810360008301526151678161512b565b9050919050565b7f43616e6e6f7420736574206d61782073656c6c20616d6f756e74206c6f77657260008201527f207468616e20302e312500000000000000000000000000000000000000000000602082015250565b60006151ca602a83613e91565b91506151d58261516e565b604082019050919050565b600060208201905081810360008301526151f9816151bd565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061525c602683613e91565b915061526782615200565b604082019050919050565b6000602082019050818103600083015261528b8161524f565b9050919050565b600081905092915050565b50565b60006152ad600083615292565b91506152b88261529d565b600082019050919050565b60006152ce826152a0565b9150819050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061530e602083613e91565b9150615319826152d8565b602082019050919050565b6000602082019050818103600083015261533d81615301565b9050919050565b600060408201905061535960008301856141dd565b61536660208301846140a5565b9392505050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006153c9602483613e91565b91506153d48261536d565b604082019050919050565b600060208201905081810360008301526153f8816153bc565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061545b602283613e91565b9150615466826153ff565b604082019050919050565b6000602082019050818103600083015261548a8161544e565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006154c7601d83613e91565b91506154d282615491565b602082019050919050565b600060208201905081810360008301526154f6816154ba565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000615559602583613e91565b9150615564826154fd565b604082019050919050565b600060208201905081810360008301526155888161554c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006155eb602383613e91565b91506155f68261558f565b604082019050919050565b6000602082019050818103600083015261561a816155de565b9050919050565b7f616d6f756e74206d7573742062652067726561746572207468616e2030000000600082015250565b6000615657601d83613e91565b915061566282615621565b602082019050919050565b600060208201905081810360008301526156868161564a565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006156c3601683613e91565b91506156ce8261568d565b602082019050919050565b600060208201905081810360008301526156f2816156b6565b9050919050565b600061570482614023565b915061570f83614023565b92508282101561572257615721614874565b5b828203905092915050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e202054727920616761696e206c617465722e0000000000000000000000602082015250565b6000615789603583613e91565b91506157948261572d565b604082019050919050565b600060208201905081810360008301526157b88161577c565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d6178206275792e000000000000000000000000000000000000000000000000602082015250565b600061581b602883613e91565b9150615826826157bf565b604082019050919050565b6000602082019050818103600083015261584a8161580e565b9050919050565b7f43616e6e6f7420657863656564206d61782077616c6c65740000000000000000600082015250565b6000615887601883613e91565b915061589282615851565b602082019050919050565b600060208201905081810360008301526158b68161587a565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61782073656c6c2e00000000000000000000000000000000000000000000602082015250565b6000615919602a83613e91565b9150615924826158bd565b604082019050919050565b600060208201905081810360008301526159488161590c565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006159ab602683613e91565b91506159b68261594f565b604082019050919050565b600060208201905081810360008301526159da8161599e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b615a4581613fe5565b82525050565b6000615a578383615a3c565b60208301905092915050565b6000602082019050919050565b6000615a7b82615a10565b615a858185615a1b565b9350615a9083615a2c565b8060005b83811015615ac1578151615aa88882615a4b565b9750615ab383615a63565b925050600181019050615a94565b5085935050505092915050565b600060a082019050615ae360008301886140fc565b615af06020830187614618565b8181036040830152615b028186615a70565b9050615b1160608301856141dd565b615b1e60808301846140fc565b969550505050505056fea264697066735822122037c09433755e7992bb13b864a6eec37ed27632bdd0504c44feb72bb4836ee18064736f6c634300080f0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000001312d00000000000000000000000000000000000000000000000000000000000000000d534f4a4f55524e455220494e55000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004534f4a4f00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): SOJOURNER INU
Arg [1] : symbol_ (string): SOJO
Arg [2] : totalSupply_ (uint256): 20000000

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000001312d00
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [4] : 534f4a4f55524e455220494e5500000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 534f4a4f00000000000000000000000000000000000000000000000000000000


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.