ETH Price: $2,473.17 (+7.32%)

Contract

0x8f4c93f857F6df02a77703138d4DCC8617b917c9
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve204270002024-07-31 14:01:5950 days ago1722434519IN
0x8f4c93f8...617b917c9
0 ETH0.0007674616.24401865
Approve204269632024-07-31 13:54:2350 days ago1722434063IN
0x8f4c93f8...617b917c9
0 ETH0.0006330613.39925456
Approve204269432024-07-31 13:50:2350 days ago1722433823IN
0x8f4c93f8...617b917c9
0 ETH0.0005955612.60567717
Approve204269232024-07-31 13:46:2350 days ago1722433583IN
0x8f4c93f8...617b917c9
0 ETH0.000634813.43613524
Approve204269172024-07-31 13:45:1150 days ago1722433511IN
0x8f4c93f8...617b917c9
0 ETH0.0006484213.72440995
Approve204269172024-07-31 13:45:1150 days ago1722433511IN
0x8f4c93f8...617b917c9
0 ETH0.0006484213.72440995
Approve204269172024-07-31 13:45:1150 days ago1722433511IN
0x8f4c93f8...617b917c9
0 ETH0.0006484213.72440995
Approve204269172024-07-31 13:45:1150 days ago1722433511IN
0x8f4c93f8...617b917c9
0 ETH0.0006484213.72440995
Approve204269102024-07-31 13:43:4750 days ago1722433427IN
0x8f4c93f8...617b917c9
0 ETH0.0006661914.10056998
Approve204269102024-07-31 13:43:4750 days ago1722433427IN
0x8f4c93f8...617b917c9
0 ETH0.0006661914.10056998
Approve204269102024-07-31 13:43:4750 days ago1722433427IN
0x8f4c93f8...617b917c9
0 ETH0.0006661914.10056998
Approve204269092024-07-31 13:43:3550 days ago1722433415IN
0x8f4c93f8...617b917c9
0 ETH0.0006662914.10264295
Approve204269092024-07-31 13:43:3550 days ago1722433415IN
0x8f4c93f8...617b917c9
0 ETH0.0006662914.10264295
Approve204269012024-07-31 13:41:5950 days ago1722433319IN
0x8f4c93f8...617b917c9
0 ETH0.0006760914.31017702
Approve204268992024-07-31 13:41:3550 days ago1722433295IN
0x8f4c93f8...617b917c9
0 ETH0.0006781114.35284688
Approve204268992024-07-31 13:41:3550 days ago1722433295IN
0x8f4c93f8...617b917c9
0 ETH0.0006781114.35284688
Approve204268992024-07-31 13:41:3550 days ago1722433295IN
0x8f4c93f8...617b917c9
0 ETH0.0006781114.35284688
Approve204268892024-07-31 13:39:3550 days ago1722433175IN
0x8f4c93f8...617b917c9
0 ETH0.0007161215.17653639
Approve204268822024-07-31 13:38:1150 days ago1722433091IN
0x8f4c93f8...617b917c9
0 ETH0.0006465513.68478717
Approve204268752024-07-31 13:36:4750 days ago1722433007IN
0x8f4c93f8...617b917c9
0 ETH0.0006065712.83862307
Approve204268692024-07-31 13:35:3550 days ago1722432935IN
0x8f4c93f8...617b917c9
0 ETH0.0006165413.04963949
Approve204268692024-07-31 13:35:3550 days ago1722432935IN
0x8f4c93f8...617b917c9
0 ETH0.0006165413.04963949
Approve204268692024-07-31 13:35:3550 days ago1722432935IN
0x8f4c93f8...617b917c9
0 ETH0.0006165413.04963949
Approve204268692024-07-31 13:35:3550 days ago1722432935IN
0x8f4c93f8...617b917c9
0 ETH0.0006212613.14963949
Approve204268682024-07-31 13:35:2350 days ago1722432923IN
0x8f4c93f8...617b917c9
0 ETH0.0007592316.06990715
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Nerio2

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-07-31
*/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.17;
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

// pragma solidity ^0.8.0;


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

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





abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        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);
    }
}

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

// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

// pragma solidity ^0.8.0;

// import "../IERC20.sol";

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

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

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

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

// pragma solidity ^0.8.0;

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

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

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

    uint256 private _totalSupply;

    uint256 public _maxlSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

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

    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue)
        public
        virtual
        returns (bool)
    {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

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

        return true;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

    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 _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(
                currentAllowance >= amount,
                "ERC20: insufficient allowance"
            );
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

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

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

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

// pragma solidity ^0.8.0;

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

// pragma solidity >=0.5.0;

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

// 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,   uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    )
        external
        returns (
            uint256 amountA,
            uint256 amountB,
            uint256 liquidity
        );

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// pragma solidity >=0.6.2;

// import './IUniswapV2Router01.sol';

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

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

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

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

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

contract Nerio2 is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public uniswapV2Pair;

    address public marketingWallet;
    address public developmentWallet;
    address public liquidityWallet;
    address public constant deadAddress = address(0xdead);

    bool public tradingEnabled;
    bool public swapEnabled;
    bool private _swapping;

    uint256 public swapTokensAtAmount;

    uint256 public buyTotalFees;
    uint256 private _buyMarketingFee;
    uint256 private _buyDevelopmentFee;
    uint256 private _buyLiquidityFee;

    uint256 public sellTotalFees;
    uint256 private _sellMarketingFee;
    uint256 private _sellDevelopmentFee;
    uint256 private _sellLiquidityFee;

    uint256 private _tokensForMarketing;
    uint256 private _tokensForDevelopment;
    uint256 private _tokensForLiquidity;  uint256 private _previousFee;

    mapping (address => bool) private _isExcludedFromEnableTrader;
    mapping(address => bool) private _marketMakerPairs;
    

    event ExcludeFromLimits(address indexed account, bool isExcluded);

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

    event marketingWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event developmentWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event liquidityWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

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


    constructor() ERC20("Nerio2", "Nerio2") {

        uint256 totalSupply = 100000000 * (10 ** 18);

        uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        _approve(address(this), address(uniswapV2Router), type(uint256).max);

        _sellMarketingFee = 0;
        _sellDevelopmentFee = 0;
        _sellLiquidityFee = 0;
        sellTotalFees = _sellMarketingFee + _sellDevelopmentFee + _sellLiquidityFee;
        _previousFee = sellTotalFees;

        _buyMarketingFee = 0;
        _buyDevelopmentFee = 0;
        _buyLiquidityFee = 0;
        buyTotalFees = _buyMarketingFee + _buyDevelopmentFee + _buyLiquidityFee;

        _isExcludedFromEnableTrader[owner()] = true;
        _isExcludedFromEnableTrader[address(this)] = true;
        _isExcludedFromEnableTrader[deadAddress] = true;

        _mint(owner(), totalSupply); 
    }

    receive() external payable {}

    function OpenTrader() public onlyOwner {
        require(!tradingEnabled, "Trading already active.");
        tradingEnabled = true;
        swapEnabled = true;
    }



   function setMarketMakerPair(address pair, bool value) public onlyOwner {
        _setAutomatedMarketMakerPair(pair, value);
    }


    function _setAutomatedMarketMakerPair(address pair, bool value) internal {
        _marketMakerPairs[pair] = value;
        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(tradingEnabled || _isExcludedFromEnableTrader[from] || _isExcludedFromEnableTrader[to], "Trading not yet enabled!");
        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }


        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (
            canSwap &&
            swapEnabled &&!_swapping&&_marketMakerPairs[from] &&
            !_isExcludedFromEnableTrader[from] &&
            !_isExcludedFromEnableTrader[to]
        ) {
            _swapping = true;

            _swapBack();

            _swapping = false;
        }

        bool takeFee = !_swapping;

        if (_isExcludedFromEnableTrader[from] || _isExcludedFromEnableTrader[to]) {
            takeFee = false;
        }

        uint256 fees = 0;

        if (takeFee) {
            // on sell
            if (_marketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(10000);
                _tokensForLiquidity +=
                    (fees * _sellLiquidityFee) /
                    sellTotalFees;
                _tokensForMarketing +=
                    (fees * _sellMarketingFee) /
                    sellTotalFees;
                _tokensForDevelopment +=
                    (fees * _sellDevelopmentFee) /
                    sellTotalFees;
            }
            // on buy
            else if (_marketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(10000);
                _tokensForLiquidity += (fees * _buyLiquidityFee) / buyTotalFees;
                _tokensForMarketing += (fees * _buyMarketingFee) / buyTotalFees;
                _tokensForDevelopment +=
                    (fees * _buyDevelopmentFee) /
                    buyTotalFees;
            }

            if (fees > 0) {
                super._transfer(from, address(this), fees);
            }

            amount -= fees;
        }

        super._transfer(from, to, amount);
        sellTotalFees = _previousFee;
    }

    function _swapTokensForETH(uint256 tokenAmount) internal {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

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

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    function _addLiquidity(uint256 tokenAmount, uint256 ethAmount) internal {
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0,
            0,
            liquidityWallet,
            block.timestamp
        );
    }

    function _swapBack() internal {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = _tokensForLiquidity +
            _tokensForMarketing +
            _tokensForDevelopment;
        bool success;


        uint256 liquidityTokens = (contractBalance * _tokensForLiquidity) /
            totalTokensToSwap /
            2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);

        uint256 initialETHBalance = address(this).balance;

        _swapTokensForETH(amountToSwapForETH);

        uint256 ethBalance = address(this).balance.sub(initialETHBalance);

        uint256 ethForMarketing = ethBalance.mul(_tokensForMarketing).div(
            totalTokensToSwap
        );

        uint256 ethForDevelopment = ethBalance.mul(_tokensForDevelopment).div(
            totalTokensToSwap
        );

        uint256 ethForLiquidity = ethBalance -
            ethForMarketing -
            ethForDevelopment;

        _tokensForLiquidity = 0;
        _tokensForMarketing = 0;
        _tokensForDevelopment = 0;

        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            _addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(
                amountToSwapForETH,
                ethForLiquidity,
                _tokensForLiquidity
            );
        }

        (success, ) = address(developmentWallet).call{value: ethForDevelopment}("");

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

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromLimits","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"developmentWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"liquidityWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[],"name":"OpenTrader","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_maxlSupply","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":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"developmentWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"liquidityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040523480156200001157600080fd5b506040518060400160405280600681526020017f4e6572696f3200000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f4e6572696f32000000000000000000000000000000000000000000000000000081525081600490816200008f9190620009d3565b508060059081620000a19190620009d3565b505050620000c4620000b86200031960201b60201c565b6200032160201b60201c565b60006a52b7d2dcc80cd2e40000009050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff168152505062000151306080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff620003e760201b60201c565b6000601181905550600060128190555060006013819055506013546012546011546200017e919062000ae9565b6200018a919062000ae9565b6010819055506010546017819055506000600d819055506000600e819055506000600f81905550600f54600e54600d54620001c6919062000ae9565b620001d2919062000ae9565b600c81905550600160186000620001ee620005b860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601860003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016018600061dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200031262000305620005b860201b60201c565b82620005e260201b60201c565b5062000d05565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000459576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004509062000bab565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620004cb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004c29062000c43565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051620005ab919062000c76565b60405180910390a3505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000654576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200064b9062000ce3565b60405180910390fd5b62000668600083836200074f60201b60201c565b80600260008282546200067c919062000ae9565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200072f919062000c76565b60405180910390a36200074b600083836200075460201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620007db57607f821691505b602082108103620007f157620007f062000793565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200085b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200081c565b6200086786836200081c565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620008b4620008ae620008a8846200087f565b62000889565b6200087f565b9050919050565b6000819050919050565b620008d08362000893565b620008e8620008df82620008bb565b84845462000829565b825550505050565b600090565b620008ff620008f0565b6200090c818484620008c5565b505050565b5b81811015620009345762000928600082620008f5565b60018101905062000912565b5050565b601f82111562000983576200094d81620007f7565b62000958846200080c565b8101602085101562000968578190505b6200098062000977856200080c565b83018262000911565b50505b505050565b600082821c905092915050565b6000620009a86000198460080262000988565b1980831691505092915050565b6000620009c3838362000995565b9150826002028217905092915050565b620009de8262000759565b67ffffffffffffffff811115620009fa57620009f962000764565b5b62000a068254620007c2565b62000a1382828562000938565b600060209050601f83116001811462000a4b576000841562000a36578287015190505b62000a428582620009b5565b86555062000ab2565b601f19841662000a5b86620007f7565b60005b8281101562000a855784890151825560018201915060208501945060208101905062000a5e565b8683101562000aa5578489015162000aa1601f89168262000995565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000af6826200087f565b915062000b03836200087f565b925082820190508082111562000b1e5762000b1d62000aba565b5b92915050565b600082825260208201905092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600062000b9360248362000b24565b915062000ba08262000b35565b604082019050919050565b6000602082019050818103600083015262000bc68162000b84565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600062000c2b60228362000b24565b915062000c388262000bcd565b604082019050919050565b6000602082019050818103600083015262000c5e8162000c1c565b9050919050565b62000c70816200087f565b82525050565b600060208201905062000c8d600083018462000c65565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000ccb601f8362000b24565b915062000cd88262000c93565b602082019050919050565b6000602082019050818103600083015262000cfe8162000cbc565b9050919050565b608051612eb962000d446000396000818161078401528181611d7701528181611e5801528181611e7f01528181611f1b0152611f420152612eb96000f3fe6080604052600436106101bb5760003560e01c8063720089cd116100ec578063a9059cbb1161008a578063d85ba06311610064578063d85ba06314610611578063dd62ed3e1461063c578063e2f4560514610679578063f2fde38b146106a4576101c2565b8063a9059cbb1461057e578063c04a5414146105bb578063d4698016146105e6576101c2565b80639335bda3116100c65780639335bda3146104c257806393ec52de146104eb57806395d89b4114610516578063a457c2d714610541576101c2565b8063720089cd1461045557806375f0a8741461046c5780638da5cb5b14610497576101c2565b806339509351116101595780636a486a8e116101335780636a486a8e146103ab5780636ddd1713146103d657806370a0823114610401578063715018a61461043e576101c2565b8063395093511461031857806349bd5a5e146103555780634ada218b14610380576101c2565b806318160ddd1161019557806318160ddd1461025a57806323b872dd1461028557806327c8f835146102c2578063313ce567146102ed576101c2565b806306fdde03146101c7578063095ea7b3146101f25780631694505e1461022f576101c2565b366101c257005b600080fd5b3480156101d357600080fd5b506101dc6106cd565b6040516101e991906120a1565b60405180910390f35b3480156101fe57600080fd5b506102196004803603810190610214919061215c565b61075f565b60405161022691906121b7565b60405180910390f35b34801561023b57600080fd5b50610244610782565b6040516102519190612231565b60405180910390f35b34801561026657600080fd5b5061026f6107a6565b60405161027c919061225b565b60405180910390f35b34801561029157600080fd5b506102ac60048036038101906102a79190612276565b6107b0565b6040516102b991906121b7565b60405180910390f35b3480156102ce57600080fd5b506102d76107df565b6040516102e491906122d8565b60405180910390f35b3480156102f957600080fd5b506103026107e5565b60405161030f919061230f565b60405180910390f35b34801561032457600080fd5b5061033f600480360381019061033a919061215c565b6107ee565b60405161034c91906121b7565b60405180910390f35b34801561036157600080fd5b5061036a610825565b60405161037791906122d8565b60405180910390f35b34801561038c57600080fd5b5061039561084b565b6040516103a291906121b7565b60405180910390f35b3480156103b757600080fd5b506103c061085e565b6040516103cd919061225b565b60405180910390f35b3480156103e257600080fd5b506103eb610864565b6040516103f891906121b7565b60405180910390f35b34801561040d57600080fd5b506104286004803603810190610423919061232a565b610877565b604051610435919061225b565b60405180910390f35b34801561044a57600080fd5b506104536108bf565b005b34801561046157600080fd5b5061046a6108d3565b005b34801561047857600080fd5b50610481610963565b60405161048e91906122d8565b60405180910390f35b3480156104a357600080fd5b506104ac610989565b6040516104b991906122d8565b60405180910390f35b3480156104ce57600080fd5b506104e960048036038101906104e49190612383565b6109b3565b005b3480156104f757600080fd5b506105006109c9565b60405161050d919061225b565b60405180910390f35b34801561052257600080fd5b5061052b6109cf565b60405161053891906120a1565b60405180910390f35b34801561054d57600080fd5b506105686004803603810190610563919061215c565b610a61565b60405161057591906121b7565b60405180910390f35b34801561058a57600080fd5b506105a560048036038101906105a0919061215c565b610ad8565b6040516105b291906121b7565b60405180910390f35b3480156105c757600080fd5b506105d0610afb565b6040516105dd91906122d8565b60405180910390f35b3480156105f257600080fd5b506105fb610b21565b60405161060891906122d8565b60405180910390f35b34801561061d57600080fd5b50610626610b47565b604051610633919061225b565b60405180910390f35b34801561064857600080fd5b50610663600480360381019061065e91906123c3565b610b4d565b604051610670919061225b565b60405180910390f35b34801561068557600080fd5b5061068e610bd4565b60405161069b919061225b565b60405180910390f35b3480156106b057600080fd5b506106cb60048036038101906106c6919061232a565b610bda565b005b6060600480546106dc90612432565b80601f016020809104026020016040519081016040528092919081815260200182805461070890612432565b80156107555780601f1061072a57610100808354040283529160200191610755565b820191906000526020600020905b81548152906001019060200180831161073857829003601f168201915b5050505050905090565b60008061076a610c5d565b9050610777818585610c65565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b6000806107bb610c5d565b90506107c8858285610e2e565b6107d3858585610eba565b60019150509392505050565b61dead81565b60006012905090565b6000806107f9610c5d565b905061081a81858561080b8589610b4d565b6108159190612492565b610c65565b600191505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60149054906101000a900460ff1681565b60105481565b600a60159054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108c761158f565b6108d1600061160d565b565b6108db61158f565b600a60149054906101000a900460ff161561092b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092290612512565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055506001600a60156101000a81548160ff021916908315150217905550565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6109bb61158f565b6109c582826116d3565b5050565b60035481565b6060600580546109de90612432565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0a90612432565b8015610a575780601f10610a2c57610100808354040283529160200191610a57565b820191906000526020600020905b815481529060010190602001808311610a3a57829003601f168201915b5050505050905090565b600080610a6c610c5d565b90506000610a7a8286610b4d565b905083811015610abf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab6906125a4565b60405180910390fd5b610acc8286868403610c65565b60019250505092915050565b600080610ae3610c5d565b9050610af0818585610eba565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b610be261158f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4890612636565b60405180910390fd5b610c5a8161160d565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccb906126c8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3a9061275a565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e21919061225b565b60405180910390a3505050565b6000610e3a8484610b4d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610eb45781811015610ea6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9d906127c6565b60405180910390fd5b610eb38484848403610c65565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2090612858565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8f906128ea565b60405180910390fd5b600a60149054906101000a900460ff1680610ffc5750601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806110505750601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61108f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108690612956565b60405180910390fd5b600081036110a8576110a383836000611774565b61158a565b60006110b330610877565b90506000600b5482101590508080156110d85750600a60159054906101000a900460ff165b80156110f15750600a60169054906101000a900460ff16155b80156111465750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b801561119c5750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156111f25750601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611236576001600a60166101000a81548160ff02191690831515021790555061121a6119ea565b6000600a60166101000a81548160ff0219169083151502179055505b6000600a60169054906101000a900460ff16159050601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806112ec5750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156112f657600090505b6000811561157157601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561135957506000601054115b156114275761138761271061137960105488611c8c90919063ffffffff16565b611ca290919063ffffffff16565b90506010546013548261139a9190612976565b6113a491906129e7565b601660008282546113b59190612492565b92505081905550601054601154826113cd9190612976565b6113d791906129e7565b601460008282546113e89190612492565b92505081905550601054601254826114009190612976565b61140a91906129e7565b6015600082825461141b9190612492565b9250508190555061154d565b601960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561148257506000600c54115b1561154c576114b06127106114a2600c5488611c8c90919063ffffffff16565b611ca290919063ffffffff16565b9050600c54600f54826114c39190612976565b6114cd91906129e7565b601660008282546114de9190612492565b92505081905550600c54600d54826114f69190612976565b61150091906129e7565b601460008282546115119190612492565b92505081905550600c54600e54826115299190612976565b61153391906129e7565b601560008282546115449190612492565b925050819055505b5b600081111561156257611561873083611774565b5b808561156e9190612a18565b94505b61157c878787611774565b601754601081905550505050505b505050565b611597610c5d565b73ffffffffffffffffffffffffffffffffffffffff166115b5610989565b73ffffffffffffffffffffffffffffffffffffffff161461160b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160290612a98565b60405180910390fd5b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036117e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117da90612858565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611852576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611849906128ea565b60405180910390fd5b61185d838383611cb8565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156118e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118da90612b2a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516119d1919061225b565b60405180910390a36119e4848484611cbd565b50505050565b60006119f530610877565b90506000601554601454601654611a0c9190612492565b611a169190612492565b905060008060028360165486611a2c9190612976565b611a3691906129e7565b611a4091906129e7565b90506000611a578286611cc290919063ffffffff16565b90506000479050611a6782611cd8565b6000611a7c8247611cc290919063ffffffff16565b90506000611aa787611a9960145485611c8c90919063ffffffff16565b611ca290919063ffffffff16565b90506000611ad288611ac460155486611c8c90919063ffffffff16565b611ca290919063ffffffff16565b90506000818385611ae39190612a18565b611aed9190612a18565b9050600060168190555060006014819055506000601581905550600087118015611b175750600081115b15611b6457611b268782611f15565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601654604051611b5b93929190612b4a565b60405180910390a15b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611baa90612bb2565b60006040518083038185875af1925050503d8060008114611be7576040519150601f19603f3d011682016040523d82523d6000602084013e611bec565b606091505b505080985050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611c3890612bb2565b60006040518083038185875af1925050503d8060008114611c75576040519150601f19603f3d011682016040523d82523d6000602084013e611c7a565b606091505b50508098505050505050505050505050565b60008183611c9a9190612976565b905092915050565b60008183611cb091906129e7565b905092915050565b505050565b505050565b60008183611cd09190612a18565b905092915050565b6000600267ffffffffffffffff811115611cf557611cf4612bc7565b5b604051908082528060200260200182016040528015611d235781602001602082028036833780820191505090505b5090503081600081518110611d3b57611d3a612bf6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611de0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e049190612c3a565b81600181518110611e1857611e17612bf6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611e7d307f000000000000000000000000000000000000000000000000000000000000000084610c65565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401611edf959493929190612d60565b600060405180830381600087803b158015611ef957600080fd5b505af1158015611f0d573d6000803e3d6000fd5b505050505050565b611f40307f000000000000000000000000000000000000000000000000000000000000000084610c65565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401611fc796959493929190612dba565b60606040518083038185885af1158015611fe5573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061200a9190612e30565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561204b578082015181840152602081019050612030565b60008484015250505050565b6000601f19601f8301169050919050565b600061207382612011565b61207d818561201c565b935061208d81856020860161202d565b61209681612057565b840191505092915050565b600060208201905081810360008301526120bb8184612068565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006120f3826120c8565b9050919050565b612103816120e8565b811461210e57600080fd5b50565b600081359050612120816120fa565b92915050565b6000819050919050565b61213981612126565b811461214457600080fd5b50565b60008135905061215681612130565b92915050565b60008060408385031215612173576121726120c3565b5b600061218185828601612111565b925050602061219285828601612147565b9150509250929050565b60008115159050919050565b6121b18161219c565b82525050565b60006020820190506121cc60008301846121a8565b92915050565b6000819050919050565b60006121f76121f26121ed846120c8565b6121d2565b6120c8565b9050919050565b6000612209826121dc565b9050919050565b600061221b826121fe565b9050919050565b61222b81612210565b82525050565b60006020820190506122466000830184612222565b92915050565b61225581612126565b82525050565b6000602082019050612270600083018461224c565b92915050565b60008060006060848603121561228f5761228e6120c3565b5b600061229d86828701612111565b93505060206122ae86828701612111565b92505060406122bf86828701612147565b9150509250925092565b6122d2816120e8565b82525050565b60006020820190506122ed60008301846122c9565b92915050565b600060ff82169050919050565b612309816122f3565b82525050565b60006020820190506123246000830184612300565b92915050565b6000602082840312156123405761233f6120c3565b5b600061234e84828501612111565b91505092915050565b6123608161219c565b811461236b57600080fd5b50565b60008135905061237d81612357565b92915050565b6000806040838503121561239a576123996120c3565b5b60006123a885828601612111565b92505060206123b98582860161236e565b9150509250929050565b600080604083850312156123da576123d96120c3565b5b60006123e885828601612111565b92505060206123f985828601612111565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061244a57607f821691505b60208210810361245d5761245c612403565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061249d82612126565b91506124a883612126565b92508282019050808211156124c0576124bf612463565b5b92915050565b7f54726164696e6720616c7265616479206163746976652e000000000000000000600082015250565b60006124fc60178361201c565b9150612507826124c6565b602082019050919050565b6000602082019050818103600083015261252b816124ef565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061258e60258361201c565b915061259982612532565b604082019050919050565b600060208201905081810360008301526125bd81612581565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061262060268361201c565b915061262b826125c4565b604082019050919050565b6000602082019050818103600083015261264f81612613565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006126b260248361201c565b91506126bd82612656565b604082019050919050565b600060208201905081810360008301526126e1816126a5565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061274460228361201c565b915061274f826126e8565b604082019050919050565b6000602082019050818103600083015261277381612737565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006127b0601d8361201c565b91506127bb8261277a565b602082019050919050565b600060208201905081810360008301526127df816127a3565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061284260258361201c565b915061284d826127e6565b604082019050919050565b6000602082019050818103600083015261287181612835565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006128d460238361201c565b91506128df82612878565b604082019050919050565b60006020820190508181036000830152612903816128c7565b9050919050565b7f54726164696e67206e6f742079657420656e61626c6564210000000000000000600082015250565b600061294060188361201c565b915061294b8261290a565b602082019050919050565b6000602082019050818103600083015261296f81612933565b9050919050565b600061298182612126565b915061298c83612126565b925082820261299a81612126565b915082820484148315176129b1576129b0612463565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006129f282612126565b91506129fd83612126565b925082612a0d57612a0c6129b8565b5b828204905092915050565b6000612a2382612126565b9150612a2e83612126565b9250828203905081811115612a4657612a45612463565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612a8260208361201c565b9150612a8d82612a4c565b602082019050919050565b60006020820190508181036000830152612ab181612a75565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612b1460268361201c565b9150612b1f82612ab8565b604082019050919050565b60006020820190508181036000830152612b4381612b07565b9050919050565b6000606082019050612b5f600083018661224c565b612b6c602083018561224c565b612b79604083018461224c565b949350505050565b600081905092915050565b50565b6000612b9c600083612b81565b9150612ba782612b8c565b600082019050919050565b6000612bbd82612b8f565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050612c34816120fa565b92915050565b600060208284031215612c5057612c4f6120c3565b5b6000612c5e84828501612c25565b91505092915050565b6000819050919050565b6000612c8c612c87612c8284612c67565b6121d2565b612126565b9050919050565b612c9c81612c71565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612cd7816120e8565b82525050565b6000612ce98383612cce565b60208301905092915050565b6000602082019050919050565b6000612d0d82612ca2565b612d178185612cad565b9350612d2283612cbe565b8060005b83811015612d53578151612d3a8882612cdd565b9750612d4583612cf5565b925050600181019050612d26565b5085935050505092915050565b600060a082019050612d75600083018861224c565b612d826020830187612c93565b8181036040830152612d948186612d02565b9050612da360608301856122c9565b612db0608083018461224c565b9695505050505050565b600060c082019050612dcf60008301896122c9565b612ddc602083018861224c565b612de96040830187612c93565b612df66060830186612c93565b612e0360808301856122c9565b612e1060a083018461224c565b979650505050505050565b600081519050612e2a81612130565b92915050565b600080600060608486031215612e4957612e486120c3565b5b6000612e5786828701612e1b565b9350506020612e6886828701612e1b565b9250506040612e7986828701612e1b565b915050925092509256fea264697066735822122079f03f9bfb4ec84e60811a2b9b6f75767721d218bafd5b2036588ecec365ea2c64736f6c63430008110033

Deployed Bytecode

0x6080604052600436106101bb5760003560e01c8063720089cd116100ec578063a9059cbb1161008a578063d85ba06311610064578063d85ba06314610611578063dd62ed3e1461063c578063e2f4560514610679578063f2fde38b146106a4576101c2565b8063a9059cbb1461057e578063c04a5414146105bb578063d4698016146105e6576101c2565b80639335bda3116100c65780639335bda3146104c257806393ec52de146104eb57806395d89b4114610516578063a457c2d714610541576101c2565b8063720089cd1461045557806375f0a8741461046c5780638da5cb5b14610497576101c2565b806339509351116101595780636a486a8e116101335780636a486a8e146103ab5780636ddd1713146103d657806370a0823114610401578063715018a61461043e576101c2565b8063395093511461031857806349bd5a5e146103555780634ada218b14610380576101c2565b806318160ddd1161019557806318160ddd1461025a57806323b872dd1461028557806327c8f835146102c2578063313ce567146102ed576101c2565b806306fdde03146101c7578063095ea7b3146101f25780631694505e1461022f576101c2565b366101c257005b600080fd5b3480156101d357600080fd5b506101dc6106cd565b6040516101e991906120a1565b60405180910390f35b3480156101fe57600080fd5b506102196004803603810190610214919061215c565b61075f565b60405161022691906121b7565b60405180910390f35b34801561023b57600080fd5b50610244610782565b6040516102519190612231565b60405180910390f35b34801561026657600080fd5b5061026f6107a6565b60405161027c919061225b565b60405180910390f35b34801561029157600080fd5b506102ac60048036038101906102a79190612276565b6107b0565b6040516102b991906121b7565b60405180910390f35b3480156102ce57600080fd5b506102d76107df565b6040516102e491906122d8565b60405180910390f35b3480156102f957600080fd5b506103026107e5565b60405161030f919061230f565b60405180910390f35b34801561032457600080fd5b5061033f600480360381019061033a919061215c565b6107ee565b60405161034c91906121b7565b60405180910390f35b34801561036157600080fd5b5061036a610825565b60405161037791906122d8565b60405180910390f35b34801561038c57600080fd5b5061039561084b565b6040516103a291906121b7565b60405180910390f35b3480156103b757600080fd5b506103c061085e565b6040516103cd919061225b565b60405180910390f35b3480156103e257600080fd5b506103eb610864565b6040516103f891906121b7565b60405180910390f35b34801561040d57600080fd5b506104286004803603810190610423919061232a565b610877565b604051610435919061225b565b60405180910390f35b34801561044a57600080fd5b506104536108bf565b005b34801561046157600080fd5b5061046a6108d3565b005b34801561047857600080fd5b50610481610963565b60405161048e91906122d8565b60405180910390f35b3480156104a357600080fd5b506104ac610989565b6040516104b991906122d8565b60405180910390f35b3480156104ce57600080fd5b506104e960048036038101906104e49190612383565b6109b3565b005b3480156104f757600080fd5b506105006109c9565b60405161050d919061225b565b60405180910390f35b34801561052257600080fd5b5061052b6109cf565b60405161053891906120a1565b60405180910390f35b34801561054d57600080fd5b506105686004803603810190610563919061215c565b610a61565b60405161057591906121b7565b60405180910390f35b34801561058a57600080fd5b506105a560048036038101906105a0919061215c565b610ad8565b6040516105b291906121b7565b60405180910390f35b3480156105c757600080fd5b506105d0610afb565b6040516105dd91906122d8565b60405180910390f35b3480156105f257600080fd5b506105fb610b21565b60405161060891906122d8565b60405180910390f35b34801561061d57600080fd5b50610626610b47565b604051610633919061225b565b60405180910390f35b34801561064857600080fd5b50610663600480360381019061065e91906123c3565b610b4d565b604051610670919061225b565b60405180910390f35b34801561068557600080fd5b5061068e610bd4565b60405161069b919061225b565b60405180910390f35b3480156106b057600080fd5b506106cb60048036038101906106c6919061232a565b610bda565b005b6060600480546106dc90612432565b80601f016020809104026020016040519081016040528092919081815260200182805461070890612432565b80156107555780601f1061072a57610100808354040283529160200191610755565b820191906000526020600020905b81548152906001019060200180831161073857829003601f168201915b5050505050905090565b60008061076a610c5d565b9050610777818585610c65565b600191505092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b6000806107bb610c5d565b90506107c8858285610e2e565b6107d3858585610eba565b60019150509392505050565b61dead81565b60006012905090565b6000806107f9610c5d565b905061081a81858561080b8589610b4d565b6108159190612492565b610c65565b600191505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60149054906101000a900460ff1681565b60105481565b600a60159054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108c761158f565b6108d1600061160d565b565b6108db61158f565b600a60149054906101000a900460ff161561092b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092290612512565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055506001600a60156101000a81548160ff021916908315150217905550565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6109bb61158f565b6109c582826116d3565b5050565b60035481565b6060600580546109de90612432565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0a90612432565b8015610a575780601f10610a2c57610100808354040283529160200191610a57565b820191906000526020600020905b815481529060010190602001808311610a3a57829003601f168201915b5050505050905090565b600080610a6c610c5d565b90506000610a7a8286610b4d565b905083811015610abf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab6906125a4565b60405180910390fd5b610acc8286868403610c65565b60019250505092915050565b600080610ae3610c5d565b9050610af0818585610eba565b600191505092915050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b610be261158f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4890612636565b60405180910390fd5b610c5a8161160d565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccb906126c8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3a9061275a565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e21919061225b565b60405180910390a3505050565b6000610e3a8484610b4d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610eb45781811015610ea6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9d906127c6565b60405180910390fd5b610eb38484848403610c65565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2090612858565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8f906128ea565b60405180910390fd5b600a60149054906101000a900460ff1680610ffc5750601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806110505750601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61108f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108690612956565b60405180910390fd5b600081036110a8576110a383836000611774565b61158a565b60006110b330610877565b90506000600b5482101590508080156110d85750600a60159054906101000a900460ff165b80156110f15750600a60169054906101000a900460ff16155b80156111465750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b801561119c5750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156111f25750601860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611236576001600a60166101000a81548160ff02191690831515021790555061121a6119ea565b6000600a60166101000a81548160ff0219169083151502179055505b6000600a60169054906101000a900460ff16159050601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806112ec5750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156112f657600090505b6000811561157157601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561135957506000601054115b156114275761138761271061137960105488611c8c90919063ffffffff16565b611ca290919063ffffffff16565b90506010546013548261139a9190612976565b6113a491906129e7565b601660008282546113b59190612492565b92505081905550601054601154826113cd9190612976565b6113d791906129e7565b601460008282546113e89190612492565b92505081905550601054601254826114009190612976565b61140a91906129e7565b6015600082825461141b9190612492565b9250508190555061154d565b601960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561148257506000600c54115b1561154c576114b06127106114a2600c5488611c8c90919063ffffffff16565b611ca290919063ffffffff16565b9050600c54600f54826114c39190612976565b6114cd91906129e7565b601660008282546114de9190612492565b92505081905550600c54600d54826114f69190612976565b61150091906129e7565b601460008282546115119190612492565b92505081905550600c54600e54826115299190612976565b61153391906129e7565b601560008282546115449190612492565b925050819055505b5b600081111561156257611561873083611774565b5b808561156e9190612a18565b94505b61157c878787611774565b601754601081905550505050505b505050565b611597610c5d565b73ffffffffffffffffffffffffffffffffffffffff166115b5610989565b73ffffffffffffffffffffffffffffffffffffffff161461160b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160290612a98565b60405180910390fd5b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036117e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117da90612858565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611852576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611849906128ea565b60405180910390fd5b61185d838383611cb8565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156118e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118da90612b2a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516119d1919061225b565b60405180910390a36119e4848484611cbd565b50505050565b60006119f530610877565b90506000601554601454601654611a0c9190612492565b611a169190612492565b905060008060028360165486611a2c9190612976565b611a3691906129e7565b611a4091906129e7565b90506000611a578286611cc290919063ffffffff16565b90506000479050611a6782611cd8565b6000611a7c8247611cc290919063ffffffff16565b90506000611aa787611a9960145485611c8c90919063ffffffff16565b611ca290919063ffffffff16565b90506000611ad288611ac460155486611c8c90919063ffffffff16565b611ca290919063ffffffff16565b90506000818385611ae39190612a18565b611aed9190612a18565b9050600060168190555060006014819055506000601581905550600087118015611b175750600081115b15611b6457611b268782611f15565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601654604051611b5b93929190612b4a565b60405180910390a15b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611baa90612bb2565b60006040518083038185875af1925050503d8060008114611be7576040519150601f19603f3d011682016040523d82523d6000602084013e611bec565b606091505b505080985050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611c3890612bb2565b60006040518083038185875af1925050503d8060008114611c75576040519150601f19603f3d011682016040523d82523d6000602084013e611c7a565b606091505b50508098505050505050505050505050565b60008183611c9a9190612976565b905092915050565b60008183611cb091906129e7565b905092915050565b505050565b505050565b60008183611cd09190612a18565b905092915050565b6000600267ffffffffffffffff811115611cf557611cf4612bc7565b5b604051908082528060200260200182016040528015611d235781602001602082028036833780820191505090505b5090503081600081518110611d3b57611d3a612bf6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611de0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e049190612c3a565b81600181518110611e1857611e17612bf6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611e7d307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610c65565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401611edf959493929190612d60565b600060405180830381600087803b158015611ef957600080fd5b505af1158015611f0d573d6000803e3d6000fd5b505050505050565b611f40307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610c65565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401611fc796959493929190612dba565b60606040518083038185885af1158015611fe5573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061200a9190612e30565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561204b578082015181840152602081019050612030565b60008484015250505050565b6000601f19601f8301169050919050565b600061207382612011565b61207d818561201c565b935061208d81856020860161202d565b61209681612057565b840191505092915050565b600060208201905081810360008301526120bb8184612068565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006120f3826120c8565b9050919050565b612103816120e8565b811461210e57600080fd5b50565b600081359050612120816120fa565b92915050565b6000819050919050565b61213981612126565b811461214457600080fd5b50565b60008135905061215681612130565b92915050565b60008060408385031215612173576121726120c3565b5b600061218185828601612111565b925050602061219285828601612147565b9150509250929050565b60008115159050919050565b6121b18161219c565b82525050565b60006020820190506121cc60008301846121a8565b92915050565b6000819050919050565b60006121f76121f26121ed846120c8565b6121d2565b6120c8565b9050919050565b6000612209826121dc565b9050919050565b600061221b826121fe565b9050919050565b61222b81612210565b82525050565b60006020820190506122466000830184612222565b92915050565b61225581612126565b82525050565b6000602082019050612270600083018461224c565b92915050565b60008060006060848603121561228f5761228e6120c3565b5b600061229d86828701612111565b93505060206122ae86828701612111565b92505060406122bf86828701612147565b9150509250925092565b6122d2816120e8565b82525050565b60006020820190506122ed60008301846122c9565b92915050565b600060ff82169050919050565b612309816122f3565b82525050565b60006020820190506123246000830184612300565b92915050565b6000602082840312156123405761233f6120c3565b5b600061234e84828501612111565b91505092915050565b6123608161219c565b811461236b57600080fd5b50565b60008135905061237d81612357565b92915050565b6000806040838503121561239a576123996120c3565b5b60006123a885828601612111565b92505060206123b98582860161236e565b9150509250929050565b600080604083850312156123da576123d96120c3565b5b60006123e885828601612111565b92505060206123f985828601612111565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061244a57607f821691505b60208210810361245d5761245c612403565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061249d82612126565b91506124a883612126565b92508282019050808211156124c0576124bf612463565b5b92915050565b7f54726164696e6720616c7265616479206163746976652e000000000000000000600082015250565b60006124fc60178361201c565b9150612507826124c6565b602082019050919050565b6000602082019050818103600083015261252b816124ef565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061258e60258361201c565b915061259982612532565b604082019050919050565b600060208201905081810360008301526125bd81612581565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061262060268361201c565b915061262b826125c4565b604082019050919050565b6000602082019050818103600083015261264f81612613565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006126b260248361201c565b91506126bd82612656565b604082019050919050565b600060208201905081810360008301526126e1816126a5565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061274460228361201c565b915061274f826126e8565b604082019050919050565b6000602082019050818103600083015261277381612737565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006127b0601d8361201c565b91506127bb8261277a565b602082019050919050565b600060208201905081810360008301526127df816127a3565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061284260258361201c565b915061284d826127e6565b604082019050919050565b6000602082019050818103600083015261287181612835565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006128d460238361201c565b91506128df82612878565b604082019050919050565b60006020820190508181036000830152612903816128c7565b9050919050565b7f54726164696e67206e6f742079657420656e61626c6564210000000000000000600082015250565b600061294060188361201c565b915061294b8261290a565b602082019050919050565b6000602082019050818103600083015261296f81612933565b9050919050565b600061298182612126565b915061298c83612126565b925082820261299a81612126565b915082820484148315176129b1576129b0612463565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006129f282612126565b91506129fd83612126565b925082612a0d57612a0c6129b8565b5b828204905092915050565b6000612a2382612126565b9150612a2e83612126565b9250828203905081811115612a4657612a45612463565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612a8260208361201c565b9150612a8d82612a4c565b602082019050919050565b60006020820190508181036000830152612ab181612a75565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612b1460268361201c565b9150612b1f82612ab8565b604082019050919050565b60006020820190508181036000830152612b4381612b07565b9050919050565b6000606082019050612b5f600083018661224c565b612b6c602083018561224c565b612b79604083018461224c565b949350505050565b600081905092915050565b50565b6000612b9c600083612b81565b9150612ba782612b8c565b600082019050919050565b6000612bbd82612b8f565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050612c34816120fa565b92915050565b600060208284031215612c5057612c4f6120c3565b5b6000612c5e84828501612c25565b91505092915050565b6000819050919050565b6000612c8c612c87612c8284612c67565b6121d2565b612126565b9050919050565b612c9c81612c71565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612cd7816120e8565b82525050565b6000612ce98383612cce565b60208301905092915050565b6000602082019050919050565b6000612d0d82612ca2565b612d178185612cad565b9350612d2283612cbe565b8060005b83811015612d53578151612d3a8882612cdd565b9750612d4583612cf5565b925050600181019050612d26565b5085935050505092915050565b600060a082019050612d75600083018861224c565b612d826020830187612c93565b8181036040830152612d948186612d02565b9050612da360608301856122c9565b612db0608083018461224c565b9695505050505050565b600060c082019050612dcf60008301896122c9565b612ddc602083018861224c565b612de96040830187612c93565b612df66060830186612c93565b612e0360808301856122c9565b612e1060a083018461224c565b979650505050505050565b600081519050612e2a81612130565b92915050565b600080600060608486031215612e4957612e486120c3565b5b6000612e5786828701612e1b565b9350506020612e6886828701612e1b565b9250506040612e7986828701612e1b565b915050925092509256fea264697066735822122079f03f9bfb4ec84e60811a2b9b6f75767721d218bafd5b2036588ecec365ea2c64736f6c63430008110033

Deployed Bytecode Sourcemap

28335:8202:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8200:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10389:242;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28411:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9329:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10639:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28619:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9171:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10942:270;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28469:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28681:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28972:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28714:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9500:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1545:103;;;;;;;;;;;;;:::i;:::-;;31084:170;;;;;;;;;;;;;:::i;:::-;;28506:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;904:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31265:131;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7739:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8419:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11220:505;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9883:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28543:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28582:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28817:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10180:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28775:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1803:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8200:100;8254:13;8287:5;8280:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8200:100;:::o;10389:242::-;10508:4;10530:13;10546:12;:10;:12::i;:::-;10530:28;;10569:32;10578:5;10585:7;10594:6;10569:8;:32::i;:::-;10619:4;10612:11;;;10389:242;;;;:::o;28411:51::-;;;:::o;9329:108::-;9390:7;9417:12;;9410:19;;9329:108;:::o;10639:295::-;10770:4;10787:15;10805:12;:10;:12::i;:::-;10787:30;;10828:38;10844:4;10850:7;10859:6;10828:15;:38::i;:::-;10877:27;10887:4;10893:2;10897:6;10877:9;:27::i;:::-;10922:4;10915:11;;;10639:295;;;;;:::o;28619:53::-;28665:6;28619:53;:::o;9171:93::-;9229:5;9254:2;9247:9;;9171:93;:::o;10942:270::-;11057:4;11079:13;11095:12;:10;:12::i;:::-;11079:28;;11118:64;11127:5;11134:7;11171:10;11143:25;11153:5;11160:7;11143:9;:25::i;:::-;:38;;;;:::i;:::-;11118:8;:64::i;:::-;11200:4;11193:11;;;10942:270;;;;:::o;28469:28::-;;;;;;;;;;;;;:::o;28681:26::-;;;;;;;;;;;;;:::o;28972:28::-;;;;:::o;28714:23::-;;;;;;;;;;;;;:::o;9500:177::-;9619:7;9651:9;:18;9661:7;9651:18;;;;;;;;;;;;;;;;9644:25;;9500:177;;;:::o;1545:103::-;790:13;:11;:13::i;:::-;1610:30:::1;1637:1;1610:18;:30::i;:::-;1545:103::o:0;31084:170::-;790:13;:11;:13::i;:::-;31143:14:::1;;;;;;;;;;;31142:15;31134:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;31213:4;31196:14;;:21;;;;;;;;;;;;;;;;;;31242:4;31228:11;;:18;;;;;;;;;;;;;;;;;;31084:170::o:0;28506:30::-;;;;;;;;;;;;;:::o;904:87::-;950:7;977:6;;;;;;;;;;;970:13;;904:87;:::o;31265:131::-;790:13;:11;:13::i;:::-;31347:41:::1;31376:4;31382:5;31347:28;:41::i;:::-;31265:131:::0;;:::o;7739:26::-;;;;:::o;8419:104::-;8475:13;8508:7;8501:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8419:104;:::o;11220:505::-;11340:4;11362:13;11378:12;:10;:12::i;:::-;11362:28;;11401:24;11428:25;11438:5;11445:7;11428:9;:25::i;:::-;11401:52;;11506:15;11486:16;:35;;11464:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;11622:60;11631:5;11638:7;11666:15;11647:16;:34;11622:8;:60::i;:::-;11713:4;11706:11;;;;11220:505;;;;:::o;9883:234::-;9998:4;10020:13;10036:12;:10;:12::i;:::-;10020:28;;10059;10069:5;10076:2;10080:6;10059:9;:28::i;:::-;10105:4;10098:11;;;9883:234;;;;:::o;28543:32::-;;;;;;;;;;;;;:::o;28582:30::-;;;;;;;;;;;;;:::o;28817:27::-;;;;:::o;10180:201::-;10314:7;10346:11;:18;10358:5;10346:18;;;;;;;;;;;;;;;:27;10365:7;10346:27;;;;;;;;;;;;;;;;10339:34;;10180:201;;;;:::o;28775:33::-;;;;:::o;1803:238::-;790:13;:11;:13::i;:::-;1926:1:::1;1906:22;;:8;:22;;::::0;1884:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2005:28;2024:8;2005:18;:28::i;:::-;1803:238:::0;:::o;181:98::-;234:7;261:10;254:17;;181:98;:::o;13857:380::-;14010:1;13993:19;;:5;:19;;;13985:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14091:1;14072:21;;:7;:21;;;14064:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14175:6;14145:11;:18;14157:5;14145:18;;;;;;;;;;;;;;;:27;14164:7;14145:27;;;;;;;;;;;;;;;:36;;;;14213:7;14197:32;;14206:5;14197:32;;;14222:6;14197:32;;;;;;:::i;:::-;;;;;;;;13857:380;;;:::o;14245:502::-;14380:24;14407:25;14417:5;14424:7;14407:9;:25::i;:::-;14380:52;;14467:17;14447:16;:37;14443:297;;14547:6;14527:16;:26;;14501:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;14662:51;14671:5;14678:7;14706:6;14687:16;:25;14662:8;:51::i;:::-;14443:297;14369:378;14245:502;;;:::o;31593:2433::-;31741:1;31725:18;;:4;:18;;;31717:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31818:1;31804:16;;:2;:16;;;31796:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;31879:14;;;;;;;;;;;:51;;;;31897:27;:33;31925:4;31897:33;;;;;;;;;;;;;;;;;;;;;;;;;31879:51;:86;;;;31934:27;:31;31962:2;31934:31;;;;;;;;;;;;;;;;;;;;;;;;;31879:86;31871:123;;;;;;;;;;;;:::i;:::-;;;;;;;;;32019:1;32009:6;:11;32005:93;;32037:28;32053:4;32059:2;32063:1;32037:15;:28::i;:::-;32080:7;;32005:93;32112:28;32143:24;32161:4;32143:9;:24::i;:::-;32112:55;;32180:12;32219:18;;32195:20;:42;;32180:57;;32268:7;:35;;;;;32292:11;;;;;;;;;;;32268:35;:48;;;;;32307:9;;;;;;;;;;;32306:10;32268:48;:73;;;;;32318:17;:23;32336:4;32318:23;;;;;;;;;;;;;;;;;;;;;;;;;32268:73;:124;;;;;32359:27;:33;32387:4;32359:33;;;;;;;;;;;;;;;;;;;;;;;;;32358:34;32268:124;:173;;;;;32410:27;:31;32438:2;32410:31;;;;;;;;;;;;;;;;;;;;;;;;;32409:32;32268:173;32250:308;;;32480:4;32468:9;;:16;;;;;;;;;;;;;;;;;;32501:11;:9;:11::i;:::-;32541:5;32529:9;;:17;;;;;;;;;;;;;;;;;;32250:308;32570:12;32586:9;;;;;;;;;;;32585:10;32570:25;;32612:27;:33;32640:4;32612:33;;;;;;;;;;;;;;;;;;;;;;;;;:68;;;;32649:27;:31;32677:2;32649:31;;;;;;;;;;;;;;;;;;;;;;;;;32612:68;32608:116;;;32707:5;32697:15;;32608:116;32736:12;32769:7;32765:1169;;;32821:17;:21;32839:2;32821:21;;;;;;;;;;;;;;;;;;;;;;;;;:42;;;;;32862:1;32846:13;;:17;32821:42;32817:968;;;32891:36;32921:5;32891:25;32902:13;;32891:6;:10;;:25;;;;:::i;:::-;:29;;:36;;;;:::i;:::-;32884:43;;33040:13;;32998:17;;32991:4;:24;;;;:::i;:::-;32990:63;;;;:::i;:::-;32946:19;;:107;;;;;;;:::i;:::-;;;;;;;;33166:13;;33124:17;;33117:4;:24;;;;:::i;:::-;33116:63;;;;:::i;:::-;33072:19;;:107;;;;;;;:::i;:::-;;;;;;;;33296:13;;33252:19;;33245:4;:26;;;;:::i;:::-;33244:65;;;;:::i;:::-;33198:21;;:111;;;;;;;:::i;:::-;;;;;;;;32817:968;;;33371:17;:23;33389:4;33371:23;;;;;;;;;;;;;;;;;;;;;;;;;:43;;;;;33413:1;33398:12;;:16;33371:43;33367:418;;;33442:35;33471:5;33442:24;33453:12;;33442:6;:10;;:24;;;;:::i;:::-;:28;;:35;;;;:::i;:::-;33435:42;;33547:12;;33527:16;;33520:4;:23;;;;:::i;:::-;33519:40;;;;:::i;:::-;33496:19;;:63;;;;;;;:::i;:::-;;;;;;;;33629:12;;33609:16;;33602:4;:23;;;;:::i;:::-;33601:40;;;;:::i;:::-;33578:19;;:63;;;;;;;:::i;:::-;;;;;;;;33757:12;;33714:18;;33707:4;:25;;;;:::i;:::-;33706:63;;;;:::i;:::-;33660:21;;:109;;;;;;;:::i;:::-;;;;;;;;33367:418;32817:968;33812:1;33805:4;:8;33801:91;;;33834:42;33850:4;33864;33871;33834:15;:42::i;:::-;33801:91;33918:4;33908:14;;;;;:::i;:::-;;;32765:1169;33946:33;33962:4;33968:2;33972:6;33946:15;:33::i;:::-;34006:12;;33990:13;:28;;;;31706:2320;;;;31593:2433;;;;:::o;1069:132::-;1144:12;:10;:12::i;:::-;1133:23;;:7;:5;:7::i;:::-;:23;;;1125:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1069:132::o;2201:191::-;2275:16;2294:6;;;;;;;;;;;2275:25;;2320:8;2311:6;;:17;;;;;;;;;;;;;;;;;;2375:8;2344:40;;2365:8;2344:40;;;;;;;;;;;;2264:128;2201:191;:::o;31406:179::-;31516:5;31490:17;:23;31508:4;31490:23;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;31571:5;31537:40;;31565:4;31537:40;;;;;;;;;;;;31406:179;;:::o;11733:877::-;11880:1;11864:18;;:4;:18;;;11856:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11957:1;11943:16;;:2;:16;;;11935:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;12012:38;12033:4;12039:2;12043:6;12012:20;:38::i;:::-;12063:19;12085:9;:15;12095:4;12085:15;;;;;;;;;;;;;;;;12063:37;;12148:6;12133:11;:21;;12111:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;12288:6;12274:11;:20;12256:9;:15;12266:4;12256:15;;;;;;;;;;;;;;;:38;;;;12491:6;12474:9;:13;12484:2;12474:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;12541:2;12526:26;;12535:4;12526:26;;;12545:6;12526:26;;;;;;:::i;:::-;;;;;;;;12565:37;12585:4;12591:2;12595:6;12565:19;:37::i;:::-;11845:765;11733:877;;;:::o;34925:1607::-;34966:23;34992:24;35010:4;34992:9;:24::i;:::-;34966:50;;35027:25;35125:21;;35090:19;;35055;;:54;;;;:::i;:::-;:91;;;;:::i;:::-;35027:119;;35157:12;35184:23;35298:1;35265:17;35229:19;;35211:15;:37;;;;:::i;:::-;35210:72;;;;:::i;:::-;:89;;;;:::i;:::-;35184:115;;35310:26;35339:36;35359:15;35339;:19;;:36;;;;:::i;:::-;35310:65;;35388:25;35416:21;35388:49;;35450:37;35468:18;35450:17;:37::i;:::-;35500:18;35521:44;35547:17;35521:21;:25;;:44;;;;:::i;:::-;35500:65;;35578:23;35604:82;35658:17;35604:35;35619:19;;35604:10;:14;;:35;;;;:::i;:::-;:39;;:82;;;;:::i;:::-;35578:108;;35699:25;35727:84;35783:17;35727:37;35742:21;;35727:10;:14;;:37;;;;:::i;:::-;:41;;:84;;;;:::i;:::-;35699:112;;35824:23;35907:17;35876:15;35850:10;:41;;;;:::i;:::-;:74;;;;:::i;:::-;35824:100;;35959:1;35937:19;:23;;;;35993:1;35971:19;:23;;;;36029:1;36005:21;:25;;;;36065:1;36047:15;:19;:42;;;;;36088:1;36070:15;:19;36047:42;36043:280;;;36106:47;36120:15;36137;36106:13;:47::i;:::-;36173:138;36206:18;36243:15;36277:19;;36173:138;;;;;;;;:::i;:::-;;;;;;;;36043:280;36357:17;;;;;;;;;;;36349:31;;36388:17;36349:61;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36335:75;;;;;36445:15;;;;;;;;;;;36437:29;;36488:21;36437:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36423:101;;;;;34955:1577;;;;;;;;;;34925:1607::o;18374:98::-;18432:7;18463:1;18459;:5;;;;:::i;:::-;18452:12;;18374:98;;;;:::o;18773:::-;18831:7;18862:1;18858;:5;;;;:::i;:::-;18851:12;;18773:98;;;;:::o;14755:125::-;;;;:::o;14888:124::-;;;;:::o;18017:98::-;18075:7;18106:1;18102;:5;;;;:::i;:::-;18095:12;;18017:98;;;;:::o;34034:503::-;34102:21;34140:1;34126:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34102:40;;34171:4;34153;34158:1;34153:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;34197:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34187:4;34192:1;34187:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;34232:62;34249:4;34264:15;34282:11;34232:8;:62::i;:::-;34333:15;:66;;;34414:11;34440:1;34456:4;34483;34503:15;34333:196;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34091:446;34034:503;:::o;34545:372::-;34628:62;34645:4;34660:15;34678:11;34628:8;:62::i;:::-;34703:15;:31;;;34742:9;34775:4;34795:11;34821:1;34837;34853:15;;;;;;;;;;;34883;34703:206;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;34545:372;;:::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:60::-;3474:3;3495:5;3488:12;;3446:60;;;:::o;3512:142::-;3562:9;3595:53;3613:34;3622:24;3640:5;3622:24;:::i;:::-;3613:34;:::i;:::-;3595:53;:::i;:::-;3582:66;;3512:142;;;:::o;3660:126::-;3710:9;3743:37;3774:5;3743:37;:::i;:::-;3730:50;;3660:126;;;:::o;3792:153::-;3869:9;3902:37;3933:5;3902:37;:::i;:::-;3889:50;;3792:153;;;:::o;3951:185::-;4065:64;4123:5;4065:64;:::i;:::-;4060:3;4053:77;3951:185;;:::o;4142:276::-;4262:4;4300:2;4289:9;4285:18;4277:26;;4313:98;4408:1;4397:9;4393:17;4384:6;4313:98;:::i;:::-;4142:276;;;;:::o;4424:118::-;4511:24;4529:5;4511:24;:::i;:::-;4506:3;4499:37;4424:118;;:::o;4548:222::-;4641:4;4679:2;4668:9;4664:18;4656:26;;4692:71;4760:1;4749:9;4745:17;4736:6;4692:71;:::i;:::-;4548:222;;;;:::o;4776:619::-;4853:6;4861;4869;4918:2;4906:9;4897:7;4893:23;4889:32;4886:119;;;4924:79;;:::i;:::-;4886:119;5044:1;5069:53;5114:7;5105:6;5094:9;5090:22;5069:53;:::i;:::-;5059:63;;5015:117;5171:2;5197:53;5242:7;5233:6;5222:9;5218:22;5197:53;:::i;:::-;5187:63;;5142:118;5299:2;5325:53;5370:7;5361:6;5350:9;5346:22;5325:53;:::i;:::-;5315:63;;5270:118;4776:619;;;;;:::o;5401:118::-;5488:24;5506:5;5488:24;:::i;:::-;5483:3;5476:37;5401:118;;:::o;5525:222::-;5618:4;5656:2;5645:9;5641:18;5633:26;;5669:71;5737:1;5726:9;5722:17;5713:6;5669:71;:::i;:::-;5525:222;;;;:::o;5753:86::-;5788:7;5828:4;5821:5;5817:16;5806:27;;5753:86;;;:::o;5845:112::-;5928:22;5944:5;5928:22;:::i;:::-;5923:3;5916:35;5845:112;;:::o;5963:214::-;6052:4;6090:2;6079:9;6075:18;6067:26;;6103:67;6167:1;6156:9;6152:17;6143:6;6103:67;:::i;:::-;5963:214;;;;:::o;6183:329::-;6242:6;6291:2;6279:9;6270:7;6266:23;6262:32;6259:119;;;6297:79;;:::i;:::-;6259:119;6417:1;6442:53;6487:7;6478:6;6467:9;6463:22;6442:53;:::i;:::-;6432:63;;6388:117;6183:329;;;;:::o;6518:116::-;6588:21;6603:5;6588:21;:::i;:::-;6581:5;6578:32;6568:60;;6624:1;6621;6614:12;6568:60;6518:116;:::o;6640:133::-;6683:5;6721:6;6708:20;6699:29;;6737:30;6761:5;6737:30;:::i;:::-;6640:133;;;;:::o;6779:468::-;6844:6;6852;6901:2;6889:9;6880:7;6876:23;6872:32;6869:119;;;6907:79;;:::i;:::-;6869:119;7027:1;7052:53;7097:7;7088:6;7077:9;7073:22;7052:53;:::i;:::-;7042:63;;6998:117;7154:2;7180:50;7222:7;7213:6;7202:9;7198:22;7180:50;:::i;:::-;7170:60;;7125:115;6779:468;;;;;:::o;7253:474::-;7321:6;7329;7378:2;7366:9;7357:7;7353:23;7349:32;7346:119;;;7384:79;;:::i;:::-;7346:119;7504:1;7529:53;7574:7;7565:6;7554:9;7550:22;7529:53;:::i;:::-;7519:63;;7475:117;7631:2;7657:53;7702:7;7693:6;7682:9;7678:22;7657:53;:::i;:::-;7647:63;;7602:118;7253:474;;;;;:::o;7733:180::-;7781:77;7778:1;7771:88;7878:4;7875:1;7868:15;7902:4;7899:1;7892:15;7919:320;7963:6;8000:1;7994:4;7990:12;7980:22;;8047:1;8041:4;8037:12;8068:18;8058:81;;8124:4;8116:6;8112:17;8102:27;;8058:81;8186:2;8178:6;8175:14;8155:18;8152:38;8149:84;;8205:18;;:::i;:::-;8149:84;7970:269;7919:320;;;:::o;8245:180::-;8293:77;8290:1;8283:88;8390:4;8387:1;8380:15;8414:4;8411:1;8404:15;8431:191;8471:3;8490:20;8508:1;8490:20;:::i;:::-;8485:25;;8524:20;8542:1;8524:20;:::i;:::-;8519:25;;8567:1;8564;8560:9;8553:16;;8588:3;8585:1;8582:10;8579:36;;;8595:18;;:::i;:::-;8579:36;8431:191;;;;:::o;8628:173::-;8768:25;8764:1;8756:6;8752:14;8745:49;8628:173;:::o;8807:366::-;8949:3;8970:67;9034:2;9029:3;8970:67;:::i;:::-;8963:74;;9046:93;9135:3;9046:93;:::i;:::-;9164:2;9159:3;9155:12;9148:19;;8807:366;;;:::o;9179:419::-;9345:4;9383:2;9372:9;9368:18;9360:26;;9432:9;9426:4;9422:20;9418:1;9407:9;9403:17;9396:47;9460:131;9586:4;9460:131;:::i;:::-;9452:139;;9179:419;;;:::o;9604:224::-;9744:34;9740:1;9732:6;9728:14;9721:58;9813:7;9808:2;9800:6;9796:15;9789:32;9604:224;:::o;9834:366::-;9976:3;9997:67;10061:2;10056:3;9997:67;:::i;:::-;9990:74;;10073:93;10162:3;10073:93;:::i;:::-;10191:2;10186:3;10182:12;10175:19;;9834:366;;;:::o;10206:419::-;10372:4;10410:2;10399:9;10395:18;10387:26;;10459:9;10453:4;10449:20;10445:1;10434:9;10430:17;10423:47;10487:131;10613:4;10487:131;:::i;:::-;10479:139;;10206:419;;;:::o;10631:225::-;10771:34;10767:1;10759:6;10755:14;10748:58;10840:8;10835:2;10827:6;10823:15;10816:33;10631:225;:::o;10862:366::-;11004:3;11025:67;11089:2;11084:3;11025:67;:::i;:::-;11018:74;;11101:93;11190:3;11101:93;:::i;:::-;11219:2;11214:3;11210:12;11203:19;;10862:366;;;:::o;11234:419::-;11400:4;11438:2;11427:9;11423:18;11415:26;;11487:9;11481:4;11477:20;11473:1;11462:9;11458:17;11451:47;11515:131;11641:4;11515:131;:::i;:::-;11507:139;;11234:419;;;:::o;11659:223::-;11799:34;11795:1;11787:6;11783:14;11776:58;11868:6;11863:2;11855:6;11851:15;11844:31;11659:223;:::o;11888:366::-;12030:3;12051:67;12115:2;12110:3;12051:67;:::i;:::-;12044:74;;12127:93;12216:3;12127:93;:::i;:::-;12245:2;12240:3;12236:12;12229:19;;11888:366;;;:::o;12260:419::-;12426:4;12464:2;12453:9;12449:18;12441:26;;12513:9;12507:4;12503:20;12499:1;12488:9;12484:17;12477:47;12541:131;12667:4;12541:131;:::i;:::-;12533:139;;12260:419;;;:::o;12685:221::-;12825:34;12821:1;12813:6;12809:14;12802:58;12894:4;12889:2;12881:6;12877:15;12870:29;12685:221;:::o;12912:366::-;13054:3;13075:67;13139:2;13134:3;13075:67;:::i;:::-;13068:74;;13151:93;13240:3;13151:93;:::i;:::-;13269:2;13264:3;13260:12;13253:19;;12912:366;;;:::o;13284:419::-;13450:4;13488:2;13477:9;13473:18;13465:26;;13537:9;13531:4;13527:20;13523:1;13512:9;13508:17;13501:47;13565:131;13691:4;13565:131;:::i;:::-;13557:139;;13284:419;;;:::o;13709:179::-;13849:31;13845:1;13837:6;13833:14;13826:55;13709:179;:::o;13894:366::-;14036:3;14057:67;14121:2;14116:3;14057:67;:::i;:::-;14050:74;;14133:93;14222:3;14133:93;:::i;:::-;14251:2;14246:3;14242:12;14235:19;;13894:366;;;:::o;14266:419::-;14432:4;14470:2;14459:9;14455:18;14447:26;;14519:9;14513:4;14509:20;14505:1;14494:9;14490:17;14483:47;14547:131;14673:4;14547:131;:::i;:::-;14539:139;;14266:419;;;:::o;14691:224::-;14831:34;14827:1;14819:6;14815:14;14808:58;14900:7;14895:2;14887:6;14883:15;14876:32;14691:224;:::o;14921:366::-;15063:3;15084:67;15148:2;15143:3;15084:67;:::i;:::-;15077:74;;15160:93;15249:3;15160:93;:::i;:::-;15278:2;15273:3;15269:12;15262:19;;14921:366;;;:::o;15293:419::-;15459:4;15497:2;15486:9;15482:18;15474:26;;15546:9;15540:4;15536:20;15532:1;15521:9;15517:17;15510:47;15574:131;15700:4;15574:131;:::i;:::-;15566:139;;15293:419;;;:::o;15718:222::-;15858:34;15854:1;15846:6;15842:14;15835:58;15927:5;15922:2;15914:6;15910:15;15903:30;15718:222;:::o;15946:366::-;16088:3;16109:67;16173:2;16168:3;16109:67;:::i;:::-;16102:74;;16185:93;16274:3;16185:93;:::i;:::-;16303:2;16298:3;16294:12;16287:19;;15946:366;;;:::o;16318:419::-;16484:4;16522:2;16511:9;16507:18;16499:26;;16571:9;16565:4;16561:20;16557:1;16546:9;16542:17;16535:47;16599:131;16725:4;16599:131;:::i;:::-;16591:139;;16318:419;;;:::o;16743:174::-;16883:26;16879:1;16871:6;16867:14;16860:50;16743:174;:::o;16923:366::-;17065:3;17086:67;17150:2;17145:3;17086:67;:::i;:::-;17079:74;;17162:93;17251:3;17162:93;:::i;:::-;17280:2;17275:3;17271:12;17264:19;;16923:366;;;:::o;17295:419::-;17461:4;17499:2;17488:9;17484:18;17476:26;;17548:9;17542:4;17538:20;17534:1;17523:9;17519:17;17512:47;17576:131;17702:4;17576:131;:::i;:::-;17568:139;;17295:419;;;:::o;17720:410::-;17760:7;17783:20;17801:1;17783:20;:::i;:::-;17778:25;;17817:20;17835:1;17817:20;:::i;:::-;17812:25;;17872:1;17869;17865:9;17894:30;17912:11;17894:30;:::i;:::-;17883:41;;18073:1;18064:7;18060:15;18057:1;18054:22;18034:1;18027:9;18007:83;17984:139;;18103:18;;:::i;:::-;17984:139;17768:362;17720:410;;;;:::o;18136:180::-;18184:77;18181:1;18174:88;18281:4;18278:1;18271:15;18305:4;18302:1;18295:15;18322:185;18362:1;18379:20;18397:1;18379:20;:::i;:::-;18374:25;;18413:20;18431:1;18413:20;:::i;:::-;18408:25;;18452:1;18442:35;;18457:18;;:::i;:::-;18442:35;18499:1;18496;18492:9;18487:14;;18322:185;;;;:::o;18513:194::-;18553:4;18573:20;18591:1;18573:20;:::i;:::-;18568:25;;18607:20;18625:1;18607:20;:::i;:::-;18602:25;;18651:1;18648;18644:9;18636:17;;18675:1;18669:4;18666:11;18663:37;;;18680:18;;:::i;:::-;18663:37;18513:194;;;;:::o;18713:182::-;18853:34;18849:1;18841:6;18837:14;18830:58;18713:182;:::o;18901:366::-;19043:3;19064:67;19128:2;19123:3;19064:67;:::i;:::-;19057:74;;19140:93;19229:3;19140:93;:::i;:::-;19258:2;19253:3;19249:12;19242:19;;18901:366;;;:::o;19273:419::-;19439:4;19477:2;19466:9;19462:18;19454:26;;19526:9;19520:4;19516:20;19512:1;19501:9;19497:17;19490:47;19554:131;19680:4;19554:131;:::i;:::-;19546:139;;19273:419;;;:::o;19698:225::-;19838:34;19834:1;19826:6;19822:14;19815:58;19907:8;19902:2;19894:6;19890:15;19883:33;19698:225;:::o;19929:366::-;20071:3;20092:67;20156:2;20151:3;20092:67;:::i;:::-;20085:74;;20168:93;20257:3;20168:93;:::i;:::-;20286:2;20281:3;20277:12;20270:19;;19929:366;;;:::o;20301:419::-;20467:4;20505:2;20494:9;20490:18;20482:26;;20554:9;20548:4;20544:20;20540:1;20529:9;20525:17;20518:47;20582:131;20708:4;20582:131;:::i;:::-;20574:139;;20301:419;;;:::o;20726:442::-;20875:4;20913:2;20902:9;20898:18;20890:26;;20926:71;20994:1;20983:9;20979:17;20970:6;20926:71;:::i;:::-;21007:72;21075:2;21064:9;21060:18;21051:6;21007:72;:::i;:::-;21089;21157:2;21146:9;21142:18;21133:6;21089:72;:::i;:::-;20726:442;;;;;;:::o;21174:147::-;21275:11;21312:3;21297:18;;21174:147;;;;:::o;21327:114::-;;:::o;21447:398::-;21606:3;21627:83;21708:1;21703:3;21627:83;:::i;:::-;21620:90;;21719:93;21808:3;21719:93;:::i;:::-;21837:1;21832:3;21828:11;21821:18;;21447:398;;;:::o;21851:379::-;22035:3;22057:147;22200:3;22057:147;:::i;:::-;22050:154;;22221:3;22214:10;;21851:379;;;:::o;22236:180::-;22284:77;22281:1;22274:88;22381:4;22378:1;22371:15;22405:4;22402:1;22395:15;22422:180;22470:77;22467:1;22460:88;22567:4;22564:1;22557:15;22591:4;22588:1;22581:15;22608:143;22665:5;22696:6;22690:13;22681:22;;22712:33;22739:5;22712:33;:::i;:::-;22608:143;;;;:::o;22757:351::-;22827:6;22876:2;22864:9;22855:7;22851:23;22847:32;22844:119;;;22882:79;;:::i;:::-;22844:119;23002:1;23027:64;23083:7;23074:6;23063:9;23059:22;23027:64;:::i;:::-;23017:74;;22973:128;22757:351;;;;:::o;23114:85::-;23159:7;23188:5;23177:16;;23114:85;;;:::o;23205:158::-;23263:9;23296:61;23314:42;23323:32;23349:5;23323:32;:::i;:::-;23314:42;:::i;:::-;23296:61;:::i;:::-;23283:74;;23205:158;;;:::o;23369:147::-;23464:45;23503:5;23464:45;:::i;:::-;23459:3;23452:58;23369:147;;:::o;23522:114::-;23589:6;23623:5;23617:12;23607:22;;23522:114;;;:::o;23642:184::-;23741:11;23775:6;23770:3;23763:19;23815:4;23810:3;23806:14;23791:29;;23642:184;;;;:::o;23832:132::-;23899:4;23922:3;23914:11;;23952:4;23947:3;23943:14;23935:22;;23832:132;;;:::o;23970:108::-;24047:24;24065:5;24047:24;:::i;:::-;24042:3;24035:37;23970:108;;:::o;24084:179::-;24153:10;24174:46;24216:3;24208:6;24174:46;:::i;:::-;24252:4;24247:3;24243:14;24229:28;;24084:179;;;;:::o;24269:113::-;24339:4;24371;24366:3;24362:14;24354:22;;24269:113;;;:::o;24418:732::-;24537:3;24566:54;24614:5;24566:54;:::i;:::-;24636:86;24715:6;24710:3;24636:86;:::i;:::-;24629:93;;24746:56;24796:5;24746:56;:::i;:::-;24825:7;24856:1;24841:284;24866:6;24863:1;24860:13;24841:284;;;24942:6;24936:13;24969:63;25028:3;25013:13;24969:63;:::i;:::-;24962:70;;25055:60;25108:6;25055:60;:::i;:::-;25045:70;;24901:224;24888:1;24885;24881:9;24876:14;;24841:284;;;24845:14;25141:3;25134:10;;24542:608;;;24418:732;;;;:::o;25156:831::-;25419:4;25457:3;25446:9;25442:19;25434:27;;25471:71;25539:1;25528:9;25524:17;25515:6;25471:71;:::i;:::-;25552:80;25628:2;25617:9;25613:18;25604:6;25552:80;:::i;:::-;25679:9;25673:4;25669:20;25664:2;25653:9;25649:18;25642:48;25707:108;25810:4;25801:6;25707:108;:::i;:::-;25699:116;;25825:72;25893:2;25882:9;25878:18;25869:6;25825:72;:::i;:::-;25907:73;25975:3;25964:9;25960:19;25951:6;25907:73;:::i;:::-;25156:831;;;;;;;;:::o;25993:807::-;26242:4;26280:3;26269:9;26265:19;26257:27;;26294:71;26362:1;26351:9;26347:17;26338:6;26294:71;:::i;:::-;26375:72;26443:2;26432:9;26428:18;26419:6;26375:72;:::i;:::-;26457:80;26533:2;26522:9;26518:18;26509:6;26457:80;:::i;:::-;26547;26623:2;26612:9;26608:18;26599:6;26547:80;:::i;:::-;26637:73;26705:3;26694:9;26690:19;26681:6;26637:73;:::i;:::-;26720;26788:3;26777:9;26773:19;26764:6;26720:73;:::i;:::-;25993:807;;;;;;;;;:::o;26806:143::-;26863:5;26894:6;26888:13;26879:22;;26910:33;26937:5;26910:33;:::i;:::-;26806:143;;;;:::o;26955:663::-;27043:6;27051;27059;27108:2;27096:9;27087:7;27083:23;27079:32;27076:119;;;27114:79;;:::i;:::-;27076:119;27234:1;27259:64;27315:7;27306:6;27295:9;27291:22;27259:64;:::i;:::-;27249:74;;27205:128;27372:2;27398:64;27454:7;27445:6;27434:9;27430:22;27398:64;:::i;:::-;27388:74;;27343:129;27511:2;27537:64;27593:7;27584:6;27573:9;27569:22;27537:64;:::i;:::-;27527:74;;27482:129;26955:663;;;;;:::o

Swarm Source

ipfs://79f03f9bfb4ec84e60811a2b9b6f75767721d218bafd5b2036588ecec365ea2c

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.