Source Code
Latest 1 from a total of 1 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Buy With USDT | 15741198 | 1238 days ago | IN | 0 ETH | 0.00077233 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
PresaleV3
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 PresaleV3 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 calculatePrice(uint256 _amount)
public
view
returns (uint256 totalValue)
{
uint256 totalSold = totalTokens - inSale;
if (totalSold + _amount <= 200_000_000) {
return (_amount * salePrice);
} else {
uint256 extra = (totalSold + _amount) - 200_000_000;
uint256 _salePrice = salePrice;
if (totalSold >= 200_000_000) {
_salePrice =
(_salePrice + (0.0025 * (10**18))) +
(((totalSold - 200_000_000) / 100_000_000) *
(0.0025 * (10**18)));
uint256 period = _amount / 100_000_000;
if (period == 0) {
return (_amount * (_salePrice));
} else {
while (period > 0) {
totalValue = totalValue + (100_000_000 * _salePrice);
_amount -= 100_000_000;
_salePrice += (0.0025 * (10**18));
period--;
}
if (_amount > 0) {
// _salePrice += (0.0025 * (10**18));
totalValue += (_amount * _salePrice);
}
}
} else {
totalValue = (_amount - extra) * _salePrice;
if (extra <= 100_000_000) {
return totalValue + (extra * ((_salePrice * 125) / 100));
} else {
while (extra >= 100_000_000) {
_salePrice += (0.0025 * (10**18));
totalValue = totalValue + (100_000_000 * _salePrice);
extra -= 100_000_000;
}
if (extra > 0) {
_salePrice += (0.0025 * (10**18));
totalValue += (extra * _salePrice);
}
return totalValue;
}
}
}
}
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 = calculatePrice(amount);
usdPrice = usdPrice / (10**12);
inSale -= amount;
userDeposits[_msgSender()] += (amount * baseDecimals);
uint256 ourAllowance = USDTInterface.allowance(
_msgSender(),
address(this)
);
require(usdPrice <= ourAllowance, "Make sure to add enough allowance");
(bool success, ) = address(USDTInterface).call(
abi.encodeWithSignature(
"transferFrom(address,address,uint256)",
_msgSender(),
owner(),
usdPrice
)
);
require(success, "Token payment failed");
emit TokensBought(
_msgSender(),
amount,
address(USDTInterface),
usdPrice,
block.timestamp
);
return true;
}
function buyWithEth(uint256 amount)
external
payable
checkSaleState(amount)
whenNotPaused
nonReentrant
returns (bool)
{
uint256 usdPrice = calculatePrice(amount);
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 = calculatePrice(amount);
ethAmount = (usdPrice * baseDecimals) / getLatestPrice();
}
function usdtBuyHelper(uint256 amount)
external
view
returns (uint256 usdPrice)
{
usdPrice = calculatePrice(amount);
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":"_amount","type":"uint256"}],"name":"calculatePrice","outputs":[{"internalType":"uint256","name":"totalValue","type":"uint256"}],"stateMutability":"view","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
60806040523480156200001157600080fd5b506000620000266001620000ae60201b60201c565b905080156200004b576001600060016101000a81548160ff0219169083151502179055505b8015620000a75760008060016101000a81548160ff0219169083151502179055507f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb384740249860016040516200009e919062000231565b60405180910390a15b50620002f7565b60008060019054906101000a900460ff1615620001385760018260ff16148015620000ec5750620000ea30620001b460201b620023da1760201c565b155b6200012e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200012590620002d5565b60405180910390fd5b60009050620001af565b8160ff1660008054906101000a900460ff1660ff161062000190576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200018790620002d5565b60405180910390fd5b816000806101000a81548160ff021916908360ff160217905550600190505b919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000819050919050565b600060ff82169050919050565b6000819050919050565b600062000219620002136200020d84620001d7565b620001ee565b620001e1565b9050919050565b6200022b81620001f8565b82525050565b600060208201905062000248600083018462000220565b92915050565b600082825260208201905092915050565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b6000620002bd602e836200024e565b9150620002ca826200025f565b604082019050919050565b60006020820190508181036000830152620002f081620002ae565b9050919050565b61412f80620003076000396000f3fe6080604052600436106101b75760003560e01c80637e1c0c09116100ec578063b2caaebd1161008a578063f04d688f11610064578063f04d688f14610619578063f2fde38b14610644578063f51f96dd1461066d578063f597573f14610698576101b7565b8063b2caaebd14610588578063e985e367146105c5578063eb990c59146105f0576101b7565b80638da5cb5b116100c65780638da5cb5b146104b85780638e15f473146104e3578063a7c601601461050e578063ae1042651461054b576101b7565b80637e1c0c091461044b5780638008d5bc146104765780638456cb59146104a1576101b7565b80634e71d92d11610159578063715018a611610133578063715018a61461039c57806373b2e80e146103b35780637649b957146103f057806378e9792514610420576101b7565b80634e71d92d146103095780635c975abb1461033457806363e408791461035f576101b7565b806329a5a0b61161019557806329a5a0b61461025f5780633197cbb61461029c57806333f76178146102c75780633f4ba83a146102f2576101b7565b806307f18082146101bc5780630ba36dcd146101f95780630dc9c83814610236575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612954565b6106c3565b6040516101f0919061299c565b60405180910390f35b34801561020557600080fd5b50610220600480360381019061021b9190612a15565b61085f565b60405161022d9190612a51565b60405180910390f35b34801561024257600080fd5b5061025d60048036038101906102589190612a6c565b610877565b005b34801561026b57600080fd5b5061028660048036038101906102819190612954565b610b3d565b6040516102939190612a51565b60405180910390f35b3480156102a857600080fd5b506102b1610b73565b6040516102be9190612a51565b60405180910390f35b3480156102d357600080fd5b506102dc610b79565b6040516102e99190612a51565b60405180910390f35b3480156102fe57600080fd5b50610307610b7f565b005b34801561031557600080fd5b5061031e610c05565b60405161032b919061299c565b60405180910390f35b34801561034057600080fd5b50610349611007565b604051610356919061299c565b60405180910390f35b34801561036b57600080fd5b5061038660048036038101906103819190612954565b61101e565b6040516103939190612a51565b60405180910390f35b3480156103a857600080fd5b506103b1611043565b005b3480156103bf57600080fd5b506103da60048036038101906103d59190612a15565b6110cb565b6040516103e7919061299c565b60405180910390f35b61040a60048036038101906104059190612954565b6110eb565b604051610417919061299c565b60405180910390f35b34801561042c57600080fd5b506104356113df565b6040516104429190612a51565b60405180910390f35b34801561045757600080fd5b506104606113e5565b60405161046d9190612a51565b60405180910390f35b34801561048257600080fd5b5061048b6113eb565b6040516104989190612a51565b60405180910390f35b3480156104ad57600080fd5b506104b66113f1565b005b3480156104c457600080fd5b506104cd611477565b6040516104da9190612abb565b60405180910390f35b3480156104ef57600080fd5b506104f86114a1565b6040516105059190612a51565b60405180910390f35b34801561051a57600080fd5b5061053560048036038101906105309190612954565b611564565b604051610542919061299c565b60405180910390f35b34801561055757600080fd5b50610572600480360381019061056d9190612954565b6119fd565b60405161057f9190612a51565b60405180910390f35b34801561059457600080fd5b506105af60048036038101906105aa9190612ad6565b611c78565b6040516105bc919061299c565b60405180910390f35b3480156105d157600080fd5b506105da611fb5565b6040516105e79190612abb565b60405180910390f35b3480156105fc57600080fd5b5061061760048036038101906106129190612b29565b611fdb565b005b34801561062557600080fd5b5061062e6122b0565b60405161063b9190612a51565b60405180910390f35b34801561065057600080fd5b5061066b60048036038101906106669190612a15565b6122b6565b005b34801561067957600080fd5b506106826123ae565b60405161068f9190612a51565b60405180910390f35b3480156106a457600080fd5b506106ad6123b4565b6040516106ba9190612bef565b60405180910390f35b60006106cd6123fd565b73ffffffffffffffffffffffffffffffffffffffff166106eb611477565b73ffffffffffffffffffffffffffffffffffffffff1614610741576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073890612c67565b60405180910390fd5b600060ce5411610786576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077d90612cd3565b60405180910390fd5b60cd5482116107ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c190612d3f565b60405180910390fd5b42821161080c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080390612dab565b60405180910390fd5b600060ce5490508260ce819055507f5f3a900c85949962b4cc192dd3714dae64071dc2e907049ec720b023270905a481844260405161084d93929190612dcb565b60405180910390a16001915050919050565b60d36020528060005260406000206000915090505481565b61087f6123fd565b73ffffffffffffffffffffffffffffffffffffffff1661089d611477565b73ffffffffffffffffffffffffffffffffffffffff16146108f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ea90612c67565b60405180910390fd5b60008211806109025750600081115b610941576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093890612e4e565b60405180910390fd5b6000821115610a3c5760cc54421061098e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098590612eba565b60405180910390fd5b8142106109d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c790612f26565b60405180910390fd5b600060cc5490508260cc819055507f53544152540000000000000000000000000000000000000000000000000000007fddd2ed237e6993c9380182683f2c8bec486aaaa429528852cd74dbdb96cea0b2828542604051610a3293929190612dcb565b60405180910390a2505b6000811115610b395760cd544210610a89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8090612f92565b60405180910390fd5b60cc548111610acd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac490612ffe565b60405180910390fd5b600060cd5490508160cd819055507f454e4400000000000000000000000000000000000000000000000000000000007fddd2ed237e6993c9380182683f2c8bec486aaaa429528852cd74dbdb96cea0b2828442604051610b2f93929190612dcb565b60405180910390a2505b5050565b600080610b49836119fd565b9050610b536114a1565b60d05482610b61919061304d565b610b6b91906130d6565b915050919050565b60cd5481565b60d05481565b610b876123fd565b73ffffffffffffffffffffffffffffffffffffffff16610ba5611477565b73ffffffffffffffffffffffffffffffffffffffff1614610bfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf290612c67565b60405180910390fd5b610c03612405565b565b6000610c0f611007565b15610c4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4690613153565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660cf60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610ce1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd8906131bf565b60405180910390fd5b60ce54421015610d26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1d9061322b565b60405180910390fd5b60d46000610d326123fd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610dba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db190613297565b60405180910390fd5b600160d46000610dc86123fd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600060d36000610e276123fd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060008111610ea7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9e90613303565b60405180910390fd5b60d36000610eb36123fd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000905560cf60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb610f376123fd565b836040518363ffffffff1660e01b8152600401610f55929190613323565b602060405180830381600087803b158015610f6f57600080fd5b505af1158015610f83573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fa79190613378565b50610fb06123fd565b73ffffffffffffffffffffffffffffffffffffffff167f9923b4306c6c030f2bdfbf156517d5983b87e15b96176da122cd4f2effa4ba7b8242604051610ff79291906133a5565b60405180910390a2600191505090565b6000609760009054906101000a900460ff16905090565b6000611029826119fd565b905064e8d4a510008161103c91906130d6565b9050919050565b61104b6123fd565b73ffffffffffffffffffffffffffffffffffffffff16611069611477565b73ffffffffffffffffffffffffffffffffffffffff16146110bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b690612c67565b60405180910390fd5b6110c960006124a7565b565b60d46020528060005260406000206000915054906101000a900460ff1681565b60008160cc544210158015611102575060cd544211155b611141576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111389061341a565b60405180910390fd5b600081118015611153575060cb548111155b611192576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118990613486565b60405180910390fd5b61119a611007565b156111da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d190613153565b60405180910390fd5b60026001541415611220576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611217906134f2565b60405180910390fd5b60026001819055506000611233846119fd565b9050600061123f6114a1565b60d0548361124d919061304d565b61125791906130d6565b90508034101561129c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112939061355e565b60405180910390fd5b600081346112aa919061357e565b90508560cb60008282546112be919061357e565b9250508190555060d054866112d3919061304d565b60d360006112df6123fd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461132891906135b2565b9250508190555061134061133a611477565b8361256d565b600081111561135b5761135a6113546123fd565b8261256d565b5b600073ffffffffffffffffffffffffffffffffffffffff168661137c6123fd565b73ffffffffffffffffffffffffffffffffffffffff167f62e796e00a8e66154d78da76daae129635b4795a6e1b889f2caa6c5cea22ac6885426040516113c39291906133a5565b60405180910390a4600194505050506001808190555050919050565b60cc5481565b60ca5481565b60cb5481565b6113f96123fd565b73ffffffffffffffffffffffffffffffffffffffff16611417611477565b73ffffffffffffffffffffffffffffffffffffffff161461146d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146490612c67565b60405180910390fd5b611475612661565b565b6000606560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060d260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663feaf968c6040518163ffffffff1660e01b815260040160a06040518083038186803b15801561150c57600080fd5b505afa158015611520573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115449190613695565b5050509150506402540be4008161155b9190613710565b90508091505090565b60008160cc54421015801561157b575060cd544211155b6115ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b19061341a565b60405180910390fd5b6000811180156115cc575060cb548111155b61160b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160290613486565b60405180910390fd5b611613611007565b15611653576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164a90613153565b60405180910390fd5b600061165e846119fd565b905064e8d4a510008161167191906130d6565b90508360cb6000828254611685919061357e565b9250508190555060d0548461169a919061304d565b60d360006116a66123fd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116ef91906135b2565b92505081905550600060d160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e61173e6123fd565b306040518363ffffffff1660e01b815260040161175c929190613827565b60206040518083038186803b15801561177457600080fd5b505afa158015611788573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117ac9190613850565b9050808211156117f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e8906138ef565b60405180910390fd5b600060d160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166118346123fd565b61183c611477565b8560405160240161184f9392919061390f565b6040516020818303038152906040527f23b872dd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506040516118d991906139c0565b6000604051808303816000865af19150503d8060008114611916576040519150601f19603f3d011682016040523d82523d6000602084013e61191b565b606091505b505090508061195f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195690613a23565b60405180910390fd5b60d160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16866119a16123fd565b73ffffffffffffffffffffffffffffffffffffffff167f62e796e00a8e66154d78da76daae129635b4795a6e1b889f2caa6c5cea22ac6886426040516119e89291906133a5565b60405180910390a46001945050505050919050565b60008060cb5460ca54611a10919061357e565b9050630bebc2008382611a2391906135b2565b11611a3e5760c95483611a36919061304d565b915050611c73565b6000630bebc2008483611a5191906135b2565b611a5b919061357e565b9050600060c9549050630bebc2008310611b7d576608e1bc9bf040006305f5e100630bebc20085611a8c919061357e565b611a9691906130d6565b611aa0919061304d565b6608e1bc9bf0400082611ab391906135b2565b611abd91906135b2565b905060006305f5e10086611ad191906130d6565b90506000811415611af3578186611ae8919061304d565b945050505050611c73565b5b6000811115611b5457816305f5e100611b0d919061304d565b85611b1891906135b2565b94506305f5e10086611b2a919061357e565b95506608e1bc9bf0400082611b3f91906135b2565b91508080611b4c90613a43565b915050611af4565b6000861115611b77578186611b69919061304d565b85611b7491906135b2565b94505b50611c6f565b808286611b8a919061357e565b611b94919061304d565b93506305f5e1008211611bda576064607d82611bb0919061304d565b611bba91906130d6565b82611bc5919061304d565b84611bd091906135b2565b9350505050611c73565b5b6305f5e1008210611c2f576608e1bc9bf0400081611bf991906135b2565b9050806305f5e100611c0b919061304d565b84611c1691906135b2565b93506305f5e10082611c28919061357e565b9150611bdb565b6000821115611c67576608e1bc9bf0400081611c4b91906135b2565b90508082611c59919061304d565b84611c6491906135b2565b93505b505050611c73565b5050505b919050565b6000611c826123fd565b73ffffffffffffffffffffffffffffffffffffffff16611ca0611477565b73ffffffffffffffffffffffffffffffffffffffff1614611cf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ced90612c67565b60405180910390fd5b60cd5484118015611d0657504284115b611d45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3c90613ab9565b60405180910390fd5b60d05460cb5460ca54611d58919061357e565b611d62919061304d565b831015611da4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9b90613b25565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0b90613b91565b60405180910390fd5b600060ce5414611e59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5090613bfd565b60405180910390fd5b8360ce819055508160cf60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff166323b872dd611ec56123fd565b30866040518463ffffffff1660e01b8152600401611ee59392919061390f565b602060405180830381600087803b158015611eff57600080fd5b505af1158015611f13573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f379190613378565b5060cf60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fdc9670dbabdd488b372eb16ebe49a39b3124a12cdffdcefbc89834a408bf8ff88442604051611fa29291906133a5565b60405180910390a2600190509392505050565b60cf60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000611fe76001612704565b9050801561200b576001600060016101000a81548160ff0219169083151502179055505b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561207b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207290613c69565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156120eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e290613cd5565b60405180910390fd5b42831180156120f957508282115b612138576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212f90613d41565b60405180910390fd5b6121406127f4565b612148612860565b6121506128c1565b662386f26fc1000060c981905550633b9aca0060ca8190555060ca5460cb81905550670de0b6b3a764000060d0819055508460d260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508360d160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508260cc819055508160cd819055507f23f6ad8232d75562dd1c6b37dfc895af6bfc1ecd0fb3b88722c6a5e6b4dc9a2060cc5460cd544260405161224893929190612dcb565b60405180910390a180156122a95760008060016101000a81548160ff0219169083151502179055507f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb384740249860016040516122a09190613da9565b60405180910390a15b5050505050565b60ce5481565b6122be6123fd565b73ffffffffffffffffffffffffffffffffffffffff166122dc611477565b73ffffffffffffffffffffffffffffffffffffffff1614612332576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232990612c67565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156123a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239990613e36565b60405180910390fd5b6123ab816124a7565b50565b60c95481565b60d160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600033905090565b61240d611007565b61244c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244390613ea2565b60405180910390fd5b6000609760006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6124906123fd565b60405161249d9190612abb565b60405180910390a1565b6000606560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081606560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b804710156125b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125a790613f0e565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516125d690613f54565b60006040518083038185875af1925050503d8060008114612613576040519150601f19603f3d011682016040523d82523d6000602084013e612618565b606091505b505090508061265c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265390613fb5565b60405180910390fd5b505050565b612669611007565b156126a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a090613153565b60405180910390fd5b6001609760006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586126ed6123fd565b6040516126fa9190612abb565b60405180910390a1565b60008060019054906101000a900460ff161561277b5760018260ff161480156127335750612731306123da565b155b612772576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276990614047565b60405180910390fd5b600090506127ef565b8160ff1660008054906101000a900460ff1660ff16106127d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c790614047565b60405180910390fd5b816000806101000a81548160ff021916908360ff160217905550600190505b919050565b600060019054906101000a900460ff16612843576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283a906140d9565b60405180910390fd5b6000609760006101000a81548160ff021916908315150217905550565b600060019054906101000a900460ff166128af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a6906140d9565b60405180910390fd5b6128bf6128ba6123fd565b6124a7565b565b600060019054906101000a900460ff16612910576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612907906140d9565b60405180910390fd5b60018081905550565b600080fd5b6000819050919050565b6129318161291e565b811461293c57600080fd5b50565b60008135905061294e81612928565b92915050565b60006020828403121561296a57612969612919565b5b60006129788482850161293f565b91505092915050565b60008115159050919050565b61299681612981565b82525050565b60006020820190506129b1600083018461298d565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006129e2826129b7565b9050919050565b6129f2816129d7565b81146129fd57600080fd5b50565b600081359050612a0f816129e9565b92915050565b600060208284031215612a2b57612a2a612919565b5b6000612a3984828501612a00565b91505092915050565b612a4b8161291e565b82525050565b6000602082019050612a666000830184612a42565b92915050565b60008060408385031215612a8357612a82612919565b5b6000612a918582860161293f565b9250506020612aa28582860161293f565b9150509250929050565b612ab5816129d7565b82525050565b6000602082019050612ad06000830184612aac565b92915050565b600080600060608486031215612aef57612aee612919565b5b6000612afd8682870161293f565b9350506020612b0e8682870161293f565b9250506040612b1f86828701612a00565b9150509250925092565b60008060008060808587031215612b4357612b42612919565b5b6000612b5187828801612a00565b9450506020612b6287828801612a00565b9350506040612b738782880161293f565b9250506060612b848782880161293f565b91505092959194509250565b6000819050919050565b6000612bb5612bb0612bab846129b7565b612b90565b6129b7565b9050919050565b6000612bc782612b9a565b9050919050565b6000612bd982612bbc565b9050919050565b612be981612bce565b82525050565b6000602082019050612c046000830184612be0565b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612c51602083612c0a565b9150612c5c82612c1b565b602082019050919050565b60006020820190508181036000830152612c8081612c44565b9050919050565b7f496e697469616c20636c61696d2064617461206e6f7420736574000000000000600082015250565b6000612cbd601a83612c0a565b9150612cc882612c87565b602082019050919050565b60006020820190508181036000830152612cec81612cb0565b9050919050565b7f53616c6520696e2070726f677265737300000000000000000000000000000000600082015250565b6000612d29601083612c0a565b9150612d3482612cf3565b602082019050919050565b60006020820190508181036000830152612d5881612d1c565b9050919050565b7f436c61696d20737461727420696e207061737400000000000000000000000000600082015250565b6000612d95601383612c0a565b9150612da082612d5f565b602082019050919050565b60006020820190508181036000830152612dc481612d88565b9050919050565b6000606082019050612de06000830186612a42565b612ded6020830185612a42565b612dfa6040830184612a42565b949350505050565b7f496e76616c696420706172616d65746572730000000000000000000000000000600082015250565b6000612e38601283612c0a565b9150612e4382612e02565b602082019050919050565b60006020820190508181036000830152612e6781612e2b565b9050919050565b7f53616c6520616c72656164792073746172746564000000000000000000000000600082015250565b6000612ea4601483612c0a565b9150612eaf82612e6e565b602082019050919050565b60006020820190508181036000830152612ed381612e97565b9050919050565b7f53616c652074696d6520696e2070617374000000000000000000000000000000600082015250565b6000612f10601183612c0a565b9150612f1b82612eda565b602082019050919050565b60006020820190508181036000830152612f3f81612f03565b9050919050565b7f53616c6520616c726561647920656e6465640000000000000000000000000000600082015250565b6000612f7c601283612c0a565b9150612f8782612f46565b602082019050919050565b60006020820190508181036000830152612fab81612f6f565b9050919050565b7f496e76616c696420656e6454696d650000000000000000000000000000000000600082015250565b6000612fe8600f83612c0a565b9150612ff382612fb2565b602082019050919050565b6000602082019050818103600083015261301781612fdb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006130588261291e565b91506130638361291e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561309c5761309b61301e565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006130e18261291e565b91506130ec8361291e565b9250826130fc576130fb6130a7565b5b828204905092915050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b600061313d601083612c0a565b915061314882613107565b602082019050919050565b6000602082019050818103600083015261316c81613130565b9050919050565b7f53616c6520746f6b656e206e6f74206164646564000000000000000000000000600082015250565b60006131a9601483612c0a565b91506131b482613173565b602082019050919050565b600060208201905081810360008301526131d88161319c565b9050919050565b7f436c61696d20686173206e6f7420737461727465642079657400000000000000600082015250565b6000613215601983612c0a565b9150613220826131df565b602082019050919050565b6000602082019050818103600083015261324481613208565b9050919050565b7f416c726561647920636c61696d65640000000000000000000000000000000000600082015250565b6000613281600f83612c0a565b915061328c8261324b565b602082019050919050565b600060208201905081810360008301526132b081613274565b9050919050565b7f4e6f7468696e6720746f20636c61696d00000000000000000000000000000000600082015250565b60006132ed601083612c0a565b91506132f8826132b7565b602082019050919050565b6000602082019050818103600083015261331c816132e0565b9050919050565b60006040820190506133386000830185612aac565b6133456020830184612a42565b9392505050565b61335581612981565b811461336057600080fd5b50565b6000815190506133728161334c565b92915050565b60006020828403121561338e5761338d612919565b5b600061339c84828501613363565b91505092915050565b60006040820190506133ba6000830185612a42565b6133c76020830184612a42565b9392505050565b7f496e76616c69642074696d6520666f7220627579696e67000000000000000000600082015250565b6000613404601783612c0a565b915061340f826133ce565b602082019050919050565b60006020820190508181036000830152613433816133f7565b9050919050565b7f496e76616c69642073616c6520616d6f756e7400000000000000000000000000600082015250565b6000613470601383612c0a565b915061347b8261343a565b602082019050919050565b6000602082019050818103600083015261349f81613463565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006134dc601f83612c0a565b91506134e7826134a6565b602082019050919050565b6000602082019050818103600083015261350b816134cf565b9050919050565b7f4c657373207061796d656e740000000000000000000000000000000000000000600082015250565b6000613548600c83612c0a565b915061355382613512565b602082019050919050565b600060208201905081810360008301526135778161353b565b9050919050565b60006135898261291e565b91506135948361291e565b9250828210156135a7576135a661301e565b5b828203905092915050565b60006135bd8261291e565b91506135c88361291e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156135fd576135fc61301e565b5b828201905092915050565b600069ffffffffffffffffffff82169050919050565b61362781613608565b811461363257600080fd5b50565b6000815190506136448161361e565b92915050565b6000819050919050565b61365d8161364a565b811461366857600080fd5b50565b60008151905061367a81613654565b92915050565b60008151905061368f81612928565b92915050565b600080600080600060a086880312156136b1576136b0612919565b5b60006136bf88828901613635565b95505060206136d08882890161366b565b94505060406136e188828901613680565b93505060606136f288828901613680565b925050608061370388828901613635565b9150509295509295909350565b600061371b8261364a565b91506137268361364a565b9250827f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04821160008413600084131616156137655761376461301e565b5b817f800000000000000000000000000000000000000000000000000000000000000005831260008412600084131616156137a2576137a161301e565b5b827f800000000000000000000000000000000000000000000000000000000000000005821260008413600084121616156137df576137de61301e565b5b827f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff058212600084126000841216161561381c5761381b61301e565b5b828202905092915050565b600060408201905061383c6000830185612aac565b6138496020830184612aac565b9392505050565b60006020828403121561386657613865612919565b5b600061387484828501613680565b91505092915050565b7f4d616b65207375726520746f2061646420656e6f75676820616c6c6f77616e6360008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b60006138d9602183612c0a565b91506138e48261387d565b604082019050919050565b60006020820190508181036000830152613908816138cc565b9050919050565b60006060820190506139246000830186612aac565b6139316020830185612aac565b61393e6040830184612a42565b949350505050565b600081519050919050565b600081905092915050565b60005b8381101561397a57808201518184015260208101905061395f565b83811115613989576000848401525b50505050565b600061399a82613946565b6139a48185613951565b93506139b481856020860161395c565b80840191505092915050565b60006139cc828461398f565b915081905092915050565b7f546f6b656e207061796d656e74206661696c6564000000000000000000000000600082015250565b6000613a0d601483612c0a565b9150613a18826139d7565b602082019050919050565b60006020820190508181036000830152613a3c81613a00565b9050919050565b6000613a4e8261291e565b91506000821415613a6257613a6161301e565b5b600182039050919050565b7f496e76616c696420636c61696d2073746172742074696d650000000000000000600082015250565b6000613aa3601883612c0a565b9150613aae82613a6d565b602082019050919050565b60006020820190508181036000830152613ad281613a96565b9050919050565b7f546f6b656e73206c657373207468616e20736f6c640000000000000000000000600082015250565b6000613b0f601583612c0a565b9150613b1a82613ad9565b602082019050919050565b60006020820190508181036000830152613b3e81613b02565b9050919050565b7f5a65726f20746f6b656e20616464726573730000000000000000000000000000600082015250565b6000613b7b601283612c0a565b9150613b8682613b45565b602082019050919050565b60006020820190508181036000830152613baa81613b6e565b9050919050565b7f436c61696d20616c726561647920736574000000000000000000000000000000600082015250565b6000613be7601183612c0a565b9150613bf282613bb1565b602082019050919050565b60006020820190508181036000830152613c1681613bda565b9050919050565b7f5a65726f2061676772656761746f722061646472657373000000000000000000600082015250565b6000613c53601783612c0a565b9150613c5e82613c1d565b602082019050919050565b60006020820190508181036000830152613c8281613c46565b9050919050565b7f5a65726f20555344542061646472657373000000000000000000000000000000600082015250565b6000613cbf601183612c0a565b9150613cca82613c89565b602082019050919050565b60006020820190508181036000830152613cee81613cb2565b9050919050565b7f496e76616c69642074696d650000000000000000000000000000000000000000600082015250565b6000613d2b600c83612c0a565b9150613d3682613cf5565b602082019050919050565b60006020820190508181036000830152613d5a81613d1e565b9050919050565b6000819050919050565b600060ff82169050919050565b6000613d93613d8e613d8984613d61565b612b90565b613d6b565b9050919050565b613da381613d78565b82525050565b6000602082019050613dbe6000830184613d9a565b92915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613e20602683612c0a565b9150613e2b82613dc4565b604082019050919050565b60006020820190508181036000830152613e4f81613e13565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000613e8c601483612c0a565b9150613e9782613e56565b602082019050919050565b60006020820190508181036000830152613ebb81613e7f565b9050919050565b7f4c6f772062616c616e6365000000000000000000000000000000000000000000600082015250565b6000613ef8600b83612c0a565b9150613f0382613ec2565b602082019050919050565b60006020820190508181036000830152613f2781613eeb565b9050919050565b50565b6000613f3e600083613951565b9150613f4982613f2e565b600082019050919050565b6000613f5f82613f31565b9150819050919050565b7f455448205061796d656e74206661696c65640000000000000000000000000000600082015250565b6000613f9f601283612c0a565b9150613faa82613f69565b602082019050919050565b60006020820190508181036000830152613fce81613f92565b9050919050565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b6000614031602e83612c0a565b915061403c82613fd5565b604082019050919050565b6000602082019050818103600083015261406081614024565b9050919050565b7f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960008201527f6e697469616c697a696e67000000000000000000000000000000000000000000602082015250565b60006140c3602b83612c0a565b91506140ce82614067565b604082019050919050565b600060208201905081810360008301526140f2816140b6565b905091905056fea264697066735822122014d042cf0cb6934e758aa4eff4a73c455d2b978b85b49678a09b1715cba0438264736f6c63430008090033
Deployed Bytecode
0x6080604052600436106101b75760003560e01c80637e1c0c09116100ec578063b2caaebd1161008a578063f04d688f11610064578063f04d688f14610619578063f2fde38b14610644578063f51f96dd1461066d578063f597573f14610698576101b7565b8063b2caaebd14610588578063e985e367146105c5578063eb990c59146105f0576101b7565b80638da5cb5b116100c65780638da5cb5b146104b85780638e15f473146104e3578063a7c601601461050e578063ae1042651461054b576101b7565b80637e1c0c091461044b5780638008d5bc146104765780638456cb59146104a1576101b7565b80634e71d92d11610159578063715018a611610133578063715018a61461039c57806373b2e80e146103b35780637649b957146103f057806378e9792514610420576101b7565b80634e71d92d146103095780635c975abb1461033457806363e408791461035f576101b7565b806329a5a0b61161019557806329a5a0b61461025f5780633197cbb61461029c57806333f76178146102c75780633f4ba83a146102f2576101b7565b806307f18082146101bc5780630ba36dcd146101f95780630dc9c83814610236575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612954565b6106c3565b6040516101f0919061299c565b60405180910390f35b34801561020557600080fd5b50610220600480360381019061021b9190612a15565b61085f565b60405161022d9190612a51565b60405180910390f35b34801561024257600080fd5b5061025d60048036038101906102589190612a6c565b610877565b005b34801561026b57600080fd5b5061028660048036038101906102819190612954565b610b3d565b6040516102939190612a51565b60405180910390f35b3480156102a857600080fd5b506102b1610b73565b6040516102be9190612a51565b60405180910390f35b3480156102d357600080fd5b506102dc610b79565b6040516102e99190612a51565b60405180910390f35b3480156102fe57600080fd5b50610307610b7f565b005b34801561031557600080fd5b5061031e610c05565b60405161032b919061299c565b60405180910390f35b34801561034057600080fd5b50610349611007565b604051610356919061299c565b60405180910390f35b34801561036b57600080fd5b5061038660048036038101906103819190612954565b61101e565b6040516103939190612a51565b60405180910390f35b3480156103a857600080fd5b506103b1611043565b005b3480156103bf57600080fd5b506103da60048036038101906103d59190612a15565b6110cb565b6040516103e7919061299c565b60405180910390f35b61040a60048036038101906104059190612954565b6110eb565b604051610417919061299c565b60405180910390f35b34801561042c57600080fd5b506104356113df565b6040516104429190612a51565b60405180910390f35b34801561045757600080fd5b506104606113e5565b60405161046d9190612a51565b60405180910390f35b34801561048257600080fd5b5061048b6113eb565b6040516104989190612a51565b60405180910390f35b3480156104ad57600080fd5b506104b66113f1565b005b3480156104c457600080fd5b506104cd611477565b6040516104da9190612abb565b60405180910390f35b3480156104ef57600080fd5b506104f86114a1565b6040516105059190612a51565b60405180910390f35b34801561051a57600080fd5b5061053560048036038101906105309190612954565b611564565b604051610542919061299c565b60405180910390f35b34801561055757600080fd5b50610572600480360381019061056d9190612954565b6119fd565b60405161057f9190612a51565b60405180910390f35b34801561059457600080fd5b506105af60048036038101906105aa9190612ad6565b611c78565b6040516105bc919061299c565b60405180910390f35b3480156105d157600080fd5b506105da611fb5565b6040516105e79190612abb565b60405180910390f35b3480156105fc57600080fd5b5061061760048036038101906106129190612b29565b611fdb565b005b34801561062557600080fd5b5061062e6122b0565b60405161063b9190612a51565b60405180910390f35b34801561065057600080fd5b5061066b60048036038101906106669190612a15565b6122b6565b005b34801561067957600080fd5b506106826123ae565b60405161068f9190612a51565b60405180910390f35b3480156106a457600080fd5b506106ad6123b4565b6040516106ba9190612bef565b60405180910390f35b60006106cd6123fd565b73ffffffffffffffffffffffffffffffffffffffff166106eb611477565b73ffffffffffffffffffffffffffffffffffffffff1614610741576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073890612c67565b60405180910390fd5b600060ce5411610786576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077d90612cd3565b60405180910390fd5b60cd5482116107ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c190612d3f565b60405180910390fd5b42821161080c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080390612dab565b60405180910390fd5b600060ce5490508260ce819055507f5f3a900c85949962b4cc192dd3714dae64071dc2e907049ec720b023270905a481844260405161084d93929190612dcb565b60405180910390a16001915050919050565b60d36020528060005260406000206000915090505481565b61087f6123fd565b73ffffffffffffffffffffffffffffffffffffffff1661089d611477565b73ffffffffffffffffffffffffffffffffffffffff16146108f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ea90612c67565b60405180910390fd5b60008211806109025750600081115b610941576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093890612e4e565b60405180910390fd5b6000821115610a3c5760cc54421061098e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098590612eba565b60405180910390fd5b8142106109d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c790612f26565b60405180910390fd5b600060cc5490508260cc819055507f53544152540000000000000000000000000000000000000000000000000000007fddd2ed237e6993c9380182683f2c8bec486aaaa429528852cd74dbdb96cea0b2828542604051610a3293929190612dcb565b60405180910390a2505b6000811115610b395760cd544210610a89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8090612f92565b60405180910390fd5b60cc548111610acd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac490612ffe565b60405180910390fd5b600060cd5490508160cd819055507f454e4400000000000000000000000000000000000000000000000000000000007fddd2ed237e6993c9380182683f2c8bec486aaaa429528852cd74dbdb96cea0b2828442604051610b2f93929190612dcb565b60405180910390a2505b5050565b600080610b49836119fd565b9050610b536114a1565b60d05482610b61919061304d565b610b6b91906130d6565b915050919050565b60cd5481565b60d05481565b610b876123fd565b73ffffffffffffffffffffffffffffffffffffffff16610ba5611477565b73ffffffffffffffffffffffffffffffffffffffff1614610bfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf290612c67565b60405180910390fd5b610c03612405565b565b6000610c0f611007565b15610c4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4690613153565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660cf60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610ce1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd8906131bf565b60405180910390fd5b60ce54421015610d26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1d9061322b565b60405180910390fd5b60d46000610d326123fd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610dba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db190613297565b60405180910390fd5b600160d46000610dc86123fd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600060d36000610e276123fd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060008111610ea7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9e90613303565b60405180910390fd5b60d36000610eb36123fd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000905560cf60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb610f376123fd565b836040518363ffffffff1660e01b8152600401610f55929190613323565b602060405180830381600087803b158015610f6f57600080fd5b505af1158015610f83573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fa79190613378565b50610fb06123fd565b73ffffffffffffffffffffffffffffffffffffffff167f9923b4306c6c030f2bdfbf156517d5983b87e15b96176da122cd4f2effa4ba7b8242604051610ff79291906133a5565b60405180910390a2600191505090565b6000609760009054906101000a900460ff16905090565b6000611029826119fd565b905064e8d4a510008161103c91906130d6565b9050919050565b61104b6123fd565b73ffffffffffffffffffffffffffffffffffffffff16611069611477565b73ffffffffffffffffffffffffffffffffffffffff16146110bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b690612c67565b60405180910390fd5b6110c960006124a7565b565b60d46020528060005260406000206000915054906101000a900460ff1681565b60008160cc544210158015611102575060cd544211155b611141576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111389061341a565b60405180910390fd5b600081118015611153575060cb548111155b611192576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118990613486565b60405180910390fd5b61119a611007565b156111da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d190613153565b60405180910390fd5b60026001541415611220576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611217906134f2565b60405180910390fd5b60026001819055506000611233846119fd565b9050600061123f6114a1565b60d0548361124d919061304d565b61125791906130d6565b90508034101561129c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112939061355e565b60405180910390fd5b600081346112aa919061357e565b90508560cb60008282546112be919061357e565b9250508190555060d054866112d3919061304d565b60d360006112df6123fd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461132891906135b2565b9250508190555061134061133a611477565b8361256d565b600081111561135b5761135a6113546123fd565b8261256d565b5b600073ffffffffffffffffffffffffffffffffffffffff168661137c6123fd565b73ffffffffffffffffffffffffffffffffffffffff167f62e796e00a8e66154d78da76daae129635b4795a6e1b889f2caa6c5cea22ac6885426040516113c39291906133a5565b60405180910390a4600194505050506001808190555050919050565b60cc5481565b60ca5481565b60cb5481565b6113f96123fd565b73ffffffffffffffffffffffffffffffffffffffff16611417611477565b73ffffffffffffffffffffffffffffffffffffffff161461146d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146490612c67565b60405180910390fd5b611475612661565b565b6000606560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060d260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663feaf968c6040518163ffffffff1660e01b815260040160a06040518083038186803b15801561150c57600080fd5b505afa158015611520573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115449190613695565b5050509150506402540be4008161155b9190613710565b90508091505090565b60008160cc54421015801561157b575060cd544211155b6115ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b19061341a565b60405180910390fd5b6000811180156115cc575060cb548111155b61160b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160290613486565b60405180910390fd5b611613611007565b15611653576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164a90613153565b60405180910390fd5b600061165e846119fd565b905064e8d4a510008161167191906130d6565b90508360cb6000828254611685919061357e565b9250508190555060d0548461169a919061304d565b60d360006116a66123fd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116ef91906135b2565b92505081905550600060d160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e61173e6123fd565b306040518363ffffffff1660e01b815260040161175c929190613827565b60206040518083038186803b15801561177457600080fd5b505afa158015611788573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117ac9190613850565b9050808211156117f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e8906138ef565b60405180910390fd5b600060d160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166118346123fd565b61183c611477565b8560405160240161184f9392919061390f565b6040516020818303038152906040527f23b872dd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506040516118d991906139c0565b6000604051808303816000865af19150503d8060008114611916576040519150601f19603f3d011682016040523d82523d6000602084013e61191b565b606091505b505090508061195f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195690613a23565b60405180910390fd5b60d160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16866119a16123fd565b73ffffffffffffffffffffffffffffffffffffffff167f62e796e00a8e66154d78da76daae129635b4795a6e1b889f2caa6c5cea22ac6886426040516119e89291906133a5565b60405180910390a46001945050505050919050565b60008060cb5460ca54611a10919061357e565b9050630bebc2008382611a2391906135b2565b11611a3e5760c95483611a36919061304d565b915050611c73565b6000630bebc2008483611a5191906135b2565b611a5b919061357e565b9050600060c9549050630bebc2008310611b7d576608e1bc9bf040006305f5e100630bebc20085611a8c919061357e565b611a9691906130d6565b611aa0919061304d565b6608e1bc9bf0400082611ab391906135b2565b611abd91906135b2565b905060006305f5e10086611ad191906130d6565b90506000811415611af3578186611ae8919061304d565b945050505050611c73565b5b6000811115611b5457816305f5e100611b0d919061304d565b85611b1891906135b2565b94506305f5e10086611b2a919061357e565b95506608e1bc9bf0400082611b3f91906135b2565b91508080611b4c90613a43565b915050611af4565b6000861115611b77578186611b69919061304d565b85611b7491906135b2565b94505b50611c6f565b808286611b8a919061357e565b611b94919061304d565b93506305f5e1008211611bda576064607d82611bb0919061304d565b611bba91906130d6565b82611bc5919061304d565b84611bd091906135b2565b9350505050611c73565b5b6305f5e1008210611c2f576608e1bc9bf0400081611bf991906135b2565b9050806305f5e100611c0b919061304d565b84611c1691906135b2565b93506305f5e10082611c28919061357e565b9150611bdb565b6000821115611c67576608e1bc9bf0400081611c4b91906135b2565b90508082611c59919061304d565b84611c6491906135b2565b93505b505050611c73565b5050505b919050565b6000611c826123fd565b73ffffffffffffffffffffffffffffffffffffffff16611ca0611477565b73ffffffffffffffffffffffffffffffffffffffff1614611cf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ced90612c67565b60405180910390fd5b60cd5484118015611d0657504284115b611d45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3c90613ab9565b60405180910390fd5b60d05460cb5460ca54611d58919061357e565b611d62919061304d565b831015611da4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9b90613b25565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0b90613b91565b60405180910390fd5b600060ce5414611e59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5090613bfd565b60405180910390fd5b8360ce819055508160cf60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff166323b872dd611ec56123fd565b30866040518463ffffffff1660e01b8152600401611ee59392919061390f565b602060405180830381600087803b158015611eff57600080fd5b505af1158015611f13573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f379190613378565b5060cf60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fdc9670dbabdd488b372eb16ebe49a39b3124a12cdffdcefbc89834a408bf8ff88442604051611fa29291906133a5565b60405180910390a2600190509392505050565b60cf60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000611fe76001612704565b9050801561200b576001600060016101000a81548160ff0219169083151502179055505b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561207b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207290613c69565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156120eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e290613cd5565b60405180910390fd5b42831180156120f957508282115b612138576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212f90613d41565b60405180910390fd5b6121406127f4565b612148612860565b6121506128c1565b662386f26fc1000060c981905550633b9aca0060ca8190555060ca5460cb81905550670de0b6b3a764000060d0819055508460d260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508360d160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508260cc819055508160cd819055507f23f6ad8232d75562dd1c6b37dfc895af6bfc1ecd0fb3b88722c6a5e6b4dc9a2060cc5460cd544260405161224893929190612dcb565b60405180910390a180156122a95760008060016101000a81548160ff0219169083151502179055507f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb384740249860016040516122a09190613da9565b60405180910390a15b5050505050565b60ce5481565b6122be6123fd565b73ffffffffffffffffffffffffffffffffffffffff166122dc611477565b73ffffffffffffffffffffffffffffffffffffffff1614612332576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232990612c67565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156123a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239990613e36565b60405180910390fd5b6123ab816124a7565b50565b60c95481565b60d160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600033905090565b61240d611007565b61244c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244390613ea2565b60405180910390fd5b6000609760006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6124906123fd565b60405161249d9190612abb565b60405180910390a1565b6000606560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081606560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b804710156125b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125a790613f0e565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516125d690613f54565b60006040518083038185875af1925050503d8060008114612613576040519150601f19603f3d011682016040523d82523d6000602084013e612618565b606091505b505090508061265c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265390613fb5565b60405180910390fd5b505050565b612669611007565b156126a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a090613153565b60405180910390fd5b6001609760006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586126ed6123fd565b6040516126fa9190612abb565b60405180910390a1565b60008060019054906101000a900460ff161561277b5760018260ff161480156127335750612731306123da565b155b612772576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276990614047565b60405180910390fd5b600090506127ef565b8160ff1660008054906101000a900460ff1660ff16106127d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c790614047565b60405180910390fd5b816000806101000a81548160ff021916908360ff160217905550600190505b919050565b600060019054906101000a900460ff16612843576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283a906140d9565b60405180910390fd5b6000609760006101000a81548160ff021916908315150217905550565b600060019054906101000a900460ff166128af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a6906140d9565b60405180910390fd5b6128bf6128ba6123fd565b6124a7565b565b600060019054906101000a900460ff16612910576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612907906140d9565b60405180910390fd5b60018081905550565b600080fd5b6000819050919050565b6129318161291e565b811461293c57600080fd5b50565b60008135905061294e81612928565b92915050565b60006020828403121561296a57612969612919565b5b60006129788482850161293f565b91505092915050565b60008115159050919050565b61299681612981565b82525050565b60006020820190506129b1600083018461298d565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006129e2826129b7565b9050919050565b6129f2816129d7565b81146129fd57600080fd5b50565b600081359050612a0f816129e9565b92915050565b600060208284031215612a2b57612a2a612919565b5b6000612a3984828501612a00565b91505092915050565b612a4b8161291e565b82525050565b6000602082019050612a666000830184612a42565b92915050565b60008060408385031215612a8357612a82612919565b5b6000612a918582860161293f565b9250506020612aa28582860161293f565b9150509250929050565b612ab5816129d7565b82525050565b6000602082019050612ad06000830184612aac565b92915050565b600080600060608486031215612aef57612aee612919565b5b6000612afd8682870161293f565b9350506020612b0e8682870161293f565b9250506040612b1f86828701612a00565b9150509250925092565b60008060008060808587031215612b4357612b42612919565b5b6000612b5187828801612a00565b9450506020612b6287828801612a00565b9350506040612b738782880161293f565b9250506060612b848782880161293f565b91505092959194509250565b6000819050919050565b6000612bb5612bb0612bab846129b7565b612b90565b6129b7565b9050919050565b6000612bc782612b9a565b9050919050565b6000612bd982612bbc565b9050919050565b612be981612bce565b82525050565b6000602082019050612c046000830184612be0565b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612c51602083612c0a565b9150612c5c82612c1b565b602082019050919050565b60006020820190508181036000830152612c8081612c44565b9050919050565b7f496e697469616c20636c61696d2064617461206e6f7420736574000000000000600082015250565b6000612cbd601a83612c0a565b9150612cc882612c87565b602082019050919050565b60006020820190508181036000830152612cec81612cb0565b9050919050565b7f53616c6520696e2070726f677265737300000000000000000000000000000000600082015250565b6000612d29601083612c0a565b9150612d3482612cf3565b602082019050919050565b60006020820190508181036000830152612d5881612d1c565b9050919050565b7f436c61696d20737461727420696e207061737400000000000000000000000000600082015250565b6000612d95601383612c0a565b9150612da082612d5f565b602082019050919050565b60006020820190508181036000830152612dc481612d88565b9050919050565b6000606082019050612de06000830186612a42565b612ded6020830185612a42565b612dfa6040830184612a42565b949350505050565b7f496e76616c696420706172616d65746572730000000000000000000000000000600082015250565b6000612e38601283612c0a565b9150612e4382612e02565b602082019050919050565b60006020820190508181036000830152612e6781612e2b565b9050919050565b7f53616c6520616c72656164792073746172746564000000000000000000000000600082015250565b6000612ea4601483612c0a565b9150612eaf82612e6e565b602082019050919050565b60006020820190508181036000830152612ed381612e97565b9050919050565b7f53616c652074696d6520696e2070617374000000000000000000000000000000600082015250565b6000612f10601183612c0a565b9150612f1b82612eda565b602082019050919050565b60006020820190508181036000830152612f3f81612f03565b9050919050565b7f53616c6520616c726561647920656e6465640000000000000000000000000000600082015250565b6000612f7c601283612c0a565b9150612f8782612f46565b602082019050919050565b60006020820190508181036000830152612fab81612f6f565b9050919050565b7f496e76616c696420656e6454696d650000000000000000000000000000000000600082015250565b6000612fe8600f83612c0a565b9150612ff382612fb2565b602082019050919050565b6000602082019050818103600083015261301781612fdb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006130588261291e565b91506130638361291e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561309c5761309b61301e565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006130e18261291e565b91506130ec8361291e565b9250826130fc576130fb6130a7565b5b828204905092915050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b600061313d601083612c0a565b915061314882613107565b602082019050919050565b6000602082019050818103600083015261316c81613130565b9050919050565b7f53616c6520746f6b656e206e6f74206164646564000000000000000000000000600082015250565b60006131a9601483612c0a565b91506131b482613173565b602082019050919050565b600060208201905081810360008301526131d88161319c565b9050919050565b7f436c61696d20686173206e6f7420737461727465642079657400000000000000600082015250565b6000613215601983612c0a565b9150613220826131df565b602082019050919050565b6000602082019050818103600083015261324481613208565b9050919050565b7f416c726561647920636c61696d65640000000000000000000000000000000000600082015250565b6000613281600f83612c0a565b915061328c8261324b565b602082019050919050565b600060208201905081810360008301526132b081613274565b9050919050565b7f4e6f7468696e6720746f20636c61696d00000000000000000000000000000000600082015250565b60006132ed601083612c0a565b91506132f8826132b7565b602082019050919050565b6000602082019050818103600083015261331c816132e0565b9050919050565b60006040820190506133386000830185612aac565b6133456020830184612a42565b9392505050565b61335581612981565b811461336057600080fd5b50565b6000815190506133728161334c565b92915050565b60006020828403121561338e5761338d612919565b5b600061339c84828501613363565b91505092915050565b60006040820190506133ba6000830185612a42565b6133c76020830184612a42565b9392505050565b7f496e76616c69642074696d6520666f7220627579696e67000000000000000000600082015250565b6000613404601783612c0a565b915061340f826133ce565b602082019050919050565b60006020820190508181036000830152613433816133f7565b9050919050565b7f496e76616c69642073616c6520616d6f756e7400000000000000000000000000600082015250565b6000613470601383612c0a565b915061347b8261343a565b602082019050919050565b6000602082019050818103600083015261349f81613463565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006134dc601f83612c0a565b91506134e7826134a6565b602082019050919050565b6000602082019050818103600083015261350b816134cf565b9050919050565b7f4c657373207061796d656e740000000000000000000000000000000000000000600082015250565b6000613548600c83612c0a565b915061355382613512565b602082019050919050565b600060208201905081810360008301526135778161353b565b9050919050565b60006135898261291e565b91506135948361291e565b9250828210156135a7576135a661301e565b5b828203905092915050565b60006135bd8261291e565b91506135c88361291e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156135fd576135fc61301e565b5b828201905092915050565b600069ffffffffffffffffffff82169050919050565b61362781613608565b811461363257600080fd5b50565b6000815190506136448161361e565b92915050565b6000819050919050565b61365d8161364a565b811461366857600080fd5b50565b60008151905061367a81613654565b92915050565b60008151905061368f81612928565b92915050565b600080600080600060a086880312156136b1576136b0612919565b5b60006136bf88828901613635565b95505060206136d08882890161366b565b94505060406136e188828901613680565b93505060606136f288828901613680565b925050608061370388828901613635565b9150509295509295909350565b600061371b8261364a565b91506137268361364a565b9250827f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04821160008413600084131616156137655761376461301e565b5b817f800000000000000000000000000000000000000000000000000000000000000005831260008412600084131616156137a2576137a161301e565b5b827f800000000000000000000000000000000000000000000000000000000000000005821260008413600084121616156137df576137de61301e565b5b827f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff058212600084126000841216161561381c5761381b61301e565b5b828202905092915050565b600060408201905061383c6000830185612aac565b6138496020830184612aac565b9392505050565b60006020828403121561386657613865612919565b5b600061387484828501613680565b91505092915050565b7f4d616b65207375726520746f2061646420656e6f75676820616c6c6f77616e6360008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b60006138d9602183612c0a565b91506138e48261387d565b604082019050919050565b60006020820190508181036000830152613908816138cc565b9050919050565b60006060820190506139246000830186612aac565b6139316020830185612aac565b61393e6040830184612a42565b949350505050565b600081519050919050565b600081905092915050565b60005b8381101561397a57808201518184015260208101905061395f565b83811115613989576000848401525b50505050565b600061399a82613946565b6139a48185613951565b93506139b481856020860161395c565b80840191505092915050565b60006139cc828461398f565b915081905092915050565b7f546f6b656e207061796d656e74206661696c6564000000000000000000000000600082015250565b6000613a0d601483612c0a565b9150613a18826139d7565b602082019050919050565b60006020820190508181036000830152613a3c81613a00565b9050919050565b6000613a4e8261291e565b91506000821415613a6257613a6161301e565b5b600182039050919050565b7f496e76616c696420636c61696d2073746172742074696d650000000000000000600082015250565b6000613aa3601883612c0a565b9150613aae82613a6d565b602082019050919050565b60006020820190508181036000830152613ad281613a96565b9050919050565b7f546f6b656e73206c657373207468616e20736f6c640000000000000000000000600082015250565b6000613b0f601583612c0a565b9150613b1a82613ad9565b602082019050919050565b60006020820190508181036000830152613b3e81613b02565b9050919050565b7f5a65726f20746f6b656e20616464726573730000000000000000000000000000600082015250565b6000613b7b601283612c0a565b9150613b8682613b45565b602082019050919050565b60006020820190508181036000830152613baa81613b6e565b9050919050565b7f436c61696d20616c726561647920736574000000000000000000000000000000600082015250565b6000613be7601183612c0a565b9150613bf282613bb1565b602082019050919050565b60006020820190508181036000830152613c1681613bda565b9050919050565b7f5a65726f2061676772656761746f722061646472657373000000000000000000600082015250565b6000613c53601783612c0a565b9150613c5e82613c1d565b602082019050919050565b60006020820190508181036000830152613c8281613c46565b9050919050565b7f5a65726f20555344542061646472657373000000000000000000000000000000600082015250565b6000613cbf601183612c0a565b9150613cca82613c89565b602082019050919050565b60006020820190508181036000830152613cee81613cb2565b9050919050565b7f496e76616c69642074696d650000000000000000000000000000000000000000600082015250565b6000613d2b600c83612c0a565b9150613d3682613cf5565b602082019050919050565b60006020820190508181036000830152613d5a81613d1e565b9050919050565b6000819050919050565b600060ff82169050919050565b6000613d93613d8e613d8984613d61565b612b90565b613d6b565b9050919050565b613da381613d78565b82525050565b6000602082019050613dbe6000830184613d9a565b92915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613e20602683612c0a565b9150613e2b82613dc4565b604082019050919050565b60006020820190508181036000830152613e4f81613e13565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000613e8c601483612c0a565b9150613e9782613e56565b602082019050919050565b60006020820190508181036000830152613ebb81613e7f565b9050919050565b7f4c6f772062616c616e6365000000000000000000000000000000000000000000600082015250565b6000613ef8600b83612c0a565b9150613f0382613ec2565b602082019050919050565b60006020820190508181036000830152613f2781613eeb565b9050919050565b50565b6000613f3e600083613951565b9150613f4982613f2e565b600082019050919050565b6000613f5f82613f31565b9150819050919050565b7f455448205061796d656e74206661696c65640000000000000000000000000000600082015250565b6000613f9f601283612c0a565b9150613faa82613f69565b602082019050919050565b60006020820190508181036000830152613fce81613f92565b9050919050565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b6000614031602e83612c0a565b915061403c82613fd5565b604082019050919050565b6000602082019050818103600083015261406081614024565b9050919050565b7f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960008201527f6e697469616c697a696e67000000000000000000000000000000000000000000602082015250565b60006140c3602b83612c0a565b91506140ce82614067565b604082019050919050565b600060208201905081810360008301526140f2816140b6565b905091905056fea264697066735822122014d042cf0cb6934e758aa4eff4a73c455d2b978b85b49678a09b1715cba0438264736f6c63430008090033
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
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.