ETH Price: $3,409.91 (+3.78%)

Contract

0xf8d893e577d3c8497C66f51D405E8574fadE0e77
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Set Automated Ma...205019232024-08-11 0:54:11104 days ago1723337651IN
0xf8d893e5...4fadE0e77
0 ETH0.000031211.0193044
Set Automated Ma...205013022024-08-10 22:48:35104 days ago1723330115IN
0xf8d893e5...4fadE0e77
0 ETH0.000047910.94857681
Set Automated Ma...205012212024-08-10 22:32:11104 days ago1723329131IN
0xf8d893e5...4fadE0e77
0 ETH0.000050791.00538866
Set Automated Ma...205011922024-08-10 22:26:23104 days ago1723328783IN
0xf8d893e5...4fadE0e77
0 ETH0.000047980.94979825
Set Automated Ma...205008962024-08-10 21:27:11104 days ago1723325231IN
0xf8d893e5...4fadE0e77
0 ETH0.000047640.94295916
Set Automated Ma...205007842024-08-10 21:04:35104 days ago1723323875IN
0xf8d893e5...4fadE0e77
0 ETH0.000036721.19917822
Set Automated Ma...205004002024-08-10 19:47:23104 days ago1723319243IN
0xf8d893e5...4fadE0e77
0 ETH0.000052021.02976263
Approve205002282024-08-10 19:12:59105 days ago1723317179IN
0xf8d893e5...4fadE0e77
0 ETH0.000045790.96931637
Approve205002282024-08-10 19:12:59105 days ago1723317179IN
0xf8d893e5...4fadE0e77
0 ETH0.000045790.96931637
Approve205002282024-08-10 19:12:59105 days ago1723317179IN
0xf8d893e5...4fadE0e77
0 ETH0.000045790.96931637
Approve205002282024-08-10 19:12:59105 days ago1723317179IN
0xf8d893e5...4fadE0e77
0 ETH0.000045790.96931637
Approve205002282024-08-10 19:12:59105 days ago1723317179IN
0xf8d893e5...4fadE0e77
0 ETH0.000045790.96931637
Approve205002282024-08-10 19:12:59105 days ago1723317179IN
0xf8d893e5...4fadE0e77
0 ETH0.000045790.96931637
Approve205002172024-08-10 19:10:47105 days ago1723317047IN
0xf8d893e5...4fadE0e77
0 ETH0.000051951.09968123
Approve205002172024-08-10 19:10:47105 days ago1723317047IN
0xf8d893e5...4fadE0e77
0 ETH0.000051951.09968123
Approve205002172024-08-10 19:10:47105 days ago1723317047IN
0xf8d893e5...4fadE0e77
0 ETH0.000051951.09968123
Approve205001072024-08-10 18:48:47105 days ago1723315727IN
0xf8d893e5...4fadE0e77
0 ETH0.000071611.51762562
Approve204997732024-08-10 17:41:59105 days ago1723311719IN
0xf8d893e5...4fadE0e77
0 ETH0.000069931.48017083
Approve204996592024-08-10 17:19:11105 days ago1723310351IN
0xf8d893e5...4fadE0e77
0 ETH0.000095062.01203928
Approve204995922024-08-10 17:05:47105 days ago1723309547IN
0xf8d893e5...4fadE0e77
0 ETH0.000066431.40797453
Approve204995912024-08-10 17:05:35105 days ago1723309535IN
0xf8d893e5...4fadE0e77
0 ETH0.00015673.3167619
Approve204995012024-08-10 16:47:35105 days ago1723308455IN
0xf8d893e5...4fadE0e77
0 ETH0.000138332.93179317
Approve204994542024-08-10 16:38:11105 days ago1723307891IN
0xf8d893e5...4fadE0e77
0 ETH0.000112242.37573837
Approve204993812024-08-10 16:23:35105 days ago1723307015IN
0xf8d893e5...4fadE0e77
0 ETH0.000156433.31530097
Set Automated Ma...204993062024-08-10 16:08:35105 days ago1723306115IN
0xf8d893e5...4fadE0e77
0 ETH0.000110032.17798191
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:
BabyFUKU

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-08-09
*/

// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.4;
library Address {
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only BabyFUKU stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: BabyFUKU insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, "Address: low-level call failed");
    }
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance BabyFUKU for call");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call BabyFUKU failed");
    }
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: BabyFUKU low-level delegate call failed");
    }
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to BabyFUKU non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }
    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using BabyFUKU memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

pragma solidity ^0.8.0;

interface IERC20 {
    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(address indexed owner, address indexed spender, uint256 value);
    function totalSupply() external view returns (uint256);
    function balanceOf(address account) external view returns (uint256);
    function transfer(address to, uint256 amount) external returns (bool);
    function allowance(address owner, address spender) external view returns (uint256);
    function approve(address spender, uint256 amount) external returns (bool);
    function transferFrom(address from, address to, uint256 amount) external returns (bool);
}

interface IERC20Metadata is IERC20 {
    function name() external view returns (string memory);
    function symbol() external view returns (string memory);
    function decimals() external view returns (uint8);
}

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

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

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

    string private _name;
    string private _symbol;
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }
    function name() public view virtual override returns (string memory) {
        return _name;
    }
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        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: BabyFUKU 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 {}
}

abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
    constructor() {
        _transferOwnership(_msgSender());
    }
    modifier onlyOwner() {
        _checkOwner();
        _;
    }
    function owner() public view virtual returns (address) {
        return _owner;
    }
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

interface IERC20Permit {
    function permit(
        address owner,
        address spender,   uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;
    function nonces(address owner) external view returns (uint256);
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}

library SafeERC20 {
    using Address for address;
    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }
    function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }
    function safeApprove(IERC20 token, address spender, uint256 value) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }
    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 oldAllowance = token.allowance(address(this), spender);
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance + value));
    }
    function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased BabyFUKU allowance below zero");
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance - value));
        }
    }
    function forceApprove(IERC20 token, address spender, uint256 value) internal {
        bytes memory approvalCall = abi.encodeWithSelector(token.approve.selector, spender, value);

        if (!_callOptionalReturnBool(token, approvalCall)) {
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, 0));
            _callOptionalReturn(token, approvalCall);
        }
    }
    function safePermit(
        IERC20Permit token,
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal {
        uint256 nonceBefore = token.nonces(owner);
        token.permit(owner, spender, value, deadline, v, r, s);
        uint256 nonceAfter = token.nonces(owner);
        require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed");
    }
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address-functionCall} to perform BabyFUKU this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        require(returndata.length == 0 || abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
    }

    function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We cannot use {Address-functionCall} here BabyFUKU since this should return false
        // and not revert is the subcall reverts.

        (bool success, bytes memory returndata) = address(token).call(data);
        return
            success && (returndata.length == 0 || abi.decode(returndata, (bool))) && Address.isContract(address(token));
    }
}

library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }
    function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

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

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1, "Math: mulDiv overflow");

            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

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

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

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

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

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

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

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

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

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }
    function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

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

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10 ** 64) {
                value /= 10 ** 64;
                result += 64;
            }
            if (value >= 10 ** 32) {
                value /= 10 ** 32;
                result += 32;
            }
            if (value >= 10 ** 16) {
                value /= 10 ** 16;
                result += 16;
            }
            if (value >= 10 ** 8) {
                value /= 10 ** 8;
                result += 8;
            }
            if (value >= 10 ** 4) {
                value /= 10 ** 4;
                result += 4;
            }
            if (value >= 10 ** 2) {
                value /= 10 ** 2;
                result += 2;
            }
            if (value >= 10 ** 1) {
                result += 1;
            }
        }
        return result;
    }
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0);
        }
    }
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0);
        }
    }
}

// pragma solidity ^0.8.0;

library SafeMath {
    
    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);
        }
    }
    
    function trySub(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }
    
    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);
        }
    }
    
    function tryDiv(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }
    
    function tryMod(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }
    
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }
    
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }
    
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }
    
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }
    
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}


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 IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

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

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

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

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

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

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

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

    function initialize(address, address) external;
}


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

    function WETH() external pure returns (address);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function getAmountsIn(uint256 amountOut, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);
}
interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);

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

    function 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 BabyFUKU 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;  

    mapping (address => bool) private _isExcludedFromFees;

    mapping(address => bool) private _automatedMarketMakerPairs;

    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 TokensAirdropped(uint256 totalWallets, uint256 totalTokens);

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


    constructor() ERC20("BabyFUKU", "BFUKU") {

        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;

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

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

        _mint(owner(), totalSupply); 
    }

    receive() external payable {}

    function openTrader() public onlyOwner {
        require(!tradingEnabled, "Trading already BabyFUKU active.");
        tradingEnabled = true;
        swapEnabled = true;
    }
    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    function setAutomatedMarketMakerPair(address pair, bool value)
    public
    onlyOwner
    {
        require(pair != uniswapV2Pair, "The pair cannot be removed from BabyFUKU automatedMarketMakerPairs");
        _setAutomatedMarketMakerPair(pair, value);
    }

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

    function excludeMultipleAccountsFromFees(address[] calldata accounts, bool excluded) public onlyOwner {
        for(uint256 i = 0; i < accounts.length; i++) {
            _isExcludedFromFees[accounts[i]] = excluded;
        }
    }

    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 || _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading BabyFUKU not yet enabled!");
        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }


        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            _swapBack();

            _swapping = false;
        }

        bool takeFee = !_swapping;

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

        uint256 fees = 0;

        if (takeFee) {
            // on sell
            if (_automatedMarketMakerPairs[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 (_automatedMarketMakerPairs[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);
    }

    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":false,"internalType":"uint256","name":"totalWallets","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalTokens","type":"uint256"}],"name":"TokensAirdropped","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":[{"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":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeMultipleAccountsFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":"openTrader","outputs":[],"stateMutability":"nonpayable","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":"setAutomatedMarketMakerPair","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"}]

60a06040523480156200001157600080fd5b506040518060400160405280600881526020017f4261627946554b550000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4246554b5500000000000000000000000000000000000000000000000000000081525081600390816200008f9190620009ca565b508060049081620000a19190620009ca565b505050620000c4620000b86200031060201b60201c565b6200031860201b60201c565b60006a52b7d2dcc80cd2e40000009050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff168152505062000151306080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff620003de60201b60201c565b6000601081905550600060118190555060006012819055506012546011546010546200017e919062000ae0565b6200018a919062000ae0565b600f819055506000600c819055506000600d819055506000600e81905550600e54600d54600c54620001bd919062000ae0565b620001c9919062000ae0565b600b81905550600160166000620001e5620005af60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016016600061dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062000309620002fc620005af60201b60201c565b82620005d960201b60201c565b5062000cfc565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000450576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004479062000ba2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620004c2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004b99062000c3a565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051620005a2919062000c6d565b60405180910390a3505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200064b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006429062000cda565b60405180910390fd5b6200065f600083836200074660201b60201c565b806002600082825462000673919062000ae0565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000726919062000c6d565b60405180910390a362000742600083836200074b60201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620007d257607f821691505b602082108103620007e857620007e76200078a565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620008527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000813565b6200085e868362000813565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620008ab620008a56200089f8462000876565b62000880565b62000876565b9050919050565b6000819050919050565b620008c7836200088a565b620008df620008d682620008b2565b84845462000820565b825550505050565b600090565b620008f6620008e7565b62000903818484620008bc565b505050565b5b818110156200092b576200091f600082620008ec565b60018101905062000909565b5050565b601f8211156200097a576200094481620007ee565b6200094f8462000803565b810160208510156200095f578190505b620009776200096e8562000803565b83018262000908565b50505b505050565b600082821c905092915050565b60006200099f600019846008026200097f565b1980831691505092915050565b6000620009ba83836200098c565b9150826002028217905092915050565b620009d58262000750565b67ffffffffffffffff811115620009f157620009f06200075b565b5b620009fd8254620007b9565b62000a0a8282856200092f565b600060209050601f83116001811462000a42576000841562000a2d578287015190505b62000a398582620009ac565b86555062000aa9565b601f19841662000a5286620007ee565b60005b8281101562000a7c5784890151825560018201915060208501945060208101905062000a55565b8683101562000a9c578489015162000a98601f8916826200098c565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000aed8262000876565b915062000afa8362000876565b925082820190508082111562000b155762000b1462000ab1565b5b92915050565b600082825260208201905092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600062000b8a60248362000b1b565b915062000b978262000b2c565b604082019050919050565b6000602082019050818103600083015262000bbd8162000b7b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600062000c2260228362000b1b565b915062000c2f8262000bc4565b604082019050919050565b6000602082019050818103600083015262000c558162000c13565b9050919050565b62000c678162000876565b82525050565b600060208201905062000c84600083018462000c5c565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000cc2601f8362000b1b565b915062000ccf8262000c8a565b602082019050919050565b6000602082019050818103600083015262000cf58162000cb3565b9050919050565b6080516132ba62000d3b600039600081816107b601528181611f8801528181612069015281816120900152818161212c015261215301526132ba6000f3fe6080604052600436106101c65760003560e01c806375f0a874116100f7578063c04a541411610095578063dd62ed3e11610064578063dd62ed3e14610657578063e2f4560514610694578063f2fde38b146106bf578063fa0534a3146106e8576101cd565b8063c04a5414146105ad578063c492f046146105d8578063d469801614610601578063d85ba0631461062c576101cd565b80639a7a23d6116100d15780639a7a23d6146104e1578063a457c2d71461050a578063a9059cbb14610547578063c024666814610584576101cd565b806375f0a874146104605780638da5cb5b1461048b57806395d89b41146104b6576101cd565b806339509351116101645780636a486a8e1161013e5780636a486a8e146103b65780636ddd1713146103e157806370a082311461040c578063715018a614610449576101cd565b8063395093511461032357806349bd5a5e146103605780634ada218b1461038b576101cd565b806318160ddd116101a057806318160ddd1461026557806323b872dd1461029057806327c8f835146102cd578063313ce567146102f8576101cd565b806306fdde03146101d2578063095ea7b3146101fd5780631694505e1461023a576101cd565b366101cd57005b600080fd5b3480156101de57600080fd5b506101e76106ff565b6040516101f491906122b2565b60405180910390f35b34801561020957600080fd5b50610224600480360381019061021f9190612372565b610791565b60405161023191906123cd565b60405180910390f35b34801561024657600080fd5b5061024f6107b4565b60405161025c9190612447565b60405180910390f35b34801561027157600080fd5b5061027a6107d8565b6040516102879190612471565b60405180910390f35b34801561029c57600080fd5b506102b760048036038101906102b2919061248c565b6107e2565b6040516102c491906123cd565b60405180910390f35b3480156102d957600080fd5b506102e2610811565b6040516102ef91906124ee565b60405180910390f35b34801561030457600080fd5b5061030d610817565b60405161031a9190612525565b60405180910390f35b34801561032f57600080fd5b5061034a60048036038101906103459190612372565b610820565b60405161035791906123cd565b60405180910390f35b34801561036c57600080fd5b50610375610857565b60405161038291906124ee565b60405180910390f35b34801561039757600080fd5b506103a061087d565b6040516103ad91906123cd565b60405180910390f35b3480156103c257600080fd5b506103cb610890565b6040516103d89190612471565b60405180910390f35b3480156103ed57600080fd5b506103f6610896565b60405161040391906123cd565b60405180910390f35b34801561041857600080fd5b50610433600480360381019061042e9190612540565b6108a9565b6040516104409190612471565b60405180910390f35b34801561045557600080fd5b5061045e6108f1565b005b34801561046c57600080fd5b50610475610905565b60405161048291906124ee565b60405180910390f35b34801561049757600080fd5b506104a061092b565b6040516104ad91906124ee565b60405180910390f35b3480156104c257600080fd5b506104cb610955565b6040516104d891906122b2565b60405180910390f35b3480156104ed57600080fd5b5061050860048036038101906105039190612599565b6109e7565b005b34801561051657600080fd5b50610531600480360381019061052c9190612372565b610a8d565b60405161053e91906123cd565b60405180910390f35b34801561055357600080fd5b5061056e60048036038101906105699190612372565b610b04565b60405161057b91906123cd565b60405180910390f35b34801561059057600080fd5b506105ab60048036038101906105a69190612599565b610b27565b005b3480156105b957600080fd5b506105c2610bd8565b6040516105cf91906124ee565b60405180910390f35b3480156105e457600080fd5b506105ff60048036038101906105fa919061263e565b610bfe565b005b34801561060d57600080fd5b50610616610cab565b60405161062391906124ee565b60405180910390f35b34801561063857600080fd5b50610641610cd1565b60405161064e9190612471565b60405180910390f35b34801561066357600080fd5b5061067e6004803603810190610679919061269e565b610cd7565b60405161068b9190612471565b60405180910390f35b3480156106a057600080fd5b506106a9610d5e565b6040516106b69190612471565b60405180910390f35b3480156106cb57600080fd5b506106e660048036038101906106e19190612540565b610d64565b005b3480156106f457600080fd5b506106fd610de7565b005b60606003805461070e9061270d565b80601f016020809104026020016040519081016040528092919081815260200182805461073a9061270d565b80156107875780601f1061075c57610100808354040283529160200191610787565b820191906000526020600020905b81548152906001019060200180831161076a57829003601f168201915b5050505050905090565b60008061079c610e77565b90506107a9818585610e7f565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b6000806107ed610e77565b90506107fa858285611048565b6108058585856110d4565b60019150509392505050565b61dead81565b60006012905090565b60008061082b610e77565b905061084c81858561083d8589610cd7565b610847919061276d565b610e7f565b600191505092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600960149054906101000a900460ff1681565b600f5481565b600960159054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108f96117a0565b610903600061181e565b565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546109649061270d565b80601f01602080910402602001604051908101604052809291908181526020018280546109909061270d565b80156109dd5780601f106109b2576101008083540402835291602001916109dd565b820191906000526020600020905b8154815290600101906020018083116109c057829003601f168201915b5050505050905090565b6109ef6117a0565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7690612839565b60405180910390fd5b610a8982826118e4565b5050565b600080610a98610e77565b90506000610aa68286610cd7565b905083811015610aeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae2906128cb565b60405180910390fd5b610af88286868403610e7f565b60019250505092915050565b600080610b0f610e77565b9050610b1c8185856110d4565b600191505092915050565b610b2f6117a0565b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051610bcc91906123cd565b60405180910390a25050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610c066117a0565b60005b83839050811015610ca5578160166000868685818110610c2c57610c2b6128eb565b5b9050602002016020810190610c419190612540565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610c9d9061291a565b915050610c09565b50505050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b610d6c6117a0565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ddb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd2906129d4565b60405180910390fd5b610de48161181e565b50565b610def6117a0565b600960149054906101000a900460ff1615610e3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3690612a40565b60405180910390fd5b6001600960146101000a81548160ff0219169083151502179055506001600960156101000a81548160ff021916908315150217905550565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610eee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee590612ad2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5490612b64565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161103b9190612471565b60405180910390a3505050565b60006110548484610cd7565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110ce57818110156110c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b790612bd0565b60405180910390fd5b6110cd8484848403610e7f565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113a90612c62565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a990612cf4565b60405180910390fd5b600960149054906101000a900460ff16806112165750601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8061126a5750601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6112a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a090612d86565b60405180910390fd5b600081036112c2576112bd83836000611985565b61179b565b60006112cd306108a9565b90506000600a5482101590508080156112f25750600960159054906101000a900460ff165b80156113475750601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156113605750600960169054906101000a900460ff16155b80156113b65750601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561140c5750601660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611450576001600960166101000a81548160ff021916908315150217905550611434611bfb565b6000600960166101000a81548160ff0219169083151502179055505b6000600960169054906101000a900460ff16159050601660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806115065750601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561151057600090505b6000811561178b57601760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561157357506000600f54115b15611641576115a1612710611593600f5488611e9d90919063ffffffff16565b611eb390919063ffffffff16565b9050600f54601254826115b49190612da6565b6115be9190612e17565b601560008282546115cf919061276d565b92505081905550600f54601054826115e79190612da6565b6115f19190612e17565b60136000828254611602919061276d565b92505081905550600f546011548261161a9190612da6565b6116249190612e17565b60146000828254611635919061276d565b92505081905550611767565b601760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561169c57506000600b54115b15611766576116ca6127106116bc600b5488611e9d90919063ffffffff16565b611eb390919063ffffffff16565b9050600b54600e54826116dd9190612da6565b6116e79190612e17565b601560008282546116f8919061276d565b92505081905550600b54600c54826117109190612da6565b61171a9190612e17565b6013600082825461172b919061276d565b92505081905550600b54600d54826117439190612da6565b61174d9190612e17565b6014600082825461175e919061276d565b925050819055505b5b600081111561177c5761177b873083611985565b5b80856117889190612e48565b94505b611796878787611985565b505050505b505050565b6117a8610e77565b73ffffffffffffffffffffffffffffffffffffffff166117c661092b565b73ffffffffffffffffffffffffffffffffffffffff161461181c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181390612ec8565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036119f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119eb90612c62565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5a90612cf4565b60405180910390fd5b611a6e838383611ec9565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611af4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aeb90612f5a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611be29190612471565b60405180910390a3611bf5848484611ece565b50505050565b6000611c06306108a9565b90506000601454601354601554611c1d919061276d565b611c27919061276d565b905060008060028360155486611c3d9190612da6565b611c479190612e17565b611c519190612e17565b90506000611c688286611ed390919063ffffffff16565b90506000479050611c7882611ee9565b6000611c8d8247611ed390919063ffffffff16565b90506000611cb887611caa60135485611e9d90919063ffffffff16565b611eb390919063ffffffff16565b90506000611ce388611cd560145486611e9d90919063ffffffff16565b611eb390919063ffffffff16565b90506000818385611cf49190612e48565b611cfe9190612e48565b9050600060158190555060006013819055506000601481905550600087118015611d285750600081115b15611d7557611d378782612126565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601554604051611d6c93929190612f7a565b60405180910390a15b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611dbb90612fe2565b60006040518083038185875af1925050503d8060008114611df8576040519150601f19603f3d011682016040523d82523d6000602084013e611dfd565b606091505b505080985050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611e4990612fe2565b60006040518083038185875af1925050503d8060008114611e86576040519150601f19603f3d011682016040523d82523d6000602084013e611e8b565b606091505b50508098505050505050505050505050565b60008183611eab9190612da6565b905092915050565b60008183611ec19190612e17565b905092915050565b505050565b505050565b60008183611ee19190612e48565b905092915050565b6000600267ffffffffffffffff811115611f0657611f05612ff7565b5b604051908082528060200260200182016040528015611f345781602001602082028036833780820191505090505b5090503081600081518110611f4c57611f4b6128eb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611ff1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612015919061303b565b81600181518110612029576120286128eb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061208e307f000000000000000000000000000000000000000000000000000000000000000084610e7f565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016120f0959493929190613161565b600060405180830381600087803b15801561210a57600080fd5b505af115801561211e573d6000803e3d6000fd5b505050505050565b612151307f000000000000000000000000000000000000000000000000000000000000000084610e7f565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b81526004016121d8969594939291906131bb565b60606040518083038185885af11580156121f6573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061221b9190613231565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561225c578082015181840152602081019050612241565b60008484015250505050565b6000601f19601f8301169050919050565b600061228482612222565b61228e818561222d565b935061229e81856020860161223e565b6122a781612268565b840191505092915050565b600060208201905081810360008301526122cc8184612279565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612309826122de565b9050919050565b612319816122fe565b811461232457600080fd5b50565b60008135905061233681612310565b92915050565b6000819050919050565b61234f8161233c565b811461235a57600080fd5b50565b60008135905061236c81612346565b92915050565b60008060408385031215612389576123886122d4565b5b600061239785828601612327565b92505060206123a88582860161235d565b9150509250929050565b60008115159050919050565b6123c7816123b2565b82525050565b60006020820190506123e260008301846123be565b92915050565b6000819050919050565b600061240d612408612403846122de565b6123e8565b6122de565b9050919050565b600061241f826123f2565b9050919050565b600061243182612414565b9050919050565b61244181612426565b82525050565b600060208201905061245c6000830184612438565b92915050565b61246b8161233c565b82525050565b60006020820190506124866000830184612462565b92915050565b6000806000606084860312156124a5576124a46122d4565b5b60006124b386828701612327565b93505060206124c486828701612327565b92505060406124d58682870161235d565b9150509250925092565b6124e8816122fe565b82525050565b600060208201905061250360008301846124df565b92915050565b600060ff82169050919050565b61251f81612509565b82525050565b600060208201905061253a6000830184612516565b92915050565b600060208284031215612556576125556122d4565b5b600061256484828501612327565b91505092915050565b612576816123b2565b811461258157600080fd5b50565b6000813590506125938161256d565b92915050565b600080604083850312156125b0576125af6122d4565b5b60006125be85828601612327565b92505060206125cf85828601612584565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f8401126125fe576125fd6125d9565b5b8235905067ffffffffffffffff81111561261b5761261a6125de565b5b602083019150836020820283011115612637576126366125e3565b5b9250929050565b600080600060408486031215612657576126566122d4565b5b600084013567ffffffffffffffff811115612675576126746122d9565b5b612681868287016125e8565b9350935050602061269486828701612584565b9150509250925092565b600080604083850312156126b5576126b46122d4565b5b60006126c385828601612327565b92505060206126d485828601612327565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061272557607f821691505b602082108103612738576127376126de565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006127788261233c565b91506127838361233c565b925082820190508082111561279b5761279a61273e565b5b92915050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f4261627946554b55206175746f6d617465644d61726b65744d616b657250616960208201527f7273000000000000000000000000000000000000000000000000000000000000604082015250565b600061282360428361222d565b915061282e826127a1565b606082019050919050565b6000602082019050818103600083015261285281612816565b9050919050565b7f45524332303a204261627946554b552064656372656173656420616c6c6f776160008201527f6e63652062656c6f77207a65726f000000000000000000000000000000000000602082015250565b60006128b5602e8361222d565b91506128c082612859565b604082019050919050565b600060208201905081810360008301526128e4816128a8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006129258261233c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036129575761295661273e565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006129be60268361222d565b91506129c982612962565b604082019050919050565b600060208201905081810360008301526129ed816129b1565b9050919050565b7f54726164696e6720616c7265616479204261627946554b55206163746976652e600082015250565b6000612a2a60208361222d565b9150612a35826129f4565b602082019050919050565b60006020820190508181036000830152612a5981612a1d565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612abc60248361222d565b9150612ac782612a60565b604082019050919050565b60006020820190508181036000830152612aeb81612aaf565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612b4e60228361222d565b9150612b5982612af2565b604082019050919050565b60006020820190508181036000830152612b7d81612b41565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612bba601d8361222d565b9150612bc582612b84565b602082019050919050565b60006020820190508181036000830152612be981612bad565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612c4c60258361222d565b9150612c5782612bf0565b604082019050919050565b60006020820190508181036000830152612c7b81612c3f565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612cde60238361222d565b9150612ce982612c82565b604082019050919050565b60006020820190508181036000830152612d0d81612cd1565b9050919050565b7f54726164696e67204261627946554b55206e6f742079657420656e61626c656460008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b6000612d7060218361222d565b9150612d7b82612d14565b604082019050919050565b60006020820190508181036000830152612d9f81612d63565b9050919050565b6000612db18261233c565b9150612dbc8361233c565b9250828202612dca8161233c565b91508282048414831517612de157612de061273e565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612e228261233c565b9150612e2d8361233c565b925082612e3d57612e3c612de8565b5b828204905092915050565b6000612e538261233c565b9150612e5e8361233c565b9250828203905081811115612e7657612e7561273e565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612eb260208361222d565b9150612ebd82612e7c565b602082019050919050565b60006020820190508181036000830152612ee181612ea5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612f4460268361222d565b9150612f4f82612ee8565b604082019050919050565b60006020820190508181036000830152612f7381612f37565b9050919050565b6000606082019050612f8f6000830186612462565b612f9c6020830185612462565b612fa96040830184612462565b949350505050565b600081905092915050565b50565b6000612fcc600083612fb1565b9150612fd782612fbc565b600082019050919050565b6000612fed82612fbf565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008151905061303581612310565b92915050565b600060208284031215613051576130506122d4565b5b600061305f84828501613026565b91505092915050565b6000819050919050565b600061308d61308861308384613068565b6123e8565b61233c565b9050919050565b61309d81613072565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6130d8816122fe565b82525050565b60006130ea83836130cf565b60208301905092915050565b6000602082019050919050565b600061310e826130a3565b61311881856130ae565b9350613123836130bf565b8060005b8381101561315457815161313b88826130de565b9750613146836130f6565b925050600181019050613127565b5085935050505092915050565b600060a0820190506131766000830188612462565b6131836020830187613094565b81810360408301526131958186613103565b90506131a460608301856124df565b6131b16080830184612462565b9695505050505050565b600060c0820190506131d060008301896124df565b6131dd6020830188612462565b6131ea6040830187613094565b6131f76060830186613094565b61320460808301856124df565b61321160a0830184612462565b979650505050505050565b60008151905061322b81612346565b92915050565b60008060006060848603121561324a576132496122d4565b5b60006132588682870161321c565b93505060206132698682870161321c565b925050604061327a8682870161321c565b915050925092509256fea26469706673582212209a5b3e9805426ddd246f4c0f54a38881a1116f65f28f2c721603aee63360010164736f6c63430008110033

Deployed Bytecode

0x6080604052600436106101c65760003560e01c806375f0a874116100f7578063c04a541411610095578063dd62ed3e11610064578063dd62ed3e14610657578063e2f4560514610694578063f2fde38b146106bf578063fa0534a3146106e8576101cd565b8063c04a5414146105ad578063c492f046146105d8578063d469801614610601578063d85ba0631461062c576101cd565b80639a7a23d6116100d15780639a7a23d6146104e1578063a457c2d71461050a578063a9059cbb14610547578063c024666814610584576101cd565b806375f0a874146104605780638da5cb5b1461048b57806395d89b41146104b6576101cd565b806339509351116101645780636a486a8e1161013e5780636a486a8e146103b65780636ddd1713146103e157806370a082311461040c578063715018a614610449576101cd565b8063395093511461032357806349bd5a5e146103605780634ada218b1461038b576101cd565b806318160ddd116101a057806318160ddd1461026557806323b872dd1461029057806327c8f835146102cd578063313ce567146102f8576101cd565b806306fdde03146101d2578063095ea7b3146101fd5780631694505e1461023a576101cd565b366101cd57005b600080fd5b3480156101de57600080fd5b506101e76106ff565b6040516101f491906122b2565b60405180910390f35b34801561020957600080fd5b50610224600480360381019061021f9190612372565b610791565b60405161023191906123cd565b60405180910390f35b34801561024657600080fd5b5061024f6107b4565b60405161025c9190612447565b60405180910390f35b34801561027157600080fd5b5061027a6107d8565b6040516102879190612471565b60405180910390f35b34801561029c57600080fd5b506102b760048036038101906102b2919061248c565b6107e2565b6040516102c491906123cd565b60405180910390f35b3480156102d957600080fd5b506102e2610811565b6040516102ef91906124ee565b60405180910390f35b34801561030457600080fd5b5061030d610817565b60405161031a9190612525565b60405180910390f35b34801561032f57600080fd5b5061034a60048036038101906103459190612372565b610820565b60405161035791906123cd565b60405180910390f35b34801561036c57600080fd5b50610375610857565b60405161038291906124ee565b60405180910390f35b34801561039757600080fd5b506103a061087d565b6040516103ad91906123cd565b60405180910390f35b3480156103c257600080fd5b506103cb610890565b6040516103d89190612471565b60405180910390f35b3480156103ed57600080fd5b506103f6610896565b60405161040391906123cd565b60405180910390f35b34801561041857600080fd5b50610433600480360381019061042e9190612540565b6108a9565b6040516104409190612471565b60405180910390f35b34801561045557600080fd5b5061045e6108f1565b005b34801561046c57600080fd5b50610475610905565b60405161048291906124ee565b60405180910390f35b34801561049757600080fd5b506104a061092b565b6040516104ad91906124ee565b60405180910390f35b3480156104c257600080fd5b506104cb610955565b6040516104d891906122b2565b60405180910390f35b3480156104ed57600080fd5b5061050860048036038101906105039190612599565b6109e7565b005b34801561051657600080fd5b50610531600480360381019061052c9190612372565b610a8d565b60405161053e91906123cd565b60405180910390f35b34801561055357600080fd5b5061056e60048036038101906105699190612372565b610b04565b60405161057b91906123cd565b60405180910390f35b34801561059057600080fd5b506105ab60048036038101906105a69190612599565b610b27565b005b3480156105b957600080fd5b506105c2610bd8565b6040516105cf91906124ee565b60405180910390f35b3480156105e457600080fd5b506105ff60048036038101906105fa919061263e565b610bfe565b005b34801561060d57600080fd5b50610616610cab565b60405161062391906124ee565b60405180910390f35b34801561063857600080fd5b50610641610cd1565b60405161064e9190612471565b60405180910390f35b34801561066357600080fd5b5061067e6004803603810190610679919061269e565b610cd7565b60405161068b9190612471565b60405180910390f35b3480156106a057600080fd5b506106a9610d5e565b6040516106b69190612471565b60405180910390f35b3480156106cb57600080fd5b506106e660048036038101906106e19190612540565b610d64565b005b3480156106f457600080fd5b506106fd610de7565b005b60606003805461070e9061270d565b80601f016020809104026020016040519081016040528092919081815260200182805461073a9061270d565b80156107875780601f1061075c57610100808354040283529160200191610787565b820191906000526020600020905b81548152906001019060200180831161076a57829003601f168201915b5050505050905090565b60008061079c610e77565b90506107a9818585610e7f565b600191505092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b6000806107ed610e77565b90506107fa858285611048565b6108058585856110d4565b60019150509392505050565b61dead81565b60006012905090565b60008061082b610e77565b905061084c81858561083d8589610cd7565b610847919061276d565b610e7f565b600191505092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600960149054906101000a900460ff1681565b600f5481565b600960159054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108f96117a0565b610903600061181e565b565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546109649061270d565b80601f01602080910402602001604051908101604052809291908181526020018280546109909061270d565b80156109dd5780601f106109b2576101008083540402835291602001916109dd565b820191906000526020600020905b8154815290600101906020018083116109c057829003601f168201915b5050505050905090565b6109ef6117a0565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7690612839565b60405180910390fd5b610a8982826118e4565b5050565b600080610a98610e77565b90506000610aa68286610cd7565b905083811015610aeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae2906128cb565b60405180910390fd5b610af88286868403610e7f565b60019250505092915050565b600080610b0f610e77565b9050610b1c8185856110d4565b600191505092915050565b610b2f6117a0565b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051610bcc91906123cd565b60405180910390a25050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610c066117a0565b60005b83839050811015610ca5578160166000868685818110610c2c57610c2b6128eb565b5b9050602002016020810190610c419190612540565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610c9d9061291a565b915050610c09565b50505050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b610d6c6117a0565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ddb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd2906129d4565b60405180910390fd5b610de48161181e565b50565b610def6117a0565b600960149054906101000a900460ff1615610e3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3690612a40565b60405180910390fd5b6001600960146101000a81548160ff0219169083151502179055506001600960156101000a81548160ff021916908315150217905550565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610eee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee590612ad2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5490612b64565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161103b9190612471565b60405180910390a3505050565b60006110548484610cd7565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110ce57818110156110c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b790612bd0565b60405180910390fd5b6110cd8484848403610e7f565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113a90612c62565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a990612cf4565b60405180910390fd5b600960149054906101000a900460ff16806112165750601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8061126a5750601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6112a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a090612d86565b60405180910390fd5b600081036112c2576112bd83836000611985565b61179b565b60006112cd306108a9565b90506000600a5482101590508080156112f25750600960159054906101000a900460ff165b80156113475750601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156113605750600960169054906101000a900460ff16155b80156113b65750601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561140c5750601660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611450576001600960166101000a81548160ff021916908315150217905550611434611bfb565b6000600960166101000a81548160ff0219169083151502179055505b6000600960169054906101000a900460ff16159050601660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806115065750601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561151057600090505b6000811561178b57601760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561157357506000600f54115b15611641576115a1612710611593600f5488611e9d90919063ffffffff16565b611eb390919063ffffffff16565b9050600f54601254826115b49190612da6565b6115be9190612e17565b601560008282546115cf919061276d565b92505081905550600f54601054826115e79190612da6565b6115f19190612e17565b60136000828254611602919061276d565b92505081905550600f546011548261161a9190612da6565b6116249190612e17565b60146000828254611635919061276d565b92505081905550611767565b601760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561169c57506000600b54115b15611766576116ca6127106116bc600b5488611e9d90919063ffffffff16565b611eb390919063ffffffff16565b9050600b54600e54826116dd9190612da6565b6116e79190612e17565b601560008282546116f8919061276d565b92505081905550600b54600c54826117109190612da6565b61171a9190612e17565b6013600082825461172b919061276d565b92505081905550600b54600d54826117439190612da6565b61174d9190612e17565b6014600082825461175e919061276d565b925050819055505b5b600081111561177c5761177b873083611985565b5b80856117889190612e48565b94505b611796878787611985565b505050505b505050565b6117a8610e77565b73ffffffffffffffffffffffffffffffffffffffff166117c661092b565b73ffffffffffffffffffffffffffffffffffffffff161461181c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181390612ec8565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036119f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119eb90612c62565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5a90612cf4565b60405180910390fd5b611a6e838383611ec9565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611af4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aeb90612f5a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611be29190612471565b60405180910390a3611bf5848484611ece565b50505050565b6000611c06306108a9565b90506000601454601354601554611c1d919061276d565b611c27919061276d565b905060008060028360155486611c3d9190612da6565b611c479190612e17565b611c519190612e17565b90506000611c688286611ed390919063ffffffff16565b90506000479050611c7882611ee9565b6000611c8d8247611ed390919063ffffffff16565b90506000611cb887611caa60135485611e9d90919063ffffffff16565b611eb390919063ffffffff16565b90506000611ce388611cd560145486611e9d90919063ffffffff16565b611eb390919063ffffffff16565b90506000818385611cf49190612e48565b611cfe9190612e48565b9050600060158190555060006013819055506000601481905550600087118015611d285750600081115b15611d7557611d378782612126565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601554604051611d6c93929190612f7a565b60405180910390a15b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611dbb90612fe2565b60006040518083038185875af1925050503d8060008114611df8576040519150601f19603f3d011682016040523d82523d6000602084013e611dfd565b606091505b505080985050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611e4990612fe2565b60006040518083038185875af1925050503d8060008114611e86576040519150601f19603f3d011682016040523d82523d6000602084013e611e8b565b606091505b50508098505050505050505050505050565b60008183611eab9190612da6565b905092915050565b60008183611ec19190612e17565b905092915050565b505050565b505050565b60008183611ee19190612e48565b905092915050565b6000600267ffffffffffffffff811115611f0657611f05612ff7565b5b604051908082528060200260200182016040528015611f345781602001602082028036833780820191505090505b5090503081600081518110611f4c57611f4b6128eb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611ff1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612015919061303b565b81600181518110612029576120286128eb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061208e307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610e7f565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016120f0959493929190613161565b600060405180830381600087803b15801561210a57600080fd5b505af115801561211e573d6000803e3d6000fd5b505050505050565b612151307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610e7f565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b81526004016121d8969594939291906131bb565b60606040518083038185885af11580156121f6573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061221b9190613231565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561225c578082015181840152602081019050612241565b60008484015250505050565b6000601f19601f8301169050919050565b600061228482612222565b61228e818561222d565b935061229e81856020860161223e565b6122a781612268565b840191505092915050565b600060208201905081810360008301526122cc8184612279565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612309826122de565b9050919050565b612319816122fe565b811461232457600080fd5b50565b60008135905061233681612310565b92915050565b6000819050919050565b61234f8161233c565b811461235a57600080fd5b50565b60008135905061236c81612346565b92915050565b60008060408385031215612389576123886122d4565b5b600061239785828601612327565b92505060206123a88582860161235d565b9150509250929050565b60008115159050919050565b6123c7816123b2565b82525050565b60006020820190506123e260008301846123be565b92915050565b6000819050919050565b600061240d612408612403846122de565b6123e8565b6122de565b9050919050565b600061241f826123f2565b9050919050565b600061243182612414565b9050919050565b61244181612426565b82525050565b600060208201905061245c6000830184612438565b92915050565b61246b8161233c565b82525050565b60006020820190506124866000830184612462565b92915050565b6000806000606084860312156124a5576124a46122d4565b5b60006124b386828701612327565b93505060206124c486828701612327565b92505060406124d58682870161235d565b9150509250925092565b6124e8816122fe565b82525050565b600060208201905061250360008301846124df565b92915050565b600060ff82169050919050565b61251f81612509565b82525050565b600060208201905061253a6000830184612516565b92915050565b600060208284031215612556576125556122d4565b5b600061256484828501612327565b91505092915050565b612576816123b2565b811461258157600080fd5b50565b6000813590506125938161256d565b92915050565b600080604083850312156125b0576125af6122d4565b5b60006125be85828601612327565b92505060206125cf85828601612584565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f8401126125fe576125fd6125d9565b5b8235905067ffffffffffffffff81111561261b5761261a6125de565b5b602083019150836020820283011115612637576126366125e3565b5b9250929050565b600080600060408486031215612657576126566122d4565b5b600084013567ffffffffffffffff811115612675576126746122d9565b5b612681868287016125e8565b9350935050602061269486828701612584565b9150509250925092565b600080604083850312156126b5576126b46122d4565b5b60006126c385828601612327565b92505060206126d485828601612327565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061272557607f821691505b602082108103612738576127376126de565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006127788261233c565b91506127838361233c565b925082820190508082111561279b5761279a61273e565b5b92915050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f4261627946554b55206175746f6d617465644d61726b65744d616b657250616960208201527f7273000000000000000000000000000000000000000000000000000000000000604082015250565b600061282360428361222d565b915061282e826127a1565b606082019050919050565b6000602082019050818103600083015261285281612816565b9050919050565b7f45524332303a204261627946554b552064656372656173656420616c6c6f776160008201527f6e63652062656c6f77207a65726f000000000000000000000000000000000000602082015250565b60006128b5602e8361222d565b91506128c082612859565b604082019050919050565b600060208201905081810360008301526128e4816128a8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006129258261233c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036129575761295661273e565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006129be60268361222d565b91506129c982612962565b604082019050919050565b600060208201905081810360008301526129ed816129b1565b9050919050565b7f54726164696e6720616c7265616479204261627946554b55206163746976652e600082015250565b6000612a2a60208361222d565b9150612a35826129f4565b602082019050919050565b60006020820190508181036000830152612a5981612a1d565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612abc60248361222d565b9150612ac782612a60565b604082019050919050565b60006020820190508181036000830152612aeb81612aaf565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612b4e60228361222d565b9150612b5982612af2565b604082019050919050565b60006020820190508181036000830152612b7d81612b41565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612bba601d8361222d565b9150612bc582612b84565b602082019050919050565b60006020820190508181036000830152612be981612bad565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612c4c60258361222d565b9150612c5782612bf0565b604082019050919050565b60006020820190508181036000830152612c7b81612c3f565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612cde60238361222d565b9150612ce982612c82565b604082019050919050565b60006020820190508181036000830152612d0d81612cd1565b9050919050565b7f54726164696e67204261627946554b55206e6f742079657420656e61626c656460008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b6000612d7060218361222d565b9150612d7b82612d14565b604082019050919050565b60006020820190508181036000830152612d9f81612d63565b9050919050565b6000612db18261233c565b9150612dbc8361233c565b9250828202612dca8161233c565b91508282048414831517612de157612de061273e565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612e228261233c565b9150612e2d8361233c565b925082612e3d57612e3c612de8565b5b828204905092915050565b6000612e538261233c565b9150612e5e8361233c565b9250828203905081811115612e7657612e7561273e565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612eb260208361222d565b9150612ebd82612e7c565b602082019050919050565b60006020820190508181036000830152612ee181612ea5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612f4460268361222d565b9150612f4f82612ee8565b604082019050919050565b60006020820190508181036000830152612f7381612f37565b9050919050565b6000606082019050612f8f6000830186612462565b612f9c6020830185612462565b612fa96040830184612462565b949350505050565b600081905092915050565b50565b6000612fcc600083612fb1565b9150612fd782612fbc565b600082019050919050565b6000612fed82612fbf565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008151905061303581612310565b92915050565b600060208284031215613051576130506122d4565b5b600061305f84828501613026565b91505092915050565b6000819050919050565b600061308d61308861308384613068565b6123e8565b61233c565b9050919050565b61309d81613072565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6130d8816122fe565b82525050565b60006130ea83836130cf565b60208301905092915050565b6000602082019050919050565b600061310e826130a3565b61311881856130ae565b9350613123836130bf565b8060005b8381101561315457815161313b88826130de565b9750613146836130f6565b925050600181019050613127565b5085935050505092915050565b600060a0820190506131766000830188612462565b6131836020830187613094565b81810360408301526131958186613103565b90506131a460608301856124df565b6131b16080830184612462565b9695505050505050565b600060c0820190506131d060008301896124df565b6131dd6020830188612462565b6131ea6040830187613094565b6131f76060830186613094565b61320460808301856124df565b61321160a0830184612462565b979650505050505050565b60008151905061322b81612346565b92915050565b60008060006060848603121561324a576132496122d4565b5b60006132588682870161321c565b93505060206132698682870161321c565b925050604061327a8682870161321c565b915050925092509256fea26469706673582212209a5b3e9805426ddd246f4c0f54a38881a1116f65f28f2c721603aee63360010164736f6c63430008110033

Deployed Bytecode Sourcemap

38851:8708:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6101:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7019:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38929:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6416:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7226:271;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39137:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6317:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7503:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38987:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39199:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39490:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39232:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6530:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11756:103;;;;;;;;;;;;;:::i;:::-;;39024:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11525:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6207:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41955:266;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7747:445;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6663:193;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41765:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39061:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42424:235;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39100:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39335:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6862:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39293:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11865:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41580:179;;;;;;;;;;;;;:::i;:::-;;6101:100;6155:13;6188:5;6181:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6101:100;:::o;7019:201::-;7102:4;7119:13;7135:12;:10;:12::i;:::-;7119:28;;7158:32;7167:5;7174:7;7183:6;7158:8;:32::i;:::-;7208:4;7201:11;;;7019:201;;;;:::o;38929:51::-;;;:::o;6416:108::-;6477:7;6504:12;;6497:19;;6416:108;:::o;7226:271::-;7323:4;7340:15;7358:12;:10;:12::i;:::-;7340:30;;7381:48;7397:4;7413:7;7422:6;7381:15;:48::i;:::-;7440:27;7450:4;7456:2;7460:6;7440:9;:27::i;:::-;7485:4;7478:11;;;7226:271;;;;;:::o;39137:53::-;39183:6;39137:53;:::o;6317:93::-;6375:5;6400:2;6393:9;;6317:93;:::o;7503:238::-;7591:4;7608:13;7624:12;:10;:12::i;:::-;7608:28;;7647:64;7656:5;7663:7;7700:10;7672:25;7682:5;7689:7;7672:9;:25::i;:::-;:38;;;;:::i;:::-;7647:8;:64::i;:::-;7729:4;7722:11;;;7503:238;;;;:::o;38987:28::-;;;;;;;;;;;;;:::o;39199:26::-;;;;;;;;;;;;;:::o;39490:28::-;;;;:::o;39232:23::-;;;;;;;;;;;;;:::o;6530:127::-;6604:7;6631:9;:18;6641:7;6631:18;;;;;;;;;;;;;;;;6624:25;;6530:127;;;:::o;11756:103::-;11486:13;:11;:13::i;:::-;11821:30:::1;11848:1;11821:18;:30::i;:::-;11756:103::o:0;39024:30::-;;;;;;;;;;;;;:::o;11525:87::-;11571:7;11598:6;;;;;;;;;;;11591:13;;11525:87;:::o;6207:104::-;6263:13;6296:7;6289:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6207:104;:::o;41955:266::-;11486:13;:11;:13::i;:::-;42077::::1;;;;;;;;;;;42069:21;;:4;:21;;::::0;42061:100:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;42172:41;42201:4;42207:5;42172:28;:41::i;:::-;41955:266:::0;;:::o;7747:445::-;7840:4;7857:13;7873:12;:10;:12::i;:::-;7857:28;;7896:24;7923:25;7933:5;7940:7;7923:9;:25::i;:::-;7896:52;;7987:15;7967:16;:35;;7959:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;8089:60;8098:5;8105:7;8133:15;8114:16;:34;8089:8;:60::i;:::-;8180:4;8173:11;;;;7747:445;;;;:::o;6663:193::-;6742:4;6759:13;6775:12;:10;:12::i;:::-;6759:28;;6798;6808:5;6815:2;6819:6;6798:9;:28::i;:::-;6844:4;6837:11;;;6663:193;;;;:::o;41765:182::-;11486:13;:11;:13::i;:::-;41881:8:::1;41850:19;:28;41870:7;41850:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;41921:7;41905:34;;;41930:8;41905:34;;;;;;:::i;:::-;;;;;;;;41765:182:::0;;:::o;39061:32::-;;;;;;;;;;;;;:::o;42424:235::-;11486:13;:11;:13::i;:::-;42541:9:::1;42537:115;42560:8;;:15;;42556:1;:19;42537:115;;;42632:8;42597:19;:32;42617:8;;42626:1;42617:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;42597:32;;;;;;;;;;;;;;;;:43;;;;;;;;;;;;;;;;;;42577:3;;;;;:::i;:::-;;;;42537:115;;;;42424:235:::0;;;:::o;39100:30::-;;;;;;;;;;;;;:::o;39335:27::-;;;;:::o;6862:151::-;6951:7;6978:11;:18;6990:5;6978:18;;;;;;;;;;;;;;;:27;6997:7;6978:27;;;;;;;;;;;;;;;;6971:34;;6862:151;;;;:::o;39293:33::-;;;;:::o;11865:201::-;11486:13;:11;:13::i;:::-;11974:1:::1;11954:22;;:8;:22;;::::0;11946:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;12030:28;12049:8;12030:18;:28::i;:::-;11865:201:::0;:::o;41580:179::-;11486:13;:11;:13::i;:::-;41639:14:::1;;;;;;;;;;;41638:15;41630:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;41718:4;41701:14;;:21;;;;;;;;;;;;;;;;;;41747:4;41733:11;;:18;;;;;;;;;;;;;;;;;;41580:179::o:0;5477:98::-;5530:7;5557:10;5550:17;;5477:98;:::o;10247:346::-;10366:1;10349:19;;:5;:19;;;10341:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10447:1;10428:21;;:7;:21;;;10420:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10531:6;10501:11;:18;10513:5;10501:18;;;;;;;;;;;;;;;:27;10520:7;10501:27;;;;;;;;;;;;;;;:36;;;;10569:7;10553:32;;10562:5;10553:32;;;10578:6;10553:32;;;;;;:::i;:::-;;;;;;;;10247:346;;;:::o;10599:419::-;10700:24;10727:25;10737:5;10744:7;10727:9;:25::i;:::-;10700:52;;10787:17;10767:16;:37;10763:248;;10849:6;10829:16;:26;;10821:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10933:51;10942:5;10949:7;10977:6;10958:16;:25;10933:8;:51::i;:::-;10763:248;10689:329;10599:419;;;:::o;42667:2381::-;42815:1;42799:18;;:4;:18;;;42791:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42892:1;42878:16;;:2;:16;;;42870:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;42953:14;;;;;;;;;;;:43;;;;42971:19;:25;42991:4;42971:25;;;;;;;;;;;;;;;;;;;;;;;;;42953:43;:70;;;;43000:19;:23;43020:2;43000:23;;;;;;;;;;;;;;;;;;;;;;;;;42953:70;42945:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;43086:1;43076:6;:11;43072:93;;43104:28;43120:4;43126:2;43130:1;43104:15;:28::i;:::-;43147:7;;43072:93;43179:28;43210:24;43228:4;43210:9;:24::i;:::-;43179:55;;43247:12;43286:18;;43262:20;:42;;43247:57;;43335:7;:35;;;;;43359:11;;;;;;;;;;;43335:35;:70;;;;;43373:26;:32;43400:4;43373:32;;;;;;;;;;;;;;;;;;;;;;;;;43335:70;:82;;;;;43408:9;;;;;;;;;;;43407:10;43335:82;:124;;;;;43434:19;:25;43454:4;43434:25;;;;;;;;;;;;;;;;;;;;;;;;;43433:26;43335:124;:165;;;;;43477:19;:23;43497:2;43477:23;;;;;;;;;;;;;;;;;;;;;;;;;43476:24;43335:165;43317:300;;;43539:4;43527:9;;:16;;;;;;;;;;;;;;;;;;43560:11;:9;:11::i;:::-;43600:5;43588:9;;:17;;;;;;;;;;;;;;;;;;43317:300;43629:12;43645:9;;;;;;;;;;;43644:10;43629:25;;43671:19;:25;43691:4;43671:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;43700:19;:23;43720:2;43700:23;;;;;;;;;;;;;;;;;;;;;;;;;43671:52;43667:100;;;43750:5;43740:15;;43667:100;43779:12;43812:7;43808:1187;;;43864:26;:30;43891:2;43864:30;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;43914:1;43898:13;;:17;43864:51;43860:986;;;43943:36;43973:5;43943:25;43954:13;;43943:6;:10;;:25;;;;:::i;:::-;:29;;:36;;;;:::i;:::-;43936:43;;44092:13;;44050:17;;44043:4;:24;;;;:::i;:::-;44042:63;;;;:::i;:::-;43998:19;;:107;;;;;;;:::i;:::-;;;;;;;;44218:13;;44176:17;;44169:4;:24;;;;:::i;:::-;44168:63;;;;:::i;:::-;44124:19;;:107;;;;;;;:::i;:::-;;;;;;;;44348:13;;44304:19;;44297:4;:26;;;;:::i;:::-;44296:65;;;;:::i;:::-;44250:21;;:111;;;;;;;:::i;:::-;;;;;;;;43860:986;;;44423:26;:32;44450:4;44423:32;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;;44474:1;44459:12;;:16;44423:52;44419:427;;;44503:35;44532:5;44503:24;44514:12;;44503:6;:10;;:24;;;;:::i;:::-;:28;;:35;;;;:::i;:::-;44496:42;;44608:12;;44588:16;;44581:4;:23;;;;:::i;:::-;44580:40;;;;:::i;:::-;44557:19;;:63;;;;;;;:::i;:::-;;;;;;;;44690:12;;44670:16;;44663:4;:23;;;;:::i;:::-;44662:40;;;;:::i;:::-;44639:19;;:63;;;;;;;:::i;:::-;;;;;;;;44818:12;;44775:18;;44768:4;:25;;;;:::i;:::-;44767:63;;;;:::i;:::-;44721:21;;:109;;;;;;;:::i;:::-;;;;;;;;44419:427;43860:986;44873:1;44866:4;:8;44862:91;;;44895:42;44911:4;44925;44932;44895:15;:42::i;:::-;44862:91;44979:4;44969:14;;;;;:::i;:::-;;;43808:1187;45007:33;45023:4;45029:2;45033:6;45007:15;:33::i;:::-;42780:2268;;;;42667:2381;;;;:::o;11618:132::-;11693:12;:10;:12::i;:::-;11682:23;;:7;:5;:7::i;:::-;:23;;;11674:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11618:132::o;12072:191::-;12146:16;12165:6;;;;;;;;;;;12146:25;;12191:8;12182:6;;:17;;;;;;;;;;;;;;;;;;12246:8;12215:40;;12236:8;12215:40;;;;;;;;;;;;12135:128;12072:191;:::o;42229:187::-;42347:5;42312:26;:32;42339:4;42312:32;;;;;;;;;;;;;;;;:40;;;;;;;;;;;;;;;;;;42402:5;42368:40;;42396:4;42368:40;;;;;;;;;;;;42229:187;;:::o;8200:806::-;8313:1;8297:18;;:4;:18;;;8289:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8390:1;8376:16;;:2;:16;;;8368:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;8445:38;8466:4;8472:2;8476:6;8445:20;:38::i;:::-;8496:19;8518:9;:15;8528:4;8518:15;;;;;;;;;;;;;;;;8496:37;;8567:6;8552:11;:21;;8544:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;8684:6;8670:11;:20;8652:9;:15;8662:4;8652:15;;;;;;;;;;;;;;;:38;;;;8887:6;8870:9;:13;8880:2;8870:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;8937:2;8922:26;;8931:4;8922:26;;;8941:6;8922:26;;;;;;:::i;:::-;;;;;;;;8961:37;8981:4;8987:2;8991:6;8961:19;:37::i;:::-;8278:728;8200:806;;;:::o;45947:1607::-;45988:23;46014:24;46032:4;46014:9;:24::i;:::-;45988:50;;46049:25;46147:21;;46112:19;;46077;;:54;;;;:::i;:::-;:91;;;;:::i;:::-;46049:119;;46179:12;46206:23;46320:1;46287:17;46251:19;;46233:15;:37;;;;:::i;:::-;46232:72;;;;:::i;:::-;:89;;;;:::i;:::-;46206:115;;46332:26;46361:36;46381:15;46361;:19;;:36;;;;:::i;:::-;46332:65;;46410:25;46438:21;46410:49;;46472:37;46490:18;46472:17;:37::i;:::-;46522:18;46543:44;46569:17;46543:21;:25;;:44;;;;:::i;:::-;46522:65;;46600:23;46626:82;46680:17;46626:35;46641:19;;46626:10;:14;;:35;;;;:::i;:::-;:39;;:82;;;;:::i;:::-;46600:108;;46721:25;46749:84;46805:17;46749:37;46764:21;;46749:10;:14;;:37;;;;:::i;:::-;:41;;:84;;;;:::i;:::-;46721:112;;46846:23;46929:17;46898:15;46872:10;:41;;;;:::i;:::-;:74;;;;:::i;:::-;46846:100;;46981:1;46959:19;:23;;;;47015:1;46993:19;:23;;;;47051:1;47027:21;:25;;;;47087:1;47069:15;:19;:42;;;;;47110:1;47092:15;:19;47069:42;47065:280;;;47128:47;47142:15;47159;47128:13;:47::i;:::-;47195:138;47228:18;47265:15;47299:19;;47195:138;;;;;;;;:::i;:::-;;;;;;;;47065:280;47379:17;;;;;;;;;;;47371:31;;47410:17;47371:61;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47357:75;;;;;47467:15;;;;;;;;;;;47459:29;;47510:21;47459:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47445:101;;;;;45977:1577;;;;;;;;;;45947:1607::o;28876:98::-;28934:7;28965:1;28961;:5;;;;:::i;:::-;28954:12;;28876:98;;;;:::o;28986:::-;29044:7;29075:1;29071;:5;;;;:::i;:::-;29064:12;;28986:98;;;;:::o;11024:91::-;;;;:::o;11121:90::-;;;;:::o;28766:98::-;28824:7;28855:1;28851;:5;;;;:::i;:::-;28844:12;;28766:98;;;;:::o;45056:503::-;45124:21;45162:1;45148:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45124:40;;45193:4;45175;45180:1;45175:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;45219:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45209:4;45214:1;45209:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;45254:62;45271:4;45286:15;45304:11;45254:8;:62::i;:::-;45355:15;:66;;;45436:11;45462:1;45478:4;45505;45525:15;45355:196;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45113:446;45056:503;:::o;45567:372::-;45650:62;45667:4;45682:15;45700:11;45650:8;:62::i;:::-;45725:15;:31;;;45764:9;45797:4;45817:11;45843:1;45859;45875:15;;;;;;;;;;;45905;45725:206;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;45567: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;1553:117;1662:1;1659;1652:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446: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:117::-;7362:1;7359;7352:12;7376:117;7485:1;7482;7475:12;7499:117;7608:1;7605;7598:12;7639:568;7712:8;7722:6;7772:3;7765:4;7757:6;7753:17;7749:27;7739:122;;7780:79;;:::i;:::-;7739:122;7893:6;7880:20;7870:30;;7923:18;7915:6;7912:30;7909:117;;;7945:79;;:::i;:::-;7909:117;8059:4;8051:6;8047:17;8035:29;;8113:3;8105:4;8097:6;8093:17;8083:8;8079:32;8076:41;8073:128;;;8120:79;;:::i;:::-;8073:128;7639:568;;;;;:::o;8213:698::-;8305:6;8313;8321;8370:2;8358:9;8349:7;8345:23;8341:32;8338:119;;;8376:79;;:::i;:::-;8338:119;8524:1;8513:9;8509:17;8496:31;8554:18;8546:6;8543:30;8540:117;;;8576:79;;:::i;:::-;8540:117;8689:80;8761:7;8752:6;8741:9;8737:22;8689:80;:::i;:::-;8671:98;;;;8467:312;8818:2;8844:50;8886:7;8877:6;8866:9;8862:22;8844:50;:::i;:::-;8834:60;;8789:115;8213:698;;;;;:::o;8917:474::-;8985:6;8993;9042:2;9030:9;9021:7;9017:23;9013:32;9010:119;;;9048:79;;:::i;:::-;9010:119;9168:1;9193:53;9238:7;9229:6;9218:9;9214:22;9193:53;:::i;:::-;9183:63;;9139:117;9295:2;9321:53;9366:7;9357:6;9346:9;9342:22;9321:53;:::i;:::-;9311:63;;9266:118;8917:474;;;;;:::o;9397:180::-;9445:77;9442:1;9435:88;9542:4;9539:1;9532:15;9566:4;9563:1;9556:15;9583:320;9627:6;9664:1;9658:4;9654:12;9644:22;;9711:1;9705:4;9701:12;9732:18;9722:81;;9788:4;9780:6;9776:17;9766:27;;9722:81;9850:2;9842:6;9839:14;9819:18;9816:38;9813:84;;9869:18;;:::i;:::-;9813:84;9634:269;9583:320;;;:::o;9909:180::-;9957:77;9954:1;9947:88;10054:4;10051:1;10044:15;10078:4;10075:1;10068:15;10095:191;10135:3;10154:20;10172:1;10154:20;:::i;:::-;10149:25;;10188:20;10206:1;10188:20;:::i;:::-;10183:25;;10231:1;10228;10224:9;10217:16;;10252:3;10249:1;10246:10;10243:36;;;10259:18;;:::i;:::-;10243:36;10095:191;;;;:::o;10292:290::-;10432:34;10428:1;10420:6;10416:14;10409:58;10501:34;10496:2;10488:6;10484:15;10477:59;10570:4;10565:2;10557:6;10553:15;10546:29;10292:290;:::o;10588:366::-;10730:3;10751:67;10815:2;10810:3;10751:67;:::i;:::-;10744:74;;10827:93;10916:3;10827:93;:::i;:::-;10945:2;10940:3;10936:12;10929:19;;10588:366;;;:::o;10960:419::-;11126:4;11164:2;11153:9;11149:18;11141:26;;11213:9;11207:4;11203:20;11199:1;11188:9;11184:17;11177:47;11241:131;11367:4;11241:131;:::i;:::-;11233:139;;10960:419;;;:::o;11385:233::-;11525:34;11521:1;11513:6;11509:14;11502:58;11594:16;11589:2;11581:6;11577:15;11570:41;11385:233;:::o;11624:366::-;11766:3;11787:67;11851:2;11846:3;11787:67;:::i;:::-;11780:74;;11863:93;11952:3;11863:93;:::i;:::-;11981:2;11976:3;11972:12;11965:19;;11624:366;;;:::o;11996:419::-;12162:4;12200:2;12189:9;12185:18;12177:26;;12249:9;12243:4;12239:20;12235:1;12224:9;12220:17;12213:47;12277:131;12403:4;12277:131;:::i;:::-;12269:139;;11996:419;;;:::o;12421:180::-;12469:77;12466:1;12459:88;12566:4;12563:1;12556:15;12590:4;12587:1;12580:15;12607:233;12646:3;12669:24;12687:5;12669:24;:::i;:::-;12660:33;;12715:66;12708:5;12705:77;12702:103;;12785:18;;:::i;:::-;12702:103;12832:1;12825:5;12821:13;12814:20;;12607:233;;;:::o;12846:225::-;12986:34;12982:1;12974:6;12970:14;12963:58;13055:8;13050:2;13042:6;13038:15;13031:33;12846:225;:::o;13077:366::-;13219:3;13240:67;13304:2;13299:3;13240:67;:::i;:::-;13233:74;;13316:93;13405:3;13316:93;:::i;:::-;13434:2;13429:3;13425:12;13418:19;;13077:366;;;:::o;13449:419::-;13615:4;13653:2;13642:9;13638:18;13630:26;;13702:9;13696:4;13692:20;13688:1;13677:9;13673:17;13666:47;13730:131;13856:4;13730:131;:::i;:::-;13722:139;;13449:419;;;:::o;13874:182::-;14014:34;14010:1;14002:6;13998:14;13991:58;13874:182;:::o;14062:366::-;14204:3;14225:67;14289:2;14284:3;14225:67;:::i;:::-;14218:74;;14301:93;14390:3;14301:93;:::i;:::-;14419:2;14414:3;14410:12;14403:19;;14062:366;;;:::o;14434:419::-;14600:4;14638:2;14627:9;14623:18;14615:26;;14687:9;14681:4;14677:20;14673:1;14662:9;14658:17;14651:47;14715:131;14841:4;14715:131;:::i;:::-;14707:139;;14434:419;;;:::o;14859:223::-;14999:34;14995:1;14987:6;14983:14;14976:58;15068:6;15063:2;15055:6;15051:15;15044:31;14859:223;:::o;15088:366::-;15230:3;15251:67;15315:2;15310:3;15251:67;:::i;:::-;15244:74;;15327:93;15416:3;15327:93;:::i;:::-;15445:2;15440:3;15436:12;15429:19;;15088:366;;;:::o;15460:419::-;15626:4;15664:2;15653:9;15649:18;15641:26;;15713:9;15707:4;15703:20;15699:1;15688:9;15684:17;15677:47;15741:131;15867:4;15741:131;:::i;:::-;15733:139;;15460:419;;;:::o;15885:221::-;16025:34;16021:1;16013:6;16009:14;16002:58;16094:4;16089:2;16081:6;16077:15;16070:29;15885:221;:::o;16112:366::-;16254:3;16275:67;16339:2;16334:3;16275:67;:::i;:::-;16268:74;;16351:93;16440:3;16351:93;:::i;:::-;16469:2;16464:3;16460:12;16453:19;;16112:366;;;:::o;16484:419::-;16650:4;16688:2;16677:9;16673:18;16665:26;;16737:9;16731:4;16727:20;16723:1;16712:9;16708:17;16701:47;16765:131;16891:4;16765:131;:::i;:::-;16757:139;;16484:419;;;:::o;16909:179::-;17049:31;17045:1;17037:6;17033:14;17026:55;16909:179;:::o;17094:366::-;17236:3;17257:67;17321:2;17316:3;17257:67;:::i;:::-;17250:74;;17333:93;17422:3;17333:93;:::i;:::-;17451:2;17446:3;17442:12;17435:19;;17094:366;;;:::o;17466:419::-;17632:4;17670:2;17659:9;17655:18;17647:26;;17719:9;17713:4;17709:20;17705:1;17694:9;17690:17;17683:47;17747:131;17873:4;17747:131;:::i;:::-;17739:139;;17466:419;;;:::o;17891:224::-;18031:34;18027:1;18019:6;18015:14;18008:58;18100:7;18095:2;18087:6;18083:15;18076:32;17891:224;:::o;18121:366::-;18263:3;18284:67;18348:2;18343:3;18284:67;:::i;:::-;18277:74;;18360:93;18449:3;18360:93;:::i;:::-;18478:2;18473:3;18469:12;18462:19;;18121:366;;;:::o;18493:419::-;18659:4;18697:2;18686:9;18682:18;18674:26;;18746:9;18740:4;18736:20;18732:1;18721:9;18717:17;18710:47;18774:131;18900:4;18774:131;:::i;:::-;18766:139;;18493:419;;;:::o;18918:222::-;19058:34;19054:1;19046:6;19042:14;19035:58;19127:5;19122:2;19114:6;19110:15;19103:30;18918:222;:::o;19146:366::-;19288:3;19309:67;19373:2;19368:3;19309:67;:::i;:::-;19302:74;;19385:93;19474:3;19385:93;:::i;:::-;19503:2;19498:3;19494:12;19487:19;;19146:366;;;:::o;19518:419::-;19684:4;19722:2;19711:9;19707:18;19699:26;;19771:9;19765:4;19761:20;19757:1;19746:9;19742:17;19735:47;19799:131;19925:4;19799:131;:::i;:::-;19791:139;;19518:419;;;:::o;19943:220::-;20083:34;20079:1;20071:6;20067:14;20060:58;20152:3;20147:2;20139:6;20135:15;20128:28;19943:220;:::o;20169:366::-;20311:3;20332:67;20396:2;20391:3;20332:67;:::i;:::-;20325:74;;20408:93;20497:3;20408:93;:::i;:::-;20526:2;20521:3;20517:12;20510:19;;20169:366;;;:::o;20541:419::-;20707:4;20745:2;20734:9;20730:18;20722:26;;20794:9;20788:4;20784:20;20780:1;20769:9;20765:17;20758:47;20822:131;20948:4;20822:131;:::i;:::-;20814:139;;20541:419;;;:::o;20966:410::-;21006:7;21029:20;21047:1;21029:20;:::i;:::-;21024:25;;21063:20;21081:1;21063:20;:::i;:::-;21058:25;;21118:1;21115;21111:9;21140:30;21158:11;21140:30;:::i;:::-;21129:41;;21319:1;21310:7;21306:15;21303:1;21300:22;21280:1;21273:9;21253:83;21230:139;;21349:18;;:::i;:::-;21230:139;21014:362;20966:410;;;;:::o;21382:180::-;21430:77;21427:1;21420:88;21527:4;21524:1;21517:15;21551:4;21548:1;21541:15;21568:185;21608:1;21625:20;21643:1;21625:20;:::i;:::-;21620:25;;21659:20;21677:1;21659:20;:::i;:::-;21654:25;;21698:1;21688:35;;21703:18;;:::i;:::-;21688:35;21745:1;21742;21738:9;21733:14;;21568:185;;;;:::o;21759:194::-;21799:4;21819:20;21837:1;21819:20;:::i;:::-;21814:25;;21853:20;21871:1;21853:20;:::i;:::-;21848:25;;21897:1;21894;21890:9;21882:17;;21921:1;21915:4;21912:11;21909:37;;;21926:18;;:::i;:::-;21909:37;21759:194;;;;:::o;21959:182::-;22099:34;22095:1;22087:6;22083:14;22076:58;21959:182;:::o;22147:366::-;22289:3;22310:67;22374:2;22369:3;22310:67;:::i;:::-;22303:74;;22386:93;22475:3;22386:93;:::i;:::-;22504:2;22499:3;22495:12;22488:19;;22147:366;;;:::o;22519:419::-;22685:4;22723:2;22712:9;22708:18;22700:26;;22772:9;22766:4;22762:20;22758:1;22747:9;22743:17;22736:47;22800:131;22926:4;22800:131;:::i;:::-;22792:139;;22519:419;;;:::o;22944:225::-;23084:34;23080:1;23072:6;23068:14;23061:58;23153:8;23148:2;23140:6;23136:15;23129:33;22944:225;:::o;23175:366::-;23317:3;23338:67;23402:2;23397:3;23338:67;:::i;:::-;23331:74;;23414:93;23503:3;23414:93;:::i;:::-;23532:2;23527:3;23523:12;23516:19;;23175:366;;;:::o;23547:419::-;23713:4;23751:2;23740:9;23736:18;23728:26;;23800:9;23794:4;23790:20;23786:1;23775:9;23771:17;23764:47;23828:131;23954:4;23828:131;:::i;:::-;23820:139;;23547:419;;;:::o;23972:442::-;24121:4;24159:2;24148:9;24144:18;24136:26;;24172:71;24240:1;24229:9;24225:17;24216:6;24172:71;:::i;:::-;24253:72;24321:2;24310:9;24306:18;24297:6;24253:72;:::i;:::-;24335;24403:2;24392:9;24388:18;24379:6;24335:72;:::i;:::-;23972:442;;;;;;:::o;24420:147::-;24521:11;24558:3;24543:18;;24420:147;;;;:::o;24573:114::-;;:::o;24693:398::-;24852:3;24873:83;24954:1;24949:3;24873:83;:::i;:::-;24866:90;;24965:93;25054:3;24965:93;:::i;:::-;25083:1;25078:3;25074:11;25067:18;;24693:398;;;:::o;25097:379::-;25281:3;25303:147;25446:3;25303:147;:::i;:::-;25296:154;;25467:3;25460:10;;25097:379;;;:::o;25482:180::-;25530:77;25527:1;25520:88;25627:4;25624:1;25617:15;25651:4;25648:1;25641:15;25668:143;25725:5;25756:6;25750:13;25741:22;;25772:33;25799:5;25772:33;:::i;:::-;25668:143;;;;:::o;25817:351::-;25887:6;25936:2;25924:9;25915:7;25911:23;25907:32;25904:119;;;25942:79;;:::i;:::-;25904:119;26062:1;26087:64;26143:7;26134:6;26123:9;26119:22;26087:64;:::i;:::-;26077:74;;26033:128;25817:351;;;;:::o;26174:85::-;26219:7;26248:5;26237:16;;26174:85;;;:::o;26265:158::-;26323:9;26356:61;26374:42;26383:32;26409:5;26383:32;:::i;:::-;26374:42;:::i;:::-;26356:61;:::i;:::-;26343:74;;26265:158;;;:::o;26429:147::-;26524:45;26563:5;26524:45;:::i;:::-;26519:3;26512:58;26429:147;;:::o;26582:114::-;26649:6;26683:5;26677:12;26667:22;;26582:114;;;:::o;26702:184::-;26801:11;26835:6;26830:3;26823:19;26875:4;26870:3;26866:14;26851:29;;26702:184;;;;:::o;26892:132::-;26959:4;26982:3;26974:11;;27012:4;27007:3;27003:14;26995:22;;26892:132;;;:::o;27030:108::-;27107:24;27125:5;27107:24;:::i;:::-;27102:3;27095:37;27030:108;;:::o;27144:179::-;27213:10;27234:46;27276:3;27268:6;27234:46;:::i;:::-;27312:4;27307:3;27303:14;27289:28;;27144:179;;;;:::o;27329:113::-;27399:4;27431;27426:3;27422:14;27414:22;;27329:113;;;:::o;27478:732::-;27597:3;27626:54;27674:5;27626:54;:::i;:::-;27696:86;27775:6;27770:3;27696:86;:::i;:::-;27689:93;;27806:56;27856:5;27806:56;:::i;:::-;27885:7;27916:1;27901:284;27926:6;27923:1;27920:13;27901:284;;;28002:6;27996:13;28029:63;28088:3;28073:13;28029:63;:::i;:::-;28022:70;;28115:60;28168:6;28115:60;:::i;:::-;28105:70;;27961:224;27948:1;27945;27941:9;27936:14;;27901:284;;;27905:14;28201:3;28194:10;;27602:608;;;27478:732;;;;:::o;28216:831::-;28479:4;28517:3;28506:9;28502:19;28494:27;;28531:71;28599:1;28588:9;28584:17;28575:6;28531:71;:::i;:::-;28612:80;28688:2;28677:9;28673:18;28664:6;28612:80;:::i;:::-;28739:9;28733:4;28729:20;28724:2;28713:9;28709:18;28702:48;28767:108;28870:4;28861:6;28767:108;:::i;:::-;28759:116;;28885:72;28953:2;28942:9;28938:18;28929:6;28885:72;:::i;:::-;28967:73;29035:3;29024:9;29020:19;29011:6;28967:73;:::i;:::-;28216:831;;;;;;;;:::o;29053:807::-;29302:4;29340:3;29329:9;29325:19;29317:27;;29354:71;29422:1;29411:9;29407:17;29398:6;29354:71;:::i;:::-;29435:72;29503:2;29492:9;29488:18;29479:6;29435:72;:::i;:::-;29517:80;29593:2;29582:9;29578:18;29569:6;29517:80;:::i;:::-;29607;29683:2;29672:9;29668:18;29659:6;29607:80;:::i;:::-;29697:73;29765:3;29754:9;29750:19;29741:6;29697:73;:::i;:::-;29780;29848:3;29837:9;29833:19;29824:6;29780:73;:::i;:::-;29053:807;;;;;;;;;:::o;29866:143::-;29923:5;29954:6;29948:13;29939:22;;29970:33;29997:5;29970:33;:::i;:::-;29866:143;;;;:::o;30015:663::-;30103:6;30111;30119;30168:2;30156:9;30147:7;30143:23;30139:32;30136:119;;;30174:79;;:::i;:::-;30136:119;30294:1;30319:64;30375:7;30366:6;30355:9;30351:22;30319:64;:::i;:::-;30309:74;;30265:128;30432:2;30458:64;30514:7;30505:6;30494:9;30490:22;30458:64;:::i;:::-;30448:74;;30403:129;30571:2;30597:64;30653:7;30644:6;30633:9;30629:22;30597:64;:::i;:::-;30587:74;;30542:129;30015:663;;;;;:::o

Swarm Source

ipfs://9a5b3e9805426ddd246f4c0f54a38881a1116f65f28f2c721603aee633600101

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.