Feature Tip: Add private address tag to any address under My Name Tag !
Source Code
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
Presale
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 Presale 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");
USDTInterface.transferFrom(_msgSender(), owner(), usdPrice);
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
Contract ABI
API[{"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
60806040523480156200001157600080fd5b506000620000266001620000ae60201b60201c565b905080156200004b576001600060016101000a81548160ff0219169083151502179055505b8015620000a75760008060016101000a81548160ff0219169083151502179055507f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb384740249860016040516200009e919062000231565b60405180910390a15b50620002f7565b60008060019054906101000a900460ff1615620001385760018260ff16148015620000ec5750620000ea30620001b460201b6200206c1760201c565b155b6200012e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200012590620002d5565b60405180910390fd5b60009050620001af565b8160ff1660008054906101000a900460ff1660ff161062000190576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200018790620002d5565b60405180910390fd5b816000806101000a81548160ff021916908360ff160217905550600190505b919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000819050919050565b600060ff82169050919050565b6000819050919050565b600062000219620002136200020d84620001d7565b620001ee565b620001e1565b9050919050565b6200022b81620001f8565b82525050565b600060208201905062000248600083018462000220565b92915050565b600082825260208201905092915050565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b6000620002bd602e836200024e565b9150620002ca826200025f565b604082019050919050565b60006020820190508181036000830152620002f081620002ae565b9050919050565b613ca580620003076000396000f3fe60806040526004361061019c5760003560e01c806378e97925116100ec578063b2caaebd1161008a578063f04d688f11610064578063f04d688f146105c1578063f2fde38b146105ec578063f51f96dd14610615578063f597573f146106405761019c565b8063b2caaebd14610530578063e985e3671461056d578063eb990c59146105985761019c565b80638456cb59116100c65780638456cb59146104865780638da5cb5b1461049d5780638e15f473146104c8578063a7c60160146104f35761019c565b806378e97925146104055780637e1c0c09146104305780638008d5bc1461045b5761019c565b80633f4ba83a1161015957806363e408791161013357806363e4087914610344578063715018a61461038157806373b2e80e146103985780637649b957146103d55761019c565b80633f4ba83a146102d75780634e71d92d146102ee5780635c975abb146103195761019c565b806307f18082146101a15780630ba36dcd146101de5780630dc9c8381461021b57806329a5a0b6146102445780633197cbb61461028157806333f76178146102ac575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c391906125e6565b61066b565b6040516101d5919061262e565b60405180910390f35b3480156101ea57600080fd5b50610205600480360381019061020091906126a7565b610807565b60405161021291906126e3565b60405180910390f35b34801561022757600080fd5b50610242600480360381019061023d91906126fe565b61081f565b005b34801561025057600080fd5b5061026b600480360381019061026691906125e6565b610ae5565b60405161027891906126e3565b60405180910390f35b34801561028d57600080fd5b50610296610b20565b6040516102a391906126e3565b60405180910390f35b3480156102b857600080fd5b506102c1610b26565b6040516102ce91906126e3565b60405180910390f35b3480156102e357600080fd5b506102ec610b2c565b005b3480156102fa57600080fd5b50610303610bb2565b604051610310919061262e565b60405180910390f35b34801561032557600080fd5b5061032e610fb4565b60405161033b919061262e565b60405180910390f35b34801561035057600080fd5b5061036b600480360381019061036691906125e6565b610fcb565b60405161037891906126e3565b60405180910390f35b34801561038d57600080fd5b50610396610ff5565b005b3480156103a457600080fd5b506103bf60048036038101906103ba91906126a7565b61107d565b6040516103cc919061262e565b60405180910390f35b6103ef60048036038101906103ea91906125e6565b61109d565b6040516103fc919061262e565b60405180910390f35b34801561041157600080fd5b5061041a611396565b60405161042791906126e3565b60405180910390f35b34801561043c57600080fd5b5061044561139c565b60405161045291906126e3565b60405180910390f35b34801561046757600080fd5b506104706113a2565b60405161047d91906126e3565b60405180910390f35b34801561049257600080fd5b5061049b6113a8565b005b3480156104a957600080fd5b506104b261142e565b6040516104bf919061274d565b60405180910390f35b3480156104d457600080fd5b506104dd611458565b6040516104ea91906126e3565b60405180910390f35b3480156104ff57600080fd5b5061051a600480360381019061051591906125e6565b61151b565b604051610527919061262e565b60405180910390f35b34801561053c57600080fd5b5061055760048036038101906105529190612768565b61190a565b604051610564919061262e565b60405180910390f35b34801561057957600080fd5b50610582611c47565b60405161058f919061274d565b60405180910390f35b3480156105a457600080fd5b506105bf60048036038101906105ba91906127bb565b611c6d565b005b3480156105cd57600080fd5b506105d6611f42565b6040516105e391906126e3565b60405180910390f35b3480156105f857600080fd5b50610613600480360381019061060e91906126a7565b611f48565b005b34801561062157600080fd5b5061062a612040565b60405161063791906126e3565b60405180910390f35b34801561064c57600080fd5b50610655612046565b6040516106629190612881565b60405180910390f35b600061067561208f565b73ffffffffffffffffffffffffffffffffffffffff1661069361142e565b73ffffffffffffffffffffffffffffffffffffffff16146106e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106e0906128f9565b60405180910390fd5b600060ce541161072e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072590612965565b60405180910390fd5b60cd548211610772576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610769906129d1565b60405180910390fd5b4282116107b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ab90612a3d565b60405180910390fd5b600060ce5490508260ce819055507f5f3a900c85949962b4cc192dd3714dae64071dc2e907049ec720b023270905a48184426040516107f593929190612a5d565b60405180910390a16001915050919050565b60d36020528060005260406000206000915090505481565b61082761208f565b73ffffffffffffffffffffffffffffffffffffffff1661084561142e565b73ffffffffffffffffffffffffffffffffffffffff161461089b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610892906128f9565b60405180910390fd5b60008211806108aa5750600081115b6108e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e090612ae0565b60405180910390fd5b60008211156109e45760cc544210610936576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092d90612b4c565b60405180910390fd5b814210610978576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096f90612bb8565b60405180910390fd5b600060cc5490508260cc819055507f53544152540000000000000000000000000000000000000000000000000000007fddd2ed237e6993c9380182683f2c8bec486aaaa429528852cd74dbdb96cea0b28285426040516109da93929190612a5d565b60405180910390a2505b6000811115610ae15760cd544210610a31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2890612c24565b60405180910390fd5b60cc548111610a75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6c90612c90565b60405180910390fd5b600060cd5490508160cd819055507f454e4400000000000000000000000000000000000000000000000000000000007fddd2ed237e6993c9380182683f2c8bec486aaaa429528852cd74dbdb96cea0b2828442604051610ad793929190612a5d565b60405180910390a2505b5050565b60008060c95483610af69190612cdf565b9050610b00611458565b60d05482610b0e9190612cdf565b610b189190612d68565b915050919050565b60cd5481565b60d05481565b610b3461208f565b73ffffffffffffffffffffffffffffffffffffffff16610b5261142e565b73ffffffffffffffffffffffffffffffffffffffff1614610ba8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9f906128f9565b60405180910390fd5b610bb0612097565b565b6000610bbc610fb4565b15610bfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf390612de5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660cf60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610c8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8590612e51565b60405180910390fd5b60ce54421015610cd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cca90612ebd565b60405180910390fd5b60d46000610cdf61208f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610d67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5e90612f29565b60405180910390fd5b600160d46000610d7561208f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600060d36000610dd461208f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060008111610e54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4b90612f95565b60405180910390fd5b60d36000610e6061208f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000905560cf60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb610ee461208f565b836040518363ffffffff1660e01b8152600401610f02929190612fb5565b602060405180830381600087803b158015610f1c57600080fd5b505af1158015610f30573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f54919061300a565b50610f5d61208f565b73ffffffffffffffffffffffffffffffffffffffff167f9923b4306c6c030f2bdfbf156517d5983b87e15b96176da122cd4f2effa4ba7b8242604051610fa4929190613037565b60405180910390a2600191505090565b6000609760009054906101000a900460ff16905090565b600060c95482610fdb9190612cdf565b905064e8d4a5100081610fee9190612d68565b9050919050565b610ffd61208f565b73ffffffffffffffffffffffffffffffffffffffff1661101b61142e565b73ffffffffffffffffffffffffffffffffffffffff1614611071576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611068906128f9565b60405180910390fd5b61107b6000612139565b565b60d46020528060005260406000206000915054906101000a900460ff1681565b60008160cc5442101580156110b4575060cd544211155b6110f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ea906130ac565b60405180910390fd5b600081118015611105575060cb548111155b611144576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113b90613118565b60405180910390fd5b61114c610fb4565b1561118c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118390612de5565b60405180910390fd5b600260015414156111d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c990613184565b60405180910390fd5b6002600181905550600060c954846111ea9190612cdf565b905060006111f6611458565b60d054836112049190612cdf565b61120e9190612d68565b905080341015611253576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124a906131f0565b60405180910390fd5b600081346112619190613210565b90508560cb60008282546112759190613210565b9250508190555060d0548661128a9190612cdf565b60d3600061129661208f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112df9190613244565b925050819055506112f76112f161142e565b836121ff565b60008111156113125761131161130b61208f565b826121ff565b5b600073ffffffffffffffffffffffffffffffffffffffff168661133361208f565b73ffffffffffffffffffffffffffffffffffffffff167f62e796e00a8e66154d78da76daae129635b4795a6e1b889f2caa6c5cea22ac68854260405161137a929190613037565b60405180910390a4600194505050506001808190555050919050565b60cc5481565b60ca5481565b60cb5481565b6113b061208f565b73ffffffffffffffffffffffffffffffffffffffff166113ce61142e565b73ffffffffffffffffffffffffffffffffffffffff1614611424576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141b906128f9565b60405180910390fd5b61142c6122f3565b565b6000606560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060d260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663feaf968c6040518163ffffffff1660e01b815260040160a06040518083038186803b1580156114c357600080fd5b505afa1580156114d7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114fb9190613327565b5050509150506402540be4008161151291906133a2565b90508091505090565b60008160cc544210158015611532575060cd544211155b611571576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611568906130ac565b60405180910390fd5b600081118015611583575060cb548111155b6115c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b990613118565b60405180910390fd5b6115ca610fb4565b1561160a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160190612de5565b60405180910390fd5b600060c9548461161a9190612cdf565b905064e8d4a510008161162d9190612d68565b90508360cb60008282546116419190613210565b9250508190555060d054846116569190612cdf565b60d3600061166261208f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116ab9190613244565b92505081905550600060d160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e6116fa61208f565b306040518363ffffffff1660e01b81526004016117189291906134b9565b60206040518083038186803b15801561173057600080fd5b505afa158015611744573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061176891906134e2565b9050808211156117ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a490613581565b60405180910390fd5b60d160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd6117f361208f565b6117fb61142e565b856040518463ffffffff1660e01b815260040161181a939291906135a1565b602060405180830381600087803b15801561183457600080fd5b505af1158015611848573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061186c919061300a565b5060d160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16856118af61208f565b73ffffffffffffffffffffffffffffffffffffffff167f62e796e00a8e66154d78da76daae129635b4795a6e1b889f2caa6c5cea22ac6885426040516118f6929190613037565b60405180910390a460019350505050919050565b600061191461208f565b73ffffffffffffffffffffffffffffffffffffffff1661193261142e565b73ffffffffffffffffffffffffffffffffffffffff1614611988576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197f906128f9565b60405180910390fd5b60cd548411801561199857504284115b6119d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ce90613624565b60405180910390fd5b60d05460cb5460ca546119ea9190613210565b6119f49190612cdf565b831015611a36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2d90613690565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611aa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9d906136fc565b60405180910390fd5b600060ce5414611aeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae290613768565b60405180910390fd5b8360ce819055508160cf60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff166323b872dd611b5761208f565b30866040518463ffffffff1660e01b8152600401611b77939291906135a1565b602060405180830381600087803b158015611b9157600080fd5b505af1158015611ba5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bc9919061300a565b5060cf60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fdc9670dbabdd488b372eb16ebe49a39b3124a12cdffdcefbc89834a408bf8ff88442604051611c34929190613037565b60405180910390a2600190509392505050565b60cf60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000611c796001612396565b90508015611c9d576001600060016101000a81548160ff0219169083151502179055505b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611d0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d04906137d4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611d7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7490613840565b60405180910390fd5b4283118015611d8b57508282115b611dca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc1906138ac565b60405180910390fd5b611dd2612486565b611dda6124f2565b611de2612553565b662386f26fc1000060c981905550633b9aca0060ca8190555060ca5460cb81905550670de0b6b3a764000060d0819055508460d260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508360d160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508260cc819055508160cd819055507f23f6ad8232d75562dd1c6b37dfc895af6bfc1ecd0fb3b88722c6a5e6b4dc9a2060cc5460cd5442604051611eda93929190612a5d565b60405180910390a18015611f3b5760008060016101000a81548160ff0219169083151502179055507f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024986001604051611f329190613914565b60405180910390a15b5050505050565b60ce5481565b611f5061208f565b73ffffffffffffffffffffffffffffffffffffffff16611f6e61142e565b73ffffffffffffffffffffffffffffffffffffffff1614611fc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbb906128f9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612034576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202b906139a1565b60405180910390fd5b61203d81612139565b50565b60c95481565b60d160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600033905090565b61209f610fb4565b6120de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d590613a0d565b60405180910390fd5b6000609760006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61212261208f565b60405161212f919061274d565b60405180910390a1565b6000606560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081606560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80471015612242576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223990613a79565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161226890613aca565b60006040518083038185875af1925050503d80600081146122a5576040519150601f19603f3d011682016040523d82523d6000602084013e6122aa565b606091505b50509050806122ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e590613b2b565b60405180910390fd5b505050565b6122fb610fb4565b1561233b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233290612de5565b60405180910390fd5b6001609760006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861237f61208f565b60405161238c919061274d565b60405180910390a1565b60008060019054906101000a900460ff161561240d5760018260ff161480156123c557506123c33061206c565b155b612404576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123fb90613bbd565b60405180910390fd5b60009050612481565b8160ff1660008054906101000a900460ff1660ff1610612462576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245990613bbd565b60405180910390fd5b816000806101000a81548160ff021916908360ff160217905550600190505b919050565b600060019054906101000a900460ff166124d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124cc90613c4f565b60405180910390fd5b6000609760006101000a81548160ff021916908315150217905550565b600060019054906101000a900460ff16612541576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253890613c4f565b60405180910390fd5b61255161254c61208f565b612139565b565b600060019054906101000a900460ff166125a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259990613c4f565b60405180910390fd5b60018081905550565b600080fd5b6000819050919050565b6125c3816125b0565b81146125ce57600080fd5b50565b6000813590506125e0816125ba565b92915050565b6000602082840312156125fc576125fb6125ab565b5b600061260a848285016125d1565b91505092915050565b60008115159050919050565b61262881612613565b82525050565b6000602082019050612643600083018461261f565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061267482612649565b9050919050565b61268481612669565b811461268f57600080fd5b50565b6000813590506126a18161267b565b92915050565b6000602082840312156126bd576126bc6125ab565b5b60006126cb84828501612692565b91505092915050565b6126dd816125b0565b82525050565b60006020820190506126f860008301846126d4565b92915050565b60008060408385031215612715576127146125ab565b5b6000612723858286016125d1565b9250506020612734858286016125d1565b9150509250929050565b61274781612669565b82525050565b6000602082019050612762600083018461273e565b92915050565b600080600060608486031215612781576127806125ab565b5b600061278f868287016125d1565b93505060206127a0868287016125d1565b92505060406127b186828701612692565b9150509250925092565b600080600080608085870312156127d5576127d46125ab565b5b60006127e387828801612692565b94505060206127f487828801612692565b9350506040612805878288016125d1565b9250506060612816878288016125d1565b91505092959194509250565b6000819050919050565b600061284761284261283d84612649565b612822565b612649565b9050919050565b60006128598261282c565b9050919050565b600061286b8261284e565b9050919050565b61287b81612860565b82525050565b60006020820190506128966000830184612872565b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006128e360208361289c565b91506128ee826128ad565b602082019050919050565b60006020820190508181036000830152612912816128d6565b9050919050565b7f496e697469616c20636c61696d2064617461206e6f7420736574000000000000600082015250565b600061294f601a8361289c565b915061295a82612919565b602082019050919050565b6000602082019050818103600083015261297e81612942565b9050919050565b7f53616c6520696e2070726f677265737300000000000000000000000000000000600082015250565b60006129bb60108361289c565b91506129c682612985565b602082019050919050565b600060208201905081810360008301526129ea816129ae565b9050919050565b7f436c61696d20737461727420696e207061737400000000000000000000000000600082015250565b6000612a2760138361289c565b9150612a32826129f1565b602082019050919050565b60006020820190508181036000830152612a5681612a1a565b9050919050565b6000606082019050612a7260008301866126d4565b612a7f60208301856126d4565b612a8c60408301846126d4565b949350505050565b7f496e76616c696420706172616d65746572730000000000000000000000000000600082015250565b6000612aca60128361289c565b9150612ad582612a94565b602082019050919050565b60006020820190508181036000830152612af981612abd565b9050919050565b7f53616c6520616c72656164792073746172746564000000000000000000000000600082015250565b6000612b3660148361289c565b9150612b4182612b00565b602082019050919050565b60006020820190508181036000830152612b6581612b29565b9050919050565b7f53616c652074696d6520696e2070617374000000000000000000000000000000600082015250565b6000612ba260118361289c565b9150612bad82612b6c565b602082019050919050565b60006020820190508181036000830152612bd181612b95565b9050919050565b7f53616c6520616c726561647920656e6465640000000000000000000000000000600082015250565b6000612c0e60128361289c565b9150612c1982612bd8565b602082019050919050565b60006020820190508181036000830152612c3d81612c01565b9050919050565b7f496e76616c696420656e6454696d650000000000000000000000000000000000600082015250565b6000612c7a600f8361289c565b9150612c8582612c44565b602082019050919050565b60006020820190508181036000830152612ca981612c6d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612cea826125b0565b9150612cf5836125b0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612d2e57612d2d612cb0565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612d73826125b0565b9150612d7e836125b0565b925082612d8e57612d8d612d39565b5b828204905092915050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000612dcf60108361289c565b9150612dda82612d99565b602082019050919050565b60006020820190508181036000830152612dfe81612dc2565b9050919050565b7f53616c6520746f6b656e206e6f74206164646564000000000000000000000000600082015250565b6000612e3b60148361289c565b9150612e4682612e05565b602082019050919050565b60006020820190508181036000830152612e6a81612e2e565b9050919050565b7f436c61696d20686173206e6f7420737461727465642079657400000000000000600082015250565b6000612ea760198361289c565b9150612eb282612e71565b602082019050919050565b60006020820190508181036000830152612ed681612e9a565b9050919050565b7f416c726561647920636c61696d65640000000000000000000000000000000000600082015250565b6000612f13600f8361289c565b9150612f1e82612edd565b602082019050919050565b60006020820190508181036000830152612f4281612f06565b9050919050565b7f4e6f7468696e6720746f20636c61696d00000000000000000000000000000000600082015250565b6000612f7f60108361289c565b9150612f8a82612f49565b602082019050919050565b60006020820190508181036000830152612fae81612f72565b9050919050565b6000604082019050612fca600083018561273e565b612fd760208301846126d4565b9392505050565b612fe781612613565b8114612ff257600080fd5b50565b60008151905061300481612fde565b92915050565b6000602082840312156130205761301f6125ab565b5b600061302e84828501612ff5565b91505092915050565b600060408201905061304c60008301856126d4565b61305960208301846126d4565b9392505050565b7f496e76616c69642074696d6520666f7220627579696e67000000000000000000600082015250565b600061309660178361289c565b91506130a182613060565b602082019050919050565b600060208201905081810360008301526130c581613089565b9050919050565b7f496e76616c69642073616c6520616d6f756e7400000000000000000000000000600082015250565b600061310260138361289c565b915061310d826130cc565b602082019050919050565b60006020820190508181036000830152613131816130f5565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061316e601f8361289c565b915061317982613138565b602082019050919050565b6000602082019050818103600083015261319d81613161565b9050919050565b7f4c657373207061796d656e740000000000000000000000000000000000000000600082015250565b60006131da600c8361289c565b91506131e5826131a4565b602082019050919050565b60006020820190508181036000830152613209816131cd565b9050919050565b600061321b826125b0565b9150613226836125b0565b92508282101561323957613238612cb0565b5b828203905092915050565b600061324f826125b0565b915061325a836125b0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561328f5761328e612cb0565b5b828201905092915050565b600069ffffffffffffffffffff82169050919050565b6132b98161329a565b81146132c457600080fd5b50565b6000815190506132d6816132b0565b92915050565b6000819050919050565b6132ef816132dc565b81146132fa57600080fd5b50565b60008151905061330c816132e6565b92915050565b600081519050613321816125ba565b92915050565b600080600080600060a08688031215613343576133426125ab565b5b6000613351888289016132c7565b9550506020613362888289016132fd565b945050604061337388828901613312565b935050606061338488828901613312565b9250506080613395888289016132c7565b9150509295509295909350565b60006133ad826132dc565b91506133b8836132dc565b9250827f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04821160008413600084131616156133f7576133f6612cb0565b5b817f8000000000000000000000000000000000000000000000000000000000000000058312600084126000841316161561343457613433612cb0565b5b827f8000000000000000000000000000000000000000000000000000000000000000058212600084136000841216161561347157613470612cb0565b5b827f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff05821260008412600084121616156134ae576134ad612cb0565b5b828202905092915050565b60006040820190506134ce600083018561273e565b6134db602083018461273e565b9392505050565b6000602082840312156134f8576134f76125ab565b5b600061350684828501613312565b91505092915050565b7f4d616b65207375726520746f2061646420656e6f75676820616c6c6f77616e6360008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b600061356b60218361289c565b91506135768261350f565b604082019050919050565b6000602082019050818103600083015261359a8161355e565b9050919050565b60006060820190506135b6600083018661273e565b6135c3602083018561273e565b6135d060408301846126d4565b949350505050565b7f496e76616c696420636c61696d2073746172742074696d650000000000000000600082015250565b600061360e60188361289c565b9150613619826135d8565b602082019050919050565b6000602082019050818103600083015261363d81613601565b9050919050565b7f546f6b656e73206c657373207468616e20736f6c640000000000000000000000600082015250565b600061367a60158361289c565b915061368582613644565b602082019050919050565b600060208201905081810360008301526136a98161366d565b9050919050565b7f5a65726f20746f6b656e20616464726573730000000000000000000000000000600082015250565b60006136e660128361289c565b91506136f1826136b0565b602082019050919050565b60006020820190508181036000830152613715816136d9565b9050919050565b7f436c61696d20616c726561647920736574000000000000000000000000000000600082015250565b600061375260118361289c565b915061375d8261371c565b602082019050919050565b6000602082019050818103600083015261378181613745565b9050919050565b7f5a65726f2061676772656761746f722061646472657373000000000000000000600082015250565b60006137be60178361289c565b91506137c982613788565b602082019050919050565b600060208201905081810360008301526137ed816137b1565b9050919050565b7f5a65726f20555344542061646472657373000000000000000000000000000000600082015250565b600061382a60118361289c565b9150613835826137f4565b602082019050919050565b600060208201905081810360008301526138598161381d565b9050919050565b7f496e76616c69642074696d650000000000000000000000000000000000000000600082015250565b6000613896600c8361289c565b91506138a182613860565b602082019050919050565b600060208201905081810360008301526138c581613889565b9050919050565b6000819050919050565b600060ff82169050919050565b60006138fe6138f96138f4846138cc565b612822565b6138d6565b9050919050565b61390e816138e3565b82525050565b60006020820190506139296000830184613905565b92915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061398b60268361289c565b91506139968261392f565b604082019050919050565b600060208201905081810360008301526139ba8161397e565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b60006139f760148361289c565b9150613a02826139c1565b602082019050919050565b60006020820190508181036000830152613a26816139ea565b9050919050565b7f4c6f772062616c616e6365000000000000000000000000000000000000000000600082015250565b6000613a63600b8361289c565b9150613a6e82613a2d565b602082019050919050565b60006020820190508181036000830152613a9281613a56565b9050919050565b600081905092915050565b50565b6000613ab4600083613a99565b9150613abf82613aa4565b600082019050919050565b6000613ad582613aa7565b9150819050919050565b7f455448205061796d656e74206661696c65640000000000000000000000000000600082015250565b6000613b1560128361289c565b9150613b2082613adf565b602082019050919050565b60006020820190508181036000830152613b4481613b08565b9050919050565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b6000613ba7602e8361289c565b9150613bb282613b4b565b604082019050919050565b60006020820190508181036000830152613bd681613b9a565b9050919050565b7f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960008201527f6e697469616c697a696e67000000000000000000000000000000000000000000602082015250565b6000613c39602b8361289c565b9150613c4482613bdd565b604082019050919050565b60006020820190508181036000830152613c6881613c2c565b905091905056fea2646970667358221220ea3fbb59f9bb594f0cf7887affe2683a4aff2148484390a3575f0043354e7c7064736f6c63430008090033
Deployed Bytecode
0x60806040526004361061019c5760003560e01c806378e97925116100ec578063b2caaebd1161008a578063f04d688f11610064578063f04d688f146105c1578063f2fde38b146105ec578063f51f96dd14610615578063f597573f146106405761019c565b8063b2caaebd14610530578063e985e3671461056d578063eb990c59146105985761019c565b80638456cb59116100c65780638456cb59146104865780638da5cb5b1461049d5780638e15f473146104c8578063a7c60160146104f35761019c565b806378e97925146104055780637e1c0c09146104305780638008d5bc1461045b5761019c565b80633f4ba83a1161015957806363e408791161013357806363e4087914610344578063715018a61461038157806373b2e80e146103985780637649b957146103d55761019c565b80633f4ba83a146102d75780634e71d92d146102ee5780635c975abb146103195761019c565b806307f18082146101a15780630ba36dcd146101de5780630dc9c8381461021b57806329a5a0b6146102445780633197cbb61461028157806333f76178146102ac575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c391906125e6565b61066b565b6040516101d5919061262e565b60405180910390f35b3480156101ea57600080fd5b50610205600480360381019061020091906126a7565b610807565b60405161021291906126e3565b60405180910390f35b34801561022757600080fd5b50610242600480360381019061023d91906126fe565b61081f565b005b34801561025057600080fd5b5061026b600480360381019061026691906125e6565b610ae5565b60405161027891906126e3565b60405180910390f35b34801561028d57600080fd5b50610296610b20565b6040516102a391906126e3565b60405180910390f35b3480156102b857600080fd5b506102c1610b26565b6040516102ce91906126e3565b60405180910390f35b3480156102e357600080fd5b506102ec610b2c565b005b3480156102fa57600080fd5b50610303610bb2565b604051610310919061262e565b60405180910390f35b34801561032557600080fd5b5061032e610fb4565b60405161033b919061262e565b60405180910390f35b34801561035057600080fd5b5061036b600480360381019061036691906125e6565b610fcb565b60405161037891906126e3565b60405180910390f35b34801561038d57600080fd5b50610396610ff5565b005b3480156103a457600080fd5b506103bf60048036038101906103ba91906126a7565b61107d565b6040516103cc919061262e565b60405180910390f35b6103ef60048036038101906103ea91906125e6565b61109d565b6040516103fc919061262e565b60405180910390f35b34801561041157600080fd5b5061041a611396565b60405161042791906126e3565b60405180910390f35b34801561043c57600080fd5b5061044561139c565b60405161045291906126e3565b60405180910390f35b34801561046757600080fd5b506104706113a2565b60405161047d91906126e3565b60405180910390f35b34801561049257600080fd5b5061049b6113a8565b005b3480156104a957600080fd5b506104b261142e565b6040516104bf919061274d565b60405180910390f35b3480156104d457600080fd5b506104dd611458565b6040516104ea91906126e3565b60405180910390f35b3480156104ff57600080fd5b5061051a600480360381019061051591906125e6565b61151b565b604051610527919061262e565b60405180910390f35b34801561053c57600080fd5b5061055760048036038101906105529190612768565b61190a565b604051610564919061262e565b60405180910390f35b34801561057957600080fd5b50610582611c47565b60405161058f919061274d565b60405180910390f35b3480156105a457600080fd5b506105bf60048036038101906105ba91906127bb565b611c6d565b005b3480156105cd57600080fd5b506105d6611f42565b6040516105e391906126e3565b60405180910390f35b3480156105f857600080fd5b50610613600480360381019061060e91906126a7565b611f48565b005b34801561062157600080fd5b5061062a612040565b60405161063791906126e3565b60405180910390f35b34801561064c57600080fd5b50610655612046565b6040516106629190612881565b60405180910390f35b600061067561208f565b73ffffffffffffffffffffffffffffffffffffffff1661069361142e565b73ffffffffffffffffffffffffffffffffffffffff16146106e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106e0906128f9565b60405180910390fd5b600060ce541161072e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072590612965565b60405180910390fd5b60cd548211610772576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610769906129d1565b60405180910390fd5b4282116107b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ab90612a3d565b60405180910390fd5b600060ce5490508260ce819055507f5f3a900c85949962b4cc192dd3714dae64071dc2e907049ec720b023270905a48184426040516107f593929190612a5d565b60405180910390a16001915050919050565b60d36020528060005260406000206000915090505481565b61082761208f565b73ffffffffffffffffffffffffffffffffffffffff1661084561142e565b73ffffffffffffffffffffffffffffffffffffffff161461089b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610892906128f9565b60405180910390fd5b60008211806108aa5750600081115b6108e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e090612ae0565b60405180910390fd5b60008211156109e45760cc544210610936576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092d90612b4c565b60405180910390fd5b814210610978576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096f90612bb8565b60405180910390fd5b600060cc5490508260cc819055507f53544152540000000000000000000000000000000000000000000000000000007fddd2ed237e6993c9380182683f2c8bec486aaaa429528852cd74dbdb96cea0b28285426040516109da93929190612a5d565b60405180910390a2505b6000811115610ae15760cd544210610a31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2890612c24565b60405180910390fd5b60cc548111610a75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6c90612c90565b60405180910390fd5b600060cd5490508160cd819055507f454e4400000000000000000000000000000000000000000000000000000000007fddd2ed237e6993c9380182683f2c8bec486aaaa429528852cd74dbdb96cea0b2828442604051610ad793929190612a5d565b60405180910390a2505b5050565b60008060c95483610af69190612cdf565b9050610b00611458565b60d05482610b0e9190612cdf565b610b189190612d68565b915050919050565b60cd5481565b60d05481565b610b3461208f565b73ffffffffffffffffffffffffffffffffffffffff16610b5261142e565b73ffffffffffffffffffffffffffffffffffffffff1614610ba8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9f906128f9565b60405180910390fd5b610bb0612097565b565b6000610bbc610fb4565b15610bfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf390612de5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660cf60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610c8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8590612e51565b60405180910390fd5b60ce54421015610cd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cca90612ebd565b60405180910390fd5b60d46000610cdf61208f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610d67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5e90612f29565b60405180910390fd5b600160d46000610d7561208f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600060d36000610dd461208f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060008111610e54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4b90612f95565b60405180910390fd5b60d36000610e6061208f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000905560cf60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb610ee461208f565b836040518363ffffffff1660e01b8152600401610f02929190612fb5565b602060405180830381600087803b158015610f1c57600080fd5b505af1158015610f30573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f54919061300a565b50610f5d61208f565b73ffffffffffffffffffffffffffffffffffffffff167f9923b4306c6c030f2bdfbf156517d5983b87e15b96176da122cd4f2effa4ba7b8242604051610fa4929190613037565b60405180910390a2600191505090565b6000609760009054906101000a900460ff16905090565b600060c95482610fdb9190612cdf565b905064e8d4a5100081610fee9190612d68565b9050919050565b610ffd61208f565b73ffffffffffffffffffffffffffffffffffffffff1661101b61142e565b73ffffffffffffffffffffffffffffffffffffffff1614611071576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611068906128f9565b60405180910390fd5b61107b6000612139565b565b60d46020528060005260406000206000915054906101000a900460ff1681565b60008160cc5442101580156110b4575060cd544211155b6110f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ea906130ac565b60405180910390fd5b600081118015611105575060cb548111155b611144576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113b90613118565b60405180910390fd5b61114c610fb4565b1561118c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118390612de5565b60405180910390fd5b600260015414156111d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c990613184565b60405180910390fd5b6002600181905550600060c954846111ea9190612cdf565b905060006111f6611458565b60d054836112049190612cdf565b61120e9190612d68565b905080341015611253576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124a906131f0565b60405180910390fd5b600081346112619190613210565b90508560cb60008282546112759190613210565b9250508190555060d0548661128a9190612cdf565b60d3600061129661208f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112df9190613244565b925050819055506112f76112f161142e565b836121ff565b60008111156113125761131161130b61208f565b826121ff565b5b600073ffffffffffffffffffffffffffffffffffffffff168661133361208f565b73ffffffffffffffffffffffffffffffffffffffff167f62e796e00a8e66154d78da76daae129635b4795a6e1b889f2caa6c5cea22ac68854260405161137a929190613037565b60405180910390a4600194505050506001808190555050919050565b60cc5481565b60ca5481565b60cb5481565b6113b061208f565b73ffffffffffffffffffffffffffffffffffffffff166113ce61142e565b73ffffffffffffffffffffffffffffffffffffffff1614611424576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141b906128f9565b60405180910390fd5b61142c6122f3565b565b6000606560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060d260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663feaf968c6040518163ffffffff1660e01b815260040160a06040518083038186803b1580156114c357600080fd5b505afa1580156114d7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114fb9190613327565b5050509150506402540be4008161151291906133a2565b90508091505090565b60008160cc544210158015611532575060cd544211155b611571576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611568906130ac565b60405180910390fd5b600081118015611583575060cb548111155b6115c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b990613118565b60405180910390fd5b6115ca610fb4565b1561160a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160190612de5565b60405180910390fd5b600060c9548461161a9190612cdf565b905064e8d4a510008161162d9190612d68565b90508360cb60008282546116419190613210565b9250508190555060d054846116569190612cdf565b60d3600061166261208f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116ab9190613244565b92505081905550600060d160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e6116fa61208f565b306040518363ffffffff1660e01b81526004016117189291906134b9565b60206040518083038186803b15801561173057600080fd5b505afa158015611744573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061176891906134e2565b9050808211156117ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a490613581565b60405180910390fd5b60d160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd6117f361208f565b6117fb61142e565b856040518463ffffffff1660e01b815260040161181a939291906135a1565b602060405180830381600087803b15801561183457600080fd5b505af1158015611848573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061186c919061300a565b5060d160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16856118af61208f565b73ffffffffffffffffffffffffffffffffffffffff167f62e796e00a8e66154d78da76daae129635b4795a6e1b889f2caa6c5cea22ac6885426040516118f6929190613037565b60405180910390a460019350505050919050565b600061191461208f565b73ffffffffffffffffffffffffffffffffffffffff1661193261142e565b73ffffffffffffffffffffffffffffffffffffffff1614611988576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197f906128f9565b60405180910390fd5b60cd548411801561199857504284115b6119d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ce90613624565b60405180910390fd5b60d05460cb5460ca546119ea9190613210565b6119f49190612cdf565b831015611a36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2d90613690565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611aa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9d906136fc565b60405180910390fd5b600060ce5414611aeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae290613768565b60405180910390fd5b8360ce819055508160cf60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff166323b872dd611b5761208f565b30866040518463ffffffff1660e01b8152600401611b77939291906135a1565b602060405180830381600087803b158015611b9157600080fd5b505af1158015611ba5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bc9919061300a565b5060cf60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fdc9670dbabdd488b372eb16ebe49a39b3124a12cdffdcefbc89834a408bf8ff88442604051611c34929190613037565b60405180910390a2600190509392505050565b60cf60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000611c796001612396565b90508015611c9d576001600060016101000a81548160ff0219169083151502179055505b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611d0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d04906137d4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611d7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7490613840565b60405180910390fd5b4283118015611d8b57508282115b611dca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc1906138ac565b60405180910390fd5b611dd2612486565b611dda6124f2565b611de2612553565b662386f26fc1000060c981905550633b9aca0060ca8190555060ca5460cb81905550670de0b6b3a764000060d0819055508460d260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508360d160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508260cc819055508160cd819055507f23f6ad8232d75562dd1c6b37dfc895af6bfc1ecd0fb3b88722c6a5e6b4dc9a2060cc5460cd5442604051611eda93929190612a5d565b60405180910390a18015611f3b5760008060016101000a81548160ff0219169083151502179055507f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024986001604051611f329190613914565b60405180910390a15b5050505050565b60ce5481565b611f5061208f565b73ffffffffffffffffffffffffffffffffffffffff16611f6e61142e565b73ffffffffffffffffffffffffffffffffffffffff1614611fc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbb906128f9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612034576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202b906139a1565b60405180910390fd5b61203d81612139565b50565b60c95481565b60d160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600033905090565b61209f610fb4565b6120de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d590613a0d565b60405180910390fd5b6000609760006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61212261208f565b60405161212f919061274d565b60405180910390a1565b6000606560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081606560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80471015612242576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223990613a79565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161226890613aca565b60006040518083038185875af1925050503d80600081146122a5576040519150601f19603f3d011682016040523d82523d6000602084013e6122aa565b606091505b50509050806122ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e590613b2b565b60405180910390fd5b505050565b6122fb610fb4565b1561233b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233290612de5565b60405180910390fd5b6001609760006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861237f61208f565b60405161238c919061274d565b60405180910390a1565b60008060019054906101000a900460ff161561240d5760018260ff161480156123c557506123c33061206c565b155b612404576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123fb90613bbd565b60405180910390fd5b60009050612481565b8160ff1660008054906101000a900460ff1660ff1610612462576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245990613bbd565b60405180910390fd5b816000806101000a81548160ff021916908360ff160217905550600190505b919050565b600060019054906101000a900460ff166124d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124cc90613c4f565b60405180910390fd5b6000609760006101000a81548160ff021916908315150217905550565b600060019054906101000a900460ff16612541576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253890613c4f565b60405180910390fd5b61255161254c61208f565b612139565b565b600060019054906101000a900460ff166125a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259990613c4f565b60405180910390fd5b60018081905550565b600080fd5b6000819050919050565b6125c3816125b0565b81146125ce57600080fd5b50565b6000813590506125e0816125ba565b92915050565b6000602082840312156125fc576125fb6125ab565b5b600061260a848285016125d1565b91505092915050565b60008115159050919050565b61262881612613565b82525050565b6000602082019050612643600083018461261f565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061267482612649565b9050919050565b61268481612669565b811461268f57600080fd5b50565b6000813590506126a18161267b565b92915050565b6000602082840312156126bd576126bc6125ab565b5b60006126cb84828501612692565b91505092915050565b6126dd816125b0565b82525050565b60006020820190506126f860008301846126d4565b92915050565b60008060408385031215612715576127146125ab565b5b6000612723858286016125d1565b9250506020612734858286016125d1565b9150509250929050565b61274781612669565b82525050565b6000602082019050612762600083018461273e565b92915050565b600080600060608486031215612781576127806125ab565b5b600061278f868287016125d1565b93505060206127a0868287016125d1565b92505060406127b186828701612692565b9150509250925092565b600080600080608085870312156127d5576127d46125ab565b5b60006127e387828801612692565b94505060206127f487828801612692565b9350506040612805878288016125d1565b9250506060612816878288016125d1565b91505092959194509250565b6000819050919050565b600061284761284261283d84612649565b612822565b612649565b9050919050565b60006128598261282c565b9050919050565b600061286b8261284e565b9050919050565b61287b81612860565b82525050565b60006020820190506128966000830184612872565b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006128e360208361289c565b91506128ee826128ad565b602082019050919050565b60006020820190508181036000830152612912816128d6565b9050919050565b7f496e697469616c20636c61696d2064617461206e6f7420736574000000000000600082015250565b600061294f601a8361289c565b915061295a82612919565b602082019050919050565b6000602082019050818103600083015261297e81612942565b9050919050565b7f53616c6520696e2070726f677265737300000000000000000000000000000000600082015250565b60006129bb60108361289c565b91506129c682612985565b602082019050919050565b600060208201905081810360008301526129ea816129ae565b9050919050565b7f436c61696d20737461727420696e207061737400000000000000000000000000600082015250565b6000612a2760138361289c565b9150612a32826129f1565b602082019050919050565b60006020820190508181036000830152612a5681612a1a565b9050919050565b6000606082019050612a7260008301866126d4565b612a7f60208301856126d4565b612a8c60408301846126d4565b949350505050565b7f496e76616c696420706172616d65746572730000000000000000000000000000600082015250565b6000612aca60128361289c565b9150612ad582612a94565b602082019050919050565b60006020820190508181036000830152612af981612abd565b9050919050565b7f53616c6520616c72656164792073746172746564000000000000000000000000600082015250565b6000612b3660148361289c565b9150612b4182612b00565b602082019050919050565b60006020820190508181036000830152612b6581612b29565b9050919050565b7f53616c652074696d6520696e2070617374000000000000000000000000000000600082015250565b6000612ba260118361289c565b9150612bad82612b6c565b602082019050919050565b60006020820190508181036000830152612bd181612b95565b9050919050565b7f53616c6520616c726561647920656e6465640000000000000000000000000000600082015250565b6000612c0e60128361289c565b9150612c1982612bd8565b602082019050919050565b60006020820190508181036000830152612c3d81612c01565b9050919050565b7f496e76616c696420656e6454696d650000000000000000000000000000000000600082015250565b6000612c7a600f8361289c565b9150612c8582612c44565b602082019050919050565b60006020820190508181036000830152612ca981612c6d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612cea826125b0565b9150612cf5836125b0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612d2e57612d2d612cb0565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612d73826125b0565b9150612d7e836125b0565b925082612d8e57612d8d612d39565b5b828204905092915050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000612dcf60108361289c565b9150612dda82612d99565b602082019050919050565b60006020820190508181036000830152612dfe81612dc2565b9050919050565b7f53616c6520746f6b656e206e6f74206164646564000000000000000000000000600082015250565b6000612e3b60148361289c565b9150612e4682612e05565b602082019050919050565b60006020820190508181036000830152612e6a81612e2e565b9050919050565b7f436c61696d20686173206e6f7420737461727465642079657400000000000000600082015250565b6000612ea760198361289c565b9150612eb282612e71565b602082019050919050565b60006020820190508181036000830152612ed681612e9a565b9050919050565b7f416c726561647920636c61696d65640000000000000000000000000000000000600082015250565b6000612f13600f8361289c565b9150612f1e82612edd565b602082019050919050565b60006020820190508181036000830152612f4281612f06565b9050919050565b7f4e6f7468696e6720746f20636c61696d00000000000000000000000000000000600082015250565b6000612f7f60108361289c565b9150612f8a82612f49565b602082019050919050565b60006020820190508181036000830152612fae81612f72565b9050919050565b6000604082019050612fca600083018561273e565b612fd760208301846126d4565b9392505050565b612fe781612613565b8114612ff257600080fd5b50565b60008151905061300481612fde565b92915050565b6000602082840312156130205761301f6125ab565b5b600061302e84828501612ff5565b91505092915050565b600060408201905061304c60008301856126d4565b61305960208301846126d4565b9392505050565b7f496e76616c69642074696d6520666f7220627579696e67000000000000000000600082015250565b600061309660178361289c565b91506130a182613060565b602082019050919050565b600060208201905081810360008301526130c581613089565b9050919050565b7f496e76616c69642073616c6520616d6f756e7400000000000000000000000000600082015250565b600061310260138361289c565b915061310d826130cc565b602082019050919050565b60006020820190508181036000830152613131816130f5565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061316e601f8361289c565b915061317982613138565b602082019050919050565b6000602082019050818103600083015261319d81613161565b9050919050565b7f4c657373207061796d656e740000000000000000000000000000000000000000600082015250565b60006131da600c8361289c565b91506131e5826131a4565b602082019050919050565b60006020820190508181036000830152613209816131cd565b9050919050565b600061321b826125b0565b9150613226836125b0565b92508282101561323957613238612cb0565b5b828203905092915050565b600061324f826125b0565b915061325a836125b0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561328f5761328e612cb0565b5b828201905092915050565b600069ffffffffffffffffffff82169050919050565b6132b98161329a565b81146132c457600080fd5b50565b6000815190506132d6816132b0565b92915050565b6000819050919050565b6132ef816132dc565b81146132fa57600080fd5b50565b60008151905061330c816132e6565b92915050565b600081519050613321816125ba565b92915050565b600080600080600060a08688031215613343576133426125ab565b5b6000613351888289016132c7565b9550506020613362888289016132fd565b945050604061337388828901613312565b935050606061338488828901613312565b9250506080613395888289016132c7565b9150509295509295909350565b60006133ad826132dc565b91506133b8836132dc565b9250827f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04821160008413600084131616156133f7576133f6612cb0565b5b817f8000000000000000000000000000000000000000000000000000000000000000058312600084126000841316161561343457613433612cb0565b5b827f8000000000000000000000000000000000000000000000000000000000000000058212600084136000841216161561347157613470612cb0565b5b827f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff05821260008412600084121616156134ae576134ad612cb0565b5b828202905092915050565b60006040820190506134ce600083018561273e565b6134db602083018461273e565b9392505050565b6000602082840312156134f8576134f76125ab565b5b600061350684828501613312565b91505092915050565b7f4d616b65207375726520746f2061646420656e6f75676820616c6c6f77616e6360008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b600061356b60218361289c565b91506135768261350f565b604082019050919050565b6000602082019050818103600083015261359a8161355e565b9050919050565b60006060820190506135b6600083018661273e565b6135c3602083018561273e565b6135d060408301846126d4565b949350505050565b7f496e76616c696420636c61696d2073746172742074696d650000000000000000600082015250565b600061360e60188361289c565b9150613619826135d8565b602082019050919050565b6000602082019050818103600083015261363d81613601565b9050919050565b7f546f6b656e73206c657373207468616e20736f6c640000000000000000000000600082015250565b600061367a60158361289c565b915061368582613644565b602082019050919050565b600060208201905081810360008301526136a98161366d565b9050919050565b7f5a65726f20746f6b656e20616464726573730000000000000000000000000000600082015250565b60006136e660128361289c565b91506136f1826136b0565b602082019050919050565b60006020820190508181036000830152613715816136d9565b9050919050565b7f436c61696d20616c726561647920736574000000000000000000000000000000600082015250565b600061375260118361289c565b915061375d8261371c565b602082019050919050565b6000602082019050818103600083015261378181613745565b9050919050565b7f5a65726f2061676772656761746f722061646472657373000000000000000000600082015250565b60006137be60178361289c565b91506137c982613788565b602082019050919050565b600060208201905081810360008301526137ed816137b1565b9050919050565b7f5a65726f20555344542061646472657373000000000000000000000000000000600082015250565b600061382a60118361289c565b9150613835826137f4565b602082019050919050565b600060208201905081810360008301526138598161381d565b9050919050565b7f496e76616c69642074696d650000000000000000000000000000000000000000600082015250565b6000613896600c8361289c565b91506138a182613860565b602082019050919050565b600060208201905081810360008301526138c581613889565b9050919050565b6000819050919050565b600060ff82169050919050565b60006138fe6138f96138f4846138cc565b612822565b6138d6565b9050919050565b61390e816138e3565b82525050565b60006020820190506139296000830184613905565b92915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061398b60268361289c565b91506139968261392f565b604082019050919050565b600060208201905081810360008301526139ba8161397e565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b60006139f760148361289c565b9150613a02826139c1565b602082019050919050565b60006020820190508181036000830152613a26816139ea565b9050919050565b7f4c6f772062616c616e6365000000000000000000000000000000000000000000600082015250565b6000613a63600b8361289c565b9150613a6e82613a2d565b602082019050919050565b60006020820190508181036000830152613a9281613a56565b9050919050565b600081905092915050565b50565b6000613ab4600083613a99565b9150613abf82613aa4565b600082019050919050565b6000613ad582613aa7565b9150819050919050565b7f455448205061796d656e74206661696c65640000000000000000000000000000600082015250565b6000613b1560128361289c565b9150613b2082613adf565b602082019050919050565b60006020820190508181036000830152613b4481613b08565b9050919050565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b6000613ba7602e8361289c565b9150613bb282613b4b565b604082019050919050565b60006020820190508181036000830152613bd681613b9a565b9050919050565b7f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960008201527f6e697469616c697a696e67000000000000000000000000000000000000000000602082015250565b6000613c39602b8361289c565b9150613c4482613bdd565b604082019050919050565b60006020820190508181036000830152613c6881613c2c565b905091905056fea2646970667358221220ea3fbb59f9bb594f0cf7887affe2683a4aff2148484390a3575f0043354e7c7064736f6c63430008090033
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
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.