ETH Price: $2,460.72 (+0.63%)

Token

Artificial Superintelligence (ASI)
 

Overview

Max Total Supply

1,000,000,000 ASI

Holders

23

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
618,232.478246567 ASI

Value
$0.00
0xc3d524c119d6b90d14bf3c7f08911cd323e0bd38
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:
ASI

Compiler Version
v0.8.8+commit.dddeac2f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 7 : Artificial Superintelligence.sol
//SPDX-License-Identifier: MIT

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

pragma solidity ^0.8.8;

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

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

    function WETH() external pure returns (address);

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

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

contract ASI is ERC20, Ownable {

    struct Tax {
        uint256 marketingTax;
        uint256 liquidityTax;
        uint256 developmentTax;
    }

    uint256 _decimal = 9;
    uint256 private _totalSupply = 1e9 * 10 ** _decimal;

    //Router
    DexRouter public uniswapRouter;
    address public pairAddress;

    //Taxes
    Tax public buyTaxes = Tax(4, 1, 1);
    Tax public sellTaxes = Tax(4, 1, 1);
    uint256 public totalBuyFees = 6;
    uint256 public totalSellFees = 6;

    //Whitelisting from taxes/maxwallet/txlimit/etc
    mapping(address => bool) private whitelisted;

    //Swapping
    uint256 public swapTokensAtAmount = _totalSupply / 1000; //after 0.001% of total supply, swap them
    bool public swapAndLiquifyEnabled = true;
    bool public isSwapping = false;

    //Wallets
    address public marketingWallet = 0xEfcE24A460ebd67ad1C558A18B2D42255CD6434E;
    address public developmentWallet = 0xEfcE24A460ebd67ad1C558A18B2D42255CD6434E;

    //Max amounts
    uint256 public maxWallet = _totalSupply / 20;
    uint256 public maxTx = _totalSupply / 100;
    uint256 public maxWalletTimeThreshold = 2 hours;
    uint256 public maxTxTimeThreshold = 2 hours;
    bool public limitsEnabled = false;

    //Snipers
    uint256 public deadBlocks = 4;
    mapping(address=>bool) public blacklisted;

    //Launch Status
    uint256 public launchedAtTime;
    uint256 public launchedAtBlock;

    constructor() ERC20("Artificial Superintelligence", "ASI") {
      
        uniswapRouter = DexRouter(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        pairAddress = DexFactory(uniswapRouter.factory()).createPair(
            address(this),
            uniswapRouter.WETH()
        );

        // do not whitelist liquidity pool, otherwise there wont be any taxes
        whitelisted[msg.sender] = true;
        whitelisted[address(uniswapRouter)] = true;
        whitelisted[address(this)] = true;
        _mint(msg.sender, _totalSupply);
    }

    function decimals() public view virtual override returns (uint8) {
        return 9;
    }

    function setMarketingWallet(address _newMarketing) external onlyOwner {
        require(_newMarketing != address(0), "new Marketing wallet can not be dead address!");
        marketingWallet = _newMarketing;
    }

    function setdevelopmentWallet(address _newdevelopment) external onlyOwner{
        require(_newdevelopment != address(0), "new development wallet can not be dead address!");
        developmentWallet = _newdevelopment;
    }

    function setBuyFees(
        uint256 _developmentTax,
        uint256 _lpTax,
        uint256 _marketingTax
    ) external onlyOwner {
        buyTaxes.developmentTax = _developmentTax;
        buyTaxes.marketingTax = _marketingTax;
        buyTaxes.liquidityTax = _lpTax;
        totalBuyFees = _developmentTax + _lpTax + _marketingTax;
    }

    function setSellFees(
        uint256 _developmentTax,
        uint256 _lpTax,
        uint256 _marketingTax
    ) external onlyOwner {
        sellTaxes.developmentTax = _developmentTax;
        sellTaxes.marketingTax = _marketingTax;
        sellTaxes.liquidityTax = _lpTax;
        totalSellFees = _developmentTax + _lpTax + _marketingTax;
    }

    function setSwapTokensAtAmount(uint256 _newAmount) external onlyOwner {
        require(_newAmount > 0, "Lunc : Minimum swap amount must be greater than 0!");
        swapTokensAtAmount = _newAmount;
    }

    function toggleSwapping() external onlyOwner {
        swapAndLiquifyEnabled = (swapAndLiquifyEnabled == true) ? false : true;
    }

    function setDeadBlocks(uint256 _deadBlocks) external onlyOwner{
        require(launchedAtBlock == 0 && launchedAtTime == 0, "Can't change dead blocks after launch!");
        deadBlocks = _deadBlocks;
    }

    function launch() external onlyOwner {
        require(launchedAtBlock == 0 && launchedAtTime == 0, "Already launched!");
        launchedAtBlock = block.number;
        launchedAtTime = block.timestamp;
    }

    function setMaxWallet(uint256 _maxWallet) external onlyOwner{
        maxWallet = _maxWallet;
    }

    function setmaxTx(uint256 _maxTx) external onlyOwner{
        maxTx = _maxTx;
    }

    function setLimitsStatus(bool _limitsStatus) external onlyOwner{
        limitsEnabled = _limitsStatus;
    }

    function setWhitelistStatus(address _wallet, bool _status) external onlyOwner {
        whitelisted[_wallet] = _status;
    }

    function setBlacklisted(address _wallet, bool _status) external onlyOwner{
        blacklisted[_wallet] = _status;
    }

    function checkWhitelist(address _wallet) external view returns (bool) {
        return whitelisted[_wallet];
    }

    function checkBlacklisted(address _wallet) external view returns(bool){
        return blacklisted[_wallet];
    }

    function _takeTax(
        address _from,
        address _to,
        uint256 _amount
    ) internal returns (uint256) {
        if (whitelisted[_from] || whitelisted[_to]) {
            return _amount;
        }
        require(launchedAtBlock > 0, "Token not launched yet!");

        bool isBuy = false;

        //Managing Taxes Here
        uint256 totalTax = 0;
        if (_to == pairAddress) {
            totalTax = totalSellFees;
        } else if (_from == pairAddress) {
            totalTax = totalBuyFees;
            isBuy = true;
        }

        //Validating max amounts at first 2 hours!
        if((launchedAtTime + maxWalletTimeThreshold >= block.timestamp) || limitsEnabled){
            if(isBuy){
                require(balanceOf(_to) + _amount <= maxWallet, "Can not buy more than 5% of supply!");
            }
            require(_amount < maxTx, "Can not buy/sell/transfer more than 1% of supply!");
        }
        
        //Anti-Bot Implementation
        if(launchedAtBlock + deadBlocks >= block.number){
            if(_to == pairAddress){
                blacklisted[_from] = true;
            }else if(_from == pairAddress){
                blacklisted[_to] = true;
            }
        }

        uint256 tax = (_amount * totalTax) / 100;
        super._transfer(_from, address(this), tax);
        return (_amount - tax);
    }

    function _transfer(
        address _from,
        address _to,
        uint256 _amount
    ) internal virtual override {
        require(_from != address(0), "transfer from address zero");
        require(_to != address(0), "transfer to address zero");
        require(blacklisted[_to] == false && blacklisted[_from] == false, "Transferring not allowed for blacklisted addresses!");
        
        uint256 toTransfer = _takeTax(_from, _to, _amount);
        bool canSwap = balanceOf(address(this)) >= swapTokensAtAmount;
        if (
            swapAndLiquifyEnabled &&
            pairAddress == _to &&
            canSwap &&
            !whitelisted[_from] &&
            !whitelisted[_to] &&
            !isSwapping
        ) {
            isSwapping = true;
            manageTaxes();
            isSwapping = false;
        }
        super._transfer(_from, _to, toTransfer);
    }

    function manageTaxes() internal {
        uint256 taxAmount = balanceOf(address(this));

        //Getting total Fee Percentages And Caclculating Portinos for each tax type
        Tax memory bt = buyTaxes;
        Tax memory st = sellTaxes;
        uint256 totalTaxes = totalBuyFees + totalSellFees;
        if(totalTaxes == 0){
            return;
        }
        
        uint256 totalMarketingTax = bt.marketingTax + st.marketingTax;
        uint256 totalLPTax = bt.liquidityTax + st.liquidityTax;
        uint256 totaldevelopmentTax = bt.developmentTax + st.developmentTax;
        
        //Calculating portions for each type of tax (marketing, burn, liquidity, rewards)
        uint256 lpPortion = (taxAmount * totalLPTax) / totalTaxes;
        uint256 makretingPortion = (taxAmount * totalMarketingTax) / totalTaxes;
        uint256 developmentPortion = (taxAmount * totaldevelopmentTax) / totalTaxes;

        //Add Liquidty taxes to liqudity pool
        if(lpPortion > 0){
            swapAndLiquify(lpPortion);
        }
        
        //sending to marketing wallet
        if(makretingPortion > 0){
            swapToETH(makretingPortion);
            (bool success, ) = marketingWallet.call{value : address(this).balance}("");
        }

        //sending to development wallet
        if(developmentPortion > 0){
            swapToETH(developmentPortion);
            (bool success, ) = developmentWallet.call{value : address(this).balance}("");
        }
    }

    function swapAndLiquify(uint256 _amount) internal {
        uint256 firstHalf = _amount / 2;
        uint256 otherHalf = _amount - firstHalf;
        uint256 initialETHBalance = address(this).balance;

        //Swapping first half to ETH
        swapToETH(firstHalf);
        uint256 received = address(this).balance - initialETHBalance;
        addLiquidity(otherHalf, received);
    }

    function swapToETH(uint256 _amount) internal {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapRouter.WETH();
        _approve(address(this), address(uniswapRouter), _amount);
        uniswapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(
            _amount,
            0, // accept any amount of BaseToken
            path,
            address(this),
            block.timestamp
        );
    }

    function addLiquidity(uint256 tokenAmount, uint256 ETHAmount) private {
        _approve(address(this), address(uniswapRouter), tokenAmount);
        uniswapRouter.addLiquidityETH{value: ETHAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            address(0),
            block.timestamp
        );
    }

    function updateDexRouter(address _newDex) external onlyOwner {
        uniswapRouter = DexRouter(_newDex);
        pairAddress = DexFactory(uniswapRouter.factory()).createPair(
            address(this),
            uniswapRouter.WETH()
        );
    }

    function withdrawStuckETH() external onlyOwner {
        (bool success, ) = address(msg.sender).call{value: address(this).balance}("");
        require(success, "transfering ETH failed");
    }

    function withdrawStuckTokens(address erc20_token) external onlyOwner {
        bool success = IERC20(erc20_token).transfer(
            msg.sender,
            IERC20(erc20_token).balanceOf(address(this))
        );
        require(success, "trasfering tokens failed!");
    }

    receive() external payable {}
    
}

File 2 of 7 : 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 7 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

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

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

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

pragma solidity ^0.8.0;

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 6 of 7 : 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 7 of 7 : 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":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTaxes","outputs":[{"internalType":"uint256","name":"marketingTax","type":"uint256"},{"internalType":"uint256","name":"liquidityTax","type":"uint256"},{"internalType":"uint256","name":"developmentTax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"checkBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"checkWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadBlocks","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":"developmentWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isSwapping","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"launchedAtBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchedAtTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxTimeThreshold","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":"maxWalletTimeThreshold","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":"pairAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTaxes","outputs":[{"internalType":"uint256","name":"marketingTax","type":"uint256"},{"internalType":"uint256","name":"liquidityTax","type":"uint256"},{"internalType":"uint256","name":"developmentTax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"setBlacklisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_developmentTax","type":"uint256"},{"internalType":"uint256","name":"_lpTax","type":"uint256"},{"internalType":"uint256","name":"_marketingTax","type":"uint256"}],"name":"setBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_deadBlocks","type":"uint256"}],"name":"setDeadBlocks","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_limitsStatus","type":"bool"}],"name":"setLimitsStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newMarketing","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWallet","type":"uint256"}],"name":"setMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_developmentTax","type":"uint256"},{"internalType":"uint256","name":"_lpTax","type":"uint256"},{"internalType":"uint256","name":"_marketingTax","type":"uint256"}],"name":"setSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newAmount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"setWhitelistStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newdevelopment","type":"address"}],"name":"setdevelopmentWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTx","type":"uint256"}],"name":"setmaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","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":"toggleSwapping","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalBuyFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSellFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapRouter","outputs":[{"internalType":"contract DexRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newDex","type":"address"}],"name":"updateDexRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuckETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"erc20_token","type":"address"}],"name":"withdrawStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526009600655600654600a6200001a919062000b04565b633b9aca006200002b919062000b55565b600755604051806060016040528060048152602001600181526020016001815250600a6000820151816000015560208201518160010155604082015181600201555050604051806060016040528060048152602001600181526020016001815250600d6000820151816000015560208201518160010155604082015181600201555050600660105560066011556103e8600754620000ca919062000be5565b6013556001601460006101000a81548160ff0219169083151502179055506000601460016101000a81548160ff02191690831515021790555073efce24a460ebd67ad1c558a18b2d42255cd6434e601460026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073efce24a460ebd67ad1c558a18b2d42255cd6434e601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506014600754620001be919062000be5565b6016556064600754620001d2919062000be5565b601755611c20601855611c206019556000601a60006101000a81548160ff0219169083151502179055506004601b553480156200020e57600080fd5b506040518060400160405280601c81526020017f4172746966696369616c205375706572696e74656c6c6967656e6365000000008152506040518060400160405280600381526020017f4153490000000000000000000000000000000000000000000000000000000000815250816003908051906020019062000293929190620008c7565b508060049080519060200190620002ac929190620008c7565b505050620002cf620002c36200068160201b60201c565b6200068960201b60201c565b737a250d5630b4cf539739df2c5dacb4c659f2488d600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200038d57600080fd5b505afa158015620003a2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003c8919062000c87565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200044d57600080fd5b505afa15801562000462573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000488919062000c87565b6040518363ffffffff1660e01b8152600401620004a792919062000cca565b602060405180830381600087803b158015620004c257600080fd5b505af1158015620004d7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004fd919062000c87565b600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160126000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601260003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200067b336007546200074f60201b60201c565b62000e6a565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620007c2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007b99062000d58565b60405180910390fd5b620007d660008383620008bd60201b60201c565b8060026000828254620007ea919062000d7a565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200089d919062000de8565b60405180910390a3620008b960008383620008c260201b60201c565b5050565b505050565b505050565b828054620008d59062000e34565b90600052602060002090601f016020900481019282620008f9576000855562000945565b82601f106200091457805160ff191683800117855562000945565b8280016001018555821562000945579182015b828111156200094457825182559160200191906001019062000927565b5b50905062000954919062000958565b5090565b5b808211156200097357600081600090555060010162000959565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000a0557808604811115620009dd57620009dc62000977565b5b6001851615620009ed5780820291505b8081029050620009fd85620009a6565b9450620009bd565b94509492505050565b60008262000a20576001905062000af3565b8162000a30576000905062000af3565b816001811462000a49576002811462000a545762000a8a565b600191505062000af3565b60ff84111562000a695762000a6862000977565b5b8360020a91508482111562000a835762000a8262000977565b5b5062000af3565b5060208310610133831016604e8410600b841016171562000ac45782820a90508381111562000abe5762000abd62000977565b5b62000af3565b62000ad38484846001620009b3565b9250905081840481111562000aed5762000aec62000977565b5b81810290505b9392505050565b6000819050919050565b600062000b118262000afa565b915062000b1e8362000afa565b925062000b4d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000a0e565b905092915050565b600062000b628262000afa565b915062000b6f8362000afa565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000bab5762000baa62000977565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000bf28262000afa565b915062000bff8362000afa565b92508262000c125762000c1162000bb6565b5b828204905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000c4f8262000c22565b9050919050565b62000c618162000c42565b811462000c6d57600080fd5b50565b60008151905062000c818162000c56565b92915050565b60006020828403121562000ca05762000c9f62000c1d565b5b600062000cb08482850162000c70565b91505092915050565b62000cc48162000c42565b82525050565b600060408201905062000ce1600083018562000cb9565b62000cf0602083018462000cb9565b9392505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000d40601f8362000cf7565b915062000d4d8262000d08565b602082019050919050565b6000602082019050818103600083015262000d738162000d31565b9050919050565b600062000d878262000afa565b915062000d948362000afa565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000dcc5762000dcb62000977565b5b828201905092915050565b62000de28162000afa565b82525050565b600060208201905062000dff600083018462000dd7565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000e4d57607f821691505b6020821081141562000e645762000e6362000e05565b5b50919050565b6145108062000e7a6000396000f3fe6080604052600436106103035760003560e01c8063797de37011610190578063c04a5414116100dc578063e2f4560511610095578063f5648a4f1161006f578063f5648a4f14610b7d578063f66895a314610b94578063f8b45b0514610bc1578063fabb0b4f14610bec5761030a565b8063e2f4560514610b12578063ef586f7114610b3d578063f2fde38b14610b545761030a565b8063c04a5414146109f0578063cb96372814610a1b578063d01dd6d214610a44578063d0a3981414610a6d578063dbac26e914610a98578063dd62ed3e14610ad55761030a565b8063a457c2d711610149578063afa4f3b211610123578063afa4f3b214610948578063b0c2b56114610971578063b88631151461099a578063b9e93700146109c55761030a565b8063a457c2d7146108a3578063a8b08982146108e0578063a9059cbb1461090b5761030a565b8063797de370146107a1578063864701a5146107ca5780638da5cb5b146107f75780638de890bd1461082257806395d89b411461084d578063a03b3b4d146108785761030a565b80633582ad231161024f57806370a082311161020857806371fb7493116101e257806371fb7493146106e3578063735de9f7146107205780637437681e1461074b57806375f0a874146107765761030a565b806370a0823114610666578063714f75e0146106a3578063715018a6146106cc5761030a565b80633582ad231461055857806339509351146105835780634830aa17146105c05780634a74bb02146105e95780635d0044ca146106145780635d098b381461063d5761030a565b80630d075d9c116102bc5780631950c218116102965780631950c2181461048857806323b872dd146104c5578063313ce5671461050257806332f49ef81461052d5761030a565b80630d075d9c1461040b5780630f683e901461043457806318160ddd1461045d5761030a565b806301339c211461030f57806302aac8a21461032657806306fdde0314610351578063095ea7b31461037c5780630a37a3f3146103b95780630c424284146103e25761030a565b3661030a57005b600080fd5b34801561031b57600080fd5b50610324610c17565b005b34801561033257600080fd5b5061033b610c82565b6040516103489190612f21565b60405180910390f35b34801561035d57600080fd5b50610366610c88565b6040516103739190612fd5565b60405180910390f35b34801561038857600080fd5b506103a3600480360381019061039e9190613086565b610d1a565b6040516103b091906130e1565b60405180910390f35b3480156103c557600080fd5b506103e060048036038101906103db91906130fc565b610d3d565b005b3480156103ee57600080fd5b5061040960048036038101906104049190613155565b610da2565b005b34801561041757600080fd5b50610432600480360381019061042d9190613195565b610e05565b005b34801561044057600080fd5b5061045b60048036038101906104569190613195565b610e4d565b005b34801561046957600080fd5b50610472610e95565b60405161047f9190612f21565b60405180910390f35b34801561049457600080fd5b506104af60048036038101906104aa91906131e8565b610e9f565b6040516104bc91906130e1565b60405180910390f35b3480156104d157600080fd5b506104ec60048036038101906104e79190613215565b610ef5565b6040516104f991906130e1565b60405180910390f35b34801561050e57600080fd5b50610517610f24565b6040516105249190613284565b60405180910390f35b34801561053957600080fd5b50610542610f2d565b60405161054f9190612f21565b60405180910390f35b34801561056457600080fd5b5061056d610f33565b60405161057a91906130e1565b60405180910390f35b34801561058f57600080fd5b506105aa60048036038101906105a59190613086565b610f46565b6040516105b791906130e1565b60405180910390f35b3480156105cc57600080fd5b506105e760048036038101906105e291906131e8565b610f7d565b005b3480156105f557600080fd5b506105fe611039565b60405161060b91906130e1565b60405180910390f35b34801561062057600080fd5b5061063b600480360381019061063691906130fc565b61104c565b005b34801561064957600080fd5b50610664600480360381019061065f91906131e8565b61105e565b005b34801561067257600080fd5b5061068d600480360381019061068891906131e8565b61111a565b60405161069a9190612f21565b60405180910390f35b3480156106af57600080fd5b506106ca60048036038101906106c591906131e8565b611162565b005b3480156106d857600080fd5b506106e16113b9565b005b3480156106ef57600080fd5b5061070a600480360381019061070591906131e8565b6113cd565b60405161071791906130e1565b60405180910390f35b34801561072c57600080fd5b50610735611423565b60405161074291906132fe565b60405180910390f35b34801561075757600080fd5b50610760611449565b60405161076d9190612f21565b60405180910390f35b34801561078257600080fd5b5061078b61144f565b6040516107989190613328565b60405180910390f35b3480156107ad57600080fd5b506107c860048036038101906107c39190613343565b611475565b005b3480156107d657600080fd5b506107df61149a565b6040516107ee93929190613370565b60405180910390f35b34801561080357600080fd5b5061080c6114b2565b6040516108199190613328565b60405180910390f35b34801561082e57600080fd5b506108376114dc565b6040516108449190612f21565b60405180910390f35b34801561085957600080fd5b506108626114e2565b60405161086f9190612fd5565b60405180910390f35b34801561088457600080fd5b5061088d611574565b60405161089a9190612f21565b60405180910390f35b3480156108af57600080fd5b506108ca60048036038101906108c59190613086565b61157a565b6040516108d791906130e1565b60405180910390f35b3480156108ec57600080fd5b506108f56115f1565b6040516109029190613328565b60405180910390f35b34801561091757600080fd5b50610932600480360381019061092d9190613086565b611617565b60405161093f91906130e1565b60405180910390f35b34801561095457600080fd5b5061096f600480360381019061096a91906130fc565b61163a565b005b34801561097d57600080fd5b50610998600480360381019061099391906130fc565b61168f565b005b3480156109a657600080fd5b506109af6116a1565b6040516109bc91906130e1565b60405180910390f35b3480156109d157600080fd5b506109da6116b4565b6040516109e79190612f21565b60405180910390f35b3480156109fc57600080fd5b50610a056116ba565b604051610a129190613328565b60405180910390f35b348015610a2757600080fd5b50610a426004803603810190610a3d91906131e8565b6116e0565b005b348015610a5057600080fd5b50610a6b6004803603810190610a669190613155565b611845565b005b348015610a7957600080fd5b50610a826118a8565b604051610a8f9190612f21565b60405180910390f35b348015610aa457600080fd5b50610abf6004803603810190610aba91906131e8565b6118ae565b604051610acc91906130e1565b60405180910390f35b348015610ae157600080fd5b50610afc6004803603810190610af791906133a7565b6118ce565b604051610b099190612f21565b60405180910390f35b348015610b1e57600080fd5b50610b27611955565b604051610b349190612f21565b60405180910390f35b348015610b4957600080fd5b50610b5261195b565b005b348015610b6057600080fd5b50610b7b6004803603810190610b7691906131e8565b6119a3565b005b348015610b8957600080fd5b50610b92611a27565b005b348015610ba057600080fd5b50610ba9611ade565b604051610bb893929190613370565b60405180910390f35b348015610bcd57600080fd5b50610bd6611af6565b604051610be39190612f21565b60405180910390f35b348015610bf857600080fd5b50610c01611afc565b604051610c0e9190612f21565b60405180910390f35b610c1f611b02565b6000601e54148015610c3357506000601d54145b610c72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6990613433565b60405180910390fd5b43601e8190555042601d81905550565b60195481565b606060038054610c9790613482565b80601f0160208091040260200160405190810160405280929190818152602001828054610cc390613482565b8015610d105780601f10610ce557610100808354040283529160200191610d10565b820191906000526020600020905b815481529060010190602001808311610cf357829003601f168201915b5050505050905090565b600080610d25611b80565b9050610d32818585611b88565b600191505092915050565b610d45611b02565b6000601e54148015610d5957506000601d54145b610d98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8f90613526565b60405180910390fd5b80601b8190555050565b610daa611b02565b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b610e0d611b02565b82600a6002018190555080600a6000018190555081600a60010181905550808284610e389190613575565b610e429190613575565b601081905550505050565b610e55611b02565b82600d6002018190555080600d6000018190555081600d60010181905550808284610e809190613575565b610e8a9190613575565b601181905550505050565b6000600254905090565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600080610f00611b80565b9050610f0d858285611d53565b610f18858585611ddf565b60019150509392505050565b60006009905090565b60185481565b601a60009054906101000a900460ff1681565b600080610f51611b80565b9050610f72818585610f6385896118ce565b610f6d9190613575565b611b88565b600191505092915050565b610f85611b02565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ff5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fec9061363d565b60405180910390fd5b80601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601460009054906101000a900460ff1681565b611054611b02565b8060168190555050565b611066611b02565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cd906136cf565b60405180910390fd5b80601460026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61116a611b02565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b15801561121357600080fd5b505afa158015611227573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061124b9190613704565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156112cf57600080fd5b505afa1580156112e3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113079190613704565b6040518363ffffffff1660e01b8152600401611324929190613731565b602060405180830381600087803b15801561133e57600080fd5b505af1158015611352573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113769190613704565b600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6113c1611b02565b6113cb600061215c565b565b6000601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60175481565b601460029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61147d611b02565b80601a60006101000a81548160ff02191690831515021790555050565b600a8060000154908060010154908060020154905083565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601e5481565b6060600480546114f190613482565b80601f016020809104026020016040519081016040528092919081815260200182805461151d90613482565b801561156a5780601f1061153f5761010080835404028352916020019161156a565b820191906000526020600020905b81548152906001019060200180831161154d57829003601f168201915b5050505050905090565b601d5481565b600080611585611b80565b9050600061159382866118ce565b9050838110156115d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cf906137cc565b60405180910390fd5b6115e58286868403611b88565b60019250505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080611622611b80565b905061162f818585611ddf565b600191505092915050565b611642611b02565b60008111611685576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167c9061385e565b60405180910390fd5b8060138190555050565b611697611b02565b8060178190555050565b601460019054906101000a900460ff1681565b60105481565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6116e8611b02565b60008173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb338473ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016117409190613328565b60206040518083038186803b15801561175857600080fd5b505afa15801561176c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117909190613893565b6040518363ffffffff1660e01b81526004016117ad9291906138c0565b602060405180830381600087803b1580156117c757600080fd5b505af11580156117db573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117ff91906138fe565b905080611841576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183890613977565b60405180910390fd5b5050565b61184d611b02565b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60115481565b601c6020528060005260406000206000915054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60135481565b611963611b02565b60011515601460009054906101000a900460ff16151514611985576001611988565b60005b601460006101000a81548160ff021916908315150217905550565b6119ab611b02565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1290613a09565b60405180910390fd5b611a248161215c565b50565b611a2f611b02565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051611a5590613a5a565b60006040518083038185875af1925050503d8060008114611a92576040519150601f19603f3d011682016040523d82523d6000602084013e611a97565b606091505b5050905080611adb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad290613abb565b60405180910390fd5b50565b600d8060000154908060010154908060020154905083565b60165481565b601b5481565b611b0a611b80565b73ffffffffffffffffffffffffffffffffffffffff16611b286114b2565b73ffffffffffffffffffffffffffffffffffffffff1614611b7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7590613b27565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611bf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bef90613bb9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5f90613c4b565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611d469190612f21565b60405180910390a3505050565b6000611d5f84846118ce565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611dd95781811015611dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc290613cb7565b60405180910390fd5b611dd88484848403611b88565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4690613d23565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ebf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb690613d8f565b60405180910390fd5b60001515601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515148015611f6f575060001515601c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515145b611fae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa590613e21565b60405180910390fd5b6000611fbb848484612222565b90506000601354611fcb3061111a565b10159050601460009054906101000a900460ff16801561203857508373ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b80156120415750805b80156120975750601260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156120ed5750601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156121065750601460019054906101000a900460ff16155b1561214a576001601460016101000a81548160ff02191690831515021790555061212e612668565b6000601460016101000a81548160ff0219169083151502179055505b6121558585846128f6565b5050505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806122c55750601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156122d257819050612661565b6000601e5411612317576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230e90613e8d565b60405180910390fd5b600080600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561237a5760115490506123db565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614156123da576010549050600191505b5b42601854601d546123ec9190613575565b1015806124055750601a60009054906101000a900460ff165b156124ae578115612469576016548461241d8761111a565b6124279190613575565b1115612468576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245f90613f1f565b60405180910390fd5b5b60175484106124ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a490613fb1565b60405180910390fd5b5b43601b54601e546124bf9190613575565b1061262857600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612577576001601c60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612627565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161415612626576001601c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b5b5b6000606482866126389190613fd1565b612642919061405a565b905061264f8730836128f6565b808561265b919061408b565b93505050505b9392505050565b60006126733061111a565b90506000600a604051806060016040529081600082015481526020016001820154815260200160028201548152505090506000600d6040518060600160405290816000820154815260200160018201548152602001600282015481525050905060006011546010546126e59190613575565b905060008114156126f957505050506128f4565b60008260000151846000015161270f9190613575565b90506000836020015185602001516127279190613575565b905060008460400151866040015161273f9190613575565b905060008483896127509190613fd1565b61275a919061405a565b9050600085858a61276b9190613fd1565b612775919061405a565b9050600086848b6127869190613fd1565b612790919061405a565b905060008311156127a5576127a483612b6e565b5b6000821115612847576127b782612bbe565b6000601460029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516127ff90613a5a565b60006040518083038185875af1925050503d806000811461283c576040519150601f19603f3d011682016040523d82523d6000602084013e612841565b606091505b50509050505b60008111156128e95761285981612bbe565b6000601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516128a190613a5a565b60006040518083038185875af1925050503d80600081146128de576040519150601f19603f3d011682016040523d82523d6000602084013e6128e3565b606091505b50509050505b505050505050505050505b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612966576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295d90614131565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129cd906141c3565b60405180910390fd5b6129e1838383612e10565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612a67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5e90614255565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612b559190612f21565b60405180910390a3612b68848484612e15565b50505050565b6000600282612b7d919061405a565b905060008183612b8d919061408b565b90506000479050612b9d83612bbe565b60008147612bab919061408b565b9050612bb78382612e1a565b5050505050565b6000600267ffffffffffffffff811115612bdb57612bda614275565b5b604051908082528060200260200182016040528015612c095781602001602082028036833780820191505090505b5090503081600081518110612c2157612c206142a4565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015612cc357600080fd5b505afa158015612cd7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612cfb9190613704565b81600181518110612d0f57612d0e6142a4565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612d7630600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611b88565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612dda9594939291906143cc565b600060405180830381600087803b158015612df457600080fd5b505af1158015612e08573d6000803e3d6000fd5b505050505050565b505050565b505050565b612e4730600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611b88565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7198230856000806000426040518863ffffffff1660e01b8152600401612eaf96959493929190614426565b6060604051808303818588803b158015612ec857600080fd5b505af1158015612edc573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612f019190614487565b5050505050565b6000819050919050565b612f1b81612f08565b82525050565b6000602082019050612f366000830184612f12565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612f76578082015181840152602081019050612f5b565b83811115612f85576000848401525b50505050565b6000601f19601f8301169050919050565b6000612fa782612f3c565b612fb18185612f47565b9350612fc1818560208601612f58565b612fca81612f8b565b840191505092915050565b60006020820190508181036000830152612fef8184612f9c565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061302782612ffc565b9050919050565b6130378161301c565b811461304257600080fd5b50565b6000813590506130548161302e565b92915050565b61306381612f08565b811461306e57600080fd5b50565b6000813590506130808161305a565b92915050565b6000806040838503121561309d5761309c612ff7565b5b60006130ab85828601613045565b92505060206130bc85828601613071565b9150509250929050565b60008115159050919050565b6130db816130c6565b82525050565b60006020820190506130f660008301846130d2565b92915050565b60006020828403121561311257613111612ff7565b5b600061312084828501613071565b91505092915050565b613132816130c6565b811461313d57600080fd5b50565b60008135905061314f81613129565b92915050565b6000806040838503121561316c5761316b612ff7565b5b600061317a85828601613045565b925050602061318b85828601613140565b9150509250929050565b6000806000606084860312156131ae576131ad612ff7565b5b60006131bc86828701613071565b93505060206131cd86828701613071565b92505060406131de86828701613071565b9150509250925092565b6000602082840312156131fe576131fd612ff7565b5b600061320c84828501613045565b91505092915050565b60008060006060848603121561322e5761322d612ff7565b5b600061323c86828701613045565b935050602061324d86828701613045565b925050604061325e86828701613071565b9150509250925092565b600060ff82169050919050565b61327e81613268565b82525050565b60006020820190506132996000830184613275565b92915050565b6000819050919050565b60006132c46132bf6132ba84612ffc565b61329f565b612ffc565b9050919050565b60006132d6826132a9565b9050919050565b60006132e8826132cb565b9050919050565b6132f8816132dd565b82525050565b600060208201905061331360008301846132ef565b92915050565b6133228161301c565b82525050565b600060208201905061333d6000830184613319565b92915050565b60006020828403121561335957613358612ff7565b5b600061336784828501613140565b91505092915050565b60006060820190506133856000830186612f12565b6133926020830185612f12565b61339f6040830184612f12565b949350505050565b600080604083850312156133be576133bd612ff7565b5b60006133cc85828601613045565b92505060206133dd85828601613045565b9150509250929050565b7f416c7265616479206c61756e6368656421000000000000000000000000000000600082015250565b600061341d601183612f47565b9150613428826133e7565b602082019050919050565b6000602082019050818103600083015261344c81613410565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061349a57607f821691505b602082108114156134ae576134ad613453565b5b50919050565b7f43616e2774206368616e6765206465616420626c6f636b73206166746572206c60008201527f61756e6368210000000000000000000000000000000000000000000000000000602082015250565b6000613510602683612f47565b915061351b826134b4565b604082019050919050565b6000602082019050818103600083015261353f81613503565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061358082612f08565b915061358b83612f08565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156135c0576135bf613546565b5b828201905092915050565b7f6e657720646576656c6f706d656e742077616c6c65742063616e206e6f74206260008201527f6520646561642061646472657373210000000000000000000000000000000000602082015250565b6000613627602f83612f47565b9150613632826135cb565b604082019050919050565b600060208201905081810360008301526136568161361a565b9050919050565b7f6e6577204d61726b6574696e672077616c6c65742063616e206e6f742062652060008201527f6465616420616464726573732100000000000000000000000000000000000000602082015250565b60006136b9602d83612f47565b91506136c48261365d565b604082019050919050565b600060208201905081810360008301526136e8816136ac565b9050919050565b6000815190506136fe8161302e565b92915050565b60006020828403121561371a57613719612ff7565b5b6000613728848285016136ef565b91505092915050565b60006040820190506137466000830185613319565b6137536020830184613319565b9392505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006137b6602583612f47565b91506137c18261375a565b604082019050919050565b600060208201905081810360008301526137e5816137a9565b9050919050565b7f4c756e63203a204d696e696d756d207377617020616d6f756e74206d7573742060008201527f62652067726561746572207468616e2030210000000000000000000000000000602082015250565b6000613848603283612f47565b9150613853826137ec565b604082019050919050565b600060208201905081810360008301526138778161383b565b9050919050565b60008151905061388d8161305a565b92915050565b6000602082840312156138a9576138a8612ff7565b5b60006138b78482850161387e565b91505092915050565b60006040820190506138d56000830185613319565b6138e26020830184612f12565b9392505050565b6000815190506138f881613129565b92915050565b60006020828403121561391457613913612ff7565b5b6000613922848285016138e9565b91505092915050565b7f74726173666572696e6720746f6b656e73206661696c65642100000000000000600082015250565b6000613961601983612f47565b915061396c8261392b565b602082019050919050565b6000602082019050818103600083015261399081613954565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006139f3602683612f47565b91506139fe82613997565b604082019050919050565b60006020820190508181036000830152613a22816139e6565b9050919050565b600081905092915050565b50565b6000613a44600083613a29565b9150613a4f82613a34565b600082019050919050565b6000613a6582613a37565b9150819050919050565b7f7472616e73666572696e6720455448206661696c656400000000000000000000600082015250565b6000613aa5601683612f47565b9150613ab082613a6f565b602082019050919050565b60006020820190508181036000830152613ad481613a98565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613b11602083612f47565b9150613b1c82613adb565b602082019050919050565b60006020820190508181036000830152613b4081613b04565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613ba3602483612f47565b9150613bae82613b47565b604082019050919050565b60006020820190508181036000830152613bd281613b96565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613c35602283612f47565b9150613c4082613bd9565b604082019050919050565b60006020820190508181036000830152613c6481613c28565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613ca1601d83612f47565b9150613cac82613c6b565b602082019050919050565b60006020820190508181036000830152613cd081613c94565b9050919050565b7f7472616e736665722066726f6d2061646472657373207a65726f000000000000600082015250565b6000613d0d601a83612f47565b9150613d1882613cd7565b602082019050919050565b60006020820190508181036000830152613d3c81613d00565b9050919050565b7f7472616e7366657220746f2061646472657373207a65726f0000000000000000600082015250565b6000613d79601883612f47565b9150613d8482613d43565b602082019050919050565b60006020820190508181036000830152613da881613d6c565b9050919050565b7f5472616e7366657272696e67206e6f7420616c6c6f77656420666f7220626c6160008201527f636b6c6973746564206164647265737365732100000000000000000000000000602082015250565b6000613e0b603383612f47565b9150613e1682613daf565b604082019050919050565b60006020820190508181036000830152613e3a81613dfe565b9050919050565b7f546f6b656e206e6f74206c61756e636865642079657421000000000000000000600082015250565b6000613e77601783612f47565b9150613e8282613e41565b602082019050919050565b60006020820190508181036000830152613ea681613e6a565b9050919050565b7f43616e206e6f7420627579206d6f7265207468616e203525206f66207375707060008201527f6c79210000000000000000000000000000000000000000000000000000000000602082015250565b6000613f09602383612f47565b9150613f1482613ead565b604082019050919050565b60006020820190508181036000830152613f3881613efc565b9050919050565b7f43616e206e6f74206275792f73656c6c2f7472616e73666572206d6f7265207460008201527f68616e203125206f6620737570706c7921000000000000000000000000000000602082015250565b6000613f9b603183612f47565b9150613fa682613f3f565b604082019050919050565b60006020820190508181036000830152613fca81613f8e565b9050919050565b6000613fdc82612f08565b9150613fe783612f08565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156140205761401f613546565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061406582612f08565b915061407083612f08565b9250826140805761407f61402b565b5b828204905092915050565b600061409682612f08565b91506140a183612f08565b9250828210156140b4576140b3613546565b5b828203905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061411b602583612f47565b9150614126826140bf565b604082019050919050565b6000602082019050818103600083015261414a8161410e565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006141ad602383612f47565b91506141b882614151565b604082019050919050565b600060208201905081810360008301526141dc816141a0565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061423f602683612f47565b915061424a826141e3565b604082019050919050565b6000602082019050818103600083015261426e81614232565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b60006142f86142f36142ee846142d3565b61329f565b612f08565b9050919050565b614308816142dd565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6143438161301c565b82525050565b6000614355838361433a565b60208301905092915050565b6000602082019050919050565b60006143798261430e565b6143838185614319565b935061438e8361432a565b8060005b838110156143bf5781516143a68882614349565b97506143b183614361565b925050600181019050614392565b5085935050505092915050565b600060a0820190506143e16000830188612f12565b6143ee60208301876142ff565b8181036040830152614400818661436e565b905061440f6060830185613319565b61441c6080830184612f12565b9695505050505050565b600060c08201905061443b6000830189613319565b6144486020830188612f12565b61445560408301876142ff565b61446260608301866142ff565b61446f6080830185613319565b61447c60a0830184612f12565b979650505050505050565b6000806000606084860312156144a05761449f612ff7565b5b60006144ae8682870161387e565b93505060206144bf8682870161387e565b92505060406144d08682870161387e565b915050925092509256fea264697066735822122067e9e9cfe319ad8bdb3a200d5eecf2be86824e887c89866f1bebf4d3837b502964736f6c63430008080033

Deployed Bytecode

0x6080604052600436106103035760003560e01c8063797de37011610190578063c04a5414116100dc578063e2f4560511610095578063f5648a4f1161006f578063f5648a4f14610b7d578063f66895a314610b94578063f8b45b0514610bc1578063fabb0b4f14610bec5761030a565b8063e2f4560514610b12578063ef586f7114610b3d578063f2fde38b14610b545761030a565b8063c04a5414146109f0578063cb96372814610a1b578063d01dd6d214610a44578063d0a3981414610a6d578063dbac26e914610a98578063dd62ed3e14610ad55761030a565b8063a457c2d711610149578063afa4f3b211610123578063afa4f3b214610948578063b0c2b56114610971578063b88631151461099a578063b9e93700146109c55761030a565b8063a457c2d7146108a3578063a8b08982146108e0578063a9059cbb1461090b5761030a565b8063797de370146107a1578063864701a5146107ca5780638da5cb5b146107f75780638de890bd1461082257806395d89b411461084d578063a03b3b4d146108785761030a565b80633582ad231161024f57806370a082311161020857806371fb7493116101e257806371fb7493146106e3578063735de9f7146107205780637437681e1461074b57806375f0a874146107765761030a565b806370a0823114610666578063714f75e0146106a3578063715018a6146106cc5761030a565b80633582ad231461055857806339509351146105835780634830aa17146105c05780634a74bb02146105e95780635d0044ca146106145780635d098b381461063d5761030a565b80630d075d9c116102bc5780631950c218116102965780631950c2181461048857806323b872dd146104c5578063313ce5671461050257806332f49ef81461052d5761030a565b80630d075d9c1461040b5780630f683e901461043457806318160ddd1461045d5761030a565b806301339c211461030f57806302aac8a21461032657806306fdde0314610351578063095ea7b31461037c5780630a37a3f3146103b95780630c424284146103e25761030a565b3661030a57005b600080fd5b34801561031b57600080fd5b50610324610c17565b005b34801561033257600080fd5b5061033b610c82565b6040516103489190612f21565b60405180910390f35b34801561035d57600080fd5b50610366610c88565b6040516103739190612fd5565b60405180910390f35b34801561038857600080fd5b506103a3600480360381019061039e9190613086565b610d1a565b6040516103b091906130e1565b60405180910390f35b3480156103c557600080fd5b506103e060048036038101906103db91906130fc565b610d3d565b005b3480156103ee57600080fd5b5061040960048036038101906104049190613155565b610da2565b005b34801561041757600080fd5b50610432600480360381019061042d9190613195565b610e05565b005b34801561044057600080fd5b5061045b60048036038101906104569190613195565b610e4d565b005b34801561046957600080fd5b50610472610e95565b60405161047f9190612f21565b60405180910390f35b34801561049457600080fd5b506104af60048036038101906104aa91906131e8565b610e9f565b6040516104bc91906130e1565b60405180910390f35b3480156104d157600080fd5b506104ec60048036038101906104e79190613215565b610ef5565b6040516104f991906130e1565b60405180910390f35b34801561050e57600080fd5b50610517610f24565b6040516105249190613284565b60405180910390f35b34801561053957600080fd5b50610542610f2d565b60405161054f9190612f21565b60405180910390f35b34801561056457600080fd5b5061056d610f33565b60405161057a91906130e1565b60405180910390f35b34801561058f57600080fd5b506105aa60048036038101906105a59190613086565b610f46565b6040516105b791906130e1565b60405180910390f35b3480156105cc57600080fd5b506105e760048036038101906105e291906131e8565b610f7d565b005b3480156105f557600080fd5b506105fe611039565b60405161060b91906130e1565b60405180910390f35b34801561062057600080fd5b5061063b600480360381019061063691906130fc565b61104c565b005b34801561064957600080fd5b50610664600480360381019061065f91906131e8565b61105e565b005b34801561067257600080fd5b5061068d600480360381019061068891906131e8565b61111a565b60405161069a9190612f21565b60405180910390f35b3480156106af57600080fd5b506106ca60048036038101906106c591906131e8565b611162565b005b3480156106d857600080fd5b506106e16113b9565b005b3480156106ef57600080fd5b5061070a600480360381019061070591906131e8565b6113cd565b60405161071791906130e1565b60405180910390f35b34801561072c57600080fd5b50610735611423565b60405161074291906132fe565b60405180910390f35b34801561075757600080fd5b50610760611449565b60405161076d9190612f21565b60405180910390f35b34801561078257600080fd5b5061078b61144f565b6040516107989190613328565b60405180910390f35b3480156107ad57600080fd5b506107c860048036038101906107c39190613343565b611475565b005b3480156107d657600080fd5b506107df61149a565b6040516107ee93929190613370565b60405180910390f35b34801561080357600080fd5b5061080c6114b2565b6040516108199190613328565b60405180910390f35b34801561082e57600080fd5b506108376114dc565b6040516108449190612f21565b60405180910390f35b34801561085957600080fd5b506108626114e2565b60405161086f9190612fd5565b60405180910390f35b34801561088457600080fd5b5061088d611574565b60405161089a9190612f21565b60405180910390f35b3480156108af57600080fd5b506108ca60048036038101906108c59190613086565b61157a565b6040516108d791906130e1565b60405180910390f35b3480156108ec57600080fd5b506108f56115f1565b6040516109029190613328565b60405180910390f35b34801561091757600080fd5b50610932600480360381019061092d9190613086565b611617565b60405161093f91906130e1565b60405180910390f35b34801561095457600080fd5b5061096f600480360381019061096a91906130fc565b61163a565b005b34801561097d57600080fd5b50610998600480360381019061099391906130fc565b61168f565b005b3480156109a657600080fd5b506109af6116a1565b6040516109bc91906130e1565b60405180910390f35b3480156109d157600080fd5b506109da6116b4565b6040516109e79190612f21565b60405180910390f35b3480156109fc57600080fd5b50610a056116ba565b604051610a129190613328565b60405180910390f35b348015610a2757600080fd5b50610a426004803603810190610a3d91906131e8565b6116e0565b005b348015610a5057600080fd5b50610a6b6004803603810190610a669190613155565b611845565b005b348015610a7957600080fd5b50610a826118a8565b604051610a8f9190612f21565b60405180910390f35b348015610aa457600080fd5b50610abf6004803603810190610aba91906131e8565b6118ae565b604051610acc91906130e1565b60405180910390f35b348015610ae157600080fd5b50610afc6004803603810190610af791906133a7565b6118ce565b604051610b099190612f21565b60405180910390f35b348015610b1e57600080fd5b50610b27611955565b604051610b349190612f21565b60405180910390f35b348015610b4957600080fd5b50610b5261195b565b005b348015610b6057600080fd5b50610b7b6004803603810190610b7691906131e8565b6119a3565b005b348015610b8957600080fd5b50610b92611a27565b005b348015610ba057600080fd5b50610ba9611ade565b604051610bb893929190613370565b60405180910390f35b348015610bcd57600080fd5b50610bd6611af6565b604051610be39190612f21565b60405180910390f35b348015610bf857600080fd5b50610c01611afc565b604051610c0e9190612f21565b60405180910390f35b610c1f611b02565b6000601e54148015610c3357506000601d54145b610c72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6990613433565b60405180910390fd5b43601e8190555042601d81905550565b60195481565b606060038054610c9790613482565b80601f0160208091040260200160405190810160405280929190818152602001828054610cc390613482565b8015610d105780601f10610ce557610100808354040283529160200191610d10565b820191906000526020600020905b815481529060010190602001808311610cf357829003601f168201915b5050505050905090565b600080610d25611b80565b9050610d32818585611b88565b600191505092915050565b610d45611b02565b6000601e54148015610d5957506000601d54145b610d98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8f90613526565b60405180910390fd5b80601b8190555050565b610daa611b02565b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b610e0d611b02565b82600a6002018190555080600a6000018190555081600a60010181905550808284610e389190613575565b610e429190613575565b601081905550505050565b610e55611b02565b82600d6002018190555080600d6000018190555081600d60010181905550808284610e809190613575565b610e8a9190613575565b601181905550505050565b6000600254905090565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600080610f00611b80565b9050610f0d858285611d53565b610f18858585611ddf565b60019150509392505050565b60006009905090565b60185481565b601a60009054906101000a900460ff1681565b600080610f51611b80565b9050610f72818585610f6385896118ce565b610f6d9190613575565b611b88565b600191505092915050565b610f85611b02565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ff5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fec9061363d565b60405180910390fd5b80601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601460009054906101000a900460ff1681565b611054611b02565b8060168190555050565b611066611b02565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cd906136cf565b60405180910390fd5b80601460026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61116a611b02565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b15801561121357600080fd5b505afa158015611227573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061124b9190613704565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156112cf57600080fd5b505afa1580156112e3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113079190613704565b6040518363ffffffff1660e01b8152600401611324929190613731565b602060405180830381600087803b15801561133e57600080fd5b505af1158015611352573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113769190613704565b600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6113c1611b02565b6113cb600061215c565b565b6000601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60175481565b601460029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61147d611b02565b80601a60006101000a81548160ff02191690831515021790555050565b600a8060000154908060010154908060020154905083565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b601e5481565b6060600480546114f190613482565b80601f016020809104026020016040519081016040528092919081815260200182805461151d90613482565b801561156a5780601f1061153f5761010080835404028352916020019161156a565b820191906000526020600020905b81548152906001019060200180831161154d57829003601f168201915b5050505050905090565b601d5481565b600080611585611b80565b9050600061159382866118ce565b9050838110156115d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cf906137cc565b60405180910390fd5b6115e58286868403611b88565b60019250505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080611622611b80565b905061162f818585611ddf565b600191505092915050565b611642611b02565b60008111611685576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167c9061385e565b60405180910390fd5b8060138190555050565b611697611b02565b8060178190555050565b601460019054906101000a900460ff1681565b60105481565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6116e8611b02565b60008173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb338473ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016117409190613328565b60206040518083038186803b15801561175857600080fd5b505afa15801561176c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117909190613893565b6040518363ffffffff1660e01b81526004016117ad9291906138c0565b602060405180830381600087803b1580156117c757600080fd5b505af11580156117db573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117ff91906138fe565b905080611841576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183890613977565b60405180910390fd5b5050565b61184d611b02565b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60115481565b601c6020528060005260406000206000915054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60135481565b611963611b02565b60011515601460009054906101000a900460ff16151514611985576001611988565b60005b601460006101000a81548160ff021916908315150217905550565b6119ab611b02565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611a1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1290613a09565b60405180910390fd5b611a248161215c565b50565b611a2f611b02565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051611a5590613a5a565b60006040518083038185875af1925050503d8060008114611a92576040519150601f19603f3d011682016040523d82523d6000602084013e611a97565b606091505b5050905080611adb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad290613abb565b60405180910390fd5b50565b600d8060000154908060010154908060020154905083565b60165481565b601b5481565b611b0a611b80565b73ffffffffffffffffffffffffffffffffffffffff16611b286114b2565b73ffffffffffffffffffffffffffffffffffffffff1614611b7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7590613b27565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611bf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bef90613bb9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5f90613c4b565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611d469190612f21565b60405180910390a3505050565b6000611d5f84846118ce565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611dd95781811015611dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc290613cb7565b60405180910390fd5b611dd88484848403611b88565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4690613d23565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ebf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb690613d8f565b60405180910390fd5b60001515601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515148015611f6f575060001515601c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515145b611fae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa590613e21565b60405180910390fd5b6000611fbb848484612222565b90506000601354611fcb3061111a565b10159050601460009054906101000a900460ff16801561203857508373ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b80156120415750805b80156120975750601260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156120ed5750601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156121065750601460019054906101000a900460ff16155b1561214a576001601460016101000a81548160ff02191690831515021790555061212e612668565b6000601460016101000a81548160ff0219169083151502179055505b6121558585846128f6565b5050505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000601260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806122c55750601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156122d257819050612661565b6000601e5411612317576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230e90613e8d565b60405180910390fd5b600080600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561237a5760115490506123db565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614156123da576010549050600191505b5b42601854601d546123ec9190613575565b1015806124055750601a60009054906101000a900460ff165b156124ae578115612469576016548461241d8761111a565b6124279190613575565b1115612468576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245f90613f1f565b60405180910390fd5b5b60175484106124ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a490613fb1565b60405180910390fd5b5b43601b54601e546124bf9190613575565b1061262857600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612577576001601c60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612627565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161415612626576001601c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b5b5b6000606482866126389190613fd1565b612642919061405a565b905061264f8730836128f6565b808561265b919061408b565b93505050505b9392505050565b60006126733061111a565b90506000600a604051806060016040529081600082015481526020016001820154815260200160028201548152505090506000600d6040518060600160405290816000820154815260200160018201548152602001600282015481525050905060006011546010546126e59190613575565b905060008114156126f957505050506128f4565b60008260000151846000015161270f9190613575565b90506000836020015185602001516127279190613575565b905060008460400151866040015161273f9190613575565b905060008483896127509190613fd1565b61275a919061405a565b9050600085858a61276b9190613fd1565b612775919061405a565b9050600086848b6127869190613fd1565b612790919061405a565b905060008311156127a5576127a483612b6e565b5b6000821115612847576127b782612bbe565b6000601460029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516127ff90613a5a565b60006040518083038185875af1925050503d806000811461283c576040519150601f19603f3d011682016040523d82523d6000602084013e612841565b606091505b50509050505b60008111156128e95761285981612bbe565b6000601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516128a190613a5a565b60006040518083038185875af1925050503d80600081146128de576040519150601f19603f3d011682016040523d82523d6000602084013e6128e3565b606091505b50509050505b505050505050505050505b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612966576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295d90614131565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129cd906141c3565b60405180910390fd5b6129e1838383612e10565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612a67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5e90614255565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612b559190612f21565b60405180910390a3612b68848484612e15565b50505050565b6000600282612b7d919061405a565b905060008183612b8d919061408b565b90506000479050612b9d83612bbe565b60008147612bab919061408b565b9050612bb78382612e1a565b5050505050565b6000600267ffffffffffffffff811115612bdb57612bda614275565b5b604051908082528060200260200182016040528015612c095781602001602082028036833780820191505090505b5090503081600081518110612c2157612c206142a4565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015612cc357600080fd5b505afa158015612cd7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612cfb9190613704565b81600181518110612d0f57612d0e6142a4565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612d7630600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611b88565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612dda9594939291906143cc565b600060405180830381600087803b158015612df457600080fd5b505af1158015612e08573d6000803e3d6000fd5b505050505050565b505050565b505050565b612e4730600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611b88565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7198230856000806000426040518863ffffffff1660e01b8152600401612eaf96959493929190614426565b6060604051808303818588803b158015612ec857600080fd5b505af1158015612edc573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612f019190614487565b5050505050565b6000819050919050565b612f1b81612f08565b82525050565b6000602082019050612f366000830184612f12565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612f76578082015181840152602081019050612f5b565b83811115612f85576000848401525b50505050565b6000601f19601f8301169050919050565b6000612fa782612f3c565b612fb18185612f47565b9350612fc1818560208601612f58565b612fca81612f8b565b840191505092915050565b60006020820190508181036000830152612fef8184612f9c565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061302782612ffc565b9050919050565b6130378161301c565b811461304257600080fd5b50565b6000813590506130548161302e565b92915050565b61306381612f08565b811461306e57600080fd5b50565b6000813590506130808161305a565b92915050565b6000806040838503121561309d5761309c612ff7565b5b60006130ab85828601613045565b92505060206130bc85828601613071565b9150509250929050565b60008115159050919050565b6130db816130c6565b82525050565b60006020820190506130f660008301846130d2565b92915050565b60006020828403121561311257613111612ff7565b5b600061312084828501613071565b91505092915050565b613132816130c6565b811461313d57600080fd5b50565b60008135905061314f81613129565b92915050565b6000806040838503121561316c5761316b612ff7565b5b600061317a85828601613045565b925050602061318b85828601613140565b9150509250929050565b6000806000606084860312156131ae576131ad612ff7565b5b60006131bc86828701613071565b93505060206131cd86828701613071565b92505060406131de86828701613071565b9150509250925092565b6000602082840312156131fe576131fd612ff7565b5b600061320c84828501613045565b91505092915050565b60008060006060848603121561322e5761322d612ff7565b5b600061323c86828701613045565b935050602061324d86828701613045565b925050604061325e86828701613071565b9150509250925092565b600060ff82169050919050565b61327e81613268565b82525050565b60006020820190506132996000830184613275565b92915050565b6000819050919050565b60006132c46132bf6132ba84612ffc565b61329f565b612ffc565b9050919050565b60006132d6826132a9565b9050919050565b60006132e8826132cb565b9050919050565b6132f8816132dd565b82525050565b600060208201905061331360008301846132ef565b92915050565b6133228161301c565b82525050565b600060208201905061333d6000830184613319565b92915050565b60006020828403121561335957613358612ff7565b5b600061336784828501613140565b91505092915050565b60006060820190506133856000830186612f12565b6133926020830185612f12565b61339f6040830184612f12565b949350505050565b600080604083850312156133be576133bd612ff7565b5b60006133cc85828601613045565b92505060206133dd85828601613045565b9150509250929050565b7f416c7265616479206c61756e6368656421000000000000000000000000000000600082015250565b600061341d601183612f47565b9150613428826133e7565b602082019050919050565b6000602082019050818103600083015261344c81613410565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061349a57607f821691505b602082108114156134ae576134ad613453565b5b50919050565b7f43616e2774206368616e6765206465616420626c6f636b73206166746572206c60008201527f61756e6368210000000000000000000000000000000000000000000000000000602082015250565b6000613510602683612f47565b915061351b826134b4565b604082019050919050565b6000602082019050818103600083015261353f81613503565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061358082612f08565b915061358b83612f08565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156135c0576135bf613546565b5b828201905092915050565b7f6e657720646576656c6f706d656e742077616c6c65742063616e206e6f74206260008201527f6520646561642061646472657373210000000000000000000000000000000000602082015250565b6000613627602f83612f47565b9150613632826135cb565b604082019050919050565b600060208201905081810360008301526136568161361a565b9050919050565b7f6e6577204d61726b6574696e672077616c6c65742063616e206e6f742062652060008201527f6465616420616464726573732100000000000000000000000000000000000000602082015250565b60006136b9602d83612f47565b91506136c48261365d565b604082019050919050565b600060208201905081810360008301526136e8816136ac565b9050919050565b6000815190506136fe8161302e565b92915050565b60006020828403121561371a57613719612ff7565b5b6000613728848285016136ef565b91505092915050565b60006040820190506137466000830185613319565b6137536020830184613319565b9392505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006137b6602583612f47565b91506137c18261375a565b604082019050919050565b600060208201905081810360008301526137e5816137a9565b9050919050565b7f4c756e63203a204d696e696d756d207377617020616d6f756e74206d7573742060008201527f62652067726561746572207468616e2030210000000000000000000000000000602082015250565b6000613848603283612f47565b9150613853826137ec565b604082019050919050565b600060208201905081810360008301526138778161383b565b9050919050565b60008151905061388d8161305a565b92915050565b6000602082840312156138a9576138a8612ff7565b5b60006138b78482850161387e565b91505092915050565b60006040820190506138d56000830185613319565b6138e26020830184612f12565b9392505050565b6000815190506138f881613129565b92915050565b60006020828403121561391457613913612ff7565b5b6000613922848285016138e9565b91505092915050565b7f74726173666572696e6720746f6b656e73206661696c65642100000000000000600082015250565b6000613961601983612f47565b915061396c8261392b565b602082019050919050565b6000602082019050818103600083015261399081613954565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006139f3602683612f47565b91506139fe82613997565b604082019050919050565b60006020820190508181036000830152613a22816139e6565b9050919050565b600081905092915050565b50565b6000613a44600083613a29565b9150613a4f82613a34565b600082019050919050565b6000613a6582613a37565b9150819050919050565b7f7472616e73666572696e6720455448206661696c656400000000000000000000600082015250565b6000613aa5601683612f47565b9150613ab082613a6f565b602082019050919050565b60006020820190508181036000830152613ad481613a98565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613b11602083612f47565b9150613b1c82613adb565b602082019050919050565b60006020820190508181036000830152613b4081613b04565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613ba3602483612f47565b9150613bae82613b47565b604082019050919050565b60006020820190508181036000830152613bd281613b96565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613c35602283612f47565b9150613c4082613bd9565b604082019050919050565b60006020820190508181036000830152613c6481613c28565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613ca1601d83612f47565b9150613cac82613c6b565b602082019050919050565b60006020820190508181036000830152613cd081613c94565b9050919050565b7f7472616e736665722066726f6d2061646472657373207a65726f000000000000600082015250565b6000613d0d601a83612f47565b9150613d1882613cd7565b602082019050919050565b60006020820190508181036000830152613d3c81613d00565b9050919050565b7f7472616e7366657220746f2061646472657373207a65726f0000000000000000600082015250565b6000613d79601883612f47565b9150613d8482613d43565b602082019050919050565b60006020820190508181036000830152613da881613d6c565b9050919050565b7f5472616e7366657272696e67206e6f7420616c6c6f77656420666f7220626c6160008201527f636b6c6973746564206164647265737365732100000000000000000000000000602082015250565b6000613e0b603383612f47565b9150613e1682613daf565b604082019050919050565b60006020820190508181036000830152613e3a81613dfe565b9050919050565b7f546f6b656e206e6f74206c61756e636865642079657421000000000000000000600082015250565b6000613e77601783612f47565b9150613e8282613e41565b602082019050919050565b60006020820190508181036000830152613ea681613e6a565b9050919050565b7f43616e206e6f7420627579206d6f7265207468616e203525206f66207375707060008201527f6c79210000000000000000000000000000000000000000000000000000000000602082015250565b6000613f09602383612f47565b9150613f1482613ead565b604082019050919050565b60006020820190508181036000830152613f3881613efc565b9050919050565b7f43616e206e6f74206275792f73656c6c2f7472616e73666572206d6f7265207460008201527f68616e203125206f6620737570706c7921000000000000000000000000000000602082015250565b6000613f9b603183612f47565b9150613fa682613f3f565b604082019050919050565b60006020820190508181036000830152613fca81613f8e565b9050919050565b6000613fdc82612f08565b9150613fe783612f08565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156140205761401f613546565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061406582612f08565b915061407083612f08565b9250826140805761407f61402b565b5b828204905092915050565b600061409682612f08565b91506140a183612f08565b9250828210156140b4576140b3613546565b5b828203905092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061411b602583612f47565b9150614126826140bf565b604082019050919050565b6000602082019050818103600083015261414a8161410e565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006141ad602383612f47565b91506141b882614151565b604082019050919050565b600060208201905081810360008301526141dc816141a0565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061423f602683612f47565b915061424a826141e3565b604082019050919050565b6000602082019050818103600083015261426e81614232565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b60006142f86142f36142ee846142d3565b61329f565b612f08565b9050919050565b614308816142dd565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6143438161301c565b82525050565b6000614355838361433a565b60208301905092915050565b6000602082019050919050565b60006143798261430e565b6143838185614319565b935061438e8361432a565b8060005b838110156143bf5781516143a68882614349565b97506143b183614361565b925050600181019050614392565b5085935050505092915050565b600060a0820190506143e16000830188612f12565b6143ee60208301876142ff565b8181036040830152614400818661436e565b905061440f6060830185613319565b61441c6080830184612f12565b9695505050505050565b600060c08201905061443b6000830189613319565b6144486020830188612f12565b61445560408301876142ff565b61446260608301866142ff565b61446f6080830185613319565b61447c60a0830184612f12565b979650505050505050565b6000806000606084860312156144a05761449f612ff7565b5b60006144ae8682870161387e565b93505060206144bf8682870161387e565b92505060406144d08682870161387e565b915050925092509256fea264697066735822122067e9e9cfe319ad8bdb3a200d5eecf2be86824e887c89866f1bebf4d3837b502964736f6c63430008080033

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.