Abstract Testnet

Contract

0x4ef70aC3722DfB9fEB181173e164144f53486966

Overview

ETH Balance

0 ETH

Multichain Info

N/A
Transaction Hash
Method
Block
From
To

There are no matching entries

1 Internal Transaction found.

Latest 1 internal transaction

Parent Transaction Hash Block From To
49426102025-01-23 12:05:3732 hrs ago1737633937  Contract Creation0 ETH
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
LinearVesting

Compiler Version
v0.8.23+commit.f704f362

ZkSolc Version
v1.5.7

Optimization Enabled:
Yes with Mode 3

Other Settings:
paris EvmVersion

Contract Source Code (Solidity Standard Json-Input format)

File 1 of 34 : LinearVesting.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.23;

import {ILinearVestingReadable} from "./readable/ILinearVestingReadable.sol";

import {LinearVestingWritable} from "./writable/LinearVestingWritable.sol";
import {LinearVestingReadable} from "./readable/LinearVestingReadable.sol";

import {UserAllocation} from "./LinearVestingStruct.sol";

/// @dev ONLY cloneable w/ minimal proxy (ERC-1167) - NOT UPGRADABLE.
contract LinearVesting is LinearVestingWritable, LinearVestingReadable {
    function getClaimableAmount(
        UserAllocation calldata alloc
    )
        public
        view
        override(LinearVestingWritable, ILinearVestingReadable)
        returns (uint256 claimableAmount)
    {
        return LinearVestingWritable.getClaimableAmount(alloc);
    }
}

File 2 of 34 : LinearVestingReadable.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.23;

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

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

abstract contract LinearVestingReadable is ILinearVestingReadable {
    function startTime() external view returns (uint32) {
        return LinearVestingStorage.layout().ledger.startTime;
    }

    function endTime() external view returns (uint32) {
        return LinearVestingStorage.layout().ledger.startTime;
    }

    function totalVested() external view returns (uint256) {
        return LinearVestingStorage.layout().ledger.totalVested;
    }

    function totalClaimed() external view returns (uint256) {
        return LinearVestingStorage.layout().ledger.totalClaimed;
    }

    function merkleRoot() external view returns (bytes32) {
        return LinearVestingStorage.layout().ledger.merkleRoot;
    }

    function userClaims(address user) external view returns (uint256) {
        return LinearVestingStorage.layout().userClaims[user];
    }

    function refundStart() external view returns (uint256) {
        return LinearVestingStorage.layout().refundStart;
    }

    function refundEnd() external view returns (uint256) {
        return LinearVestingStorage.layout().refundEnd;
    }

    function isCrosschainIDO() external view returns (bool) {
        return LinearVestingStorage.layout().isCrosschainIDO;
    }
}

File 3 of 34 : LinearVestingStruct.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.23;

/** @title UserAllocation is used to claim the user's allocation
 * @param user is the address of the user
 * @param amount is the total amount of tokens to claim
 * @param startAmount is the amount of tokens available at TGE
 */
struct UserAllocation {
    address user;
    uint256 amount;
    uint256 startAmount;
}

File 4 of 34 : ILinearVestingReadable.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.23;

import {UserAllocation} from "../LinearVestingStruct.sol";

interface ILinearVestingReadable {
    /**
     * @notice Get the claimable amount for a user.
     * @param alloc User allocation.
     */
    function getClaimableAmount(
        UserAllocation calldata alloc
    ) external view returns (uint256 claimableAmount);

    function totalVested() external view returns (uint256);

    function totalClaimed() external view returns (uint256);

    function merkleRoot() external view returns (bytes32);

    function startTime() external view returns (uint32);

    function endTime() external view returns (uint32);

    function userClaims(address) external view returns (uint256);

    function refundStart() external view returns (uint256);

    function refundEnd() external view returns (uint256);

    function isCrosschainIDO() external view returns (bool);
}

File 5 of 34 : LinearVestingWritable.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.23;

import {IERC20Upgradeable} from "openzeppelin-contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol";
import {SafeERC20Upgradeable} from "openzeppelin-contracts-upgradeable/token/ERC20/utils/SafeERC20Upgradeable.sol";
import {MerkleProof} from "openzeppelin-contracts/utils/cryptography/MerkleProof.sol";

import {ILinearVestingWritable} from "./ILinearVestingWritable.sol";
import {IIDOReadable} from "../../ido/readable/IIDOReadable.sol";
import {IIDOWritableRestricted} from "../../ido/writable/restricted/IIDOWritableRestricted.sol";

import {LinearVestingWritableRestricted} from "./restricted/LinearVestingWritableRestricted.sol";
import {LinearVestingTypes} from "../LinearVestingTypes.sol";
import {LinearVestingStorage} from "../LinearVestingStorage.sol";

import {UserAllocation} from "../LinearVestingStruct.sol";

/**
 * @title LinearVesting contract
 * @notice A contract to handle linear vesting of tokens.
 * @dev This contract is NOT MADE to be used:
 *           - for a crosschain linear vesting. A vesting of a token will always happen on one and single chain,
 *           - to claim deflationary tokens.
 */
abstract contract LinearVestingWritable is
    ILinearVestingWritable,
    LinearVestingWritableRestricted
{
    using SafeERC20Upgradeable for IERC20Upgradeable;

    /// @inheritdoc ILinearVestingWritable
    function claim(
        UserAllocation calldata alloc,
        bytes32[] calldata proof
    ) external override nonReentrant whenNotPaused returns (bool) {
        if (alloc.user != msg.sender) {
            revert NotAuthorized();
        }

        if (
            LinearVestingStorage.layout().setUp.ido != address(0) &&
            IIDOReadable(LinearVestingStorage.layout().setUp.ido)
                .getUserDetails(alloc.user)
                .hasRefunded
        ) {
            revert HasRefunded();
        }

        LinearVestingStorage.Storage storage strg = LinearVestingStorage
            .layout();

        if (
            !MerkleProof.verify(
                proof,
                strg.ledger.merkleRoot,
                keccak256(abi.encode(alloc))
            )
        ) {
            revert AllocNotFound();
        }

        uint256 tokens = getClaimableAmount(alloc);
        if (tokens == 0) {
            revert NoTokensToClaim();
        }

        address token = strg.setUp.vestedToken;

        strg.userClaims[alloc.user] += tokens;
        strg.ledger.totalClaimed += tokens;
        IERC20Upgradeable(token).safeTransfer(alloc.user, tokens);

        emit Claimed(token, alloc.user, tokens);

        return true;
    }

    /// @inheritdoc ILinearVestingWritable
    function getClaimableAmount(
        UserAllocation calldata alloc
    ) public view virtual override returns (uint256 claimableAmount) {
        LinearVestingStorage.Storage storage strg = LinearVestingStorage
            .layout();

        if (strg.ledger.startTime > block.timestamp) return 0;

        uint256 amount = alloc.amount;

        if (block.timestamp < strg.ledger.endTime) {
            claimableAmount = _claimableAmount(
                amount,
                alloc.startAmount,
                1e36
            );
        } else {
            claimableAmount = amount;
        }

        claimableAmount -= strg.userClaims[alloc.user];
    }

    /**
     * @dev Internal function to allow test on precision.
     * @param amount Total amount of tokens a user will claim.
     * @param startAmount Initial amount of tokens a user had unlocked before vesting starts.
     * @param precision Precision to use for the calculation - set a 1e36 by default.
     */
    function _claimableAmount(
        uint256 amount,
        uint256 startAmount,
        uint256 precision
    ) internal view returns (uint256) {
        Ledger memory ledger = LinearVestingStorage.layout().ledger;

        uint256 timePassed = block.timestamp - ledger.startTime;
        uint256 totalTime = ledger.endTime - ledger.startTime; // endTime < startTime, 0 is impossible
        uint256 timePassedRatio = (timePassed * precision) / totalTime; // result on 10^36

        /**
         * @dev with 1e36 precision, calculation safe with tokens up to 10^40,
         *      max uint256 is 2^256-1 = 1.15e77
         */
        return
            (((amount - startAmount) * timePassedRatio) / precision) +
            startAmount;
    }

    function renounceClaimAndRefund() external payable virtual {
        _renounceClaim();

        SetUp storage setUp = LinearVestingStorage.layout().setUp;

        if (setUp.ido == address(0)) {
            revert NoIDO();
        }

        IIDOWritableRestricted(setUp.ido).autoRefund(msg.sender);
    }

    function _renounceClaim() internal {
        LinearVestingStorage.Storage storage strg = LinearVestingStorage
            .layout();

        if (strg.refundStart == 0 || strg.refundEnd == 0) {
            revert RefundNotEnabled();
        }
        if (strg.userClaims[msg.sender] > 0) {
            revert AlreadyClaimedOrRenounced();
        }

        strg.userClaims[msg.sender] = type(uint256).max;
    }
}

File 6 of 34 : LinearVestingStorage.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.23;

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

library LinearVestingStorage {
    bytes32 public constant STORAGE_SLOT = keccak256("linearvesting.storage");

    struct Storage {
        LinearVestingTypes.SetUp setUp;
        LinearVestingTypes.Ledger ledger;
        mapping(address => uint256) userClaims;
        bool isCrosschainIDO;
        uint256 refundStart;
        uint256 refundEnd;
    }

    function layout() internal pure returns (Storage storage strg) {
        bytes32 slot = STORAGE_SLOT;
        assembly {
            strg.slot := slot
        }
    }
}

File 7 of 34 : ILinearVestingWritable.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.23;

import {UserAllocation} from "../LinearVestingStruct.sol";

interface ILinearVestingWritable {
    /**
     * @notice Claim tokens for a user.
     * @param alloc User allocation.
     * @param proof Merkle proof.
     */
    function claim(
        UserAllocation calldata alloc,
        bytes32[] calldata proof
    ) external returns (bool);

    /**
     * @notice Get the claimable amount for a user.
     * @param alloc User allocation.
     */
    function getClaimableAmount(
        UserAllocation calldata alloc
    ) external view returns (uint256 claimableAmount);
}

File 8 of 34 : LinearVestingTypes.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.23;

abstract contract LinearVestingTypes {
    event LinearVestingSetUp(SetUp setUp);

    event SettingsUpdated(
        uint32 indexed start,
        uint32 indexed end,
        uint256 totalVested
    );
    event Claimed(address indexed token, address indexed user, uint256 amount);

    event RefundPeriodUpdated(uint256 indexed start, uint256 indexed end);

    error InvalidTimings();
    error AllocNotFound();
    error NoTokensToClaim();
    error InvalidMerkleRoot();
    error ZeroTokenAddress();
    error NotAuthorized();
    error HasRefunded();
    error NoIDO();
    error RefundNotEnabled();
    error AlreadyClaimedOrRenounced();
    error isCrosschainIDO();

    /**
     * @notice Struct reprensenting the main setup of LinearVesting.
     *
     * @param vestedToken Address of the token to be claimed.
     * @param ido Address of the IDO contract, the vesting is linked to.
     */
    struct SetUp {
        address vestedToken;
        address ido;
    }

    /**
     * @dev Struct representing the ledger/main storage of LinearVesting.
     *
     * @param startTime Start time of the vesting.
     * @param endTime End time of the vesting.
     * @param totalVested amount of vested tokens over the whole existence of the contract (to be claimed by users)
     * @param totalClaimed amount of claimed tokens over the whole existence of the contract.
     * @param merkleRoot Merkle root of user allocations.
     */
    struct Ledger {
        uint32 startTime;
        uint32 endTime;
        uint256 totalVested;
        uint256 totalClaimed;
        bytes32 merkleRoot;
    }
}

abstract contract LinearVestingOAppTypes {
    event RenouncedClaimAndSentCrosschainRefund(
        address indexed user,
        uint32 dstEID,
        bytes32 indexed guid,
        uint256 fee
    );

    event LinearVestingOAppSetUp(
        address indexed token,
        address srcEndpoint,
        uint32 srcEID,
        uint32 dstEID,
        address indexed dstAddress
    );

    error InvalidOrigin(uint32 eid, address sender);

    /**
     * @notice Struct representing the setup parameters for LinearVestingOApp.
     * @param srcEndpoint Address of the source endpoint for LayerZero communication.
     * @param dstEID Destination chain's endpoint ID.
     * @param dstAddress Address of the destination contract on the other chain.
     * @param executor Address of the executor contract.
     * @param nativeCap Maximum amount of native tokens that can be sent in a single transaction.
     * @param sendLibrary Address of the send library for LayerZero.
     * @param receiveLibrary Address of the receive library for LayerZero.
     * @param receiveTimeout Timeout period for receiving messages.
     */
    struct OAppSetUp {
        address srcEndpoint;
        uint32 dstEID;
        address dstAddress;
        address executor;
        uint256 nativeCap;
        address sendLibrary;
        address receiveLibrary;
        uint32 receiveTimeout;
    }
}

File 9 of 34 : IIDOReadable.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.23;

import {IDOStorage} from "../IDOStorage.sol";
import {IDOTypes} from "../IDOTypes.sol";

interface IIDOReadable {
    function getSetUp() external view returns (IDOTypes.SetUp memory);

    function getTotalBUSDReceivedInAllTier() external view returns (uint256);

    function getRefundPeriod()
        external
        view
        returns (uint256 start, uint256 end);

    function isCrosschainIDO()
        external
        view
        returns (bool, address refundCaller);

    function rootHash() external view returns (bytes32);

    function getTierDetails(
        uint256 tier
    ) external view returns (IDOTypes.Tier memory);

    function getUserDetails(
        address user
    ) external view returns (IDOTypes.User memory);

    function getUserRefundEligibility(
        address user
    ) external view returns (bool);
}

File 10 of 34 : IIDOWritableRestricted.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.23;

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

interface IIDOWritableRestricted {
    function initialize(IDOTypes.SetUp memory setUp_) external;

    function updateMaxCap(uint256 _maxCap) external;

    function updateStartTime(uint256 newsaleStart) external;

    function updateEndTime(uint256 newSaleEnd) external;

    function updateTiers(
        uint256[] memory _tier,
        uint256[] memory _maxTierCap,
        uint256[] memory _minUserCap,
        uint256[] memory _maxUserCap,
        uint256[] memory _tierUsers
    ) external;

    function updateHash(bytes32 _hash) external;

    /**
     * @dev Function to verify the user's eligibility to participate in the sale using merkle tree
     * @dev Merkle leaf should be keccak256(abi.encode(wallet, tier, chainId, saleContractAddress))
     * @param _wallet Address of the user
     * @param _tier Tier of the user
     * @param proof Merkle proof of the user
     * @param _rootHash Root hash of the merkle tree
     */
    function verify(
        address _wallet,
        uint256 _tier,
        bytes32[] calldata proof,
        bytes32 _rootHash
    ) external view returns (bool);

    /**
     * @dev Function to set the refund period
     * @param _refundStart Start time of the refund period
     * @param _refundEnd End time of the refund period
     */
    function setRefundPeriod(
        uint256 _refundStart,
        uint256 _refundEnd
    ) external payable;

    /**
     * @dev Function to set the refund caller address which differs depdning on crosschain compatibility:
                    - LayerZero endpoint address : when IDO happened on a chain BUT LinearVesting deployed on another chain.
                    - LinearVesting address : when IDO & LinearVesting are on the same network.
     * @param _setRefundCaller Address of the linear vesting contract
     */
    function setRefundCaller(address _setRefundCaller) external;

    /**
     * @dev Function which can only be called by the `refundCaller` or lzEndpoint which refunds the user.
     * @param user Address of the user to refund
     */
    function autoRefund(address user) external;

    function withdrawFunds(address token, address to, uint256 amount) external;
}

File 11 of 34 : LinearVestingWritableRestricted.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.23;

import {IERC20Upgradeable} from "openzeppelin-contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol";
import {SafeERC20Upgradeable} from "openzeppelin-contracts-upgradeable/token/ERC20/utils/SafeERC20Upgradeable.sol";
import {Initializable} from "openzeppelin-contracts-upgradeable/proxy/utils/Initializable.sol";
import {PausableUpgradeable} from "openzeppelin-contracts-upgradeable/security/PausableUpgradeable.sol";
import {ReentrancyGuardUpgradeable} from "openzeppelin-contracts-upgradeable/security/ReentrancyGuardUpgradeable.sol";
import {AccessControlEnumerableUpgradeable} from "openzeppelin-contracts-upgradeable/access/AccessControlEnumerableUpgradeable.sol";

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

import {LinearVestingTypes} from "../../LinearVestingTypes.sol";
import {LinearVestingStorage} from "../../LinearVestingStorage.sol";

/**
 * @title LinearVesting contract
 * @notice A contract to handle linear vesting of tokens.
 * @dev This contract is NOT MADE to be used:
 *           - for a crosschain linear vesting. A vesting of a token will always happen on one and single chain,
 *           - to claim deflationary tokens.
 */
abstract contract LinearVestingWritableRestricted is
    Initializable,
    PausableUpgradeable,
    ReentrancyGuardUpgradeable,
    AccessControlEnumerableUpgradeable,
    LinearVestingTypes,
    ILinearVestingWritableRestricted
{
    using SafeERC20Upgradeable for IERC20Upgradeable;

    function initialize(
        address _token,
        address _ido
    ) public virtual initializer {
        __Pausable_init();
        __ReentrancyGuard_init();

        if (_token == address(0)) {
            revert ZeroTokenAddress();
        }

        SetUp storage setUp = LinearVestingStorage.layout().setUp;

        _grantRole(DEFAULT_ADMIN_ROLE, msg.sender);

        setUp.vestedToken = _token;
        setUp.ido = _ido;

        emit LinearVestingSetUp(setUp);
    }

    function pause() public onlyRole(DEFAULT_ADMIN_ROLE) {
        _pause();
    }

    function unpause() public onlyRole(DEFAULT_ADMIN_ROLE) {
        _unpause();
    }

    /// @inheritdoc ILinearVestingWritableRestricted
    function update(
        bytes32 merkleRoot_,
        uint32 startTime_,
        uint32 endTime_,
        uint256 toClaim
    ) external override onlyRole(DEFAULT_ADMIN_ROLE) returns (bool) {
        if (merkleRoot_ == bytes32(0)) {
            revert InvalidMerkleRoot();
        }

        if (endTime_ < startTime_) {
            revert InvalidTimings();
        }

        Ledger storage ledger = LinearVestingStorage.layout().ledger;

        ledger.merkleRoot = merkleRoot_;
        ledger.startTime = startTime_;
        ledger.endTime = endTime_;

        if (toClaim > 0) {
            IERC20Upgradeable(LinearVestingStorage.layout().setUp.vestedToken)
                .safeTransferFrom(msg.sender, address(this), toClaim);
            ledger.totalVested += toClaim;
        }

        emit SettingsUpdated(startTime_, endTime_, ledger.totalVested);

        return true;
    }

    /// @notice Only IDO is allowed to call this function in a non-crosschain config.
    /// Otherwise LayerZero will call _setRefundPeriod.
    function setRefundPeriod(
        uint256 _refundStart,
        uint256 _refundEnd
    ) external virtual {
        LinearVestingStorage.Storage storage strg = LinearVestingStorage
            .layout();

        if (strg.isCrosschainIDO) {
            revert isCrosschainIDO();
        }

        if (strg.setUp.ido != msg.sender) {
            revert NotAuthorized();
        }

        _setRefundPeriod(strg, _refundStart, _refundEnd);
    }

    /// @dev Only called by LayerZero endpoint call
    function _setRefundPeriod(
        LinearVestingStorage.Storage storage strg,
        uint256 _refundStart,
        uint256 _refundEnd
    ) internal {
        strg.refundStart = _refundStart;
        strg.refundEnd = _refundEnd;

        emit RefundPeriodUpdated(_refundStart, _refundEnd);
    }
}

File 12 of 34 : IERC20Upgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

File 13 of 34 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.2) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The tree and the proofs can be generated using our
 * https://github.com/OpenZeppelin/merkle-tree[JavaScript library].
 * You will find a quickstart guide in the readme.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 * OpenZeppelin's JavaScript library generates merkle trees that are safe
 * against this attack out of the box.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(bytes32[] memory proof, bytes32 root, bytes32 leaf) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(bytes32[] calldata proof, bytes32 root, bytes32 leaf) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction
     * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another
     * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false
     * respectively.
     *
     * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree
     * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the
     * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuilds the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 proofLen = proof.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proofLen - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value from the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i]
                ? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++])
                : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            require(proofPos == proofLen, "MerkleProof: invalid multiproof");
            unchecked {
                return hashes[totalHashes - 1];
            }
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuilds the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 proofLen = proof.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proofLen - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value from the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i]
                ? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++])
                : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            require(proofPos == proofLen, "MerkleProof: invalid multiproof");
            unchecked {
                return hashes[totalHashes - 1];
            }
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 14 of 34 : SafeERC20Upgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.3) (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;

import "../IERC20Upgradeable.sol";
import "../extensions/IERC20PermitUpgradeable.sol";
import "../../../utils/AddressUpgradeable.sol";

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20Upgradeable {
    using AddressUpgradeable for address;

    /**
     * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeTransfer(IERC20Upgradeable token, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    /**
     * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the
     * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful.
     */
    function safeTransferFrom(IERC20Upgradeable token, address from, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(IERC20Upgradeable token, address spender, uint256 value) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    /**
     * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeIncreaseAllowance(IERC20Upgradeable token, address spender, uint256 value) internal {
        uint256 oldAllowance = token.allowance(address(this), spender);
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance + value));
    }

    /**
     * @dev Decrease the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeDecreaseAllowance(IERC20Upgradeable token, address spender, uint256 value) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance - value));
        }
    }

    /**
     * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval
     * to be set to zero before setting it to a non-zero value, such as USDT.
     */
    function forceApprove(IERC20Upgradeable token, address spender, uint256 value) internal {
        bytes memory approvalCall = abi.encodeWithSelector(token.approve.selector, spender, value);

        if (!_callOptionalReturnBool(token, approvalCall)) {
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, 0));
            _callOptionalReturn(token, approvalCall);
        }
    }

    /**
     * @dev Use a ERC-2612 signature to set the `owner` approval toward `spender` on `token`.
     * Revert on invalid signature.
     */
    function safePermit(
        IERC20PermitUpgradeable token,
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal {
        uint256 nonceBefore = token.nonces(owner);
        token.permit(owner, spender, value, deadline, v, r, s);
        uint256 nonceAfter = token.nonces(owner);
        require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed");
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20Upgradeable token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

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

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     *
     * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead.
     */
    function _callOptionalReturnBool(IERC20Upgradeable token, bytes memory data) private returns (bool) {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false
        // and not revert is the subcall reverts.

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

File 15 of 34 : IDOStorage.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.23;

import {IERC20} from "openzeppelin-contracts/token/ERC20/IERC20.sol";

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

/**
 * @title IDOStorage
 * @notice Mapps the storage layout of the {IDO} contract.
 * @dev Diamond proxy (ERC-2535) storage style.
 */
library IDOStorage {
    /**
     * @notice Struct reprensenting the whole storage layout of the IDO contract.
     *
     * @param setUp Main setup of the IDO.
     * @param isCrosschainIDO Boolean to check if the IDO is crosschain or on same network as the LinearVesting.
     *                      It's only set to true by LzIDO constructor.
     * @param refundCaller 
                    - LinearVesting address : when IDO & LinearVesting are on the same network.
                    - LayerZero endpoint address : when IDO happened on a chain BUT LinearVesting deployed on another chain.
     * @param totalBUSDReceivedInAllTier Total BUSD received in all tiers.
     * @param refundStart Start time of the refund period.
     * @param refundEnd End time of the refund period.
     * @param phaseNo Phase number of the IDO.
     * @param rootHash Root hash of the Merkle tree.
     * @param tierDetails Mapping of tier number to its details.
     * @param userDetails Mapping of user address to its details.
     */
    struct IDOStruct {
        IDOTypes.SetUp setUp;
        bool isCrosschainIDO;
        address refundCaller;
        uint256 totalBUSDReceivedInAllTier;
        uint32 refundStart;
        uint32 refundEnd;
        bytes32 rootHash;
        mapping(uint256 => IDOTypes.Tier) tierDetails;
        mapping(address => IDOTypes.User) userDetails;
    }

    /// @notice Storage position of {IDOStruct} in {IDO} contract.
    bytes32 public constant IDO_STORAGE = keccak256("ido.storage");

    /**
     * @return idoStruct Whole storage of {IDO} contract.
     */
    function layout() internal pure returns (IDOStruct storage idoStruct) {
        bytes32 position = IDO_STORAGE;
        assembly {
            idoStruct.slot := position
        }
    }
}

File 16 of 34 : IDOTypes.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.23;

abstract contract IDOTypes {
    bytes32 public constant DEFAULT_WITHDRAW_ROLE =
        keccak256("DEFAULT_WITHDRAW_ROLE");

    event DestinationChainUpdated(
        uint16 indexed oldChainId,
        uint16 indexed newChainId
    );
    event UserInvestment(
        address indexed user,
        uint256 amount,
        uint8 indexed phase
    );
    event UserRefund(address indexed user, uint256 amount);
    event RefundPeriodSet(uint256 start, uint256 end);
    event RefundEnabled(bool enabled);
    event LinearVestingSet(address indexed linearVesting);
    event FundsWithdrawn(address token, address to, uint256 amount);

    error ZeroMaxCap();
    error InvalidTimings();
    error ZeroTiers();
    error ZeroTokenAddress();
    error ZeroUsers();
    error ZeroOwnerAddress();
    error ZeroWithdrawerAddress();
    error SaleAlreadyStarted();
    error InvalidSaleEnd();
    error LengthsMismatch();
    error InvalidTierNumber();
    error InvalidMaxTierCap();
    error InvalidMaxUserCap();
    error ZeroUsersInTier();
    error UserNotAuthenticated();
    error UnknownRefundCaller(address caller);
    error SaleNotStarted();
    error SaleEnded();
    error ExceedsPoolMaxCap();
    error UserNotWhitelisted();
    error AmountLessThanUserMinCap();
    error AmountGreaterThanUserMaxCap();
    error AmountGreaterThanTierMaxCap();
    error InsufficientAllowance();
    error InvalidRefundPeriod();
    error ZeroLinearVesting();
    error RefundPeriodNotActive();
    error LinearVestingNotSet();
    error NoInvestmentFound();
    error AlreadyRefunded();
    error TokensAlreadyClaimed();
    error AmountMustBeGreaterThanZero();
    error InsufficientFunds();
    error CrosschainIDO();

    struct Tier {
        uint256 maxTierCap;
        uint256 minUserCap;
        uint256 maxUserCap;
        uint256 amountRaised;
        uint256 users;
    }

    struct User {
        uint256 investedAmount;
        uint248 tier;
        bool hasRefunded;
    }

    /**
     * @notice Struct reprensenting the main setup of the IDO.
     */
    struct SetUp {
        address owner;
        uint32 saleStart;
        uint32 saleEnd;
        uint32 totalUsers;
        uint8 noOfTiers;
        uint8 phaseNo;
        address withdrawer;
        address paymentToken;
        uint256 maxCap;
        string name;
    }
}

File 17 of 34 : AddressUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library AddressUpgradeable {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     *
     * Furthermore, `isContract` will also return true if the target contract within
     * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
     * which only has an effect at the end of a transaction.
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

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

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

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

File 18 of 34 : ILinearVestingWritableRestricted.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.23;

import {UserAllocation} from "../../LinearVestingStruct.sol";

interface ILinearVestingWritableRestricted {
    function initialize(address _token, address _ido) external;

    /**
     * @notice Update the merkle root and vesting period.
     * @param merkleRoot_ New merkle root.
     * @param startTime_ New start time. Can be set in past as we need such purpose, e.g. contract is
     *                   NOT deployed whereas the vesting period should have already started.
     * @param endTime_ New end time.
     * @param toClaim Amount of tokens to lock for claiming. If it's zero, tokens won't be transferred to the contract.
     */
    function update(
        bytes32 merkleRoot_,
        uint32 startTime_,
        uint32 endTime_,
        uint256 toClaim
    ) external returns (bool);

    function setRefundPeriod(
        uint256 _refundStart,
        uint256 _refundEnd
    ) external;
}

File 19 of 34 : PausableUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;

import "../utils/ContextUpgradeable.sol";
import {Initializable} from "../proxy/utils/Initializable.sol";

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract PausableUpgradeable is Initializable, ContextUpgradeable {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    function __Pausable_init() internal onlyInitializing {
        __Pausable_init_unchained();
    }

    function __Pausable_init_unchained() internal onlyInitializing {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }

    /**
     * @dev This empty reserved space is put in place to allow future versions to add new
     * variables without shifting down storage in the inheritance chain.
     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
     */
    uint256[49] private __gap;
}

File 20 of 34 : Initializable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (proxy/utils/Initializable.sol)

pragma solidity ^0.8.2;

import "../../utils/AddressUpgradeable.sol";

/**
 * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed
 * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an
 * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer
 * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.
 *
 * The initialization functions use a version number. Once a version number is used, it is consumed and cannot be
 * reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in
 * case an upgrade adds a module that needs to be initialized.
 *
 * For example:
 *
 * [.hljs-theme-light.nopadding]
 * ```solidity
 * contract MyToken is ERC20Upgradeable {
 *     function initialize() initializer public {
 *         __ERC20_init("MyToken", "MTK");
 *     }
 * }
 *
 * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable {
 *     function initializeV2() reinitializer(2) public {
 *         __ERC20Permit_init("MyToken");
 *     }
 * }
 * ```
 *
 * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as
 * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.
 *
 * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure
 * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.
 *
 * [CAUTION]
 * ====
 * Avoid leaving a contract uninitialized.
 *
 * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation
 * contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke
 * the {_disableInitializers} function in the constructor to automatically lock it when it is deployed:
 *
 * [.hljs-theme-light.nopadding]
 * ```
 * /// @custom:oz-upgrades-unsafe-allow constructor
 * constructor() {
 *     _disableInitializers();
 * }
 * ```
 * ====
 */
abstract contract Initializable {
    /**
     * @dev Indicates that the contract has been initialized.
     * @custom:oz-retyped-from bool
     */
    uint8 private _initialized;

    /**
     * @dev Indicates that the contract is in the process of being initialized.
     */
    bool private _initializing;

    /**
     * @dev Triggered when the contract has been initialized or reinitialized.
     */
    event Initialized(uint8 version);

    /**
     * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope,
     * `onlyInitializing` functions can be used to initialize parent contracts.
     *
     * Similar to `reinitializer(1)`, except that functions marked with `initializer` can be nested in the context of a
     * constructor.
     *
     * Emits an {Initialized} event.
     */
    modifier initializer() {
        bool isTopLevelCall = !_initializing;
        require(
            (isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1),
            "Initializable: contract is already initialized"
        );
        _initialized = 1;
        if (isTopLevelCall) {
            _initializing = true;
        }
        _;
        if (isTopLevelCall) {
            _initializing = false;
            emit Initialized(1);
        }
    }

    /**
     * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the
     * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be
     * used to initialize parent contracts.
     *
     * A reinitializer may be used after the original initialization step. This is essential to configure modules that
     * are added through upgrades and that require initialization.
     *
     * When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer`
     * cannot be nested. If one is invoked in the context of another, execution will revert.
     *
     * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in
     * a contract, executing them in the right order is up to the developer or operator.
     *
     * WARNING: setting the version to 255 will prevent any future reinitialization.
     *
     * Emits an {Initialized} event.
     */
    modifier reinitializer(uint8 version) {
        require(!_initializing && _initialized < version, "Initializable: contract is already initialized");
        _initialized = version;
        _initializing = true;
        _;
        _initializing = false;
        emit Initialized(version);
    }

    /**
     * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the
     * {initializer} and {reinitializer} modifiers, directly or indirectly.
     */
    modifier onlyInitializing() {
        require(_initializing, "Initializable: contract is not initializing");
        _;
    }

    /**
     * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call.
     * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized
     * to any version. It is recommended to use this to lock implementation contracts that are designed to be called
     * through proxies.
     *
     * Emits an {Initialized} event the first time it is successfully executed.
     */
    function _disableInitializers() internal virtual {
        require(!_initializing, "Initializable: contract is initializing");
        if (_initialized != type(uint8).max) {
            _initialized = type(uint8).max;
            emit Initialized(type(uint8).max);
        }
    }

    /**
     * @dev Returns the highest version that has been initialized. See {reinitializer}.
     */
    function _getInitializedVersion() internal view returns (uint8) {
        return _initialized;
    }

    /**
     * @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}.
     */
    function _isInitializing() internal view returns (bool) {
        return _initializing;
    }
}

File 21 of 34 : AccessControlEnumerableUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (access/AccessControlEnumerable.sol)

pragma solidity ^0.8.0;

import "./IAccessControlEnumerableUpgradeable.sol";
import "./AccessControlUpgradeable.sol";
import "../utils/structs/EnumerableSetUpgradeable.sol";
import {Initializable} from "../proxy/utils/Initializable.sol";

/**
 * @dev Extension of {AccessControl} that allows enumerating the members of each role.
 */
abstract contract AccessControlEnumerableUpgradeable is Initializable, IAccessControlEnumerableUpgradeable, AccessControlUpgradeable {
    using EnumerableSetUpgradeable for EnumerableSetUpgradeable.AddressSet;

    mapping(bytes32 => EnumerableSetUpgradeable.AddressSet) private _roleMembers;

    function __AccessControlEnumerable_init() internal onlyInitializing {
    }

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

    /**
     * @dev Returns one of the accounts that have `role`. `index` must be a
     * value between 0 and {getRoleMemberCount}, non-inclusive.
     *
     * Role bearers are not sorted in any particular way, and their ordering may
     * change at any point.
     *
     * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
     * you perform all queries on the same block. See the following
     * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
     * for more information.
     */
    function getRoleMember(bytes32 role, uint256 index) public view virtual override returns (address) {
        return _roleMembers[role].at(index);
    }

    /**
     * @dev Returns the number of accounts that have `role`. Can be used
     * together with {getRoleMember} to enumerate all bearers of a role.
     */
    function getRoleMemberCount(bytes32 role) public view virtual override returns (uint256) {
        return _roleMembers[role].length();
    }

    /**
     * @dev Overload {_grantRole} to track enumerable memberships
     */
    function _grantRole(bytes32 role, address account) internal virtual override {
        super._grantRole(role, account);
        _roleMembers[role].add(account);
    }

    /**
     * @dev Overload {_revokeRole} to track enumerable memberships
     */
    function _revokeRole(bytes32 role, address account) internal virtual override {
        super._revokeRole(role, account);
        _roleMembers[role].remove(account);
    }

    /**
     * @dev This empty reserved space is put in place to allow future versions to add new
     * variables without shifting down storage in the inheritance chain.
     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
     */
    uint256[49] private __gap;
}

File 22 of 34 : ReentrancyGuardUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;
import {Initializable} from "../proxy/utils/Initializable.sol";

/**
 * @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 ReentrancyGuardUpgradeable is Initializable {
    // 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;

    function __ReentrancyGuard_init() internal onlyInitializing {
        __ReentrancyGuard_init_unchained();
    }

    function __ReentrancyGuard_init_unchained() internal onlyInitializing {
        _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() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

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

    /**
     * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
     * `nonReentrant` function in the call stack.
     */
    function _reentrancyGuardEntered() internal view returns (bool) {
        return _status == _ENTERED;
    }

    /**
     * @dev This empty reserved space is put in place to allow future versions to add new
     * variables without shifting down storage in the inheritance chain.
     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
     */
    uint256[49] private __gap;
}

File 23 of 34 : IERC20PermitUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.4) (token/ERC20/extensions/IERC20Permit.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 *
 * ==== Security Considerations
 *
 * There are two important considerations concerning the use of `permit`. The first is that a valid permit signature
 * expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be
 * considered as an intention to spend the allowance in any specific way. The second is that because permits have
 * built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should
 * take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be
 * generally recommended is:
 *
 * ```solidity
 * function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public {
 *     try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {}
 *     doThing(..., value);
 * }
 *
 * function doThing(..., uint256 value) public {
 *     token.safeTransferFrom(msg.sender, address(this), value);
 *     ...
 * }
 * ```
 *
 * Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of
 * `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also
 * {SafeERC20-safeTransferFrom}).
 *
 * Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so
 * contracts should have entry points that don't rely on permit.
 */
interface IERC20PermitUpgradeable {
    /**
     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
     * given ``owner``'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     *
     * CAUTION: See Security Considerations above.
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    /**
     * @dev Returns the current nonce for `owner`. This value must be
     * included whenever a signature is generated for {permit}.
     *
     * Every successful call to {permit} increases ``owner``'s nonce by one. This
     * prevents a signature from being used multiple times.
     */
    function nonces(address owner) external view returns (uint256);

    /**
     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}

File 24 of 34 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

File 25 of 34 : ContextUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)

pragma solidity ^0.8.0;
import {Initializable} from "../proxy/utils/Initializable.sol";

/**
 * @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 ContextUpgradeable is Initializable {
    function __Context_init() internal onlyInitializing {
    }

    function __Context_init_unchained() internal onlyInitializing {
    }
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev This empty reserved space is put in place to allow future versions to add new
     * variables without shifting down storage in the inheritance chain.
     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
     */
    uint256[50] private __gap;
}

File 26 of 34 : AccessControlUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/AccessControl.sol)

pragma solidity ^0.8.0;

import "./IAccessControlUpgradeable.sol";
import "../utils/ContextUpgradeable.sol";
import "../utils/StringsUpgradeable.sol";
import "../utils/introspection/ERC165Upgradeable.sol";
import {Initializable} from "../proxy/utils/Initializable.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:
 *
 * ```solidity
 * 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}:
 *
 * ```solidity
 * 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. We recommend using {AccessControlDefaultAdminRules}
 * to enforce additional security measures for this role.
 */
abstract contract AccessControlUpgradeable is Initializable, ContextUpgradeable, IAccessControlUpgradeable, ERC165Upgradeable {
    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);
        _;
    }

    function __AccessControl_init() internal onlyInitializing {
    }

    function __AccessControl_init_unchained() internal onlyInitializing {
    }
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IAccessControlUpgradeable).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 `_msgSender()` is missing `role`.
     * Overriding this function changes the behavior of the {onlyRole} modifier.
     *
     * Format of the revert message is described in {_checkRole}.
     *
     * _Available since v4.6._
     */
    function _checkRole(bytes32 role) internal view virtual {
        _checkRole(role, _msgSender());
    }

    /**
     * @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 ",
                        StringsUpgradeable.toHexString(account),
                        " is missing role ",
                        StringsUpgradeable.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.
     *
     * May emit a {RoleGranted} event.
     */
    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.
     *
     * May emit a {RoleRevoked} event.
     */
    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`.
     *
     * May emit a {RoleRevoked} event.
     */
    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.
     *
     * May emit a {RoleGranted} event.
     *
     * [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.
     *
     * May emit a {RoleGranted} event.
     */
    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.
     *
     * May emit a {RoleRevoked} event.
     */
    function _revokeRole(bytes32 role, address account) internal virtual {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }

    /**
     * @dev This empty reserved space is put in place to allow future versions to add new
     * variables without shifting down storage in the inheritance chain.
     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
     */
    uint256[49] private __gap;
}

File 27 of 34 : EnumerableSetUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/structs/EnumerableSet.sol)
// This file was procedurally generated from scripts/generate/templates/EnumerableSet.js.

pragma solidity ^0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```solidity
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 *
 * [WARNING]
 * ====
 * Trying to delete such a structure from storage will likely result in data corruption, rendering the structure
 * unusable.
 * See https://github.com/ethereum/solidity/pull/11843[ethereum/solidity#11843] for more info.
 *
 * In order to clean an EnumerableSet, you can either remove all elements one by one or create a fresh instance using an
 * array of EnumerableSet.
 * ====
 */
library EnumerableSetUpgradeable {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;
        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping(bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) {
            // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            if (lastIndex != toDeleteIndex) {
                bytes32 lastValue = set._values[lastIndex];

                // Move the last value to the index where the value to delete is
                set._values[toDeleteIndex] = lastValue;
                // Update the index for the moved value
                set._indexes[lastValue] = valueIndex; // Replace lastValue's index to valueIndex
            }

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        return set._values[index];
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function _values(Set storage set) private view returns (bytes32[] memory) {
        return set._values;
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(Bytes32Set storage set) internal view returns (bytes32[] memory) {
        bytes32[] memory store = _values(set._inner);
        bytes32[] memory result;

        /// @solidity memory-safe-assembly
        assembly {
            result := store
        }

        return result;
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(AddressSet storage set) internal view returns (address[] memory) {
        bytes32[] memory store = _values(set._inner);
        address[] memory result;

        /// @solidity memory-safe-assembly
        assembly {
            result := store
        }

        return result;
    }

    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(UintSet storage set) internal view returns (uint256[] memory) {
        bytes32[] memory store = _values(set._inner);
        uint256[] memory result;

        /// @solidity memory-safe-assembly
        assembly {
            result := store
        }

        return result;
    }
}

File 28 of 34 : IAccessControlEnumerableUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/IAccessControlEnumerable.sol)

pragma solidity ^0.8.0;

import "./IAccessControlUpgradeable.sol";

/**
 * @dev External interface of AccessControlEnumerable declared to support ERC165 detection.
 */
interface IAccessControlEnumerableUpgradeable is IAccessControlUpgradeable {
    /**
     * @dev Returns one of the accounts that have `role`. `index` must be a
     * value between 0 and {getRoleMemberCount}, non-inclusive.
     *
     * Role bearers are not sorted in any particular way, and their ordering may
     * change at any point.
     *
     * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
     * you perform all queries on the same block. See the following
     * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
     * for more information.
     */
    function getRoleMember(bytes32 role, uint256 index) external view returns (address);

    /**
     * @dev Returns the number of accounts that have `role`. Can be used
     * together with {getRoleMember} to enumerate all bearers of a role.
     */
    function getRoleMemberCount(bytes32 role) external view returns (uint256);
}

File 29 of 34 : IAccessControlUpgradeable.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 IAccessControlUpgradeable {
    /**
     * @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 30 of 34 : StringsUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

import "./math/MathUpgradeable.sol";
import "./math/SignedMathUpgradeable.sol";

/**
 * @dev String operations.
 */
library StringsUpgradeable {
    bytes16 private constant _SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = MathUpgradeable.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `int256` to its ASCII `string` decimal representation.
     */
    function toString(int256 value) internal pure returns (string memory) {
        return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMathUpgradeable.abs(value))));
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, MathUpgradeable.log256(value) + 1);
        }
    }

    /**
     * @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] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }

    /**
     * @dev Returns true if the two strings are equal.
     */
    function equal(string memory a, string memory b) internal pure returns (bool) {
        return keccak256(bytes(a)) == keccak256(bytes(b));
    }
}

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

pragma solidity ^0.8.0;

import "./IERC165Upgradeable.sol";
import {Initializable} from "../../proxy/utils/Initializable.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 ERC165Upgradeable is Initializable, IERC165Upgradeable {
    function __ERC165_init() internal onlyInitializing {
    }

    function __ERC165_init_unchained() internal onlyInitializing {
    }
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165Upgradeable).interfaceId;
    }

    /**
     * @dev This empty reserved space is put in place to allow future versions to add new
     * variables without shifting down storage in the inheritance chain.
     * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
     */
    uint256[50] private __gap;
}

File 32 of 34 : MathUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library MathUpgradeable {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

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

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

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

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 33 of 34 : SignedMathUpgradeable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol)

pragma solidity ^0.8.0;

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

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

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

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

File 34 of 34 : IERC165Upgradeable.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 IERC165Upgradeable {
    /**
     * @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);
}

Settings
{
  "optimizer": {
    "enabled": true,
    "mode": "3"
  },
  "evmVersion": "paris",
  "outputSelection": {
    "*": {
      "*": [
        "abi",
        "metadata"
      ],
      "": [
        "ast"
      ]
    }
  },
  "detectMissingLibraries": false,
  "forceEVMLA": false,
  "enableEraVMExtensions": false,
  "libraries": {}
}

Contract ABI

[{"inputs":[],"name":"AllocNotFound","type":"error"},{"inputs":[],"name":"AlreadyClaimedOrRenounced","type":"error"},{"inputs":[],"name":"HasRefunded","type":"error"},{"inputs":[],"name":"InvalidMerkleRoot","type":"error"},{"inputs":[],"name":"InvalidTimings","type":"error"},{"inputs":[],"name":"NoIDO","type":"error"},{"inputs":[],"name":"NoTokensToClaim","type":"error"},{"inputs":[],"name":"NotAuthorized","type":"error"},{"inputs":[],"name":"RefundNotEnabled","type":"error"},{"inputs":[],"name":"ZeroTokenAddress","type":"error"},{"inputs":[],"name":"isCrosschainIDO","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Claimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"components":[{"internalType":"address","name":"vestedToken","type":"address"},{"internalType":"address","name":"ido","type":"address"}],"indexed":false,"internalType":"struct LinearVestingTypes.SetUp","name":"setUp","type":"tuple"}],"name":"LinearVestingSetUp","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"start","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"end","type":"uint256"}],"name":"RefundPeriodUpdated","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":"uint32","name":"start","type":"uint32"},{"indexed":true,"internalType":"uint32","name":"end","type":"uint32"},{"indexed":false,"internalType":"uint256","name":"totalVested","type":"uint256"}],"name":"SettingsUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"startAmount","type":"uint256"}],"internalType":"struct UserAllocation","name":"alloc","type":"tuple"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"claim","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"endTime","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"startAmount","type":"uint256"}],"internalType":"struct UserAllocation","name":"alloc","type":"tuple"}],"name":"getClaimableAmount","outputs":[{"internalType":"uint256","name":"claimableAmount","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":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"_token","type":"address"},{"internalType":"address","name":"_ido","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isCrosschainIDO","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"refundEnd","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"refundStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceClaimAndRefund","outputs":[],"stateMutability":"payable","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":[{"internalType":"uint256","name":"_refundStart","type":"uint256"},{"internalType":"uint256","name":"_refundEnd","type":"uint256"}],"name":"setRefundPeriod","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTime","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalVested","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot_","type":"bytes32"},{"internalType":"uint32","name":"startTime_","type":"uint32"},{"internalType":"uint32","name":"endTime_","type":"uint32"},{"internalType":"uint256","name":"toClaim","type":"uint256"}],"name":"update","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"userClaims","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

9c4d535b00000000000000000000000000000000000000000000000000000000000000000100031bc8fbfa8bd499410482301078fdfce9affb6e72adf4db926e5a8a5f8b00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x0004000000000002000900000000000200000060041002700000028e03400197000300000031035500020000000103550000028e0040019d0000008004000039000000400040043f0000000100200190000000370000c13d000000040030008c000005b50000413d000000000201043b000000e002200270000002900020009c0000003f0000a13d000002910020009c000000730000213d0000029b0020009c000000b20000a13d0000029c0020009c000001810000213d0000029f0020009c000001a70000613d000002a00020009c000005b50000c13d000000840030008c000005b50000413d0000000002000416000000000002004b000005b50000c13d0000000402100370000000000202043b000700000002001d0000002402100370000000000202043b000600000002001d0000028e0020009c000005b50000213d0000004402100370000000000202043b000500000002001d0000028e0020009c000005b50000213d0000006401100370000000000101043b000400000001001d0a3406090000040f0000000702000029000000000002004b0000030d0000c13d000000400100043d000002cd02000041000003180000013d0000000001000416000000000001004b000005b50000c13d0000002001000039000001000010044300000120000004430000028f0100004100000a350001042e000002a40020009c0000009b0000a13d000002a50020009c000000d10000a13d000002a60020009c0000018a0000213d000002a90020009c000001ad0000613d000002aa0020009c000005b50000c13d000000440030008c000005b50000413d0000000002000416000000000002004b000005b50000c13d0000000402100370000000000202043b000700000002001d000002b50020009c000005b50000213d0000002401100370000000000101043b000600000001001d000002b50010009c000005b50000213d0000000003000415000000090330008a0000000503300210000000000200041a0000ff0001200190000002dd0000c13d0000000003000415000000080330008a0000000503300210000000ff00200190000002dd0000c13d000002d70120019700000101011001bf0000000002000019000000000010041b0000ff0000100190000003000000c13d000000400100043d0000006402100039000002e00300004100000000003204350000004402100039000002e103000041000000000032043500000024021000390000002b03000039000003c10000013d000002920020009c000000e60000a13d000002930020009c000001970000213d000002960020009c000001d50000613d000002970020009c000005b50000c13d000000440030008c000005b50000413d0000000002000416000000000002004b000005b50000c13d0000002402100370000000000602043b0000000401100370000000000501043b000002b701000041000000000101041a000000ff00100190000002750000c13d000002bb01000041000000000101041a000002b5011001970000000002000411000000000021004b000003a10000c13d000002bc01000041000000000051041b000002bd01000041000000000061041b00000000010004140000028e0010009c0000028e01008041000000c001100210000002be011001c70000800d020000390000000303000039000002bf04000041000002890000013d000002ae0020009c000001070000213d000002b20020009c000001da0000613d000002b30020009c000001e70000613d000002b40020009c000005b50000c13d000000240030008c000005b50000413d0000000002000416000000000002004b000005b50000c13d0000000401100370000000000101043b000000000010043f000000c901000039000000200010043f000000400200003900000000010000190a340a150000040f0000000101100039000002610000013d000002a10020009c000001ec0000613d000002a20020009c000002070000613d000002a30020009c000005b50000c13d000000440030008c000005b50000413d0000000002000416000000000002004b000005b50000c13d0000002402100370000000000202043b000700000002001d000002b50020009c000005b50000213d0000000401100370000000000101043b000000000010043f000000c901000039000000200010043f000000400200003900000000010000190a340a150000040f0000000702000029000000000020043f000000200010043f000000000100001900000040020000390a340a150000040f0000026e0000013d000002ab0020009c0000018e0000613d000002ac0020009c000002200000613d000002ad0020009c000005b50000c13d0000000001000416000000000001004b000005b50000c13d0a3406090000040f000000400100043d0000003302000039000000000302041a000000ff00300190000002790000c13d0000004402100039000002f403000041000000000032043500000024021000390000001403000039000002930000013d000002980020009c000002310000613d000002990020009c0000023f0000613d0000029a0020009c000005b50000c13d000000440030008c000005b50000413d0000000002000416000000000002004b000005b50000c13d0000002402100370000000000202043b000700000002001d000002b50020009c000005b50000213d0000000401100370000000000101043b000600000001001d000000000010043f000000c901000039000000200010043f000000400200003900000000010000190a340a150000040f0000000101100039000000000101041a0a3406b60000040f000000060100002900000007020000290a34077b0000040f000000000100001900000a350001042e000002af0020009c0000024c0000613d000002b00020009c000002580000613d000002b10020009c000005b50000c13d000000440030008c000005b50000413d0000000002000416000000000002004b000005b50000c13d0000000402100370000000000202043b000700000002001d0000002401100370000000000101043b000600000001001d000002b50010009c000005b50000213d0000000701000029000000000010043f000000c901000039000000200010043f00000000010004140000028e0010009c0000028e01008041000000c001100210000002d9011001c700008010020000390a340a2f0000040f0000000100200190000005b50000613d000000000101043b0000000101100039000000000101041a0a3406b60000040f0000000701000029000000000010043f000000c901000039000000200010043f00000000010004140000028e0010009c0000028e01008041000000c001100210000002d9011001c700008010020000390a340a2f0000040f0000000100200190000005b50000613d000000000101043b0000000602000029000000000020043f000000200010043f00000000010004140000028e0010009c0000028e01008041000000c001100210000002d9011001c700008010020000390a340a2f0000040f0000000100200190000005b50000613d000000000101043b000000000101041a000000ff00100190000001760000c13d0000000701000029000000000010043f000000c901000039000000200010043f00000000010004140000028e0010009c0000028e01008041000000c001100210000002d9011001c700008010020000390a340a2f0000040f0000000100200190000005b50000613d000000000101043b0000000602000029000000000020043f000000200010043f00000000010004140000028e0010009c0000028e01008041000000c001100210000002d9011001c700008010020000390a340a2f0000040f0000000100200190000005b50000613d000000000101043b000000000201041a000003010220019700000001022001bf000000000021041b00000000010004140000028e0010009c0000028e01008041000000c001100210000002be011001c70000800d0200003900000004030000390000000007000411000002da04000041000000070500002900000006060000290a340a2a0000040f0000000100200190000005b50000613d0000000701000029000000000010043f000000fb01000039000000200010043f000000400200003900000000010000190a340a150000040f00000006020000290a3409cf0000040f000000000100001900000a350001042e0000029d0020009c0000025d0000613d0000029e0020009c000005b50000c13d0000000001000416000000000001004b000005b50000c13d000002bd01000041000002610000013d000002a70020009c000002650000613d000002a80020009c000005b50000c13d0000000001000416000000000001004b000005b50000c13d000002c301000041000000000101041a0000028e01100197000000800010043f000002b80100004100000a350001042e000002940020009c0000026a0000613d000002950020009c000005b50000c13d000000240030008c000005b50000413d0000000002000416000000000002004b000005b50000c13d0000000401100370000000000101043b000002b50010009c000005b50000213d0a3405f80000040f000000000101041a000002450000013d0000000001000416000000000001004b000005b50000c13d000000800000043f000002b80100004100000a350001042e000000840030008c000005b50000413d0000000002000416000000000002004b000005b50000c13d0000006402100370000000000202043b000002db0020009c000005b50000213d0000002305200039000000000035004b000005b50000813d000400040020003d0000000405100360000000000505043b000700000005001d000002db0050009c000005b50000213d000000240220003900000007050000290000000505500210000300000002001d000600000005001d000200000025001d000000020030006b000005b50000213d0000006503000039000000000203041a000000020020008c0000031e0000c13d000002cf01000041000000800010043f0000002001000039000000840010043f0000001f01000039000000a40010043f000002f201000041000000c40010043f000002e20100004100000a36000104300000000001000416000000000001004b000005b50000c13d000002c001000041000002610000013d000000240030008c000005b50000413d0000000002000416000000000002004b000005b50000c13d0000000401100370000000000101043b000002fd00100198000005b50000c13d000002fe0010009c000002c80000c13d0000000102000039000002cd0000013d0000000001000416000000000001004b000005b50000c13d000002c801000041000002610000013d0000000001000416000000000001004b000005b50000c13d0a3406090000040f000000400100043d0000003302000039000000000302041a000000ff003001900000028e0000c13d000003010330019700000001033001bf000000000032041b000000000200041100000000002104350000028e0010009c0000028e01008041000000400110021000000000020004140000028e0020009c0000028e02008041000000c002200210000000000112019f000002c9011001c70000800d020000390000000103000039000002d104000041000002890000013d000000440030008c000005b50000413d0000000002000416000000000002004b000005b50000c13d0000000402100370000000000202043b000000000020043f000000fb02000039000000200020043f0000002401100370000000000101043b000700000001001d000000400200003900000000010000190a340a150000040f00000007020000290a3409b40000040f0000000302200210000000000101041a000000000121022f000002b501100197000000ff0020008c0000000001002019000002450000013d000000440030008c000005b50000413d0000000002000416000000000002004b000005b50000c13d0000002402100370000000000202043b000002b50020009c000005b50000213d0000000003000411000000000032004b000002d10000c13d0000000401100370000000000101043b0a34077b0000040f000000000100001900000a350001042e000000240030008c000005b50000413d0000000002000416000000000002004b000005b50000c13d0000000401100370000000000101043b000000000010043f000000fb01000039000000200010043f000000400200003900000000010000190a340a150000040f000002610000013d000000640030008c000005b50000413d0000000001000416000000000001004b000005b50000c13d0a34085f0000040f000000400200043d00000000001204350000028e0020009c0000028e020080410000004001200210000002b6011001c700000a350001042e000002bc01000041000000000101041a000000000001004b000002540000613d000002bd01000041000000000101041a000000000001004b0000029e0000c13d000002fc01000041000000800010043f000002ba0100004100000a36000104300000000001000416000000000001004b000005b50000c13d000002c101000041000002610000013d0000000001000416000000000001004b000005b50000c13d000002bc01000041000000000101041a000000800010043f000002b80100004100000a350001042e0000000001000416000000000001004b000005b50000c13d00000033010000390000026e0000013d0000000001000416000000000001004b000005b50000c13d000002b701000041000000000101041a000000ff001001900000000001000039000000010100c039000000800010043f000002b80100004100000a350001042e000002b901000041000000800010043f000002ba0100004100000a36000104300000030103300197000000000032041b000000000200041100000000002104350000028e0010009c0000028e01008041000000400110021000000000020004140000028e0020009c0000028e02008041000000c002200210000000000112019f000002c9011001c70000800d020000390000000103000039000002f3040000410a340a2a0000040f0000000100200190000005b50000613d000000000100001900000a350001042e0000004402100039000002ce030000410000000000320435000000240210003900000010030000390000000000320435000002cf0200004100000000002104350000000402100039000000200300003900000000003204350000028e0010009c0000028e010080410000004001100210000002d0011001c700000a36000104300000000001000411000002b501100197000700000001001d000000000010043f000002ec01000041000000200010043f00000000010004140000028e0010009c0000028e01008041000000c001100210000002d9011001c700008010020000390a340a2f0000040f0000000100200190000005b50000613d000000000101043b000000000101041a000000000001004b000003160000c13d0000000701000029000000000010043f000002ec01000041000000200010043f00000000010004140000028e0010009c0000028e01008041000000c001100210000002d9011001c700008010020000390a340a2f0000040f0000000100200190000005b50000613d000000000101043b000000010200008a000000000021041b000002bb01000041000000000101041a000002b502100198000003cc0000c13d000000400100043d000002fb02000041000003180000013d000002ff0010009c00000000020000390000000102006039000003000010009c00000001022061bf000000010120018f000000800010043f000002b80100004100000a350001042e000002cf01000041000000800010043f0000002001000039000000840010043f0000002f01000039000000a40010043f000002f501000041000000c40010043f000002f601000041000000e40010043f000002f70100004100000a3600010430000500000003001d000300000001001d000400000002001d000002d20100004100000000001004430000000001000410000000040010044300000000010004140000028e0010009c0000028e01008041000000c001100210000002d3011001c700008002020000390a340a2f0000040f0000000100200190000003fe0000613d000000000101043b000000000001004b000003b50000c13d0000000402000029000000ff0120018f000000010010008c00000005010000290000000501100270000000000100003f000000010100603f000003b80000c13d000000030000006b000000630000613d0000030101200197000000010200003900000001011001bf000000000010041b0000ff0000100190000000690000613d000500000002001d0000003301000039000000000201041a0000030102200197000000000021041b00000001010000390000006502000039000000000012041b000000070000006b000004230000c13d000000400100043d000002df02000041000003180000013d00000006010000290000028e0510019700000005030000290000028e06300197000000000056004b000003a50000813d000000400100043d000002cb02000041000003180000013d000000400100043d000002f80200004100000000002104350000028e0010009c0000028e010080410000004001100210000002cc011001c700000a36000104300000000202000039000000000023041b0000003302000039000000000202041a000000ff00200190000003ff0000c13d0000000402100370000000000302043b000002b50030009c000005b50000213d0000000002000411000000000023004b000003a10000c13d000002bb02000041000000000202041a000002b502200198000005020000c13d000002b50030009c000005b50000213d0000002002400039000002c105000041000000000505041a000100000005001d00000000003204350000002403100370000000000303043b000000400540003900000000003504350000004401100370000000000101043b0000006003400039000000000013043500000060010000390000000000140435000002e90040009c0000041d0000213d0000008001400039000000400010043f0000028e0020009c0000028e02008041000000400120021000000000020404330000028e0020009c0000028e020080410000006002200210000000000112019f00000000020004140000028e0020009c0000028e02008041000000c002200210000000000112019f000002be011001c700008010020000390a340a2f0000040f0000000100200190000005b50000613d000000000101043b00000006020000290000003f02200039000002ea02200197000000400300043d0000000002230019000600000003001d000000000032004b00000000030000390000000103004039000002db0020009c0000041d0000213d00000001003001900000041d0000c13d000000400020043f000000070200002900000006030000290000000003230436000500000003001d000000000002004b000003980000613d0000000402000029000000200220003900000002022003670000000603000029000000030500002900000002060000290000002003300039000000002402043c00000000004304350000002005500039000000000065004b000003710000413d00000006020000290000000002020433000000000002004b000003980000613d0000000003000019000700000003001d000000050230021000000005022000290000000002020433000000000021004b000003860000813d000000000010043f000000200020043f0000000001000414000003890000013d000000000020043f000000200010043f00000000010004140000028e0010009c0000028e01008041000000c001100210000002d9011001c700008010020000390a340a2f0000040f0000000100200190000005b50000613d000000000101043b0000000703000029000000010330003900000006020000290000000002020433000000000023004b0000037c0000413d000000010010006c000005840000c13d0a34085f0000040f000700000001001d000000000001004b000005870000c13d000000400100043d000002f102000041000003180000013d000002e301000041000000800010043f000002ba0100004100000a3600010430000002c101000041000000000021041b0000002001300210000002c201100197000002c302000041000000000302041a000002c403300197000000000131019f000000000151019f000000000012041b0000000407000029000000000007004b000004090000c13d000002c801000041000000000101041a000004e90000013d00000005010000290000000501100270000000000100003f000000400100043d0000006402100039000002d40300004100000000003204350000004402100039000002d503000041000000000032043500000024021000390000002e030000390000000000320435000002cf0200004100000000002104350000000402100039000000200300003900000000003204350000028e0010009c0000028e010080410000004001100210000002d6011001c700000a3600010430000002d2010000410000000000100443000700000002001d000000040020044300000000010004140000028e0010009c0000028e01008041000000c001100210000002d3011001c700008002020000390a340a2f0000040f0000000100200190000003fe0000613d000000000101043b000000000001004b000005b50000613d000000400200043d000002f9010000410000000000120435000600000002001d00000004012000390000000002000411000000000021043500000000010004140000000702000029000000040020008c000003f70000613d00000006020000290000028e0020009c0000028e0200804100000040022002100000028e0010009c0000028e01008041000000c001100210000000000121019f000002f0011001c700000007020000290a340a2a0000040f00000060031002700001028e0030019d000300000001035500000001002001900000050d0000613d0000000601000029000002fa0010009c0000041d0000813d0000000601000029000000400010043f000000000100001900000a350001042e000000000001042f000002cf01000041000000800010043f0000002001000039000000840010043f0000001001000039000000a40010043f000002ce01000041000000c40010043f000002e20100004100000a3600010430000600000006001d000700000005001d000002c501000041000000000101041a000000400200043d0000002003200039000002c60400004100000000004304350000006403200039000000000073043500000044032000390000000004000410000000000043043500000024032000390000000004000411000000000043043500000064030000390000000000320435000002c70020009c000004dc0000a13d000002ef01000041000000000010043f0000004101000039000000040010043f000002f00100004100000a36000104300000000001000411000000000010043f000002d801000041000000200010043f00000000010004140000028e0010009c0000028e01008041000000c001100210000002d9011001c700008010020000390a340a2f0000040f0000000100200190000005b50000613d000000000101043b000000000101041a000000ff00100190000004600000c13d000000000000043f000000c901000039000000200010043f00000000010004140000028e0010009c0000028e01008041000000c001100210000002d9011001c700008010020000390a340a2f0000040f0000000100200190000005b50000613d000000000101043b0000000002000411000000000020043f000000200010043f00000000010004140000028e0010009c0000028e01008041000000c001100210000002d9011001c700008010020000390a340a2f0000040f0000000100200190000005b50000613d000000000101043b000000000201041a000003010220019700000001022001bf000000000021041b00000000010004140000028e0010009c0000028e01008041000000c001100210000002be011001c70000800d020000390000000403000039000002da040000410000000005000019000000000600041100000000070600190a340a2a0000040f0000000100200190000005b50000613d000000000000043f000000fb01000039000000200010043f00000000010004140000028e0010009c0000028e01008041000000c001100210000002d9011001c700008010020000390a340a2f0000040f0000000100200190000005b50000613d000000000201043b0000000001000411000000000010043f000400000002001d0000000101200039000300000001001d000000200010043f00000000010004140000028e0010009c0000028e01008041000000c001100210000002d9011001c700008010020000390a340a2f0000040f0000000100200190000005b50000613d000000000101043b000000000101041a000000000001004b000004a90000c13d0000000401000029000000000101041a000200000001001d000002db0010009c0000041d0000213d000000020100002900000001011000390000000402000029000000000012041b000000000020043f00000000010004140000028e0010009c0000028e01008041000000c001100210000002c9011001c700008010020000390a340a2f0000040f0000000100200190000005b50000613d000000000101043b00000002011000290000000002000411000000000021041b0000000401000029000000000101041a000400000001001d000000000020043f0000000301000029000000200010043f00000000010004140000028e0010009c0000028e01008041000000c001100210000002d9011001c700008010020000390a340a2f0000040f0000000100200190000005b50000613d000000000101043b0000000402000029000000000021041b000002c501000041000000000201041a000002dc022001970000000703000029000000000232019f000000000021041b000002bb01000041000000000201041a000002dc022001970000000604000029000000000242019f000000000021041b000000400100043d0000002002100039000000000042043500000000003104350000028e0010009c0000028e01008041000000400110021000000000020004140000028e0020009c0000028e02008041000000c002200210000000000112019f000002d9011001c70000800d020000390000000103000039000002dd040000410a340a2a0000040f0000000100200190000005b50000613d000000050000006b0000028c0000c13d000000000200041a0000030201200197000000000010041b000000400100043d000000010300003900000000003104350000028e0010009c0000028e01008041000000400110021000000000020004140000028e0020009c0000028e02008041000000c002200210000000000112019f000002c9011001c70000800d02000039000002de04000041000002890000013d000000a003200039000000400030043f000002b5011001970a3408ed0000040f000002c802000041000000000102041a0000000403000029000000000031001a000005a90000413d0000000001310019000000000012041b00000007050000290000000606000029000000400200043d00000000001204350000028e0020009c0000028e02008041000000400120021000000000020004140000028e0020009c0000028e02008041000000c002200210000000000112019f000002c9011001c70000800d020000390000000303000039000002ca040000410a340a2a0000040f0000000100200190000005b50000613d000000400100043d000000010200003900000000002104350000028e0010009c0000028e010080410000004001100210000002b6011001c700000a350001042e000002e401000041000000800010043f000000840030043f0000000001000414000000040020008c0000051a0000c13d0000000103000031000000600030008c000000600400003900000000040340190000053f0000013d0000028e033001970000001f0530018f000002e606300198000000400200043d00000000046200190000056a0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000005150000c13d0000056a0000013d0000028e0010009c0000028e01008041000000c001100210000002e5011001c70a340a2f0000040f00000060031002700000028e03300197000000600030008c000000600400003900000000040340190000001f0640018f000000600740019000000080057001bf0000052e0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b0000052a0000c13d000000000006004b0000053b0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000055f0000613d0000001f01400039000000e00110018f0000008002100039000000400020043f000000600030008c000005b50000413d000000e003100039000000400030043f000000800300043d0000000000320435000000a00200043d000002e70020009c000005b50000213d000000a0031000390000000000230435000000c00200043d000000000002004b0000000003000039000000010300c039000000000032004b000005b50000c13d000000c0011000390000000000210435000000400400043d000000000002004b0000057d0000c13d00000002010003670000000402100370000000000302043b000002b50030009c000003310000a13d000005b50000013d0000001f0530018f000002e606300198000000400200043d00000000046200190000056a0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000005660000c13d000000000005004b000005770000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000028e0020009c0000028e020080410000004002200210000000000112019f00000a3600010430000002e80100004100000000001404350000028e0040009c0000028e040080410000004001400210000002cc011001c700000a3600010430000000400100043d000002eb02000041000003180000013d000002c501000041000000000101041a000600000001001d00000004010000390000000201100367000000000101043b000002b50010009c000005b50000213d000000000010043f000002ec01000041000000200010043f00000000010004140000028e0010009c0000028e01008041000000c001100210000002d9011001c700008010020000390a340a2f0000040f0000000100200190000005b50000613d000000000101043b000000000201041a000000070020002a000005a90000413d0000000702200029000000000021041b000002c001000041000000000301041a0000000702300029000000000032004b00000000030000390000000103004039000000010030008c000005af0000c13d000002ef01000041000000000010043f0000001101000039000000040010043f000002f00100004100000a3600010430000000000021041b00000004010000390000000201100367000000000101043b000002b50010009c000005b70000a13d000000000100001900000a3600010430000000400200043d0000002003200039000002ed0400004100000000004304350000004403200039000000070400002900000000004304350000002403200039000000000013043500000044010000390000000000120435000002e90020009c0000041d0000213d0000000601000029000002b5011001970000008003200039000000400030043f000600000001001d0a3408ed0000040f00000004010000390000000201100367000000000601043b000002b50060009c000005b50000213d000000400100043d000000070200002900000000002104350000028e0010009c0000028e01008041000000400110021000000000020004140000028e0020009c0000028e02008041000000c002200210000000000112019f000002c9011001c70000800d020000390000000303000039000002ee0400004100000006050000290a340a2a0000040f0000000100200190000005b50000613d00000001010000390000006502000039000000000012041b000002450000013d0000001f0220003900000303022001970000000001120019000000000021004b00000000020000390000000102004039000002db0010009c000005f20000213d0000000100200190000005f20000c13d000000400010043f000000000001042d000002ef01000041000000000010043f0000004101000039000000040010043f000002f00100004100000a3600010430000002b501100197000000000010043f000002ec01000041000000200010043f00000000010004140000028e0010009c0000028e01008041000000c001100210000002d9011001c700008010020000390a340a2f0000040f0000000100200190000006070000613d000000000101043b000000000001042d000000000100001900000a360001043000040000000000020000000001000411000000000010043f000002d801000041000000200010043f00000000010004140000028e0010009c0000028e01008041000000c001100210000002d9011001c700008010020000390a340a2f0000040f00000001002001900000061c0000613d000000000101043b000000000101041a000000ff001001900000061e0000613d000000000001042d000000000100001900000a3600010430000000400200043d000003040020009c000006270000413d000002ef01000041000000000010043f0000004101000039000000040010043f000002f00100004100000a36000104300000006004200039000000400040043f0000002a01000039000000000112043600000000030000310000000203300367000000000503034f0000000006010019000000005705043c0000000006760436000000000046004b0000062f0000c13d0000000004010433000002e70440019700000305044001c7000000000041043500000021042000390000000005040433000002e70550019700000306055001c700000000005404350000002904000039000000000600041100000000050600190000000006020433000000000046004b000006a10000a13d00000000061400190000000007060433000002e7077001970000000308500210000000780880018f000003070880021f0000030808800197000000000787019f00000000007604350000000406500270000000010440008a000000010040008c0000063e0000213d000000400700043d000000100050008c000006a70000813d000002e90070009c000006210000213d0000008004700039000000400040043f000000420500003900000000055704360000000008050019000000003603043c0000000005650436000000000045004b000006590000c13d0000000003080433000002e70330019700000305033001c70000000000380435000000000607001900000021037000390000000004030433000002e70440019700000306044001c7000000000043043500000041030000390000000004060433000000000034004b000006a10000a13d00000000048300190000000005040433000002e70550019700000305055001c70000000000540435000000010330008a000000010030008c000006680000213d000000400500043d000400000005001d00000020035000390000030a0400004100000000004304350000000003020433000300000003001d0000003702500039000100000006001d000200000008001d0a3408cb0000040f0000000302000029000000040120002900000037021000390000030b030000410000000000320435000000480210003900000001010000290000000003010433000100000003001d00000002010000290a3408cb0000040f0000000102000029000000030320002900000028023000390000000401000029000000000021043500000048023000390a3405e60000040f000002cf01000041000000400200043d000300000002001d0000000000120435000000040120003900000004020000290a3408d80000040f000000030200002900000000012100490000028e0010009c0000028e0100804100000060011002100000028e0020009c0000028e020080410000004002200210000000000121019f00000a3600010430000002ef01000041000000000010043f0000003201000039000000040010043f000002f00100004100000a3600010430000000440170003900000309020000410000000000210435000002cf010000410000000000170435000000240170003900000020020000390000000000210435000000040170003900000000002104350000028e0070009c0000028e070080410000004001700210000002d0011001c700000a36000104300004000000000002000400000001001d000000000010043f000000c901000039000000200010043f00000000010004140000028e0010009c0000028e01008041000000c001100210000002d9011001c700008010020000390a340a2f0000040f0000000100200190000006d60000613d000000000101043b0000000002000411000000000020043f000000200010043f00000000010004140000028e0010009c0000028e01008041000000c001100210000002d9011001c700008010020000390a340a2f0000040f0000000100200190000006d60000613d000000000101043b000000000101041a000000ff00100190000006d80000613d000000000001042d000000000100001900000a3600010430000000400200043d000003040020009c000006e10000413d000002ef01000041000000000010043f0000004101000039000000040010043f000002f00100004100000a36000104300000006004200039000000400040043f0000002a01000039000000000112043600000000030000310000000203300367000000000503034f0000000006010019000000005705043c0000000006760436000000000046004b000006e90000c13d0000000004010433000002e70440019700000305044001c7000000000041043500000021042000390000000005040433000002e70550019700000306055001c700000000005404350000002904000039000000000600041100000000050600190000000006020433000000000046004b000007650000a13d00000000061400190000000007060433000002e7077001970000000308500210000000780880018f000003070880021f0000030808800197000000000787019f00000000007604350000000406500270000000010440008a000000010040008c000006f80000213d000000100050008c0000076b0000813d000000400400043d000300000004001d000002e90040009c000006db0000213d00000003060000290000008004600039000000400040043f00000042050000390000000005560436000200000005001d000000003603043c0000000005650436000000000045004b000007150000c13d00000002090000290000000003090433000002e70330019700000305033001c70000000000390435000000030800002900000021038000390000000004030433000002e70440019700000306044001c700000000004304350000004103000039000000040500002900000000040500190000000005080433000000000035004b000007650000a13d00000000059300190000000006050433000002e7066001970000000307400210000000780770018f000003070770021f0000030807700197000000000667019f00000000006504350000000405400270000000010330008a000000010030008c000007260000213d000000100040008c0000076b0000813d000000400500043d000400000005001d00000020035000390000030a0400004100000000004304350000000003020433000100000003001d00000037025000390a3408cb0000040f0000000102000029000000040120002900000037021000390000030b030000410000000000320435000000480210003900000003010000290000000003010433000300000003001d00000002010000290a3408cb0000040f0000000302000029000000010320002900000028023000390000000401000029000000000021043500000048023000390a3405e60000040f000002cf01000041000000400200043d000300000002001d0000000000120435000000040120003900000004020000290a3408d80000040f000000030200002900000000012100490000028e0010009c0000028e0100804100000060011002100000028e0020009c0000028e020080410000004002200210000000000121019f00000a3600010430000002ef01000041000000000010043f0000003201000039000000040010043f000002f00100004100000a3600010430000000400100043d000000440210003900000309030000410000000000320435000002cf020000410000000000210435000000240210003900000020030000390000000000320435000000040210003900000000003204350000028e0010009c0000028e010080410000004001100210000002d0011001c700000a36000104300006000000000002000600000002001d000500000001001d000000000010043f000000c901000039000000200010043f00000000010004140000028e0010009c0000028e01008041000000c001100210000002d9011001c700008010020000390a340a2f0000040f00000001002001900000084b0000613d000000000101043b0000000602000029000002b502200197000600000002001d000000000020043f000000200010043f00000000010004140000028e0010009c0000028e01008041000000c001100210000002d9011001c700008010020000390a340a2f0000040f00000001002001900000084b0000613d000000000101043b000000000101041a000000ff00100190000007c90000613d0000000501000029000000000010043f000000c901000039000000200010043f00000000010004140000028e0010009c0000028e01008041000000c001100210000002d9011001c700008010020000390a340a2f0000040f00000001002001900000084b0000613d000000000101043b0000000602000029000000000020043f000000200010043f00000000010004140000028e0010009c0000028e01008041000000c001100210000002d9011001c700008010020000390a340a2f0000040f00000001002001900000084b0000613d000000000101043b000000000201041a0000030102200197000000000021041b00000000010004140000028e0010009c0000028e01008041000000c001100210000002be011001c70000800d02000039000000040300003900000000070004110000030c04000041000000050500002900000006060000290a340a2a0000040f00000001002001900000084b0000613d0000000501000029000000000010043f000000fb01000039000000200010043f00000000010004140000028e0010009c0000028e01008041000000c001100210000002d9011001c700008010020000390a340a2f0000040f00000001002001900000084b0000613d000000000201043b0000000601000029000000000010043f000500000002001d0000000101200039000300000001001d000000200010043f00000000010004140000028e0010009c0000028e01008041000000c001100210000002d9011001c700008010020000390a340a2f0000040f00000001002001900000084b0000613d0000000503000029000000000101043b000000000101041a000000000001004b0000084a0000613d000000000203041a000000000002004b0000084d0000613d000000000012004b000400000001001d0000082a0000613d000200000002001d000000000030043f00000000010004140000028e0010009c0000028e01008041000000c001100210000002c9011001c700008010020000390a340a2f0000040f00000001002001900000084b0000613d00000004020000290001000100200092000000000101043b0000000504000029000000000204041a000000010020006c000008530000a13d0000000202000029000000010220008a0000000001120019000000000101041a000200000001001d000000000040043f00000000010004140000028e0010009c0000028e01008041000000c001100210000002c9011001c700008010020000390a340a2f0000040f00000001002001900000084b0000613d000000000101043b00000001011000290000000202000029000000000021041b000000000020043f0000000301000029000000200010043f00000000010004140000028e0010009c0000028e01008041000000c001100210000002d9011001c700008010020000390a340a2f0000040f00000001002001900000084b0000613d000000000101043b0000000402000029000000000021041b0000000503000029000000000103041a000400000001001d000000000001004b000008590000613d000000000030043f00000000010004140000028e0010009c0000028e01008041000000c001100210000002c9011001c700008010020000390a340a2f0000040f00000001002001900000084b0000613d0000000402000029000000010220008a000000000101043b0000000001210019000000000001041b0000000501000029000000000021041b0000000601000029000000000010043f0000000301000029000000200010043f00000000010004140000028e0010009c0000028e01008041000000c001100210000002d9011001c700008010020000390a340a2f0000040f00000001002001900000084b0000613d000000000101043b000000000001041b000000000001042d000000000100001900000a3600010430000002ef01000041000000000010043f0000001101000039000000040010043f000002f00100004100000a3600010430000002ef01000041000000000010043f0000003201000039000000040010043f000002f00100004100000a3600010430000002ef01000041000000000010043f0000003101000039000000040010043f000002f00100004100000a36000104300001000000000002000002c301000041000000000101041a000100000001001d0000030d01000041000000000010044300000000010004140000028e0010009c0000028e01008041000000c0011002100000030e011001c70000800b020000390a340a2f0000040f0000000100200190000008c20000613d00000001060000290000028e03600197000000000501043b000000000435004b0000000001000019000008bb0000413d00000002010003670000002402100370000000000a02043b00000020026002700000028e06200197000000000065004b000008a60000813d0000004402100370000000000202043b000000400700043d0000030f0070009c000008c50000813d000000a008700039000000400080043f000000200870003900000000006804350000000000370435000002c808000041000000000808041a00000040097000390000000000890435000002c008000041000000000808041a000000600970003900000000008904350000008007700039000002c108000041000000000808041a00000000008704350000000006360049000003100060009c000008bc0000813d00000311074000d1000000000035004b0000089a0000613d00000000034700d9000003110030009c000008bc0000c13d00000000042a004b000008bc0000413d00000000056700d900000000034500a9000008a20000613d00000000044300d9000000000045004b000008bc0000c13d000003110330012a000000000023001a000008bc0000413d000000000a23001900010000000a001d0000000401100370000000000101043b000003120010009c000008c30000813d000000000010043f000002ec01000041000000200010043f00000000010004140000028e0010009c0000028e01008041000000c001100210000002d9011001c700008010020000390a340a2f0000040f0000000100200190000008c30000613d000000000101043b000000000101041a000000010110006b000008bc0000413d000000000001042d000002ef01000041000000000010043f0000001101000039000000040010043f000002f00100004100000a3600010430000000000001042f000000000100001900000a3600010430000002ef01000041000000000010043f0000004101000039000000040010043f000002f00100004100000a3600010430000000000003004b000008d50000613d000000000400001900000000052400190000000006140019000000000606043300000000006504350000002004400039000000000034004b000008ce0000413d00000000012300190000000000010435000000000001042d00000020030000390000000004310436000000003202043400000000002404350000004001100039000000000002004b000008e70000613d000000000400001900000000051400190000000006430019000000000606043300000000006504350000002004400039000000000024004b000008e00000413d000000000312001900000000000304350000001f0220003900000303022001970000000001210019000000000001042d0002000000000002000000400900043d000003130090009c0000096d0000813d000002b50a1001970000004001900039000000400010043f00000020019000390000031403000041000000000031043500000020010000390000000000190435000000002302043400000000010004140000000400a0008c000009290000c13d00000001020000390000000101000031000000000001004b000009410000613d0000001f0410003900000303044001970000003f044000390000030304400197000000400c00043d00000000044c00190000000000c4004b00000000050000390000000105004039000002db0040009c0000096d0000213d00000001005001900000096d0000c13d000000400040043f000000000b1c043600000303031001980000001f0410018f00000000013b001900000003050003670000091b0000613d000000000605034f00000000070b0019000000006806043c0000000007870436000000000017004b000009170000c13d000000000004004b000009430000613d000000000335034f0000000304400210000000000501043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000310435000009430000013d0000028e0030009c0000028e0300804100000060033002100000028e0020009c0000028e020080410000004002200210000000000223019f0000028e0010009c0000028e01008041000000c001100210000000000112019f00000000020a0019000200000009001d00010000000a001d0a340a2a0000040f000000010a0000290000000209000029000000010220018f000300000001035500000060011002700001028e0010019d0000028e01100197000000000001004b000009010000c13d000000600c000039000000800b00003900000000010c0433000000000002004b000009730000613d000000000001004b0000095e0000c13d00020000000c001d00010000000b001d000002d20100004100000000001004430000000400a0044300000000010004140000028e0010009c0000028e01008041000000c001100210000002d3011001c700008002020000390a340a2f0000040f0000000100200190000009a20000613d000000000101043b000000000001004b0000000201000029000009a30000613d0000000001010433000000000001004b000000010b0000290000096a0000613d000003150010009c0000096b0000213d000000200010008c0000096b0000413d00000000010b0433000000000001004b0000000002000039000000010200c039000000000021004b0000096b0000c13d000000000001004b000009860000613d000000000001042d000000000100001900000a3600010430000002ef01000041000000000010043f0000004101000039000000040010043f000002f00100004100000a3600010430000000000001004b0000099a0000c13d0000000002090019000000400300043d000200000003001d000002cf01000041000000000013043500000004013000390a3408d80000040f000000020200002900000000012100490000028e0010009c0000028e0100804100000060011002100000028e0020009c0000028e020080410000004002200210000000000121019f00000a3600010430000000400100043d00000064021000390000031603000041000000000032043500000044021000390000031703000041000000000032043500000024021000390000002a030000390000000000320435000002cf0200004100000000002104350000000402100039000000200300003900000000003204350000028e0010009c0000028e010080410000004001100210000002d6011001c700000a36000104300000028e00b0009c0000028e0b0080410000004002b002100000028e0010009c0000028e010080410000006001100210000000000121019f00000a3600010430000000000001042f000000400100043d00000044021000390000031803000041000000000032043500000024021000390000001d030000390000000000320435000002cf0200004100000000002104350000000402100039000000200300003900000000003204350000028e0010009c0000028e010080410000004001100210000002d0011001c700000a36000104300001000000000002000000000301041a000100000002001d000000000023004b000009c70000a13d000000000010043f00000000010004140000028e0010009c0000028e01008041000000c001100210000002c9011001c700008010020000390a340a2f0000040f0000000100200190000009cd0000613d000000000101043b00000001011000290000000002000019000000000001042d000002ef01000041000000000010043f0000003201000039000000040010043f000002f00100004100000a3600010430000000000100001900000a36000104300004000000000002000300000002001d000000000020043f000400000001001d0000000101100039000200000001001d000000200010043f00000000010004140000028e0010009c0000028e01008041000000c001100210000002d9011001c700008010020000390a340a2f0000040f000000010020019000000a0c0000613d000000000101043b000000000101041a000000000001004b000009e40000613d000000000001042d0000000402000029000000000102041a000002fa0010009c00000a0e0000813d000100000001001d0000000101100039000000000012041b000000000020043f00000000010004140000028e0010009c0000028e01008041000000c001100210000002c9011001c700008010020000390a340a2f0000040f000000010020019000000a0c0000613d000000000101043b00000001011000290000000302000029000000000021041b0000000401000029000000000101041a000400000001001d000000000020043f0000000201000029000000200010043f00000000010004140000028e0010009c0000028e01008041000000c001100210000002d9011001c700008010020000390a340a2f0000040f000000010020019000000a0c0000613d000000000101043b0000000402000029000000000021041b000000000001042d000000000100001900000a3600010430000002ef01000041000000000010043f0000004101000039000000040010043f000002f00100004100000a3600010430000000000001042f0000028e0010009c0000028e0100804100000040011002100000028e0020009c0000028e020080410000006002200210000000000112019f00000000020004140000028e0020009c0000028e02008041000000c002200210000000000112019f000002be011001c700008010020000390a340a2f0000040f000000010020019000000a280000613d000000000101043b000000000001042d000000000100001900000a360001043000000a2d002104210000000102000039000000000001042d0000000002000019000000000001042d00000a32002104230000000102000039000000000001042d0000000002000019000000000001042d00000a340000043200000a350001042e00000a3600010430000000000000000000000000000000000000000000000000000000000000000000000000ffffffff0000000200000000000000000000000000000040000001000000000000000000000000000000000000000000000000000000000000000000000000008456cb5800000000000000000000000000000000000000000000000000000000ca15c87200000000000000000000000000000000000000000000000000000000d54ad2a000000000000000000000000000000000000000000000000000000000de5b182900000000000000000000000000000000000000000000000000000000de5b182a00000000000000000000000000000000000000000000000000000000f0a3563c00000000000000000000000000000000000000000000000000000000d54ad2a100000000000000000000000000000000000000000000000000000000dafc4c2a00000000000000000000000000000000000000000000000000000000ca15c87300000000000000000000000000000000000000000000000000000000cb93bca000000000000000000000000000000000000000000000000000000000d547741f00000000000000000000000000000000000000000000000000000000a217fdde00000000000000000000000000000000000000000000000000000000b9f4b5c100000000000000000000000000000000000000000000000000000000b9f4b5c200000000000000000000000000000000000000000000000000000000c8fb6c6b00000000000000000000000000000000000000000000000000000000a217fddf00000000000000000000000000000000000000000000000000000000a9976998000000000000000000000000000000000000000000000000000000008456cb59000000000000000000000000000000000000000000000000000000009010d07c0000000000000000000000000000000000000000000000000000000091d14854000000000000000000000000000000000000000000000000000000003197cbb50000000000000000000000000000000000000000000000000000000045534703000000000000000000000000000000000000000000000000000000005c975aba000000000000000000000000000000000000000000000000000000005c975abb0000000000000000000000000000000000000000000000000000000078e97925000000000000000000000000000000000000000000000000000000004553470400000000000000000000000000000000000000000000000000000000485cc955000000000000000000000000000000000000000000000000000000003197cbb60000000000000000000000000000000000000000000000000000000036568abe000000000000000000000000000000000000000000000000000000003f4ba83a0000000000000000000000000000000000000000000000000000000024b6fa6a0000000000000000000000000000000000000000000000000000000024b6fa6b000000000000000000000000000000000000000000000000000000002eb4a7ab000000000000000000000000000000000000000000000000000000002f2ff15d0000000000000000000000000000000000000000000000000000000001ffc9a700000000000000000000000000000000000000000000000000000000199cbc5400000000000000000000000000000000000000000000000000000000248a9ca3000000000000000000000000ffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000200000000000000000000000007a484458a208f16dc0b6696974cbddcd82c1024d6f7d8afdd2beace9a21428090000000000000000000000000000000000000020000000800000000000000000de5b182a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000008000000000000000007a484458a208f16dc0b6696974cbddcd82c1024d6f7d8afdd2beace9a21428037a484458a208f16dc0b6696974cbddcd82c1024d6f7d8afdd2beace9a214280a7a484458a208f16dc0b6696974cbddcd82c1024d6f7d8afdd2beace9a214280b020000000000000000000000000000000000000000000000000000000000000075f673491d39cd1102d1e8da50b4e04666820e74b28924e84e72c7d1e1e65de07a484458a208f16dc0b6696974cbddcd82c1024d6f7d8afdd2beace9a21428067a484458a208f16dc0b6696974cbddcd82c1024d6f7d8afdd2beace9a2142807000000000000000000000000000000000000000000000000ffffffff000000007a484458a208f16dc0b6696974cbddcd82c1024d6f7d8afdd2beace9a2142804ffffffffffffffffffffffffffffffffffffffffffffffff00000000000000007a484458a208f16dc0b6696974cbddcd82c1024d6f7d8afdd2beace9a214280223b872dd00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff5f7a484458a208f16dc0b6696974cbddcd82c1024d6f7d8afdd2beace9a21428050200000000000000000000000000000000000020000000000000000000000000cd29d44a9f2978409ce75cbccc36196562241eec543ea5c2d2336ff73f0349adc6e369f90000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000009dd854d3000000000000000000000000000000000000000000000000000000005061757361626c653a207061757365640000000000000000000000000000000008c379a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006400000000000000000000000062e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2581806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b830200000200000000000000000000000000000024000000000000000000000000647920696e697469616c697a6564000000000000000000000000000000000000496e697469616c697a61626c653a20636f6e747261637420697320616c7265610000000000000000000000000000000000000084000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000081fe90a866a48a634a12852c1be675b683a22307409932a7443b8029347be75602000000000000000000000000000000000000400000000000000000000000002f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000001a7a85f3e38923e23ce6f75f5dc8d9c48333575b8275c1d125a6d1138f29e7cd7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024986b093aad000000000000000000000000000000000000000000000000000000006e697469616c697a696e67000000000000000000000000000000000000000000496e697469616c697a61626c653a20636f6e7472616374206973206e6f7420690000000000000000000000000000000000000064000000800000000000000000ea8e4eb500000000000000000000000000000000000000000000000000000000cc3d967b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002400000080000000000000000000000000000000000000000000000000000000000000000000000000ffffffe000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffb98d458e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff7f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01c61a788000000000000000000000000000000000000000000000000000000007a484458a208f16dc0b6696974cbddcd82c1024d6f7d8afdd2beace9a2142808a9059cbb00000000000000000000000000000000000000000000000000000000f7a40077ff7a04c7e61f6f26fb13774259ddf1b6bce9ecf26a8276cdd39926834e487b710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000240000000000000000000000000f3f8610000000000000000000000000000000000000000000000000000000005265656e7472616e637947756172643a207265656e7472616e742063616c6c005db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa5061757361626c653a206e6f7420706175736564000000000000000000000000416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c66000000000000000000000000000000000000000000000000000000000000000000000000840000008000000000000000000edc89fe00000000000000000000000000000000000000000000000000000000fa92ceca000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000fbde7c120000000000000000000000000000000000000000000000000000000044dddc970000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff5a05180f0000000000000000000000000000000000000000000000000000000001ffc9a7000000000000000000000000000000000000000000000000000000007965db0b00000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0000000000000000000000000000000000000000000000000ffffffffffffffa03000000000000000000000000000000000000000000000000000000000000000780000000000000000000000000000000000000000000000000000000000000030313233343536373839616263646566000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000537472696e67733a20686578206c656e67746820696e73756666696369656e74416363657373436f6e74726f6c3a206163636f756e7420000000000000000000206973206d697373696e6720726f6c6520000000000000000000000000000000f6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d955391320200000200000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff6000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000c097ce7bc90715b34b9f10000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffc05361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65647fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6f742073756363656564000000000000000000000000000000000000000000005361666545524332303a204552433230206f7065726174696f6e20646964206e416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000000000000000000000000000000000000000000000000000000000000000000006f131de9f45a1bfd48c0b8756079a46e19389af8ab1bbb5a90dad98ce7e2f3c3

Block Transaction Gas Used Reward
view all blocks produced

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

Validator Index Block Amount
View All Withdrawals

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

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