Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
PresaleV2
Compiler Version
v0.8.9+commit.e5eed63a
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
//SPDX-License-Identifier: MIT pragma solidity 0.8.9; import "@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol"; import "@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol"; import "@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/security/ReentrancyGuardUpgradeable.sol"; interface Aggregator { function latestRoundData() external view returns ( uint80 roundId, int256 answer, uint256 startedAt, uint256 updatedAt, uint80 answeredInRound ); } contract PresaleV2 is Initializable, ReentrancyGuardUpgradeable, OwnableUpgradeable, PausableUpgradeable { uint256 public salePrice; uint256 public totalTokens; uint256 public inSale; uint256 public startTime; uint256 public endTime; uint256 public claimStart; address public saleToken; uint256 public baseDecimals; IERC20Upgradeable public USDTInterface; Aggregator internal aggregatorInterface; // https://docs.chain.link/docs/ethereum-addresses/ => (ETH / USD) mapping(address => uint256) public userDeposits; mapping(address => bool) public hasClaimed; event SaleTimeSet(uint256 _start, uint256 _end, uint256 timestamp); event SaleTimeUpdated( bytes32 indexed key, uint256 prevValue, uint256 newValue, uint256 timestamp ); event TokensBought( address indexed user, uint256 indexed tokensBought, address indexed purchaseToken, uint256 amountPaid, uint256 timestamp ); event TokensAdded( address indexed token, uint256 noOfTokens, uint256 timestamp ); event TokensClaimed( address indexed user, uint256 amount, uint256 timestamp ); event ClaimStartUpdated( uint256 prevValue, uint256 newValue, uint256 timestamp ); /// @custom:oz-upgrades-unsafe-allow constructor constructor() initializer {} function initialize( address _oracle, address _usdt, uint256 _startTime, uint256 _endTime ) external initializer { require(_oracle != address(0), "Zero aggregator address"); require(_usdt != address(0), "Zero USDT address"); require( _startTime > block.timestamp && _endTime > _startTime, "Invalid time" ); __Pausable_init_unchained(); __Ownable_init_unchained(); __ReentrancyGuard_init_unchained(); salePrice = 0.01 * (10**18); //0.01 USD totalTokens = 1_000_000_000; // 1 billion inSale = totalTokens; baseDecimals = (10**18); aggregatorInterface = Aggregator(_oracle); USDTInterface = IERC20Upgradeable(_usdt); startTime = _startTime; endTime = _endTime; emit SaleTimeSet(startTime, endTime, block.timestamp); } function pause() external onlyOwner { _pause(); } function unpause() external onlyOwner { _unpause(); } function changeSaleTimes(uint256 _startTime, uint256 _endTime) external onlyOwner { require(_startTime > 0 || _endTime > 0, "Invalid parameters"); if (_startTime > 0) { require(block.timestamp < startTime, "Sale already started"); require(block.timestamp < _startTime, "Sale time in past"); uint256 prevValue = startTime; startTime = _startTime; emit SaleTimeUpdated( bytes32("START"), prevValue, _startTime, block.timestamp ); } if (_endTime > 0) { require(block.timestamp < endTime, "Sale already ended"); require(_endTime > startTime, "Invalid endTime"); uint256 prevValue = endTime; endTime = _endTime; emit SaleTimeUpdated( bytes32("END"), prevValue, _endTime, block.timestamp ); } } function getLatestPrice() public view returns (uint256) { (, int256 price, , , ) = aggregatorInterface.latestRoundData(); price = (price * (10**10)); return uint256(price); } modifier checkSaleState(uint256 amount) { require( block.timestamp >= startTime && block.timestamp <= endTime, "Invalid time for buying" ); require(amount > 0 && amount <= inSale, "Invalid sale amount"); _; } function buyWithUSDT(uint256 amount) external checkSaleState(amount) whenNotPaused returns (bool) { uint256 usdPrice = amount * salePrice; usdPrice = usdPrice / (10**12); inSale -= amount; userDeposits[_msgSender()] += (amount * baseDecimals); uint256 ourAllowance = USDTInterface.allowance( _msgSender(), address(this) ); require(usdPrice <= ourAllowance, "Make sure to add enough allowance"); (bool success, ) = address(USDTInterface).call( abi.encodeWithSignature( "transferFrom(address,address,uint256)", _msgSender(), owner(), usdPrice ) ); require(success, "Token payment failed"); emit TokensBought( _msgSender(), amount, address(USDTInterface), usdPrice, block.timestamp ); return true; } function buyWithEth(uint256 amount) external payable checkSaleState(amount) whenNotPaused nonReentrant returns (bool) { uint256 usdPrice = amount * salePrice; uint256 ethAmount = (usdPrice * baseDecimals) / getLatestPrice(); require(msg.value >= ethAmount, "Less payment"); uint256 excess = msg.value - ethAmount; inSale -= amount; userDeposits[_msgSender()] += (amount * baseDecimals); sendValue(payable(owner()), ethAmount); if (excess > 0) sendValue(payable(_msgSender()), excess); emit TokensBought( _msgSender(), amount, address(0), ethAmount, block.timestamp ); return true; } function ethBuyHelper(uint256 amount) external view returns (uint256 ethAmount) { uint256 usdPrice = amount * salePrice; ethAmount = (usdPrice * baseDecimals) / getLatestPrice(); } function usdtBuyHelper(uint256 amount) external view returns (uint256 usdPrice) { usdPrice = amount * salePrice; usdPrice = usdPrice / (10**12); } function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Low balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "ETH Payment failed"); } function startClaim( uint256 _claimStart, uint256 noOfTokens, address _saleToken ) external onlyOwner returns (bool) { require( _claimStart > endTime && _claimStart > block.timestamp, "Invalid claim start time" ); require( noOfTokens >= ((totalTokens - inSale) * baseDecimals), "Tokens less than sold" ); require(_saleToken != address(0), "Zero token address"); require(claimStart == 0, "Claim already set"); claimStart = _claimStart; saleToken = _saleToken; IERC20Upgradeable(_saleToken).transferFrom( _msgSender(), address(this), noOfTokens ); emit TokensAdded(saleToken, noOfTokens, block.timestamp); return true; } function changeClaimStart(uint256 _claimStart) external onlyOwner returns (bool) { require(claimStart > 0, "Initial claim data not set"); require(_claimStart > endTime, "Sale in progress"); require(_claimStart > block.timestamp, "Claim start in past"); uint256 prevValue = claimStart; claimStart = _claimStart; emit ClaimStartUpdated(prevValue, _claimStart, block.timestamp); return true; } function claim() external whenNotPaused returns (bool) { require(saleToken != address(0), "Sale token not added"); require(block.timestamp >= claimStart, "Claim has not started yet"); require(!hasClaimed[_msgSender()], "Already claimed"); hasClaimed[_msgSender()] = true; uint256 amount = userDeposits[_msgSender()]; require(amount > 0, "Nothing to claim"); delete userDeposits[_msgSender()]; IERC20Upgradeable(saleToken).transfer(_msgSender(), amount); emit TokensClaimed(_msgSender(), amount, block.timestamp); return true; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; import "../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; } /** * @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; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.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 * ==== * * [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://diligence.consensys.net/posts/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.5.11/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 functionCall(target, data, "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"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(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) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason 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 { // 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 assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; import "../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() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } /** * @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; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/Pausable.sol) pragma solidity ^0.8.0; import "../utils/ContextUpgradeable.sol"; import "../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 Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { 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; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.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] * ``` * 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. Equivalent to `reinitializer(1)`. */ modifier initializer() { bool isTopLevelCall = _setInitializedVersion(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. * * `initializer` is equivalent to `reinitializer(1)`, so 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. * * 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. */ modifier reinitializer(uint8 version) { bool isTopLevelCall = _setInitializedVersion(version); if (isTopLevelCall) { _initializing = true; } _; if (isTopLevelCall) { _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. */ function _disableInitializers() internal virtual { _setInitializedVersion(type(uint8).max); } function _setInitializedVersion(uint8 version) private returns (bool) { // If the contract is initializing we ignore whether _initialized is set in order to support multiple // inheritance patterns, but we only do this in the context of a constructor, and for the lowest level // of initializers, because in other contexts the contract may have been reentered. if (_initializing) { require( version == 1 && !AddressUpgradeable.isContract(address(this)), "Initializable: contract is already initialized" ); return false; } else { require(_initialized < version, "Initializable: contract is already initialized"); _initialized = version; return true; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/ContextUpgradeable.sol"; import "../proxy/utils/Initializable.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract OwnableUpgradeable is Initializable, ContextUpgradeable { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ function __Ownable_init() internal onlyInitializing { __Ownable_init_unchained(); } function __Ownable_init_unchained() internal onlyInitializing { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } /** * @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; }
{ "remappings": [], "optimizer": { "enabled": false, "runs": 200 }, "evmVersion": "london", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"prevValue","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newValue","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"ClaimStartUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_start","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_end","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"SaleTimeSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"key","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"prevValue","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newValue","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"SaleTimeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"noOfTokens","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"TokensAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokensBought","type":"uint256"},{"indexed":true,"internalType":"address","name":"purchaseToken","type":"address"},{"indexed":false,"internalType":"uint256","name":"amountPaid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"TokensBought","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"TokensClaimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"USDTInterface","outputs":[{"internalType":"contract IERC20Upgradeable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseDecimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"buyWithEth","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"buyWithUSDT","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_claimStart","type":"uint256"}],"name":"changeClaimStart","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_startTime","type":"uint256"},{"internalType":"uint256","name":"_endTime","type":"uint256"}],"name":"changeSaleTimes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claim","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"endTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ethBuyHelper","outputs":[{"internalType":"uint256","name":"ethAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLatestPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"hasClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"inSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_oracle","type":"address"},{"internalType":"address","name":"_usdt","type":"address"},{"internalType":"uint256","name":"_startTime","type":"uint256"},{"internalType":"uint256","name":"_endTime","type":"uint256"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"salePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"saleToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_claimStart","type":"uint256"},{"internalType":"uint256","name":"noOfTokens","type":"uint256"},{"internalType":"address","name":"_saleToken","type":"address"}],"name":"startClaim","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"usdtBuyHelper","outputs":[{"internalType":"uint256","name":"usdPrice","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userDeposits","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506000620000266001620000ae60201b60201c565b905080156200004b576001600060016101000a81548160ff0219169083151502179055505b8015620000a75760008060016101000a81548160ff0219169083151502179055507f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb384740249860016040516200009e919062000231565b60405180910390a15b50620002f7565b60008060019054906101000a900460ff1615620001385760018260ff16148015620000ec5750620000ea30620001b460201b6200211b1760201c565b155b6200012e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200012590620002d5565b60405180910390fd5b60009050620001af565b8160ff1660008054906101000a900460ff1660ff161062000190576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200018790620002d5565b60405180910390fd5b816000806101000a81548160ff021916908360ff160217905550600190505b919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000819050919050565b600060ff82169050919050565b6000819050919050565b600062000219620002136200020d84620001d7565b620001ee565b620001e1565b9050919050565b6200022b81620001f8565b82525050565b600060208201905062000248600083018462000220565b92915050565b600082825260208201905092915050565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b6000620002bd602e836200024e565b9150620002ca826200025f565b604082019050919050565b60006020820190508181036000830152620002f081620002ae565b9050919050565b613e4680620003076000396000f3fe60806040526004361061019c5760003560e01c806378e97925116100ec578063b2caaebd1161008a578063f04d688f11610064578063f04d688f146105c1578063f2fde38b146105ec578063f51f96dd14610615578063f597573f146106405761019c565b8063b2caaebd14610530578063e985e3671461056d578063eb990c59146105985761019c565b80638456cb59116100c65780638456cb59146104865780638da5cb5b1461049d5780638e15f473146104c8578063a7c60160146104f35761019c565b806378e97925146104055780637e1c0c09146104305780638008d5bc1461045b5761019c565b80633f4ba83a1161015957806363e408791161013357806363e4087914610344578063715018a61461038157806373b2e80e146103985780637649b957146103d55761019c565b80633f4ba83a146102d75780634e71d92d146102ee5780635c975abb146103195761019c565b806307f18082146101a15780630ba36dcd146101de5780630dc9c8381461021b57806329a5a0b6146102445780633197cbb61461028157806333f76178146102ac575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190612695565b61066b565b6040516101d591906126dd565b60405180910390f35b3480156101ea57600080fd5b5061020560048036038101906102009190612756565b610807565b6040516102129190612792565b60405180910390f35b34801561022757600080fd5b50610242600480360381019061023d91906127ad565b61081f565b005b34801561025057600080fd5b5061026b60048036038101906102669190612695565b610ae5565b6040516102789190612792565b60405180910390f35b34801561028d57600080fd5b50610296610b20565b6040516102a39190612792565b60405180910390f35b3480156102b857600080fd5b506102c1610b26565b6040516102ce9190612792565b60405180910390f35b3480156102e357600080fd5b506102ec610b2c565b005b3480156102fa57600080fd5b50610303610bb2565b60405161031091906126dd565b60405180910390f35b34801561032557600080fd5b5061032e610fb4565b60405161033b91906126dd565b60405180910390f35b34801561035057600080fd5b5061036b60048036038101906103669190612695565b610fcb565b6040516103789190612792565b60405180910390f35b34801561038d57600080fd5b50610396610ff5565b005b3480156103a457600080fd5b506103bf60048036038101906103ba9190612756565b61107d565b6040516103cc91906126dd565b60405180910390f35b6103ef60048036038101906103ea9190612695565b61109d565b6040516103fc91906126dd565b60405180910390f35b34801561041157600080fd5b5061041a611396565b6040516104279190612792565b60405180910390f35b34801561043c57600080fd5b5061044561139c565b6040516104529190612792565b60405180910390f35b34801561046757600080fd5b506104706113a2565b60405161047d9190612792565b60405180910390f35b34801561049257600080fd5b5061049b6113a8565b005b3480156104a957600080fd5b506104b261142e565b6040516104bf91906127fc565b60405180910390f35b3480156104d457600080fd5b506104dd611458565b6040516104ea9190612792565b60405180910390f35b3480156104ff57600080fd5b5061051a60048036038101906105159190612695565b61151b565b60405161052791906126dd565b60405180910390f35b34801561053c57600080fd5b5061055760048036038101906105529190612817565b6119b9565b60405161056491906126dd565b60405180910390f35b34801561057957600080fd5b50610582611cf6565b60405161058f91906127fc565b60405180910390f35b3480156105a457600080fd5b506105bf60048036038101906105ba919061286a565b611d1c565b005b3480156105cd57600080fd5b506105d6611ff1565b6040516105e39190612792565b60405180910390f35b3480156105f857600080fd5b50610613600480360381019061060e9190612756565b611ff7565b005b34801561062157600080fd5b5061062a6120ef565b6040516106379190612792565b60405180910390f35b34801561064c57600080fd5b506106556120f5565b6040516106629190612930565b60405180910390f35b600061067561213e565b73ffffffffffffffffffffffffffffffffffffffff1661069361142e565b73ffffffffffffffffffffffffffffffffffffffff16146106e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106e0906129a8565b60405180910390fd5b600060ce541161072e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072590612a14565b60405180910390fd5b60cd548211610772576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076990612a80565b60405180910390fd5b4282116107b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ab90612aec565b60405180910390fd5b600060ce5490508260ce819055507f5f3a900c85949962b4cc192dd3714dae64071dc2e907049ec720b023270905a48184426040516107f593929190612b0c565b60405180910390a16001915050919050565b60d36020528060005260406000206000915090505481565b61082761213e565b73ffffffffffffffffffffffffffffffffffffffff1661084561142e565b73ffffffffffffffffffffffffffffffffffffffff161461089b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610892906129a8565b60405180910390fd5b60008211806108aa5750600081115b6108e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e090612b8f565b60405180910390fd5b60008211156109e45760cc544210610936576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092d90612bfb565b60405180910390fd5b814210610978576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096f90612c67565b60405180910390fd5b600060cc5490508260cc819055507f53544152540000000000000000000000000000000000000000000000000000007fddd2ed237e6993c9380182683f2c8bec486aaaa429528852cd74dbdb96cea0b28285426040516109da93929190612b0c565b60405180910390a2505b6000811115610ae15760cd544210610a31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2890612cd3565b60405180910390fd5b60cc548111610a75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6c90612d3f565b60405180910390fd5b600060cd5490508160cd819055507f454e4400000000000000000000000000000000000000000000000000000000007fddd2ed237e6993c9380182683f2c8bec486aaaa429528852cd74dbdb96cea0b2828442604051610ad793929190612b0c565b60405180910390a2505b5050565b60008060c95483610af69190612d8e565b9050610b00611458565b60d05482610b0e9190612d8e565b610b189190612e17565b915050919050565b60cd5481565b60d05481565b610b3461213e565b73ffffffffffffffffffffffffffffffffffffffff16610b5261142e565b73ffffffffffffffffffffffffffffffffffffffff1614610ba8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9f906129a8565b60405180910390fd5b610bb0612146565b565b6000610bbc610fb4565b15610bfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf390612e94565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660cf60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610c8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8590612f00565b60405180910390fd5b60ce54421015610cd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cca90612f6c565b60405180910390fd5b60d46000610cdf61213e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610d67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5e90612fd8565b60405180910390fd5b600160d46000610d7561213e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600060d36000610dd461213e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060008111610e54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4b90613044565b60405180910390fd5b60d36000610e6061213e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000905560cf60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb610ee461213e565b836040518363ffffffff1660e01b8152600401610f02929190613064565b602060405180830381600087803b158015610f1c57600080fd5b505af1158015610f30573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f5491906130b9565b50610f5d61213e565b73ffffffffffffffffffffffffffffffffffffffff167f9923b4306c6c030f2bdfbf156517d5983b87e15b96176da122cd4f2effa4ba7b8242604051610fa49291906130e6565b60405180910390a2600191505090565b6000609760009054906101000a900460ff16905090565b600060c95482610fdb9190612d8e565b905064e8d4a5100081610fee9190612e17565b9050919050565b610ffd61213e565b73ffffffffffffffffffffffffffffffffffffffff1661101b61142e565b73ffffffffffffffffffffffffffffffffffffffff1614611071576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611068906129a8565b60405180910390fd5b61107b60006121e8565b565b60d46020528060005260406000206000915054906101000a900460ff1681565b60008160cc5442101580156110b4575060cd544211155b6110f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ea9061315b565b60405180910390fd5b600081118015611105575060cb548111155b611144576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113b906131c7565b60405180910390fd5b61114c610fb4565b1561118c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118390612e94565b60405180910390fd5b600260015414156111d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c990613233565b60405180910390fd5b6002600181905550600060c954846111ea9190612d8e565b905060006111f6611458565b60d054836112049190612d8e565b61120e9190612e17565b905080341015611253576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124a9061329f565b60405180910390fd5b6000813461126191906132bf565b90508560cb600082825461127591906132bf565b9250508190555060d0548661128a9190612d8e565b60d3600061129661213e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112df91906132f3565b925050819055506112f76112f161142e565b836122ae565b60008111156113125761131161130b61213e565b826122ae565b5b600073ffffffffffffffffffffffffffffffffffffffff168661133361213e565b73ffffffffffffffffffffffffffffffffffffffff167f62e796e00a8e66154d78da76daae129635b4795a6e1b889f2caa6c5cea22ac68854260405161137a9291906130e6565b60405180910390a4600194505050506001808190555050919050565b60cc5481565b60ca5481565b60cb5481565b6113b061213e565b73ffffffffffffffffffffffffffffffffffffffff166113ce61142e565b73ffffffffffffffffffffffffffffffffffffffff1614611424576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141b906129a8565b60405180910390fd5b61142c6123a2565b565b6000606560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060d260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663feaf968c6040518163ffffffff1660e01b815260040160a06040518083038186803b1580156114c357600080fd5b505afa1580156114d7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114fb91906133d6565b5050509150506402540be400816115129190613451565b90508091505090565b60008160cc544210158015611532575060cd544211155b611571576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115689061315b565b60405180910390fd5b600081118015611583575060cb548111155b6115c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b9906131c7565b60405180910390fd5b6115ca610fb4565b1561160a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160190612e94565b60405180910390fd5b600060c9548461161a9190612d8e565b905064e8d4a510008161162d9190612e17565b90508360cb600082825461164191906132bf565b9250508190555060d054846116569190612d8e565b60d3600061166261213e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116ab91906132f3565b92505081905550600060d160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e6116fa61213e565b306040518363ffffffff1660e01b8152600401611718929190613568565b60206040518083038186803b15801561173057600080fd5b505afa158015611744573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117689190613591565b9050808211156117ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a490613630565b60405180910390fd5b600060d160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166117f061213e565b6117f861142e565b8560405160240161180b93929190613650565b6040516020818303038152906040527f23b872dd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506040516118959190613701565b6000604051808303816000865af19150503d80600081146118d2576040519150601f19603f3d011682016040523d82523d6000602084013e6118d7565b606091505b505090508061191b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191290613764565b60405180910390fd5b60d160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168661195d61213e565b73ffffffffffffffffffffffffffffffffffffffff167f62e796e00a8e66154d78da76daae129635b4795a6e1b889f2caa6c5cea22ac6886426040516119a49291906130e6565b60405180910390a46001945050505050919050565b60006119c361213e565b73ffffffffffffffffffffffffffffffffffffffff166119e161142e565b73ffffffffffffffffffffffffffffffffffffffff1614611a37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2e906129a8565b60405180910390fd5b60cd5484118015611a4757504284115b611a86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7d906137d0565b60405180910390fd5b60d05460cb5460ca54611a9991906132bf565b611aa39190612d8e565b831015611ae5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adc9061383c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4c906138a8565b60405180910390fd5b600060ce5414611b9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9190613914565b60405180910390fd5b8360ce819055508160cf60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff166323b872dd611c0661213e565b30866040518463ffffffff1660e01b8152600401611c2693929190613650565b602060405180830381600087803b158015611c4057600080fd5b505af1158015611c54573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c7891906130b9565b5060cf60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fdc9670dbabdd488b372eb16ebe49a39b3124a12cdffdcefbc89834a408bf8ff88442604051611ce39291906130e6565b60405180910390a2600190509392505050565b60cf60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000611d286001612445565b90508015611d4c576001600060016101000a81548160ff0219169083151502179055505b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611dbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db390613980565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611e2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e23906139ec565b60405180910390fd5b4283118015611e3a57508282115b611e79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7090613a58565b60405180910390fd5b611e81612535565b611e896125a1565b611e91612602565b662386f26fc1000060c981905550633b9aca0060ca8190555060ca5460cb81905550670de0b6b3a764000060d0819055508460d260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508360d160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508260cc819055508160cd819055507f23f6ad8232d75562dd1c6b37dfc895af6bfc1ecd0fb3b88722c6a5e6b4dc9a2060cc5460cd5442604051611f8993929190612b0c565b60405180910390a18015611fea5760008060016101000a81548160ff0219169083151502179055507f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024986001604051611fe19190613ac0565b60405180910390a15b5050505050565b60ce5481565b611fff61213e565b73ffffffffffffffffffffffffffffffffffffffff1661201d61142e565b73ffffffffffffffffffffffffffffffffffffffff1614612073576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206a906129a8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120da90613b4d565b60405180910390fd5b6120ec816121e8565b50565b60c95481565b60d160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600033905090565b61214e610fb4565b61218d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218490613bb9565b60405180910390fd5b6000609760006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6121d161213e565b6040516121de91906127fc565b60405180910390a1565b6000606560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081606560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b804710156122f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e890613c25565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161231790613c6b565b60006040518083038185875af1925050503d8060008114612354576040519150601f19603f3d011682016040523d82523d6000602084013e612359565b606091505b505090508061239d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239490613ccc565b60405180910390fd5b505050565b6123aa610fb4565b156123ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e190612e94565b60405180910390fd5b6001609760006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861242e61213e565b60405161243b91906127fc565b60405180910390a1565b60008060019054906101000a900460ff16156124bc5760018260ff1614801561247457506124723061211b565b155b6124b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124aa90613d5e565b60405180910390fd5b60009050612530565b8160ff1660008054906101000a900460ff1660ff1610612511576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250890613d5e565b60405180910390fd5b816000806101000a81548160ff021916908360ff160217905550600190505b919050565b600060019054906101000a900460ff16612584576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257b90613df0565b60405180910390fd5b6000609760006101000a81548160ff021916908315150217905550565b600060019054906101000a900460ff166125f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e790613df0565b60405180910390fd5b6126006125fb61213e565b6121e8565b565b600060019054906101000a900460ff16612651576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264890613df0565b60405180910390fd5b60018081905550565b600080fd5b6000819050919050565b6126728161265f565b811461267d57600080fd5b50565b60008135905061268f81612669565b92915050565b6000602082840312156126ab576126aa61265a565b5b60006126b984828501612680565b91505092915050565b60008115159050919050565b6126d7816126c2565b82525050565b60006020820190506126f260008301846126ce565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612723826126f8565b9050919050565b61273381612718565b811461273e57600080fd5b50565b6000813590506127508161272a565b92915050565b60006020828403121561276c5761276b61265a565b5b600061277a84828501612741565b91505092915050565b61278c8161265f565b82525050565b60006020820190506127a76000830184612783565b92915050565b600080604083850312156127c4576127c361265a565b5b60006127d285828601612680565b92505060206127e385828601612680565b9150509250929050565b6127f681612718565b82525050565b600060208201905061281160008301846127ed565b92915050565b6000806000606084860312156128305761282f61265a565b5b600061283e86828701612680565b935050602061284f86828701612680565b925050604061286086828701612741565b9150509250925092565b600080600080608085870312156128845761288361265a565b5b600061289287828801612741565b94505060206128a387828801612741565b93505060406128b487828801612680565b92505060606128c587828801612680565b91505092959194509250565b6000819050919050565b60006128f66128f16128ec846126f8565b6128d1565b6126f8565b9050919050565b6000612908826128db565b9050919050565b600061291a826128fd565b9050919050565b61292a8161290f565b82525050565b60006020820190506129456000830184612921565b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061299260208361294b565b915061299d8261295c565b602082019050919050565b600060208201905081810360008301526129c181612985565b9050919050565b7f496e697469616c20636c61696d2064617461206e6f7420736574000000000000600082015250565b60006129fe601a8361294b565b9150612a09826129c8565b602082019050919050565b60006020820190508181036000830152612a2d816129f1565b9050919050565b7f53616c6520696e2070726f677265737300000000000000000000000000000000600082015250565b6000612a6a60108361294b565b9150612a7582612a34565b602082019050919050565b60006020820190508181036000830152612a9981612a5d565b9050919050565b7f436c61696d20737461727420696e207061737400000000000000000000000000600082015250565b6000612ad660138361294b565b9150612ae182612aa0565b602082019050919050565b60006020820190508181036000830152612b0581612ac9565b9050919050565b6000606082019050612b216000830186612783565b612b2e6020830185612783565b612b3b6040830184612783565b949350505050565b7f496e76616c696420706172616d65746572730000000000000000000000000000600082015250565b6000612b7960128361294b565b9150612b8482612b43565b602082019050919050565b60006020820190508181036000830152612ba881612b6c565b9050919050565b7f53616c6520616c72656164792073746172746564000000000000000000000000600082015250565b6000612be560148361294b565b9150612bf082612baf565b602082019050919050565b60006020820190508181036000830152612c1481612bd8565b9050919050565b7f53616c652074696d6520696e2070617374000000000000000000000000000000600082015250565b6000612c5160118361294b565b9150612c5c82612c1b565b602082019050919050565b60006020820190508181036000830152612c8081612c44565b9050919050565b7f53616c6520616c726561647920656e6465640000000000000000000000000000600082015250565b6000612cbd60128361294b565b9150612cc882612c87565b602082019050919050565b60006020820190508181036000830152612cec81612cb0565b9050919050565b7f496e76616c696420656e6454696d650000000000000000000000000000000000600082015250565b6000612d29600f8361294b565b9150612d3482612cf3565b602082019050919050565b60006020820190508181036000830152612d5881612d1c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612d998261265f565b9150612da48361265f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612ddd57612ddc612d5f565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612e228261265f565b9150612e2d8361265f565b925082612e3d57612e3c612de8565b5b828204905092915050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000612e7e60108361294b565b9150612e8982612e48565b602082019050919050565b60006020820190508181036000830152612ead81612e71565b9050919050565b7f53616c6520746f6b656e206e6f74206164646564000000000000000000000000600082015250565b6000612eea60148361294b565b9150612ef582612eb4565b602082019050919050565b60006020820190508181036000830152612f1981612edd565b9050919050565b7f436c61696d20686173206e6f7420737461727465642079657400000000000000600082015250565b6000612f5660198361294b565b9150612f6182612f20565b602082019050919050565b60006020820190508181036000830152612f8581612f49565b9050919050565b7f416c726561647920636c61696d65640000000000000000000000000000000000600082015250565b6000612fc2600f8361294b565b9150612fcd82612f8c565b602082019050919050565b60006020820190508181036000830152612ff181612fb5565b9050919050565b7f4e6f7468696e6720746f20636c61696d00000000000000000000000000000000600082015250565b600061302e60108361294b565b915061303982612ff8565b602082019050919050565b6000602082019050818103600083015261305d81613021565b9050919050565b600060408201905061307960008301856127ed565b6130866020830184612783565b9392505050565b613096816126c2565b81146130a157600080fd5b50565b6000815190506130b38161308d565b92915050565b6000602082840312156130cf576130ce61265a565b5b60006130dd848285016130a4565b91505092915050565b60006040820190506130fb6000830185612783565b6131086020830184612783565b9392505050565b7f496e76616c69642074696d6520666f7220627579696e67000000000000000000600082015250565b600061314560178361294b565b91506131508261310f565b602082019050919050565b6000602082019050818103600083015261317481613138565b9050919050565b7f496e76616c69642073616c6520616d6f756e7400000000000000000000000000600082015250565b60006131b160138361294b565b91506131bc8261317b565b602082019050919050565b600060208201905081810360008301526131e0816131a4565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061321d601f8361294b565b9150613228826131e7565b602082019050919050565b6000602082019050818103600083015261324c81613210565b9050919050565b7f4c657373207061796d656e740000000000000000000000000000000000000000600082015250565b6000613289600c8361294b565b915061329482613253565b602082019050919050565b600060208201905081810360008301526132b88161327c565b9050919050565b60006132ca8261265f565b91506132d58361265f565b9250828210156132e8576132e7612d5f565b5b828203905092915050565b60006132fe8261265f565b91506133098361265f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561333e5761333d612d5f565b5b828201905092915050565b600069ffffffffffffffffffff82169050919050565b61336881613349565b811461337357600080fd5b50565b6000815190506133858161335f565b92915050565b6000819050919050565b61339e8161338b565b81146133a957600080fd5b50565b6000815190506133bb81613395565b92915050565b6000815190506133d081612669565b92915050565b600080600080600060a086880312156133f2576133f161265a565b5b600061340088828901613376565b9550506020613411888289016133ac565b9450506040613422888289016133c1565b9350506060613433888289016133c1565b925050608061344488828901613376565b9150509295509295909350565b600061345c8261338b565b91506134678361338b565b9250827f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04821160008413600084131616156134a6576134a5612d5f565b5b817f800000000000000000000000000000000000000000000000000000000000000005831260008412600084131616156134e3576134e2612d5f565b5b827f800000000000000000000000000000000000000000000000000000000000000005821260008413600084121616156135205761351f612d5f565b5b827f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff058212600084126000841216161561355d5761355c612d5f565b5b828202905092915050565b600060408201905061357d60008301856127ed565b61358a60208301846127ed565b9392505050565b6000602082840312156135a7576135a661265a565b5b60006135b5848285016133c1565b91505092915050565b7f4d616b65207375726520746f2061646420656e6f75676820616c6c6f77616e6360008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b600061361a60218361294b565b9150613625826135be565b604082019050919050565b600060208201905081810360008301526136498161360d565b9050919050565b600060608201905061366560008301866127ed565b61367260208301856127ed565b61367f6040830184612783565b949350505050565b600081519050919050565b600081905092915050565b60005b838110156136bb5780820151818401526020810190506136a0565b838111156136ca576000848401525b50505050565b60006136db82613687565b6136e58185613692565b93506136f581856020860161369d565b80840191505092915050565b600061370d82846136d0565b915081905092915050565b7f546f6b656e207061796d656e74206661696c6564000000000000000000000000600082015250565b600061374e60148361294b565b915061375982613718565b602082019050919050565b6000602082019050818103600083015261377d81613741565b9050919050565b7f496e76616c696420636c61696d2073746172742074696d650000000000000000600082015250565b60006137ba60188361294b565b91506137c582613784565b602082019050919050565b600060208201905081810360008301526137e9816137ad565b9050919050565b7f546f6b656e73206c657373207468616e20736f6c640000000000000000000000600082015250565b600061382660158361294b565b9150613831826137f0565b602082019050919050565b6000602082019050818103600083015261385581613819565b9050919050565b7f5a65726f20746f6b656e20616464726573730000000000000000000000000000600082015250565b600061389260128361294b565b915061389d8261385c565b602082019050919050565b600060208201905081810360008301526138c181613885565b9050919050565b7f436c61696d20616c726561647920736574000000000000000000000000000000600082015250565b60006138fe60118361294b565b9150613909826138c8565b602082019050919050565b6000602082019050818103600083015261392d816138f1565b9050919050565b7f5a65726f2061676772656761746f722061646472657373000000000000000000600082015250565b600061396a60178361294b565b915061397582613934565b602082019050919050565b600060208201905081810360008301526139998161395d565b9050919050565b7f5a65726f20555344542061646472657373000000000000000000000000000000600082015250565b60006139d660118361294b565b91506139e1826139a0565b602082019050919050565b60006020820190508181036000830152613a05816139c9565b9050919050565b7f496e76616c69642074696d650000000000000000000000000000000000000000600082015250565b6000613a42600c8361294b565b9150613a4d82613a0c565b602082019050919050565b60006020820190508181036000830152613a7181613a35565b9050919050565b6000819050919050565b600060ff82169050919050565b6000613aaa613aa5613aa084613a78565b6128d1565b613a82565b9050919050565b613aba81613a8f565b82525050565b6000602082019050613ad56000830184613ab1565b92915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613b3760268361294b565b9150613b4282613adb565b604082019050919050565b60006020820190508181036000830152613b6681613b2a565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000613ba360148361294b565b9150613bae82613b6d565b602082019050919050565b60006020820190508181036000830152613bd281613b96565b9050919050565b7f4c6f772062616c616e6365000000000000000000000000000000000000000000600082015250565b6000613c0f600b8361294b565b9150613c1a82613bd9565b602082019050919050565b60006020820190508181036000830152613c3e81613c02565b9050919050565b50565b6000613c55600083613692565b9150613c6082613c45565b600082019050919050565b6000613c7682613c48565b9150819050919050565b7f455448205061796d656e74206661696c65640000000000000000000000000000600082015250565b6000613cb660128361294b565b9150613cc182613c80565b602082019050919050565b60006020820190508181036000830152613ce581613ca9565b9050919050565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b6000613d48602e8361294b565b9150613d5382613cec565b604082019050919050565b60006020820190508181036000830152613d7781613d3b565b9050919050565b7f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960008201527f6e697469616c697a696e67000000000000000000000000000000000000000000602082015250565b6000613dda602b8361294b565b9150613de582613d7e565b604082019050919050565b60006020820190508181036000830152613e0981613dcd565b905091905056fea2646970667358221220e96e3115462c5ec7602ffc9e3057f60ce7a07a5561cbc05b6e7631bbb46d3d3e64736f6c63430008090033
Deployed Bytecode
0x60806040526004361061019c5760003560e01c806378e97925116100ec578063b2caaebd1161008a578063f04d688f11610064578063f04d688f146105c1578063f2fde38b146105ec578063f51f96dd14610615578063f597573f146106405761019c565b8063b2caaebd14610530578063e985e3671461056d578063eb990c59146105985761019c565b80638456cb59116100c65780638456cb59146104865780638da5cb5b1461049d5780638e15f473146104c8578063a7c60160146104f35761019c565b806378e97925146104055780637e1c0c09146104305780638008d5bc1461045b5761019c565b80633f4ba83a1161015957806363e408791161013357806363e4087914610344578063715018a61461038157806373b2e80e146103985780637649b957146103d55761019c565b80633f4ba83a146102d75780634e71d92d146102ee5780635c975abb146103195761019c565b806307f18082146101a15780630ba36dcd146101de5780630dc9c8381461021b57806329a5a0b6146102445780633197cbb61461028157806333f76178146102ac575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190612695565b61066b565b6040516101d591906126dd565b60405180910390f35b3480156101ea57600080fd5b5061020560048036038101906102009190612756565b610807565b6040516102129190612792565b60405180910390f35b34801561022757600080fd5b50610242600480360381019061023d91906127ad565b61081f565b005b34801561025057600080fd5b5061026b60048036038101906102669190612695565b610ae5565b6040516102789190612792565b60405180910390f35b34801561028d57600080fd5b50610296610b20565b6040516102a39190612792565b60405180910390f35b3480156102b857600080fd5b506102c1610b26565b6040516102ce9190612792565b60405180910390f35b3480156102e357600080fd5b506102ec610b2c565b005b3480156102fa57600080fd5b50610303610bb2565b60405161031091906126dd565b60405180910390f35b34801561032557600080fd5b5061032e610fb4565b60405161033b91906126dd565b60405180910390f35b34801561035057600080fd5b5061036b60048036038101906103669190612695565b610fcb565b6040516103789190612792565b60405180910390f35b34801561038d57600080fd5b50610396610ff5565b005b3480156103a457600080fd5b506103bf60048036038101906103ba9190612756565b61107d565b6040516103cc91906126dd565b60405180910390f35b6103ef60048036038101906103ea9190612695565b61109d565b6040516103fc91906126dd565b60405180910390f35b34801561041157600080fd5b5061041a611396565b6040516104279190612792565b60405180910390f35b34801561043c57600080fd5b5061044561139c565b6040516104529190612792565b60405180910390f35b34801561046757600080fd5b506104706113a2565b60405161047d9190612792565b60405180910390f35b34801561049257600080fd5b5061049b6113a8565b005b3480156104a957600080fd5b506104b261142e565b6040516104bf91906127fc565b60405180910390f35b3480156104d457600080fd5b506104dd611458565b6040516104ea9190612792565b60405180910390f35b3480156104ff57600080fd5b5061051a60048036038101906105159190612695565b61151b565b60405161052791906126dd565b60405180910390f35b34801561053c57600080fd5b5061055760048036038101906105529190612817565b6119b9565b60405161056491906126dd565b60405180910390f35b34801561057957600080fd5b50610582611cf6565b60405161058f91906127fc565b60405180910390f35b3480156105a457600080fd5b506105bf60048036038101906105ba919061286a565b611d1c565b005b3480156105cd57600080fd5b506105d6611ff1565b6040516105e39190612792565b60405180910390f35b3480156105f857600080fd5b50610613600480360381019061060e9190612756565b611ff7565b005b34801561062157600080fd5b5061062a6120ef565b6040516106379190612792565b60405180910390f35b34801561064c57600080fd5b506106556120f5565b6040516106629190612930565b60405180910390f35b600061067561213e565b73ffffffffffffffffffffffffffffffffffffffff1661069361142e565b73ffffffffffffffffffffffffffffffffffffffff16146106e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106e0906129a8565b60405180910390fd5b600060ce541161072e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072590612a14565b60405180910390fd5b60cd548211610772576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076990612a80565b60405180910390fd5b4282116107b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ab90612aec565b60405180910390fd5b600060ce5490508260ce819055507f5f3a900c85949962b4cc192dd3714dae64071dc2e907049ec720b023270905a48184426040516107f593929190612b0c565b60405180910390a16001915050919050565b60d36020528060005260406000206000915090505481565b61082761213e565b73ffffffffffffffffffffffffffffffffffffffff1661084561142e565b73ffffffffffffffffffffffffffffffffffffffff161461089b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610892906129a8565b60405180910390fd5b60008211806108aa5750600081115b6108e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e090612b8f565b60405180910390fd5b60008211156109e45760cc544210610936576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092d90612bfb565b60405180910390fd5b814210610978576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096f90612c67565b60405180910390fd5b600060cc5490508260cc819055507f53544152540000000000000000000000000000000000000000000000000000007fddd2ed237e6993c9380182683f2c8bec486aaaa429528852cd74dbdb96cea0b28285426040516109da93929190612b0c565b60405180910390a2505b6000811115610ae15760cd544210610a31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2890612cd3565b60405180910390fd5b60cc548111610a75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6c90612d3f565b60405180910390fd5b600060cd5490508160cd819055507f454e4400000000000000000000000000000000000000000000000000000000007fddd2ed237e6993c9380182683f2c8bec486aaaa429528852cd74dbdb96cea0b2828442604051610ad793929190612b0c565b60405180910390a2505b5050565b60008060c95483610af69190612d8e565b9050610b00611458565b60d05482610b0e9190612d8e565b610b189190612e17565b915050919050565b60cd5481565b60d05481565b610b3461213e565b73ffffffffffffffffffffffffffffffffffffffff16610b5261142e565b73ffffffffffffffffffffffffffffffffffffffff1614610ba8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9f906129a8565b60405180910390fd5b610bb0612146565b565b6000610bbc610fb4565b15610bfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf390612e94565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660cf60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610c8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8590612f00565b60405180910390fd5b60ce54421015610cd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cca90612f6c565b60405180910390fd5b60d46000610cdf61213e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610d67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5e90612fd8565b60405180910390fd5b600160d46000610d7561213e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600060d36000610dd461213e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060008111610e54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4b90613044565b60405180910390fd5b60d36000610e6061213e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000905560cf60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb610ee461213e565b836040518363ffffffff1660e01b8152600401610f02929190613064565b602060405180830381600087803b158015610f1c57600080fd5b505af1158015610f30573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f5491906130b9565b50610f5d61213e565b73ffffffffffffffffffffffffffffffffffffffff167f9923b4306c6c030f2bdfbf156517d5983b87e15b96176da122cd4f2effa4ba7b8242604051610fa49291906130e6565b60405180910390a2600191505090565b6000609760009054906101000a900460ff16905090565b600060c95482610fdb9190612d8e565b905064e8d4a5100081610fee9190612e17565b9050919050565b610ffd61213e565b73ffffffffffffffffffffffffffffffffffffffff1661101b61142e565b73ffffffffffffffffffffffffffffffffffffffff1614611071576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611068906129a8565b60405180910390fd5b61107b60006121e8565b565b60d46020528060005260406000206000915054906101000a900460ff1681565b60008160cc5442101580156110b4575060cd544211155b6110f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ea9061315b565b60405180910390fd5b600081118015611105575060cb548111155b611144576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113b906131c7565b60405180910390fd5b61114c610fb4565b1561118c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118390612e94565b60405180910390fd5b600260015414156111d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c990613233565b60405180910390fd5b6002600181905550600060c954846111ea9190612d8e565b905060006111f6611458565b60d054836112049190612d8e565b61120e9190612e17565b905080341015611253576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124a9061329f565b60405180910390fd5b6000813461126191906132bf565b90508560cb600082825461127591906132bf565b9250508190555060d0548661128a9190612d8e565b60d3600061129661213e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112df91906132f3565b925050819055506112f76112f161142e565b836122ae565b60008111156113125761131161130b61213e565b826122ae565b5b600073ffffffffffffffffffffffffffffffffffffffff168661133361213e565b73ffffffffffffffffffffffffffffffffffffffff167f62e796e00a8e66154d78da76daae129635b4795a6e1b889f2caa6c5cea22ac68854260405161137a9291906130e6565b60405180910390a4600194505050506001808190555050919050565b60cc5481565b60ca5481565b60cb5481565b6113b061213e565b73ffffffffffffffffffffffffffffffffffffffff166113ce61142e565b73ffffffffffffffffffffffffffffffffffffffff1614611424576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141b906129a8565b60405180910390fd5b61142c6123a2565b565b6000606560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060d260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663feaf968c6040518163ffffffff1660e01b815260040160a06040518083038186803b1580156114c357600080fd5b505afa1580156114d7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114fb91906133d6565b5050509150506402540be400816115129190613451565b90508091505090565b60008160cc544210158015611532575060cd544211155b611571576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115689061315b565b60405180910390fd5b600081118015611583575060cb548111155b6115c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b9906131c7565b60405180910390fd5b6115ca610fb4565b1561160a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160190612e94565b60405180910390fd5b600060c9548461161a9190612d8e565b905064e8d4a510008161162d9190612e17565b90508360cb600082825461164191906132bf565b9250508190555060d054846116569190612d8e565b60d3600061166261213e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116ab91906132f3565b92505081905550600060d160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e6116fa61213e565b306040518363ffffffff1660e01b8152600401611718929190613568565b60206040518083038186803b15801561173057600080fd5b505afa158015611744573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117689190613591565b9050808211156117ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a490613630565b60405180910390fd5b600060d160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166117f061213e565b6117f861142e565b8560405160240161180b93929190613650565b6040516020818303038152906040527f23b872dd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506040516118959190613701565b6000604051808303816000865af19150503d80600081146118d2576040519150601f19603f3d011682016040523d82523d6000602084013e6118d7565b606091505b505090508061191b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191290613764565b60405180910390fd5b60d160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168661195d61213e565b73ffffffffffffffffffffffffffffffffffffffff167f62e796e00a8e66154d78da76daae129635b4795a6e1b889f2caa6c5cea22ac6886426040516119a49291906130e6565b60405180910390a46001945050505050919050565b60006119c361213e565b73ffffffffffffffffffffffffffffffffffffffff166119e161142e565b73ffffffffffffffffffffffffffffffffffffffff1614611a37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2e906129a8565b60405180910390fd5b60cd5484118015611a4757504284115b611a86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7d906137d0565b60405180910390fd5b60d05460cb5460ca54611a9991906132bf565b611aa39190612d8e565b831015611ae5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adc9061383c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4c906138a8565b60405180910390fd5b600060ce5414611b9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9190613914565b60405180910390fd5b8360ce819055508160cf60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff166323b872dd611c0661213e565b30866040518463ffffffff1660e01b8152600401611c2693929190613650565b602060405180830381600087803b158015611c4057600080fd5b505af1158015611c54573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c7891906130b9565b5060cf60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fdc9670dbabdd488b372eb16ebe49a39b3124a12cdffdcefbc89834a408bf8ff88442604051611ce39291906130e6565b60405180910390a2600190509392505050565b60cf60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000611d286001612445565b90508015611d4c576001600060016101000a81548160ff0219169083151502179055505b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611dbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db390613980565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611e2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e23906139ec565b60405180910390fd5b4283118015611e3a57508282115b611e79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7090613a58565b60405180910390fd5b611e81612535565b611e896125a1565b611e91612602565b662386f26fc1000060c981905550633b9aca0060ca8190555060ca5460cb81905550670de0b6b3a764000060d0819055508460d260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508360d160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508260cc819055508160cd819055507f23f6ad8232d75562dd1c6b37dfc895af6bfc1ecd0fb3b88722c6a5e6b4dc9a2060cc5460cd5442604051611f8993929190612b0c565b60405180910390a18015611fea5760008060016101000a81548160ff0219169083151502179055507f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024986001604051611fe19190613ac0565b60405180910390a15b5050505050565b60ce5481565b611fff61213e565b73ffffffffffffffffffffffffffffffffffffffff1661201d61142e565b73ffffffffffffffffffffffffffffffffffffffff1614612073576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206a906129a8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120da90613b4d565b60405180910390fd5b6120ec816121e8565b50565b60c95481565b60d160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600033905090565b61214e610fb4565b61218d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218490613bb9565b60405180910390fd5b6000609760006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6121d161213e565b6040516121de91906127fc565b60405180910390a1565b6000606560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081606560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b804710156122f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e890613c25565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161231790613c6b565b60006040518083038185875af1925050503d8060008114612354576040519150601f19603f3d011682016040523d82523d6000602084013e612359565b606091505b505090508061239d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239490613ccc565b60405180910390fd5b505050565b6123aa610fb4565b156123ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e190612e94565b60405180910390fd5b6001609760006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861242e61213e565b60405161243b91906127fc565b60405180910390a1565b60008060019054906101000a900460ff16156124bc5760018260ff1614801561247457506124723061211b565b155b6124b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124aa90613d5e565b60405180910390fd5b60009050612530565b8160ff1660008054906101000a900460ff1660ff1610612511576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250890613d5e565b60405180910390fd5b816000806101000a81548160ff021916908360ff160217905550600190505b919050565b600060019054906101000a900460ff16612584576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257b90613df0565b60405180910390fd5b6000609760006101000a81548160ff021916908315150217905550565b600060019054906101000a900460ff166125f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e790613df0565b60405180910390fd5b6126006125fb61213e565b6121e8565b565b600060019054906101000a900460ff16612651576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264890613df0565b60405180910390fd5b60018081905550565b600080fd5b6000819050919050565b6126728161265f565b811461267d57600080fd5b50565b60008135905061268f81612669565b92915050565b6000602082840312156126ab576126aa61265a565b5b60006126b984828501612680565b91505092915050565b60008115159050919050565b6126d7816126c2565b82525050565b60006020820190506126f260008301846126ce565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612723826126f8565b9050919050565b61273381612718565b811461273e57600080fd5b50565b6000813590506127508161272a565b92915050565b60006020828403121561276c5761276b61265a565b5b600061277a84828501612741565b91505092915050565b61278c8161265f565b82525050565b60006020820190506127a76000830184612783565b92915050565b600080604083850312156127c4576127c361265a565b5b60006127d285828601612680565b92505060206127e385828601612680565b9150509250929050565b6127f681612718565b82525050565b600060208201905061281160008301846127ed565b92915050565b6000806000606084860312156128305761282f61265a565b5b600061283e86828701612680565b935050602061284f86828701612680565b925050604061286086828701612741565b9150509250925092565b600080600080608085870312156128845761288361265a565b5b600061289287828801612741565b94505060206128a387828801612741565b93505060406128b487828801612680565b92505060606128c587828801612680565b91505092959194509250565b6000819050919050565b60006128f66128f16128ec846126f8565b6128d1565b6126f8565b9050919050565b6000612908826128db565b9050919050565b600061291a826128fd565b9050919050565b61292a8161290f565b82525050565b60006020820190506129456000830184612921565b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061299260208361294b565b915061299d8261295c565b602082019050919050565b600060208201905081810360008301526129c181612985565b9050919050565b7f496e697469616c20636c61696d2064617461206e6f7420736574000000000000600082015250565b60006129fe601a8361294b565b9150612a09826129c8565b602082019050919050565b60006020820190508181036000830152612a2d816129f1565b9050919050565b7f53616c6520696e2070726f677265737300000000000000000000000000000000600082015250565b6000612a6a60108361294b565b9150612a7582612a34565b602082019050919050565b60006020820190508181036000830152612a9981612a5d565b9050919050565b7f436c61696d20737461727420696e207061737400000000000000000000000000600082015250565b6000612ad660138361294b565b9150612ae182612aa0565b602082019050919050565b60006020820190508181036000830152612b0581612ac9565b9050919050565b6000606082019050612b216000830186612783565b612b2e6020830185612783565b612b3b6040830184612783565b949350505050565b7f496e76616c696420706172616d65746572730000000000000000000000000000600082015250565b6000612b7960128361294b565b9150612b8482612b43565b602082019050919050565b60006020820190508181036000830152612ba881612b6c565b9050919050565b7f53616c6520616c72656164792073746172746564000000000000000000000000600082015250565b6000612be560148361294b565b9150612bf082612baf565b602082019050919050565b60006020820190508181036000830152612c1481612bd8565b9050919050565b7f53616c652074696d6520696e2070617374000000000000000000000000000000600082015250565b6000612c5160118361294b565b9150612c5c82612c1b565b602082019050919050565b60006020820190508181036000830152612c8081612c44565b9050919050565b7f53616c6520616c726561647920656e6465640000000000000000000000000000600082015250565b6000612cbd60128361294b565b9150612cc882612c87565b602082019050919050565b60006020820190508181036000830152612cec81612cb0565b9050919050565b7f496e76616c696420656e6454696d650000000000000000000000000000000000600082015250565b6000612d29600f8361294b565b9150612d3482612cf3565b602082019050919050565b60006020820190508181036000830152612d5881612d1c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612d998261265f565b9150612da48361265f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612ddd57612ddc612d5f565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612e228261265f565b9150612e2d8361265f565b925082612e3d57612e3c612de8565b5b828204905092915050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000612e7e60108361294b565b9150612e8982612e48565b602082019050919050565b60006020820190508181036000830152612ead81612e71565b9050919050565b7f53616c6520746f6b656e206e6f74206164646564000000000000000000000000600082015250565b6000612eea60148361294b565b9150612ef582612eb4565b602082019050919050565b60006020820190508181036000830152612f1981612edd565b9050919050565b7f436c61696d20686173206e6f7420737461727465642079657400000000000000600082015250565b6000612f5660198361294b565b9150612f6182612f20565b602082019050919050565b60006020820190508181036000830152612f8581612f49565b9050919050565b7f416c726561647920636c61696d65640000000000000000000000000000000000600082015250565b6000612fc2600f8361294b565b9150612fcd82612f8c565b602082019050919050565b60006020820190508181036000830152612ff181612fb5565b9050919050565b7f4e6f7468696e6720746f20636c61696d00000000000000000000000000000000600082015250565b600061302e60108361294b565b915061303982612ff8565b602082019050919050565b6000602082019050818103600083015261305d81613021565b9050919050565b600060408201905061307960008301856127ed565b6130866020830184612783565b9392505050565b613096816126c2565b81146130a157600080fd5b50565b6000815190506130b38161308d565b92915050565b6000602082840312156130cf576130ce61265a565b5b60006130dd848285016130a4565b91505092915050565b60006040820190506130fb6000830185612783565b6131086020830184612783565b9392505050565b7f496e76616c69642074696d6520666f7220627579696e67000000000000000000600082015250565b600061314560178361294b565b91506131508261310f565b602082019050919050565b6000602082019050818103600083015261317481613138565b9050919050565b7f496e76616c69642073616c6520616d6f756e7400000000000000000000000000600082015250565b60006131b160138361294b565b91506131bc8261317b565b602082019050919050565b600060208201905081810360008301526131e0816131a4565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061321d601f8361294b565b9150613228826131e7565b602082019050919050565b6000602082019050818103600083015261324c81613210565b9050919050565b7f4c657373207061796d656e740000000000000000000000000000000000000000600082015250565b6000613289600c8361294b565b915061329482613253565b602082019050919050565b600060208201905081810360008301526132b88161327c565b9050919050565b60006132ca8261265f565b91506132d58361265f565b9250828210156132e8576132e7612d5f565b5b828203905092915050565b60006132fe8261265f565b91506133098361265f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561333e5761333d612d5f565b5b828201905092915050565b600069ffffffffffffffffffff82169050919050565b61336881613349565b811461337357600080fd5b50565b6000815190506133858161335f565b92915050565b6000819050919050565b61339e8161338b565b81146133a957600080fd5b50565b6000815190506133bb81613395565b92915050565b6000815190506133d081612669565b92915050565b600080600080600060a086880312156133f2576133f161265a565b5b600061340088828901613376565b9550506020613411888289016133ac565b9450506040613422888289016133c1565b9350506060613433888289016133c1565b925050608061344488828901613376565b9150509295509295909350565b600061345c8261338b565b91506134678361338b565b9250827f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04821160008413600084131616156134a6576134a5612d5f565b5b817f800000000000000000000000000000000000000000000000000000000000000005831260008412600084131616156134e3576134e2612d5f565b5b827f800000000000000000000000000000000000000000000000000000000000000005821260008413600084121616156135205761351f612d5f565b5b827f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff058212600084126000841216161561355d5761355c612d5f565b5b828202905092915050565b600060408201905061357d60008301856127ed565b61358a60208301846127ed565b9392505050565b6000602082840312156135a7576135a661265a565b5b60006135b5848285016133c1565b91505092915050565b7f4d616b65207375726520746f2061646420656e6f75676820616c6c6f77616e6360008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b600061361a60218361294b565b9150613625826135be565b604082019050919050565b600060208201905081810360008301526136498161360d565b9050919050565b600060608201905061366560008301866127ed565b61367260208301856127ed565b61367f6040830184612783565b949350505050565b600081519050919050565b600081905092915050565b60005b838110156136bb5780820151818401526020810190506136a0565b838111156136ca576000848401525b50505050565b60006136db82613687565b6136e58185613692565b93506136f581856020860161369d565b80840191505092915050565b600061370d82846136d0565b915081905092915050565b7f546f6b656e207061796d656e74206661696c6564000000000000000000000000600082015250565b600061374e60148361294b565b915061375982613718565b602082019050919050565b6000602082019050818103600083015261377d81613741565b9050919050565b7f496e76616c696420636c61696d2073746172742074696d650000000000000000600082015250565b60006137ba60188361294b565b91506137c582613784565b602082019050919050565b600060208201905081810360008301526137e9816137ad565b9050919050565b7f546f6b656e73206c657373207468616e20736f6c640000000000000000000000600082015250565b600061382660158361294b565b9150613831826137f0565b602082019050919050565b6000602082019050818103600083015261385581613819565b9050919050565b7f5a65726f20746f6b656e20616464726573730000000000000000000000000000600082015250565b600061389260128361294b565b915061389d8261385c565b602082019050919050565b600060208201905081810360008301526138c181613885565b9050919050565b7f436c61696d20616c726561647920736574000000000000000000000000000000600082015250565b60006138fe60118361294b565b9150613909826138c8565b602082019050919050565b6000602082019050818103600083015261392d816138f1565b9050919050565b7f5a65726f2061676772656761746f722061646472657373000000000000000000600082015250565b600061396a60178361294b565b915061397582613934565b602082019050919050565b600060208201905081810360008301526139998161395d565b9050919050565b7f5a65726f20555344542061646472657373000000000000000000000000000000600082015250565b60006139d660118361294b565b91506139e1826139a0565b602082019050919050565b60006020820190508181036000830152613a05816139c9565b9050919050565b7f496e76616c69642074696d650000000000000000000000000000000000000000600082015250565b6000613a42600c8361294b565b9150613a4d82613a0c565b602082019050919050565b60006020820190508181036000830152613a7181613a35565b9050919050565b6000819050919050565b600060ff82169050919050565b6000613aaa613aa5613aa084613a78565b6128d1565b613a82565b9050919050565b613aba81613a8f565b82525050565b6000602082019050613ad56000830184613ab1565b92915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613b3760268361294b565b9150613b4282613adb565b604082019050919050565b60006020820190508181036000830152613b6681613b2a565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000613ba360148361294b565b9150613bae82613b6d565b602082019050919050565b60006020820190508181036000830152613bd281613b96565b9050919050565b7f4c6f772062616c616e6365000000000000000000000000000000000000000000600082015250565b6000613c0f600b8361294b565b9150613c1a82613bd9565b602082019050919050565b60006020820190508181036000830152613c3e81613c02565b9050919050565b50565b6000613c55600083613692565b9150613c6082613c45565b600082019050919050565b6000613c7682613c48565b9150819050919050565b7f455448205061796d656e74206661696c65640000000000000000000000000000600082015250565b6000613cb660128361294b565b9150613cc182613c80565b602082019050919050565b60006020820190508181036000830152613ce581613ca9565b9050919050565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b6000613d48602e8361294b565b9150613d5382613cec565b604082019050919050565b60006020820190508181036000830152613d7781613d3b565b9050919050565b7f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960008201527f6e697469616c697a696e67000000000000000000000000000000000000000000602082015250565b6000613dda602b8361294b565b9150613de582613d7e565b604082019050919050565b60006020820190508181036000830152613e0981613dcd565b905091905056fea2646970667358221220e96e3115462c5ec7602ffc9e3057f60ce7a07a5561cbc05b6e7631bbb46d3d3e64736f6c63430008090033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 31 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
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.