ETH Price: $2,517.09 (+2.57%)

Token

Blessed By $CHURCH (BLESSINGS)
 

Overview

Max Total Supply

1,160,344,123.7920000214532096 BLESSINGS

Holders

15

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
203,315,364.382 BLESSINGS

Value
$0.00
0x079baec14d71cba0fadfb790b3b97e94c239a3cc
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Blessings

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
No with 200 runs

Other Settings:
byzantium EvmVersion
File 1 of 15 : Blessings.sol
// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity >=0.8.7;

/// ============ Imports ============

import "./ISwapRouter.sol";
import "./IEggs.sol";
import "../node_modules/@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "../node_modules/@openzeppelin/contracts/access/AccessControl.sol";
import "../node_modules/@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "../node_modules/@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol";

/// @title Blessings
/// @notice allows claimable CHURCH and BLESSINGS reward cycles for liquidity stakers

contract Blessings is AccessControl, ReentrancyGuard, ERC20 {
  bytes32 public constant DEPLOYER_ROLE = keccak256("DEPLOYER_ROLE");
  bytes32 public constant REWARDER_ROLE = keccak256("REWARDER_ROLE");

  uint256 public currentCycle;

  mapping(uint256 => RewardData) public rewards;
  mapping(address => UserPosition) public _userPositions;
  mapping(address => uint256) public liquidityLocked;
  uint256 public _cumulativeRewardSupply;

  /* Events */
  event BlessEggs(address blesser, address user, uint256 amount);
  event Withdrawl(address user, uint256 amount);
  event Deposit(address user, uint256 amount);
  event AddReward(uint256 amount);
  event Claim(address user);

  IEggs public _Eggs;

  IERC20 public immutable _CHURCH = IERC20(0x71018cc3D0CCdc7E10C48550554cE4D4E3afd9C1);
  address public routerAddress = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;
  address public rewarderWallet;
  IERC20 public _LPToken;

  bool public frozen;

  uint256 private immutable percision = 100000000;

  struct UserPosition {
    uint256 blessingsClaimedAt;
    uint256 entryCycle;
    uint256 shares;
  }

  struct RewardData {
    uint256 totalShares;
    uint256 rewardAmount;
  }

  constructor(address lpAddress, address _rewarderWallet, address eggAddress) ERC20("Blessed By $CHURCH", "BLESSINGS") {
    _grantRole(DEFAULT_ADMIN_ROLE, msg.sender);
    _grantRole(REWARDER_ROLE, _rewarderWallet);
    _grantRole(DEPLOYER_ROLE, msg.sender);

    _Eggs = IEggs(eggAddress);
    rewarderWallet = _rewarderWallet;
    _LPToken = IERC20(lpAddress);
  }

  // Return info about blessings and staked LP to web3
  function getInfo(address user) external view returns (uint256[] memory) {
    uint256[] memory info = new uint256[](14);
    info[0] = _LPToken.balanceOf(user);
    info[1] = _LPToken.allowance(user, address(this));
    info[2] = amountLocked(user); // user's staked LP
    info[3] = rewards[currentCycle].totalShares; // total LP staked
    info[4] = blessingsToClaimForUser(user);
    info[5] = balanceOf(user); // Blessings balance
    info[6] = _CHURCH.balanceOf(user); // Blessings balance
    info[7] = _CHURCH.balanceOf(address(_LPToken)); // amount of CHURCH in the LP reserves
    info[8] = _LPToken.totalSupply(); // total LP tokens
    info[9] = _CHURCH.balanceOf(address(rewarderWallet)); // remaining rewards
    info[10] = churchPerETH();
    if (user != address(0)) {
      info[11] = _Eggs.balanceOf(user);
      info[12] = _Eggs.userBlessings(user);
    }
    info[13] = _Eggs.totalBlessings();

    return info;
  }

  function amountLocked(address user) public view returns (uint256) {
    return _userPositions[user].shares;
  }

  function amountsToClaim() external view returns (uint256[] memory) {
    return amountsToClaimForUser(msg.sender);
  }

  function amountsToClaimForUser(address user) public view returns (uint256[] memory) {
    uint256[] memory info = new uint256[](2);

    info[0] = churchToClaimForUser(user);
    info[1] = blessingsToClaimForUser(user);

    return info;
  }

  function amountToClaimForCycle(UserPosition memory position, uint256 cycleIndex, uint256 currentChurchSupply) internal view returns (uint256){
    if (cycleIndex < position.entryCycle) return 0;
    if (cycleIndex >= currentCycle) return 0;

    RewardData memory reward = rewards[cycleIndex];
    if (reward.totalShares == 0) return 0;

    uint256 poolRatio = percision * reward.rewardAmount / _cumulativeRewardSupply;
    uint256 ownershipRatio = percision * position.shares / reward.totalShares;
    uint256 ownership = ownershipRatio * poolRatio * currentChurchSupply / (percision * percision);

    return ownership;
  }

  // Fetch price of CHURCH
  function churchPerETH() public view returns (uint256){
    address[] memory path = new address[](2);
    path[0] = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2;
    path[1] = address(_CHURCH);

    uint256[] memory amountsOut = ISwapRouter(routerAddress).getAmountsOut(10**18, path);
    return amountsOut[1];
  }

  function depositLiquidity(uint256 amount) external nonReentrant {
    if (!hasRole(DEPLOYER_ROLE, msg.sender))
      require(block.timestamp > 1652102227, "Not yet enabled");

    liquidityLocked[msg.sender] = block.timestamp;
    _LPToken.transferFrom(msg.sender, address(this), amount);

    _claim();

    rewards[currentCycle].totalShares += amount;
    _userPositions[msg.sender].shares += amount;

    emit Deposit(msg.sender, amount);
  }

  function withdrawLiquidity(uint256 amount) external nonReentrant {
    require((liquidityLocked[msg.sender] + 7 days) < block.timestamp, 'your liquidity is locked');

    rewards[currentCycle].totalShares -= amount;

    UserPosition storage position = _userPositions[msg.sender];
    require(position.shares >= amount, 'Can not withdraw this amount');

    _claim();

    _LPToken.transfer(msg.sender, amount);
    _userPositions[msg.sender].shares -= amount;

    emit Withdrawl(msg.sender, amount);
  }

  function blessEggs(address user, uint256 amount) external nonReentrant {
    require(balanceOf(msg.sender) >= amount, 'You do not have enough BLESSINGS');
    _burn(msg.sender, amount);
    _Eggs.blessEggs(user, amount);

    emit BlessEggs(msg.sender, user, amount);
  }

  function addReward(uint256 rewardAmount) external onlyRole(REWARDER_ROLE) {
    require(rewardAmount > 0, 'Reward amount can not be zero');
    RewardData storage reward = rewards[currentCycle];
    reward.rewardAmount = rewardAmount;

    currentCycle += 1;
    rewards[currentCycle].totalShares = reward.totalShares;

    _cumulativeRewardSupply += rewardAmount;
    _CHURCH.transferFrom(msg.sender, address(this), rewardAmount);

    emit AddReward(rewardAmount);
  }

  function claim() external nonReentrant {
    _claim();
  }

  function _claim() internal {
    require(!frozen, 'rewards are frozen');
    UserPosition storage position = _userPositions[msg.sender];

    uint256 toClaim = churchToClaimForPosition(position);
    if (toClaim > 0) _CHURCH.transfer(msg.sender, toClaim);
    _mint(msg.sender, blessingsToClaimForPosition(position));

    position.entryCycle = currentCycle;
    position.blessingsClaimedAt = block.number;
  }

  function churchToClaim() public view returns (uint256) {
    return churchToClaimForUser(msg.sender);
  }

  function churchToClaimForUser(address user) public view returns (uint256) {
    UserPosition memory position = _userPositions[user];
    return churchToClaimForPosition(position);
  }

  function churchToClaimForPosition(UserPosition memory position) internal view returns (uint256) {
    uint256 toClaim;

    uint256 currentChurchSupply = _CHURCH.balanceOf(address(this));
    for(uint256 cycleIndex = position.entryCycle; cycleIndex < currentCycle; cycleIndex++)
      toClaim += amountToClaimForCycle(position, cycleIndex, currentChurchSupply);

    return toClaim;
  }

  function blessingsToClaim() public view returns (uint256) {
    return blessingsToClaimForUser(msg.sender);
  }

  function blessingsToClaimForUser(address user) public view returns (uint256) {
    UserPosition memory position = _userPositions[user];
    return blessingsToClaimForPosition(position);
  }

  function blessingsToClaimForPosition(UserPosition memory position) internal view returns (uint256) {
    return position.shares * (block.number - position.blessingsClaimedAt) / 1000;
  }

  function toggleFrozen() public onlyRole(DEPLOYER_ROLE) {
    frozen = !frozen;
  }

  function setRewarderWallet(address addr) public onlyRole(DEPLOYER_ROLE) {
    rewarderWallet = addr;
  }

}

File 2 of 15 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

File 3 of 15 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 4 of 15 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

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

pragma solidity ^0.8.0;

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

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

File 6 of 15 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

File 7 of 15 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

File 8 of 15 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

File 9 of 15 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

File 10 of 15 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    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;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, _allowances[owner][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = _allowances[owner][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    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;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

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

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

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

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

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

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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Spend `amount` form the allowance of `owner` toward `spender`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    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);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

File 11 of 15 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 12 of 15 : IAccessControl.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol)

pragma solidity ^0.8.0;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {AccessControl-_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) external view returns (bool);

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {AccessControl-_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) external;
}

File 13 of 15 : AccessControl.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (access/AccessControl.sol)

pragma solidity ^0.8.0;

import "./IAccessControl.sol";
import "../utils/Context.sol";
import "../utils/Strings.sol";
import "../utils/introspection/ERC165.sol";

/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role, _msgSender());
        _;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view virtual override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     */
    function _checkRole(bytes32 role, address account) internal view virtual {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        Strings.toHexString(uint160(account), 20),
                        " is missing role ",
                        Strings.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been revoked `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     *
     * NOTE: This function is deprecated in favor of {_grantRole}.
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        bytes32 previousAdminRole = getRoleAdmin(role);
        _roles[role].adminRole = adminRole;
        emit RoleAdminChanged(role, previousAdminRole, adminRole);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * Internal function without access restriction.
     */
    function _grantRole(bytes32 role, address account) internal virtual {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * Internal function without access restriction.
     */
    function _revokeRole(bytes32 role, address account) internal virtual {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

File 14 of 15 : ISwapRouter.sol
pragma solidity >=0.6.2;

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

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

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



    // TO SUPPORT AVALANCH NETWORK:
    function addLiquidityAVAX(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidityAVAX(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityAVAXWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactAVAXForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactAVAX(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForAVAX(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapAVAXForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
}

File 15 of 15 : IEggs.sol
pragma solidity >=0.8.7;

import "../node_modules/@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol";

interface IEggs is IERC721Enumerable {

  function userBlessings(
    address user
  ) external view returns (uint256);

  function totalBlessings() external view returns (uint256);

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

  function blessEggs(
    address user,
    uint256 amount
  ) external;
}

Settings
{
  "remappings": [],
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "evmVersion": "byzantium",
  "libraries": {},
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"lpAddress","type":"address"},{"internalType":"address","name":"_rewarderWallet","type":"address"},{"internalType":"address","name":"eggAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"AddReward","type":"event"},{"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":false,"internalType":"address","name":"blesser","type":"address"},{"indexed":false,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"BlessEggs","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"user","type":"address"}],"name":"Claim","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","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":false,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdrawl","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEPLOYER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REWARDER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_CHURCH","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_Eggs","outputs":[{"internalType":"contract IEggs","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_LPToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_cumulativeRewardSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_userPositions","outputs":[{"internalType":"uint256","name":"blessingsClaimedAt","type":"uint256"},{"internalType":"uint256","name":"entryCycle","type":"uint256"},{"internalType":"uint256","name":"shares","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rewardAmount","type":"uint256"}],"name":"addReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"amountLocked","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"amountsToClaim","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"amountsToClaimForUser","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"blessEggs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"blessingsToClaim","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"blessingsToClaimForUser","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"churchPerETH","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"churchToClaim","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"churchToClaimForUser","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"currentCycle","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"depositLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"frozen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getInfo","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"liquidityLocked","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewarderWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"rewards","outputs":[{"internalType":"uint256","name":"totalShares","type":"uint256"},{"internalType":"uint256","name":"rewardAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"routerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"setRewarderWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleFrozen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"uint256","name":"amount","type":"uint256"}],"name":"withdrawLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040527371018cc3d0ccdc7e10c48550554ce4d4e3afd9c173ffffffffffffffffffffffffffffffffffffffff1660809073ffffffffffffffffffffffffffffffffffffffff16815250737a250d5630b4cf539739df2c5dacb4c659f2488d600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506305f5e10060a090815250348015620000b857600080fd5b5060405162005874380380620058748339818101604052810190620000de919062000575565b6040518060400160405280601281526020017f426c6573736564204279202443485552434800000000000000000000000000008152506040518060400160405280600981526020017f424c455353494e47530000000000000000000000000000000000000000000000815250600180819055508160059080519060200190620001699291906200045b565b508060069080519060200190620001829291906200045b565b505050620001a4600060010233620002e6640100000000026401000000009004565b620001df7fbeec13769b5f410b0584f69811bfd923818456d5edcf426b0e31cf90eed7a3f683620002e6640100000000026401000000009004565b6200021a7ffc425f2263d0df187444b70e47283d622c70181c5baebb1306a01edba1ce184c33620002e6640100000000026401000000009004565b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505062000636565b620003018282620003e9640100000000026401000000009004565b620003e557600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200038a62000453640100000000026401000000009004565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b828054620004699062000600565b90600052602060002090601f0160209004810192826200048d5760008555620004d9565b82601f10620004a857805160ff1916838001178555620004d9565b82800160010185558215620004d9579182015b82811115620004d8578251825591602001919060010190620004bb565b5b509050620004e89190620004ec565b5090565b5b8082111562000507576000816000905550600101620004ed565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200053d8262000510565b9050919050565b6200054f8162000530565b81146200055b57600080fd5b50565b6000815190506200056f8162000544565b92915050565b6000806000606084860312156200059157620005906200050b565b5b6000620005a1868287016200055e565b9350506020620005b4868287016200055e565b9250506040620005c7868287016200055e565b9150509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200061957607f821691505b6020821081141562000630576200062f620005d1565b5b50919050565b60805160a0516151d2620006a26000396000818161394f01528181613992015281816139cb01526139ec015260008181610a760152818161103401528181611557015281816121e9015281816122bf0152818161248401528181612b6e015261322601526151d26000f3fe608060405234801561001057600080fd5b50600436106102b2576000357c0100000000000000000000000000000000000000000000000000000000900480635bf736ff11610184578063a217fddf116100eb578063d547741f116100a4578063d547741f1461084d578063dd62ed3e14610869578063ecd0026114610899578063f301af42146108b7578063f6c788b2146108e8578063ffdd5cf114610918576102b2565b8063a217fddf14610777578063a3f2f68a14610795578063a457c2d7146107b3578063a9059cbb146107e3578063bab2f55214610813578063c09b871d14610831576102b2565b80638580cf761161013d5780638580cf761461068b5780638a781473146106a957806391d14854146106db5780639585dbd51461070b57806395baf5c41461073b57806395d89b4114610759576102b2565b80635bf736ff146105c957806370a08231146105e757806374de4ec41461061757806376046e591461063357806376d58e1a1461065157806385688d391461066d576102b2565b806323b872dd1161022857806336568abe116101e157806336568abe1461050957806339509351146105255780633e4be6391461055557806347d926c91461055f5780634886734e1461058f5780634e71d92d146105bf576102b2565b806323b872dd14610421578063248a9ca3146104515780632f147129146104815780632f2ff15d146104b1578063313ce567146104cd5780633268cc56146104eb576102b2565b80630a861f2a1161027a5780630a861f2a146103715780630f2fea2e1461038d57806318160ddd146103a95780631a124024146103c75780631ab130e8146103e55780631b8f96b314610403576102b2565b806301ffc9a7146102b75780630528dcc1146102e7578063054f7d9c1461030557806306fdde0314610323578063095ea7b314610341575b600080fd5b6102d160048036038101906102cc9190613ab3565b610948565b6040516102de9190613afb565b60405180910390f35b6102ef6109c2565b6040516102fc9190613b2f565b60405180910390f35b61030d610bd1565b60405161031a9190613afb565b60405180910390f35b61032b610be4565b6040516103389190613be3565b60405180910390f35b61035b60048036038101906103569190613c8f565b610c76565b6040516103689190613afb565b60405180910390f35b61038b60048036038101906103869190613ccf565b610c99565b005b6103a760048036038101906103a29190613cfc565b610f91565b005b6103b1611008565b6040516103be9190613b2f565b60405180910390f35b6103cf611012565b6040516103dc9190613b2f565b60405180910390f35b6103ed611022565b6040516103fa9190613b2f565b60405180910390f35b61040b611032565b6040516104189190613d88565b60405180910390f35b61043b60048036038101906104369190613da3565b611056565b6040516104489190613afb565b60405180910390f35b61046b60048036038101906104669190613e2c565b611085565b6040516104789190613e68565b60405180910390f35b61049b60048036038101906104969190613cfc565b6110a4565b6040516104a89190613b2f565b60405180910390f35b6104cb60048036038101906104c69190613e83565b611122565b005b6104d561114b565b6040516104e29190613edf565b60405180910390f35b6104f3611154565b6040516105009190613f09565b60405180910390f35b610523600480360381019061051e9190613e83565b61117a565b005b61053f600480360381019061053a9190613c8f565b6111fd565b60405161054c9190613afb565b60405180910390f35b61055d6112a7565b005b61057960048036038101906105749190613cfc565b611306565b6040516105869190613b2f565b60405180910390f35b6105a960048036038101906105a49190613cfc565b61131e565b6040516105b69190613b2f565b60405180910390f35b6105c761139c565b005b6105d16113fb565b6040516105de9190613f09565b60405180910390f35b61060160048036038101906105fc9190613cfc565b611421565b60405161060e9190613b2f565b60405180910390f35b610631600480360381019061062c9190613ccf565b61146a565b005b61063b61164e565b6040516106489190613b2f565b60405180910390f35b61066b60048036038101906106669190613ccf565b611654565b005b6106756118ed565b6040516106829190613f45565b60405180910390f35b610693611913565b6040516106a09190613e68565b60405180910390f35b6106c360048036038101906106be9190613cfc565b611937565b6040516106d293929190613f60565b60405180910390f35b6106f560048036038101906106f09190613e83565b611961565b6040516107029190613afb565b60405180910390f35b61072560048036038101906107209190613cfc565b6119cb565b6040516107329190614055565b60405180910390f35b610743611a76565b6040516107509190613d88565b60405180910390f35b610761611a9c565b60405161076e9190613be3565b60405180910390f35b61077f611b2e565b60405161078c9190613e68565b60405180910390f35b61079d611b36565b6040516107aa9190614055565b60405180910390f35b6107cd60048036038101906107c89190613c8f565b611b46565b6040516107da9190613afb565b60405180910390f35b6107fd60048036038101906107f89190613c8f565b611c30565b60405161080a9190613afb565b60405180910390f35b61081b611c53565b6040516108289190613b2f565b60405180910390f35b61084b60048036038101906108469190613c8f565b611c59565b005b61086760048036038101906108629190613e83565b611ded565b005b610883600480360381019061087e9190614077565b611e16565b6040516108909190613b2f565b60405180910390f35b6108a1611e9d565b6040516108ae9190613e68565b60405180910390f35b6108d160048036038101906108cc9190613ccf565b611ec1565b6040516108df9291906140b7565b60405180910390f35b61090260048036038101906108fd9190613cfc565b611ee5565b60405161090f9190613b2f565b60405180910390f35b610932600480360381019061092d9190613cfc565b611f31565b60405161093f9190614055565b60405180910390f35b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109bb57506109ba8261285d565b5b9050919050565b600080600267ffffffffffffffff8111156109e0576109df6140e0565b5b604051908082528060200260200182016040528015610a0e5781602001602082028036833780820191505090505b50905073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281600081518110610a3a57610a3961410f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000081600181518110610aa957610aa861410f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d06ca61f670de0b6b3a7640000846040518363ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401610b66929190614237565b600060405180830381865afa158015610b83573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190610bac9190614395565b905080600181518110610bc257610bc161410f565b5b60200260200101519250505090565b600f60149054906101000a900460ff1681565b606060058054610bf39061440d565b80601f0160208091040260200160405190810160405280929190818152602001828054610c1f9061440d565b8015610c6c5780601f10610c4157610100808354040283529160200191610c6c565b820191906000526020600020905b815481529060010190602001808311610c4f57829003601f168201915b5050505050905090565b600080610c816128c7565b9050610c8e8185856128cf565b600191505092915050565b60026001541415610cdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd69061448b565b60405180910390fd5b60026001819055504262093a80600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d3691906144da565b10610d76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6d9061457c565b60405180910390fd5b806008600060075481526020019081526020016000206000016000828254610d9e919061459c565b925050819055506000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090508181600201541015610e2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e269061461c565b60405180910390fd5b610e37612a9a565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33846040518363ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401610eb092919061463c565b6020604051808303816000875af1158015610ecf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ef39190614691565b5081600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206002016000828254610f46919061459c565b925050819055507f65ac0d8bb8cbc0e989ebd02ddc5161d7c499f7c21792e43fcf170314fe6bcc3f3383604051610f7e92919061463c565b60405180910390a1506001808190555050565b7ffc425f2263d0df187444b70e47283d622c70181c5baebb1306a01edba1ce184c610fc381610fbe6128c7565b612c7b565b81600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b6000600454905090565b600061101d336110a4565b905090565b600061102d3361131e565b905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000806110616128c7565b905061106e858285612d19565b611079858585612da5565b60019150509392505050565b6000806000838152602001908152602001600020600101549050919050565b600080600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060600160405290816000820154815260200160018201548152602001600282015481525050905061111a81613029565b915050919050565b61112b82611085565b61113c816111376128c7565b612c7b565b611146838361305e565b505050565b60006012905090565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6111826128c7565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146111ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e690614730565b60405180910390fd5b6111f9828261313e565b5050565b6000806112086128c7565b905061129c818585600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461129791906144da565b6128cf565b600191505092915050565b7ffc425f2263d0df187444b70e47283d622c70181c5baebb1306a01edba1ce184c6112d9816112d46128c7565b612c7b565b600f60149054906101000a900460ff1615600f60146101000a81548160ff02191690831515021790555050565b600a6020528060005260406000206000915090505481565b600080600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020604051806060016040529081600082015481526020016001820154815260200160028201548152505090506113948161321f565b915050919050565b600260015414156113e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d99061448b565b60405180910390fd5b60026001819055506113f2612a9a565b60018081905550565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b7fbeec13769b5f410b0584f69811bfd923818456d5edcf426b0e31cf90eed7a3f661149c816114976128c7565b612c7b565b600082116114df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d69061479c565b60405180910390fd5b6000600860006007548152602001908152602001600020905082816001018190555060016007600082825461151491906144da565b9250508190555080600001546008600060075481526020019081526020016000206000018190555082600b600082825461154e91906144da565b925050819055507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166323b872dd3330866040518463ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004016115ce939291906147bc565b6020604051808303816000875af11580156115ed573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116119190614691565b507f66a8e26e051c82fd4be27a3e7b8a9969547f1a14535ced3777e153717b5a2d84836040516116419190613b2f565b60405180910390a1505050565b600b5481565b6002600154141561169a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116919061448b565b60405180910390fd5b60026001819055506116cc7ffc425f2263d0df187444b70e47283d622c70181c5baebb1306a01edba1ce184c33611961565b6117175763627914534211611716576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170d9061483f565b60405180910390fd5b5b42600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330846040518463ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004016117d6939291906147bc565b6020604051808303816000875af11580156117f5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118199190614691565b50611822612a9a565b80600860006007548152602001908152602001600020600001600082825461184a91906144da565b9250508190555080600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020160008282546118a391906144da565b925050819055507fe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c33826040516118db92919061463c565b60405180910390a16001808190555050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7fbeec13769b5f410b0584f69811bfd923818456d5edcf426b0e31cf90eed7a3f681565b60096020528060005260406000206000915090508060000154908060010154908060020154905083565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60606000600267ffffffffffffffff8111156119ea576119e96140e0565b5b604051908082528060200260200182016040528015611a185781602001602082028036833780820191505090505b509050611a248361131e565b81600081518110611a3857611a3761410f565b5b602002602001018181525050611a4d836110a4565b81600181518110611a6157611a6061410f565b5b60200260200101818152505080915050919050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060068054611aab9061440d565b80601f0160208091040260200160405190810160405280929190818152602001828054611ad79061440d565b8015611b245780601f10611af957610100808354040283529160200191611b24565b820191906000526020600020905b815481529060010190602001808311611b0757829003601f168201915b5050505050905090565b600060010281565b6060611b41336119cb565b905090565b600080611b516128c7565b90506000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015611c17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0e906148d1565b60405180910390fd5b611c2482868684036128cf565b60019250505092915050565b600080611c3b6128c7565b9050611c48818585612da5565b600191505092915050565b60075481565b60026001541415611c9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c969061448b565b60405180910390fd5b600260018190555080611cb133611421565b1015611cf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce99061493d565b60405180910390fd5b611cfc3382613326565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c09b871d83836040518363ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401611d7592919061463c565b600060405180830381600087803b158015611d8f57600080fd5b505af1158015611da3573d6000803e3d6000fd5b505050507fbad607f78357e64dd65c084751c05c4d06a0ce5b2989eb1779bbfa2a33913ce4338383604051611dda939291906147bc565b60405180910390a1600180819055505050565b611df682611085565b611e0781611e026128c7565b612c7b565b611e11838361313e565b505050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7ffc425f2263d0df187444b70e47283d622c70181c5baebb1306a01edba1ce184c81565b60086020528060005260406000206000915090508060000154908060010154905082565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600201549050919050565b60606000600e67ffffffffffffffff811115611f5057611f4f6140e0565b5b604051908082528060200260200182016040528015611f7e5781602001602082028036833780820191505090505b509050600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401611ff89190613f09565b602060405180830381865afa158015612015573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612039919061495d565b8160008151811061204d5761204c61410f565b5b602002602001018181525050600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e84306040518363ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004016120d292919061498a565b602060405180830381865afa1580156120ef573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612113919061495d565b816001815181106121275761212661410f565b5b60200260200101818152505061213c83611ee5565b816002815181106121505761214f61410f565b5b60200260200101818152505060086000600754815260200190815260200160002060000154816003815181106121895761218861410f565b5b60200260200101818152505061219e836110a4565b816004815181106121b2576121b161410f565b5b6020026020010181815250506121c783611421565b816005815181106121db576121da61410f565b5b6020026020010181815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040161225c9190613f09565b602060405180830381865afa158015612279573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061229d919061495d565b816006815181106122b1576122b061410f565b5b6020026020010181815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166370a08231600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004016123549190613f09565b602060405180830381865afa158015612371573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612395919061495d565b816007815181106123a9576123a861410f565b5b602002602001018181525050600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401602060405180830381865afa15801561243e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612462919061495d565b816008815181106124765761247561410f565b5b6020026020010181815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166370a08231600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004016125199190613f09565b602060405180830381865afa158015612536573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061255a919061495d565b8160098151811061256e5761256d61410f565b5b6020026020010181815250506125826109c2565b81600a815181106125965761259561410f565b5b602002602001018181525050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461278757600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040161264d9190613f09565b602060405180830381865afa15801561266a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061268e919061495d565b81600b815181106126a2576126a161410f565b5b602002602001018181525050600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663762208ec846040518263ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004016127259190613f09565b602060405180830381865afa158015612742573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612766919061495d565b81600c8151811061277a5761277961410f565b5b6020026020010181815250505b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16631f7411076040518163ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401602060405180830381865afa158015612810573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612834919061495d565b81600d815181106128485761284761410f565b5b60200260200101818152505080915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561293f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293690614a25565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a690614ab7565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612a8d9190613b2f565b60405180910390a3505050565b600f60149054906101000a900460ff1615612aea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae190614b23565b60405180910390fd5b6000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090506000612b6182604051806060016040529081600082015481526020016001820154815260200160028201548152505061321f565b90506000811115612c28577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401612be392919061463c565b6020604051808303816000875af1158015612c02573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c269190614691565b505b612c6333612c5e846040518060600160405290816000820154815260200160018201548152602001600282015481525050613029565b6134ff565b60075482600101819055504382600001819055505050565b612c858282611961565b612d1557612caa8173ffffffffffffffffffffffffffffffffffffffff166014613660565b612cb983600190046020613660565b604051602001612cca929190614c17565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0c9190613be3565b60405180910390fd5b5050565b6000612d258484611e16565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114612d9f5781811015612d91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8890614c9d565b60405180910390fd5b612d9e84848484036128cf565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612e15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e0c90614d2f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e7c90614dc1565b60405180910390fd5b612e908383836138c3565b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612f17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0e90614e53565b60405180910390fd5b818103600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612fac91906144da565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516130109190613b2f565b60405180910390a36130238484846138c8565b50505050565b60006103e882600001514361303e919061459c565b836040015161304d9190614e73565b6130579190614efc565b9050919050565b6130688282611961565b61313a57600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506130df6128c7565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6131488282611961565b1561321b57600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506131c06128c7565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b60008060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004016132999190613f09565b602060405180830381865afa1580156132b6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906132da919061495d565b90506000846020015190505b60075481101561331b576132fb8582846138cd565b8361330691906144da565b9250808061331390614f2d565b9150506132e6565b508192505050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613396576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161338d90614fe8565b60405180910390fd5b6133a2826000836138c3565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613429576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134209061507a565b60405180910390fd5b818103600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160046000828254613481919061459c565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516134e69190613b2f565b60405180910390a36134fa836000846138c8565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561356f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613566906150e6565b60405180910390fd5b61357b600083836138c3565b806004600082825461358d91906144da565b9250508190555080600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546135e391906144da565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516136489190613b2f565b60405180910390a361365c600083836138c8565b5050565b6060600060028360026136739190614e73565b61367d91906144da565b67ffffffffffffffff811115613696576136956140e0565b5b6040519080825280601f01601f1916602001820160405280156136c85781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110613700576136ff61410f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106137645761376361410f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026137a49190614e73565b6137ae91906144da565b90505b6001811115613875577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106137f0576137ef61410f565b5b1a7f0100000000000000000000000000000000000000000000000000000000000000028282815181106138265761382561410f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485908060020a820491505094508061386e90615106565b90506137b1565b50600084146138b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138b09061517c565b60405180910390fd5b8091505092915050565b505050565b505050565b600083602001518310156138e45760009050613a40565b60075483106138f65760009050613a40565b600060086000858152602001908152602001600020604051806040016040529081600082015481526020016001820154815250509050600081600001511415613943576000915050613a40565b6000600b5482602001517f00000000000000000000000000000000000000000000000000000000000000006139789190614e73565b6139829190614efc565b90506000826000015187604001517f00000000000000000000000000000000000000000000000000000000000000006139bb9190614e73565b6139c59190614efc565b905060007f00000000000000000000000000000000000000000000000000000000000000007f0000000000000000000000000000000000000000000000000000000000000000613a159190614e73565b868484613a229190614e73565b613a2c9190614e73565b613a369190614efc565b9050809450505050505b9392505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613a9081613a5b565b8114613a9b57600080fd5b50565b600081359050613aad81613a87565b92915050565b600060208284031215613ac957613ac8613a51565b5b6000613ad784828501613a9e565b91505092915050565b60008115159050919050565b613af581613ae0565b82525050565b6000602082019050613b106000830184613aec565b92915050565b6000819050919050565b613b2981613b16565b82525050565b6000602082019050613b446000830184613b20565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613b84578082015181840152602081019050613b69565b83811115613b93576000848401525b50505050565b6000601f19601f8301169050919050565b6000613bb582613b4a565b613bbf8185613b55565b9350613bcf818560208601613b66565b613bd881613b99565b840191505092915050565b60006020820190508181036000830152613bfd8184613baa565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613c3082613c05565b9050919050565b613c4081613c25565b8114613c4b57600080fd5b50565b600081359050613c5d81613c37565b92915050565b613c6c81613b16565b8114613c7757600080fd5b50565b600081359050613c8981613c63565b92915050565b60008060408385031215613ca657613ca5613a51565b5b6000613cb485828601613c4e565b9250506020613cc585828601613c7a565b9150509250929050565b600060208284031215613ce557613ce4613a51565b5b6000613cf384828501613c7a565b91505092915050565b600060208284031215613d1257613d11613a51565b5b6000613d2084828501613c4e565b91505092915050565b6000819050919050565b6000613d4e613d49613d4484613c05565b613d29565b613c05565b9050919050565b6000613d6082613d33565b9050919050565b6000613d7282613d55565b9050919050565b613d8281613d67565b82525050565b6000602082019050613d9d6000830184613d79565b92915050565b600080600060608486031215613dbc57613dbb613a51565b5b6000613dca86828701613c4e565b9350506020613ddb86828701613c4e565b9250506040613dec86828701613c7a565b9150509250925092565b6000819050919050565b613e0981613df6565b8114613e1457600080fd5b50565b600081359050613e2681613e00565b92915050565b600060208284031215613e4257613e41613a51565b5b6000613e5084828501613e17565b91505092915050565b613e6281613df6565b82525050565b6000602082019050613e7d6000830184613e59565b92915050565b60008060408385031215613e9a57613e99613a51565b5b6000613ea885828601613e17565b9250506020613eb985828601613c4e565b9150509250929050565b600060ff82169050919050565b613ed981613ec3565b82525050565b6000602082019050613ef46000830184613ed0565b92915050565b613f0381613c25565b82525050565b6000602082019050613f1e6000830184613efa565b92915050565b6000613f2f82613d55565b9050919050565b613f3f81613f24565b82525050565b6000602082019050613f5a6000830184613f36565b92915050565b6000606082019050613f756000830186613b20565b613f826020830185613b20565b613f8f6040830184613b20565b949350505050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613fcc81613b16565b82525050565b6000613fde8383613fc3565b60208301905092915050565b6000602082019050919050565b600061400282613f97565b61400c8185613fa2565b935061401783613fb3565b8060005b8381101561404857815161402f8882613fd2565b975061403a83613fea565b92505060018101905061401b565b5085935050505092915050565b6000602082019050818103600083015261406f8184613ff7565b905092915050565b6000806040838503121561408e5761408d613a51565b5b600061409c85828601613c4e565b92505060206140ad85828601613c4e565b9150509250929050565b60006040820190506140cc6000830185613b20565b6140d96020830184613b20565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b600061416361415e6141598461413e565b613d29565b613b16565b9050919050565b61417381614148565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6141ae81613c25565b82525050565b60006141c083836141a5565b60208301905092915050565b6000602082019050919050565b60006141e482614179565b6141ee8185614184565b93506141f983614195565b8060005b8381101561422a57815161421188826141b4565b975061421c836141cc565b9250506001810190506141fd565b5085935050505092915050565b600060408201905061424c600083018561416a565b818103602083015261425e81846141d9565b90509392505050565b600080fd5b61427582613b99565b810181811067ffffffffffffffff82111715614294576142936140e0565b5b80604052505050565b60006142a7613a47565b90506142b3828261426c565b919050565b600067ffffffffffffffff8211156142d3576142d26140e0565b5b602082029050602081019050919050565b600080fd5b6000815190506142f881613c63565b92915050565b600061431161430c846142b8565b61429d565b90508083825260208201905060208402830185811115614334576143336142e4565b5b835b8181101561435d578061434988826142e9565b845260208401935050602081019050614336565b5050509392505050565b600082601f83011261437c5761437b614267565b5b815161438c8482602086016142fe565b91505092915050565b6000602082840312156143ab576143aa613a51565b5b600082015167ffffffffffffffff8111156143c9576143c8613a56565b5b6143d584828501614367565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061442557607f821691505b60208210811415614439576144386143de565b5b50919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000614475601f83613b55565b91506144808261443f565b602082019050919050565b600060208201905081810360008301526144a481614468565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006144e582613b16565b91506144f083613b16565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614525576145246144ab565b5b828201905092915050565b7f796f7572206c6971756964697479206973206c6f636b65640000000000000000600082015250565b6000614566601883613b55565b915061457182614530565b602082019050919050565b6000602082019050818103600083015261459581614559565b9050919050565b60006145a782613b16565b91506145b283613b16565b9250828210156145c5576145c46144ab565b5b828203905092915050565b7f43616e206e6f74207769746864726177207468697320616d6f756e7400000000600082015250565b6000614606601c83613b55565b9150614611826145d0565b602082019050919050565b60006020820190508181036000830152614635816145f9565b9050919050565b60006040820190506146516000830185613efa565b61465e6020830184613b20565b9392505050565b61466e81613ae0565b811461467957600080fd5b50565b60008151905061468b81614665565b92915050565b6000602082840312156146a7576146a6613a51565b5b60006146b58482850161467c565b91505092915050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b600061471a602f83613b55565b9150614725826146be565b604082019050919050565b600060208201905081810360008301526147498161470d565b9050919050565b7f52657761726420616d6f756e742063616e206e6f74206265207a65726f000000600082015250565b6000614786601d83613b55565b915061479182614750565b602082019050919050565b600060208201905081810360008301526147b581614779565b9050919050565b60006060820190506147d16000830186613efa565b6147de6020830185613efa565b6147eb6040830184613b20565b949350505050565b7f4e6f742079657420656e61626c65640000000000000000000000000000000000600082015250565b6000614829600f83613b55565b9150614834826147f3565b602082019050919050565b600060208201905081810360008301526148588161481c565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006148bb602583613b55565b91506148c68261485f565b604082019050919050565b600060208201905081810360008301526148ea816148ae565b9050919050565b7f596f7520646f206e6f74206861766520656e6f75676820424c455353494e4753600082015250565b6000614927602083613b55565b9150614932826148f1565b602082019050919050565b600060208201905081810360008301526149568161491a565b9050919050565b60006020828403121561497357614972613a51565b5b6000614981848285016142e9565b91505092915050565b600060408201905061499f6000830185613efa565b6149ac6020830184613efa565b9392505050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614a0f602483613b55565b9150614a1a826149b3565b604082019050919050565b60006020820190508181036000830152614a3e81614a02565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614aa1602283613b55565b9150614aac82614a45565b604082019050919050565b60006020820190508181036000830152614ad081614a94565b9050919050565b7f72657761726473206172652066726f7a656e0000000000000000000000000000600082015250565b6000614b0d601283613b55565b9150614b1882614ad7565b602082019050919050565b60006020820190508181036000830152614b3c81614b00565b9050919050565b600081905092915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b6000614b84601783614b43565b9150614b8f82614b4e565b601782019050919050565b6000614ba582613b4a565b614baf8185614b43565b9350614bbf818560208601613b66565b80840191505092915050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b6000614c01601183614b43565b9150614c0c82614bcb565b601182019050919050565b6000614c2282614b77565b9150614c2e8285614b9a565b9150614c3982614bf4565b9150614c458284614b9a565b91508190509392505050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000614c87601d83613b55565b9150614c9282614c51565b602082019050919050565b60006020820190508181036000830152614cb681614c7a565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614d19602583613b55565b9150614d2482614cbd565b604082019050919050565b60006020820190508181036000830152614d4881614d0c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614dab602383613b55565b9150614db682614d4f565b604082019050919050565b60006020820190508181036000830152614dda81614d9e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614e3d602683613b55565b9150614e4882614de1565b604082019050919050565b60006020820190508181036000830152614e6c81614e30565b9050919050565b6000614e7e82613b16565b9150614e8983613b16565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614ec257614ec16144ab565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614f0782613b16565b9150614f1283613b16565b925082614f2257614f21614ecd565b5b828204905092915050565b6000614f3882613b16565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614f6b57614f6a6144ab565b5b600182019050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614fd2602183613b55565b9150614fdd82614f76565b604082019050919050565b6000602082019050818103600083015261500181614fc5565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000615064602283613b55565b915061506f82615008565b604082019050919050565b6000602082019050818103600083015261509381615057565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006150d0601f83613b55565b91506150db8261509a565b602082019050919050565b600060208201905081810360008301526150ff816150c3565b9050919050565b600061511182613b16565b91506000821415615125576151246144ab565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b6000615166602083613b55565b915061517182615130565b602082019050919050565b6000602082019050818103600083015261519581615159565b905091905056fea26469706673582212206786825df8bf926cf0714a8cc06d3b28fcbd3dc7f9a7a9a95ccc15e9f23f51a764736f6c634300080c00330000000000000000000000007d3e6457ade26434f8046c405410488f1985065a0000000000000000000000009f70d8dddfa8abc6495d3d06632d2846b97bf7ba00000000000000000000000003d370b4ea3fc84c857bdf2782adf7514c272f31

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102b2576000357c0100000000000000000000000000000000000000000000000000000000900480635bf736ff11610184578063a217fddf116100eb578063d547741f116100a4578063d547741f1461084d578063dd62ed3e14610869578063ecd0026114610899578063f301af42146108b7578063f6c788b2146108e8578063ffdd5cf114610918576102b2565b8063a217fddf14610777578063a3f2f68a14610795578063a457c2d7146107b3578063a9059cbb146107e3578063bab2f55214610813578063c09b871d14610831576102b2565b80638580cf761161013d5780638580cf761461068b5780638a781473146106a957806391d14854146106db5780639585dbd51461070b57806395baf5c41461073b57806395d89b4114610759576102b2565b80635bf736ff146105c957806370a08231146105e757806374de4ec41461061757806376046e591461063357806376d58e1a1461065157806385688d391461066d576102b2565b806323b872dd1161022857806336568abe116101e157806336568abe1461050957806339509351146105255780633e4be6391461055557806347d926c91461055f5780634886734e1461058f5780634e71d92d146105bf576102b2565b806323b872dd14610421578063248a9ca3146104515780632f147129146104815780632f2ff15d146104b1578063313ce567146104cd5780633268cc56146104eb576102b2565b80630a861f2a1161027a5780630a861f2a146103715780630f2fea2e1461038d57806318160ddd146103a95780631a124024146103c75780631ab130e8146103e55780631b8f96b314610403576102b2565b806301ffc9a7146102b75780630528dcc1146102e7578063054f7d9c1461030557806306fdde0314610323578063095ea7b314610341575b600080fd5b6102d160048036038101906102cc9190613ab3565b610948565b6040516102de9190613afb565b60405180910390f35b6102ef6109c2565b6040516102fc9190613b2f565b60405180910390f35b61030d610bd1565b60405161031a9190613afb565b60405180910390f35b61032b610be4565b6040516103389190613be3565b60405180910390f35b61035b60048036038101906103569190613c8f565b610c76565b6040516103689190613afb565b60405180910390f35b61038b60048036038101906103869190613ccf565b610c99565b005b6103a760048036038101906103a29190613cfc565b610f91565b005b6103b1611008565b6040516103be9190613b2f565b60405180910390f35b6103cf611012565b6040516103dc9190613b2f565b60405180910390f35b6103ed611022565b6040516103fa9190613b2f565b60405180910390f35b61040b611032565b6040516104189190613d88565b60405180910390f35b61043b60048036038101906104369190613da3565b611056565b6040516104489190613afb565b60405180910390f35b61046b60048036038101906104669190613e2c565b611085565b6040516104789190613e68565b60405180910390f35b61049b60048036038101906104969190613cfc565b6110a4565b6040516104a89190613b2f565b60405180910390f35b6104cb60048036038101906104c69190613e83565b611122565b005b6104d561114b565b6040516104e29190613edf565b60405180910390f35b6104f3611154565b6040516105009190613f09565b60405180910390f35b610523600480360381019061051e9190613e83565b61117a565b005b61053f600480360381019061053a9190613c8f565b6111fd565b60405161054c9190613afb565b60405180910390f35b61055d6112a7565b005b61057960048036038101906105749190613cfc565b611306565b6040516105869190613b2f565b60405180910390f35b6105a960048036038101906105a49190613cfc565b61131e565b6040516105b69190613b2f565b60405180910390f35b6105c761139c565b005b6105d16113fb565b6040516105de9190613f09565b60405180910390f35b61060160048036038101906105fc9190613cfc565b611421565b60405161060e9190613b2f565b60405180910390f35b610631600480360381019061062c9190613ccf565b61146a565b005b61063b61164e565b6040516106489190613b2f565b60405180910390f35b61066b60048036038101906106669190613ccf565b611654565b005b6106756118ed565b6040516106829190613f45565b60405180910390f35b610693611913565b6040516106a09190613e68565b60405180910390f35b6106c360048036038101906106be9190613cfc565b611937565b6040516106d293929190613f60565b60405180910390f35b6106f560048036038101906106f09190613e83565b611961565b6040516107029190613afb565b60405180910390f35b61072560048036038101906107209190613cfc565b6119cb565b6040516107329190614055565b60405180910390f35b610743611a76565b6040516107509190613d88565b60405180910390f35b610761611a9c565b60405161076e9190613be3565b60405180910390f35b61077f611b2e565b60405161078c9190613e68565b60405180910390f35b61079d611b36565b6040516107aa9190614055565b60405180910390f35b6107cd60048036038101906107c89190613c8f565b611b46565b6040516107da9190613afb565b60405180910390f35b6107fd60048036038101906107f89190613c8f565b611c30565b60405161080a9190613afb565b60405180910390f35b61081b611c53565b6040516108289190613b2f565b60405180910390f35b61084b60048036038101906108469190613c8f565b611c59565b005b61086760048036038101906108629190613e83565b611ded565b005b610883600480360381019061087e9190614077565b611e16565b6040516108909190613b2f565b60405180910390f35b6108a1611e9d565b6040516108ae9190613e68565b60405180910390f35b6108d160048036038101906108cc9190613ccf565b611ec1565b6040516108df9291906140b7565b60405180910390f35b61090260048036038101906108fd9190613cfc565b611ee5565b60405161090f9190613b2f565b60405180910390f35b610932600480360381019061092d9190613cfc565b611f31565b60405161093f9190614055565b60405180910390f35b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109bb57506109ba8261285d565b5b9050919050565b600080600267ffffffffffffffff8111156109e0576109df6140e0565b5b604051908082528060200260200182016040528015610a0e5781602001602082028036833780820191505090505b50905073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281600081518110610a3a57610a3961410f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f00000000000000000000000071018cc3d0ccdc7e10c48550554ce4d4e3afd9c181600181518110610aa957610aa861410f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d06ca61f670de0b6b3a7640000846040518363ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401610b66929190614237565b600060405180830381865afa158015610b83573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190610bac9190614395565b905080600181518110610bc257610bc161410f565b5b60200260200101519250505090565b600f60149054906101000a900460ff1681565b606060058054610bf39061440d565b80601f0160208091040260200160405190810160405280929190818152602001828054610c1f9061440d565b8015610c6c5780601f10610c4157610100808354040283529160200191610c6c565b820191906000526020600020905b815481529060010190602001808311610c4f57829003601f168201915b5050505050905090565b600080610c816128c7565b9050610c8e8185856128cf565b600191505092915050565b60026001541415610cdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd69061448b565b60405180910390fd5b60026001819055504262093a80600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d3691906144da565b10610d76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6d9061457c565b60405180910390fd5b806008600060075481526020019081526020016000206000016000828254610d9e919061459c565b925050819055506000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090508181600201541015610e2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e269061461c565b60405180910390fd5b610e37612a9a565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33846040518363ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401610eb092919061463c565b6020604051808303816000875af1158015610ecf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ef39190614691565b5081600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206002016000828254610f46919061459c565b925050819055507f65ac0d8bb8cbc0e989ebd02ddc5161d7c499f7c21792e43fcf170314fe6bcc3f3383604051610f7e92919061463c565b60405180910390a1506001808190555050565b7ffc425f2263d0df187444b70e47283d622c70181c5baebb1306a01edba1ce184c610fc381610fbe6128c7565b612c7b565b81600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b6000600454905090565b600061101d336110a4565b905090565b600061102d3361131e565b905090565b7f00000000000000000000000071018cc3d0ccdc7e10c48550554ce4d4e3afd9c181565b6000806110616128c7565b905061106e858285612d19565b611079858585612da5565b60019150509392505050565b6000806000838152602001908152602001600020600101549050919050565b600080600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060600160405290816000820154815260200160018201548152602001600282015481525050905061111a81613029565b915050919050565b61112b82611085565b61113c816111376128c7565b612c7b565b611146838361305e565b505050565b60006012905090565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6111826128c7565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146111ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e690614730565b60405180910390fd5b6111f9828261313e565b5050565b6000806112086128c7565b905061129c818585600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461129791906144da565b6128cf565b600191505092915050565b7ffc425f2263d0df187444b70e47283d622c70181c5baebb1306a01edba1ce184c6112d9816112d46128c7565b612c7b565b600f60149054906101000a900460ff1615600f60146101000a81548160ff02191690831515021790555050565b600a6020528060005260406000206000915090505481565b600080600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020604051806060016040529081600082015481526020016001820154815260200160028201548152505090506113948161321f565b915050919050565b600260015414156113e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d99061448b565b60405180910390fd5b60026001819055506113f2612a9a565b60018081905550565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b7fbeec13769b5f410b0584f69811bfd923818456d5edcf426b0e31cf90eed7a3f661149c816114976128c7565b612c7b565b600082116114df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d69061479c565b60405180910390fd5b6000600860006007548152602001908152602001600020905082816001018190555060016007600082825461151491906144da565b9250508190555080600001546008600060075481526020019081526020016000206000018190555082600b600082825461154e91906144da565b925050819055507f00000000000000000000000071018cc3d0ccdc7e10c48550554ce4d4e3afd9c173ffffffffffffffffffffffffffffffffffffffff166323b872dd3330866040518463ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004016115ce939291906147bc565b6020604051808303816000875af11580156115ed573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116119190614691565b507f66a8e26e051c82fd4be27a3e7b8a9969547f1a14535ced3777e153717b5a2d84836040516116419190613b2f565b60405180910390a1505050565b600b5481565b6002600154141561169a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116919061448b565b60405180910390fd5b60026001819055506116cc7ffc425f2263d0df187444b70e47283d622c70181c5baebb1306a01edba1ce184c33611961565b6117175763627914534211611716576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170d9061483f565b60405180910390fd5b5b42600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330846040518463ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004016117d6939291906147bc565b6020604051808303816000875af11580156117f5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118199190614691565b50611822612a9a565b80600860006007548152602001908152602001600020600001600082825461184a91906144da565b9250508190555080600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020160008282546118a391906144da565b925050819055507fe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c33826040516118db92919061463c565b60405180910390a16001808190555050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7fbeec13769b5f410b0584f69811bfd923818456d5edcf426b0e31cf90eed7a3f681565b60096020528060005260406000206000915090508060000154908060010154908060020154905083565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60606000600267ffffffffffffffff8111156119ea576119e96140e0565b5b604051908082528060200260200182016040528015611a185781602001602082028036833780820191505090505b509050611a248361131e565b81600081518110611a3857611a3761410f565b5b602002602001018181525050611a4d836110a4565b81600181518110611a6157611a6061410f565b5b60200260200101818152505080915050919050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060068054611aab9061440d565b80601f0160208091040260200160405190810160405280929190818152602001828054611ad79061440d565b8015611b245780601f10611af957610100808354040283529160200191611b24565b820191906000526020600020905b815481529060010190602001808311611b0757829003601f168201915b5050505050905090565b600060010281565b6060611b41336119cb565b905090565b600080611b516128c7565b90506000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015611c17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0e906148d1565b60405180910390fd5b611c2482868684036128cf565b60019250505092915050565b600080611c3b6128c7565b9050611c48818585612da5565b600191505092915050565b60075481565b60026001541415611c9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c969061448b565b60405180910390fd5b600260018190555080611cb133611421565b1015611cf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce99061493d565b60405180910390fd5b611cfc3382613326565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c09b871d83836040518363ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401611d7592919061463c565b600060405180830381600087803b158015611d8f57600080fd5b505af1158015611da3573d6000803e3d6000fd5b505050507fbad607f78357e64dd65c084751c05c4d06a0ce5b2989eb1779bbfa2a33913ce4338383604051611dda939291906147bc565b60405180910390a1600180819055505050565b611df682611085565b611e0781611e026128c7565b612c7b565b611e11838361313e565b505050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7ffc425f2263d0df187444b70e47283d622c70181c5baebb1306a01edba1ce184c81565b60086020528060005260406000206000915090508060000154908060010154905082565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600201549050919050565b60606000600e67ffffffffffffffff811115611f5057611f4f6140e0565b5b604051908082528060200260200182016040528015611f7e5781602001602082028036833780820191505090505b509050600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401611ff89190613f09565b602060405180830381865afa158015612015573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612039919061495d565b8160008151811061204d5761204c61410f565b5b602002602001018181525050600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e84306040518363ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004016120d292919061498a565b602060405180830381865afa1580156120ef573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612113919061495d565b816001815181106121275761212661410f565b5b60200260200101818152505061213c83611ee5565b816002815181106121505761214f61410f565b5b60200260200101818152505060086000600754815260200190815260200160002060000154816003815181106121895761218861410f565b5b60200260200101818152505061219e836110a4565b816004815181106121b2576121b161410f565b5b6020026020010181815250506121c783611421565b816005815181106121db576121da61410f565b5b6020026020010181815250507f00000000000000000000000071018cc3d0ccdc7e10c48550554ce4d4e3afd9c173ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040161225c9190613f09565b602060405180830381865afa158015612279573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061229d919061495d565b816006815181106122b1576122b061410f565b5b6020026020010181815250507f00000000000000000000000071018cc3d0ccdc7e10c48550554ce4d4e3afd9c173ffffffffffffffffffffffffffffffffffffffff166370a08231600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004016123549190613f09565b602060405180830381865afa158015612371573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612395919061495d565b816007815181106123a9576123a861410f565b5b602002602001018181525050600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401602060405180830381865afa15801561243e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612462919061495d565b816008815181106124765761247561410f565b5b6020026020010181815250507f00000000000000000000000071018cc3d0ccdc7e10c48550554ce4d4e3afd9c173ffffffffffffffffffffffffffffffffffffffff166370a08231600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518263ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004016125199190613f09565b602060405180830381865afa158015612536573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061255a919061495d565b8160098151811061256e5761256d61410f565b5b6020026020010181815250506125826109c2565b81600a815181106125965761259561410f565b5b602002602001018181525050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461278757600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040161264d9190613f09565b602060405180830381865afa15801561266a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061268e919061495d565b81600b815181106126a2576126a161410f565b5b602002602001018181525050600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663762208ec846040518263ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004016127259190613f09565b602060405180830381865afa158015612742573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612766919061495d565b81600c8151811061277a5761277961410f565b5b6020026020010181815250505b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16631f7411076040518163ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401602060405180830381865afa158015612810573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612834919061495d565b81600d815181106128485761284761410f565b5b60200260200101818152505080915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561293f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293690614a25565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a690614ab7565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612a8d9190613b2f565b60405180910390a3505050565b600f60149054906101000a900460ff1615612aea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae190614b23565b60405180910390fd5b6000600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002090506000612b6182604051806060016040529081600082015481526020016001820154815260200160028201548152505061321f565b90506000811115612c28577f00000000000000000000000071018cc3d0ccdc7e10c48550554ce4d4e3afd9c173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401612be392919061463c565b6020604051808303816000875af1158015612c02573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c269190614691565b505b612c6333612c5e846040518060600160405290816000820154815260200160018201548152602001600282015481525050613029565b6134ff565b60075482600101819055504382600001819055505050565b612c858282611961565b612d1557612caa8173ffffffffffffffffffffffffffffffffffffffff166014613660565b612cb983600190046020613660565b604051602001612cca929190614c17565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0c9190613be3565b60405180910390fd5b5050565b6000612d258484611e16565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114612d9f5781811015612d91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8890614c9d565b60405180910390fd5b612d9e84848484036128cf565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612e15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e0c90614d2f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e7c90614dc1565b60405180910390fd5b612e908383836138c3565b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612f17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0e90614e53565b60405180910390fd5b818103600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612fac91906144da565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516130109190613b2f565b60405180910390a36130238484846138c8565b50505050565b60006103e882600001514361303e919061459c565b836040015161304d9190614e73565b6130579190614efc565b9050919050565b6130688282611961565b61313a57600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506130df6128c7565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6131488282611961565b1561321b57600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506131c06128c7565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b60008060007f00000000000000000000000071018cc3d0ccdc7e10c48550554ce4d4e3afd9c173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004016132999190613f09565b602060405180830381865afa1580156132b6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906132da919061495d565b90506000846020015190505b60075481101561331b576132fb8582846138cd565b8361330691906144da565b9250808061331390614f2d565b9150506132e6565b508192505050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613396576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161338d90614fe8565b60405180910390fd5b6133a2826000836138c3565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613429576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134209061507a565b60405180910390fd5b818103600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160046000828254613481919061459c565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516134e69190613b2f565b60405180910390a36134fa836000846138c8565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561356f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613566906150e6565b60405180910390fd5b61357b600083836138c3565b806004600082825461358d91906144da565b9250508190555080600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546135e391906144da565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516136489190613b2f565b60405180910390a361365c600083836138c8565b5050565b6060600060028360026136739190614e73565b61367d91906144da565b67ffffffffffffffff811115613696576136956140e0565b5b6040519080825280601f01601f1916602001820160405280156136c85781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110613700576136ff61410f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106137645761376361410f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026137a49190614e73565b6137ae91906144da565b90505b6001811115613875577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106137f0576137ef61410f565b5b1a7f0100000000000000000000000000000000000000000000000000000000000000028282815181106138265761382561410f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485908060020a820491505094508061386e90615106565b90506137b1565b50600084146138b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138b09061517c565b60405180910390fd5b8091505092915050565b505050565b505050565b600083602001518310156138e45760009050613a40565b60075483106138f65760009050613a40565b600060086000858152602001908152602001600020604051806040016040529081600082015481526020016001820154815250509050600081600001511415613943576000915050613a40565b6000600b5482602001517f0000000000000000000000000000000000000000000000000000000005f5e1006139789190614e73565b6139829190614efc565b90506000826000015187604001517f0000000000000000000000000000000000000000000000000000000005f5e1006139bb9190614e73565b6139c59190614efc565b905060007f0000000000000000000000000000000000000000000000000000000005f5e1007f0000000000000000000000000000000000000000000000000000000005f5e100613a159190614e73565b868484613a229190614e73565b613a2c9190614e73565b613a369190614efc565b9050809450505050505b9392505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613a9081613a5b565b8114613a9b57600080fd5b50565b600081359050613aad81613a87565b92915050565b600060208284031215613ac957613ac8613a51565b5b6000613ad784828501613a9e565b91505092915050565b60008115159050919050565b613af581613ae0565b82525050565b6000602082019050613b106000830184613aec565b92915050565b6000819050919050565b613b2981613b16565b82525050565b6000602082019050613b446000830184613b20565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613b84578082015181840152602081019050613b69565b83811115613b93576000848401525b50505050565b6000601f19601f8301169050919050565b6000613bb582613b4a565b613bbf8185613b55565b9350613bcf818560208601613b66565b613bd881613b99565b840191505092915050565b60006020820190508181036000830152613bfd8184613baa565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613c3082613c05565b9050919050565b613c4081613c25565b8114613c4b57600080fd5b50565b600081359050613c5d81613c37565b92915050565b613c6c81613b16565b8114613c7757600080fd5b50565b600081359050613c8981613c63565b92915050565b60008060408385031215613ca657613ca5613a51565b5b6000613cb485828601613c4e565b9250506020613cc585828601613c7a565b9150509250929050565b600060208284031215613ce557613ce4613a51565b5b6000613cf384828501613c7a565b91505092915050565b600060208284031215613d1257613d11613a51565b5b6000613d2084828501613c4e565b91505092915050565b6000819050919050565b6000613d4e613d49613d4484613c05565b613d29565b613c05565b9050919050565b6000613d6082613d33565b9050919050565b6000613d7282613d55565b9050919050565b613d8281613d67565b82525050565b6000602082019050613d9d6000830184613d79565b92915050565b600080600060608486031215613dbc57613dbb613a51565b5b6000613dca86828701613c4e565b9350506020613ddb86828701613c4e565b9250506040613dec86828701613c7a565b9150509250925092565b6000819050919050565b613e0981613df6565b8114613e1457600080fd5b50565b600081359050613e2681613e00565b92915050565b600060208284031215613e4257613e41613a51565b5b6000613e5084828501613e17565b91505092915050565b613e6281613df6565b82525050565b6000602082019050613e7d6000830184613e59565b92915050565b60008060408385031215613e9a57613e99613a51565b5b6000613ea885828601613e17565b9250506020613eb985828601613c4e565b9150509250929050565b600060ff82169050919050565b613ed981613ec3565b82525050565b6000602082019050613ef46000830184613ed0565b92915050565b613f0381613c25565b82525050565b6000602082019050613f1e6000830184613efa565b92915050565b6000613f2f82613d55565b9050919050565b613f3f81613f24565b82525050565b6000602082019050613f5a6000830184613f36565b92915050565b6000606082019050613f756000830186613b20565b613f826020830185613b20565b613f8f6040830184613b20565b949350505050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613fcc81613b16565b82525050565b6000613fde8383613fc3565b60208301905092915050565b6000602082019050919050565b600061400282613f97565b61400c8185613fa2565b935061401783613fb3565b8060005b8381101561404857815161402f8882613fd2565b975061403a83613fea565b92505060018101905061401b565b5085935050505092915050565b6000602082019050818103600083015261406f8184613ff7565b905092915050565b6000806040838503121561408e5761408d613a51565b5b600061409c85828601613c4e565b92505060206140ad85828601613c4e565b9150509250929050565b60006040820190506140cc6000830185613b20565b6140d96020830184613b20565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b600061416361415e6141598461413e565b613d29565b613b16565b9050919050565b61417381614148565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6141ae81613c25565b82525050565b60006141c083836141a5565b60208301905092915050565b6000602082019050919050565b60006141e482614179565b6141ee8185614184565b93506141f983614195565b8060005b8381101561422a57815161421188826141b4565b975061421c836141cc565b9250506001810190506141fd565b5085935050505092915050565b600060408201905061424c600083018561416a565b818103602083015261425e81846141d9565b90509392505050565b600080fd5b61427582613b99565b810181811067ffffffffffffffff82111715614294576142936140e0565b5b80604052505050565b60006142a7613a47565b90506142b3828261426c565b919050565b600067ffffffffffffffff8211156142d3576142d26140e0565b5b602082029050602081019050919050565b600080fd5b6000815190506142f881613c63565b92915050565b600061431161430c846142b8565b61429d565b90508083825260208201905060208402830185811115614334576143336142e4565b5b835b8181101561435d578061434988826142e9565b845260208401935050602081019050614336565b5050509392505050565b600082601f83011261437c5761437b614267565b5b815161438c8482602086016142fe565b91505092915050565b6000602082840312156143ab576143aa613a51565b5b600082015167ffffffffffffffff8111156143c9576143c8613a56565b5b6143d584828501614367565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061442557607f821691505b60208210811415614439576144386143de565b5b50919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000614475601f83613b55565b91506144808261443f565b602082019050919050565b600060208201905081810360008301526144a481614468565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006144e582613b16565b91506144f083613b16565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614525576145246144ab565b5b828201905092915050565b7f796f7572206c6971756964697479206973206c6f636b65640000000000000000600082015250565b6000614566601883613b55565b915061457182614530565b602082019050919050565b6000602082019050818103600083015261459581614559565b9050919050565b60006145a782613b16565b91506145b283613b16565b9250828210156145c5576145c46144ab565b5b828203905092915050565b7f43616e206e6f74207769746864726177207468697320616d6f756e7400000000600082015250565b6000614606601c83613b55565b9150614611826145d0565b602082019050919050565b60006020820190508181036000830152614635816145f9565b9050919050565b60006040820190506146516000830185613efa565b61465e6020830184613b20565b9392505050565b61466e81613ae0565b811461467957600080fd5b50565b60008151905061468b81614665565b92915050565b6000602082840312156146a7576146a6613a51565b5b60006146b58482850161467c565b91505092915050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b600061471a602f83613b55565b9150614725826146be565b604082019050919050565b600060208201905081810360008301526147498161470d565b9050919050565b7f52657761726420616d6f756e742063616e206e6f74206265207a65726f000000600082015250565b6000614786601d83613b55565b915061479182614750565b602082019050919050565b600060208201905081810360008301526147b581614779565b9050919050565b60006060820190506147d16000830186613efa565b6147de6020830185613efa565b6147eb6040830184613b20565b949350505050565b7f4e6f742079657420656e61626c65640000000000000000000000000000000000600082015250565b6000614829600f83613b55565b9150614834826147f3565b602082019050919050565b600060208201905081810360008301526148588161481c565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006148bb602583613b55565b91506148c68261485f565b604082019050919050565b600060208201905081810360008301526148ea816148ae565b9050919050565b7f596f7520646f206e6f74206861766520656e6f75676820424c455353494e4753600082015250565b6000614927602083613b55565b9150614932826148f1565b602082019050919050565b600060208201905081810360008301526149568161491a565b9050919050565b60006020828403121561497357614972613a51565b5b6000614981848285016142e9565b91505092915050565b600060408201905061499f6000830185613efa565b6149ac6020830184613efa565b9392505050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614a0f602483613b55565b9150614a1a826149b3565b604082019050919050565b60006020820190508181036000830152614a3e81614a02565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614aa1602283613b55565b9150614aac82614a45565b604082019050919050565b60006020820190508181036000830152614ad081614a94565b9050919050565b7f72657761726473206172652066726f7a656e0000000000000000000000000000600082015250565b6000614b0d601283613b55565b9150614b1882614ad7565b602082019050919050565b60006020820190508181036000830152614b3c81614b00565b9050919050565b600081905092915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b6000614b84601783614b43565b9150614b8f82614b4e565b601782019050919050565b6000614ba582613b4a565b614baf8185614b43565b9350614bbf818560208601613b66565b80840191505092915050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b6000614c01601183614b43565b9150614c0c82614bcb565b601182019050919050565b6000614c2282614b77565b9150614c2e8285614b9a565b9150614c3982614bf4565b9150614c458284614b9a565b91508190509392505050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000614c87601d83613b55565b9150614c9282614c51565b602082019050919050565b60006020820190508181036000830152614cb681614c7a565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614d19602583613b55565b9150614d2482614cbd565b604082019050919050565b60006020820190508181036000830152614d4881614d0c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614dab602383613b55565b9150614db682614d4f565b604082019050919050565b60006020820190508181036000830152614dda81614d9e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614e3d602683613b55565b9150614e4882614de1565b604082019050919050565b60006020820190508181036000830152614e6c81614e30565b9050919050565b6000614e7e82613b16565b9150614e8983613b16565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614ec257614ec16144ab565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614f0782613b16565b9150614f1283613b16565b925082614f2257614f21614ecd565b5b828204905092915050565b6000614f3882613b16565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614f6b57614f6a6144ab565b5b600182019050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614fd2602183613b55565b9150614fdd82614f76565b604082019050919050565b6000602082019050818103600083015261500181614fc5565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000615064602283613b55565b915061506f82615008565b604082019050919050565b6000602082019050818103600083015261509381615057565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006150d0601f83613b55565b91506150db8261509a565b602082019050919050565b600060208201905081810360008301526150ff816150c3565b9050919050565b600061511182613b16565b91506000821415615125576151246144ab565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b6000615166602083613b55565b915061517182615130565b602082019050919050565b6000602082019050818103600083015261519581615159565b905091905056fea26469706673582212206786825df8bf926cf0714a8cc06d3b28fcbd3dc7f9a7a9a95ccc15e9f23f51a764736f6c634300080c0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000007d3e6457ade26434f8046c405410488f1985065a0000000000000000000000009f70d8dddfa8abc6495d3d06632d2846b97bf7ba00000000000000000000000003d370b4ea3fc84c857bdf2782adf7514c272f31

-----Decoded View---------------
Arg [0] : lpAddress (address): 0x7D3E6457ADE26434f8046c405410488f1985065a
Arg [1] : _rewarderWallet (address): 0x9f70d8dddFA8aBc6495d3d06632d2846b97Bf7bA
Arg [2] : eggAddress (address): 0x03D370B4EA3Fc84C857BDf2782aDF7514C272F31

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000007d3e6457ade26434f8046c405410488f1985065a
Arg [1] : 0000000000000000000000009f70d8dddfa8abc6495d3d06632d2846b97bf7ba
Arg [2] : 00000000000000000000000003d370b4ea3fc84c857bdf2782adf7514c272f31


Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.