ERC-20
Overview
Max Total Supply
420,690,000,000 BOLT
Holders
4,641
Total Transfers
-
Market
Price
$0.00 @ 0.000000 ETH
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
BoltToken
Compiler Version
v0.8.17+commit.8df45f5f
ZkSolc Version
v1.3.7
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/proxy/utils/Initializable.sol"; import "./VestingContract.sol"; contract BoltToken is ERC20, Initializable { VestingContract vestingContract; uint256 public constant TOTAL_SUPPLY = 420_690_000_000 * 10 ** 18; uint256 public constant LIQUIDITY_ALLOCATION = 63_103_500_000 * 10 ** 18; uint256 public constant TEAM_ALLOCATION = 21_034_500_000 * 10 ** 18; uint256 public constant DAO_TREASURY_ALLOCATION = 21_034_500_000 * 10 ** 18; uint256 public constant AIR_DROP_ALLOCATION = 21_034_500_000 * 10 ** 18; uint256 public constant CEX_ALLOCATION = 42_069_000_000 * 10 ** 18; uint256 public constant PUBLIC_SALE_ALLOCATION = 252_414_000_000 * 10 ** 18; uint256 public constant PRICE = 50 ether * 10 ** 18 / PUBLIC_SALE_ALLOCATION; uint256 public constant SOFT_CAP = 25 ether; /** * @notice Whether the soft cap has been reached. */ bool public softCapReached; /** * @notice Whether the sale has ended. */ bool public saleEnded; /** * @notice The total amount of tokens bought. */ uint256 public totalAmountBought; /** * @notice The start date of the sale in unix timestamp. */ uint256 public start; /** * @notice The end date of the sale in unix timestamp. */ uint256 public end; address[5] public wallets; // [projectWallet, teamWallet, daoTreasuryWallet, airDropWallet, cexWallet] /** * @notice The amount of tokens bought by each address. */ mapping(address => uint256) public amountBought; /** * @notice Emits when tokens are bought. * @param buyer The address of the buyer. * @param amount The amount of tokens bought. */ event TokensBought(address indexed buyer, uint256 amount); /** * @notice Emits when tokens are claimed. * @param claimer The address of the claimer. * @param amount The amount of tokens claimed. */ event TokensClaimed(address indexed claimer, uint256 amount); /** * @notice Emits when ETH is refunded. * @param buyer The address of the buyer. * @param amount The amount of ETH refunded. */ event EthRefunded(address indexed buyer, uint256 amount); /** * @notice Emits when the sale is ended. * @param totalAmountBought The total amount of tokens bought. * @param softCapReached Whether the soft cap has been reached and the sale is successful. */ event SaleEnded(uint256 totalAmountBought, bool softCapReached); /** * @notice Initializes all the variables, mints the total supply and creates the vesting schedules. * @param _start The start date of the sale in unix timestamp. * @param _end The end date of the sale in unix timestamp. * @param _wallets The addresses of the project: 0 = project wallet, 1 = team wallet, 2 = dao treasury wallet, 3 = airdrop wallet, 4 = cex wallet. */ constructor(uint256 _start, uint256 _end, address[5] memory _wallets) ERC20("Bolt Token", "BOLT") { vestingContract = new VestingContract(address(this)); _mint(address(this), TOTAL_SUPPLY); // set up all the variables start = _start; end = _end; wallets = _wallets; } /** * @notice Initializes the vesting schedules. */ function initializeVesting() external initializer { // To be unlocked 10% every month, starting 6 months after the sale ends _approve(address(this), address(vestingContract), TEAM_ALLOCATION); vestingContract.createVestingSchedule( wallets[1], block.timestamp + 6 * 30 days, 10, VestingContract.DurationUnits.Months, TEAM_ALLOCATION ); // To be unlocked 10% every month, starting 30 days after the sale ends _approve(address(this), address(vestingContract), DAO_TREASURY_ALLOCATION); vestingContract.createVestingSchedule( wallets[2], block.timestamp + 30 days, 10, VestingContract.DurationUnits.Months, DAO_TREASURY_ALLOCATION ); // To be totally unlocked 14 days after the sale ends _approve(address(this), address(vestingContract), AIR_DROP_ALLOCATION); vestingContract.createVestingSchedule( wallets[3], block.timestamp + 14 days, 0, VestingContract.DurationUnits.Months, AIR_DROP_ALLOCATION ); // To be totally unlocked 14 days after the sale ends _approve(address(this), address(vestingContract), CEX_ALLOCATION); vestingContract.createVestingSchedule( wallets[4], block.timestamp + 14 days, 0, VestingContract.DurationUnits.Months, CEX_ALLOCATION ); } /** * @notice Buys tokens with ETH. * @dev The amount of tokens bought is calculated by multiplying the amount of ETH sent by the PRICE. */ function buy() external payable { require(block.timestamp >= start, "Sale has not started yet"); require(block.timestamp <= end, "Sale has ended"); require(msg.value > 0, "Amount must be greater than 0"); require(!saleEnded, "Sale has ended"); // compute the amount of tokens to buy uint256 amountToBuy = msg.value * 10 ** decimals() / PRICE; // update the total amount of tokens bought totalAmountBought += amountToBuy; require(totalAmountBought <= PUBLIC_SALE_ALLOCATION, "Not enough tokens left for sale"); // update the amount of tokens bought by the user amountBought[msg.sender] += amountToBuy; emit TokensBought(msg.sender, amountToBuy); } /** * @notice User can claim their tokens after the sale has ended by calling this function, or the project can send the tokens to the user. */ function airdrop(address[] calldata _buyers) external { require(saleEnded, "Sale has not ended yet"); for (uint256 i = 0; i < _buyers.length; i++) { if (amountBought[_buyers[i]] == 0) continue; // if the soft cap has been reached, send the 25% tokens to the user // and lock the other 75% to be vested over 3 weeks, otherwise, refund the user if (softCapReached) { // compute the amount of tokens bought by the user uint256 totalUserAmount = amountBought[_buyers[i]]; // reset the amount of tokens bought by the user amountBought[_buyers[i]] = 0; // compute the amount of tokens to send uint256 amountToSend = totalUserAmount / 4; // send the tokens to the user _transfer(address(this), _buyers[i], amountToSend); // copute the amount to vest uint256 amountToVest = totalUserAmount - amountToSend; // vest the tokens _approve(address(this), address(vestingContract), amountToVest); vestingContract.createVestingSchedule( _buyers[i], block.timestamp, 3, VestingContract.DurationUnits.Weeks, amountToVest ); emit TokensClaimed(_buyers[i], amountToSend); } else { // compute the amount of ETH to refund uint256 amountToRefund = amountBought[_buyers[i]] * PRICE / 10 ** decimals(); // reset the amount of tokens bought by the user amountBought[_buyers[i]] = 0; // refund the user (bool sc,) = payable(_buyers[i]).call{value: amountToRefund}(""); require(sc, "Refund failed"); emit EthRefunded(_buyers[i], amountToRefund); } } } /** * @notice Ends the sale. * @dev If the soft cap has been reached, the liquidity is locked and the tokens are sent to the project wallet. */ function endSale() external { require(block.timestamp > end, "Sale has not ended yet"); require(!saleEnded, "Sale has already ended"); // mark the sale as ended saleEnded = true; // if the soft cap has been reached, lock the liquidity and send the tokens to the project wallet if (address(this).balance >= SOFT_CAP) { softCapReached = true; _transfer(address(this), wallets[0], LIQUIDITY_ALLOCATION); // send the tokens to the project wallet uint256 amountToSend = address(this).balance; (bool sc,) = payable(wallets[0]).call{value: amountToSend}(""); require(sc, "Transfer failed"); } emit SaleEnded(totalAmountBought, softCapReached); } /** * @return The address of the vesting contract */ function getVestingContract() external view returns (address) { return address(vestingContract); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.1) (proxy/utils/Initializable.sol) pragma solidity ^0.8.2; import "../../utils/Address.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. * * Similar to `reinitializer(1)`, except that functions marked with `initializer` can be nested in the context of a * constructor. * * Emits an {Initialized} event. */ modifier initializer() { bool isTopLevelCall = !_initializing; require( (isTopLevelCall && _initialized < 1) || (!Address.isContract(address(this)) && _initialized == 1), "Initializable: contract is already initialized" ); _initialized = 1; if (isTopLevelCall) { _initializing = true; } _; if (isTopLevelCall) { _initializing = false; emit Initialized(1); } } /** * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be * used to initialize parent contracts. * * A reinitializer may be used after the original initialization step. This is essential to configure modules that * are added through upgrades and that require initialization. * * When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer` * cannot be nested. If one is invoked in the context of another, execution will revert. * * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in * a contract, executing them in the right order is up to the developer or operator. * * WARNING: setting the version to 255 will prevent any future reinitialization. * * Emits an {Initialized} event. */ modifier reinitializer(uint8 version) { require(!_initializing && _initialized < version, "Initializable: contract is already initialized"); _initialized = version; _initializing = true; _; _initializing = false; emit Initialized(version); } /** * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the * {initializer} and {reinitializer} modifiers, directly or indirectly. */ modifier onlyInitializing() { require(_initializing, "Initializable: contract is not initializing"); _; } /** * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call. * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized * to any version. It is recommended to use this to lock implementation contracts that are designed to be called * through proxies. * * Emits an {Initialized} event the first time it is successfully executed. */ function _disableInitializers() internal virtual { require(!_initializing, "Initializable: contract is initializing"); if (_initialized < type(uint8).max) { _initialized = type(uint8).max; emit Initialized(type(uint8).max); } } /** * @dev Returns the highest version that has been initialized. See {reinitializer}. */ function _getInitializedVersion() internal view returns (uint8) { return _initialized; } /** * @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}. */ function _isInitializing() internal view returns (bool) { return _initializing; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
// 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 IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; import "../extensions/draft-IERC20Permit.sol"; import "../../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } function safePermit( IERC20Permit token, address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) internal { uint256 nonceBefore = token.nonces(owner); token.permit(owner, spender, value, deadline, v, r, s); uint256 nonceAfter = token.nonces(owner); require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed"); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @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 functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; /** * @title VestingContract * @notice This is a simple vesting contract that allows to create vesting schedules for a beneficiary with monthly unlocks. */ contract VestingContract { using SafeERC20 for IERC20; /** * @notice The token to be vested */ IERC20 public immutable token; enum DurationUnits { Days, Weeks, Months } struct VestingSchedule { // beneficiary of tokens after they are released address beneficiary; // start time of the vesting period uint256 start; // duration of the vesting period in DurationUnits uint256 duration; // units of the duration DurationUnits durationUnits; // total amount of tokens to be released at the end of the vesting; uint256 amountTotal; // amount of tokens released uint256 released; } /** * @notice List of vesting schedules for each beneficiary */ mapping(address => VestingSchedule[]) public vestingSchedules; /** * @notice Emitted when a vesting schedule is created * @param beneficiary The address of the beneficiary * @param start The start UNIX timestamp of the vesting period * @param duration The duration of the vesting period in DurationUnits * @param durationUnits The units of the duration(0 = days, 1 = weeks, 2 = months) */ event VestingScheduleCreated( address indexed beneficiary, uint256 start, uint256 duration, DurationUnits durationUnits, uint256 amountTotal ); /** * @notice Emitted when tokens are released * @param beneficiary The address of the beneficiary * @param amount The amount of tokens released */ event TokensReleased(address indexed beneficiary, uint256 amount); /** * @param _token The token to be vested */ constructor(address _token) { token = IERC20(_token); } /** * @notice Creates a vesting schedule * @param _beneficiary The address of the beneficiary * @param _start The start UNIX timestamp of the vesting period * @param _duration The duration of the vesting period in DurationUnits * @param _durationUnits The units of the duration(0 = days, 1 = weeks, 2 = months) * @param _amountTotal The total amount of tokens to be vested * @dev Approve the contract to transfer the tokens before calling this function */ function createVestingSchedule( address _beneficiary, uint256 _start, uint256 _duration, DurationUnits _durationUnits, uint256 _amountTotal ) external { // perform input checks require(_beneficiary != address(0), "VestingContract: beneficiary is the zero address"); require(_amountTotal > 0, "VestingContract: amount is 0"); require(_start >= block.timestamp, "VestingContract: start is before current time"); // transfer the tokens to be locked to the contract token.safeTransferFrom(msg.sender, address(this), _amountTotal); // create the vesting schedule and add it to the list of schedules for the beneficiary vestingSchedules[_beneficiary].push( VestingSchedule({ beneficiary: _beneficiary, start: _start, duration: _duration, durationUnits: _durationUnits, amountTotal: _amountTotal, released: 0 }) ); emit VestingScheduleCreated(_beneficiary, _start, _duration, _durationUnits, _amountTotal); } /** * @notice Releases the vested tokens for a beneficiary * @param _beneficiary The address of the beneficiary */ function release(address _beneficiary) external { VestingSchedule[] storage schedules = vestingSchedules[_beneficiary]; uint256 schedulesLength = schedules.length; require(schedulesLength > 0, "VestingContract: no vesting schedules for beneficiary"); uint256 totalRelease; for (uint256 i = 0; i < schedulesLength; i++) { VestingSchedule storage schedule = schedules[i]; // calculate the releasable amount uint256 amountToSend = releasableAmount(schedule); if (amountToSend > 0) { // update the released amount schedule.released += amountToSend; // update the total released amount totalRelease += amountToSend; // transfer the tokens to the beneficiary token.safeTransfer(schedule.beneficiary, amountToSend); } } emit TokensReleased(_beneficiary, totalRelease); } /** * @notice Returns the releasable amount of tokens for a beneficiary * @param _beneficiary The address of the beneficiary */ function getReleaseableAmount(address _beneficiary) external view returns (uint256) { VestingSchedule[] memory schedules = vestingSchedules[_beneficiary]; if (schedules.length == 0) return 0; uint256 amountToSend = 0; for (uint256 i = 0; i < schedules.length; i++) { VestingSchedule memory schedule = vestingSchedules[_beneficiary][i]; amountToSend += releasableAmount(schedule); } return amountToSend; } /** * @notice Returns the releasable amount of tokens for a vesting schedule * @param _schedule The vesting schedule */ function releasableAmount(VestingSchedule memory _schedule) public view returns (uint256) { return vestedAmount(_schedule) - _schedule.released; } /** * @notice Returns the vested amount of tokens for a vesting schedule * @param _schedule The vesting schedule */ function vestedAmount(VestingSchedule memory _schedule) public view returns (uint256) { if (_schedule.duration == 0) { if (block.timestamp >= _schedule.start) { return _schedule.amountTotal; } else { return 0; } } uint256 sliceInSeconds; if (_schedule.durationUnits == DurationUnits.Days) { sliceInSeconds = 1 days; } else if (_schedule.durationUnits == DurationUnits.Weeks) { sliceInSeconds = 7 days; } else if (_schedule.durationUnits == DurationUnits.Months) { sliceInSeconds = 30 days; } if (block.timestamp < _schedule.start) { return 0; } else if (block.timestamp >= _schedule.start + _schedule.duration * sliceInSeconds) { return _schedule.amountTotal; } else { uint256 monthsPassed = (block.timestamp - _schedule.start) / sliceInSeconds; return (_schedule.amountTotal * monthsPassed) / _schedule.duration; } } }
{ "optimizer": { "enabled": true } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"_start","type":"uint256"},{"internalType":"uint256","name":"_end","type":"uint256"},{"internalType":"address[5]","name":"_wallets","type":"address[5]"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"buyer","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"EthRefunded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"totalAmountBought","type":"uint256"},{"indexed":false,"internalType":"bool","name":"softCapReached","type":"bool"}],"name":"SaleEnded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"buyer","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TokensBought","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"claimer","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TokensClaimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"AIR_DROP_ALLOCATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CEX_ALLOCATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DAO_TREASURY_ALLOCATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LIQUIDITY_ALLOCATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_ALLOCATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SOFT_CAP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TEAM_ALLOCATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_buyers","type":"address[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"amountBought","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"end","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"endSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getVestingContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initializeVesting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"saleEnded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"softCapReached","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"start","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalAmountBought","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"wallets","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
9c4d535b0000000000000000000000000000000000000000000000000000000000000000010004b3b931a8f8e5ccf1b2671065f1f162067ee60885537fc3f3f59d434720000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000644bb41400000000000000000000000000000000000000000000000000000000644c5cd400000000000000000000000033bc92478fe83a7ff9c2f04316802225c60fd5de000000000000000000000000eb17c1dae558778070da10fea40da1197f4866c30000000000000000000000009fbe0c5452d15541596a4e21b83a0855c08823f2000000000000000000000000c50d602e448db810d8e0eeb46ec77a3a4aad9c300000000000000000000000003c8d45be08c46901a0b40cce1f4bc32b1d256c36
Deployed Bytecode
0x0004000000000002001100000000000200000000030100190000006003300270000004270430019700030000004103550002000000010355000004270030019d000100000000001f00000001012001900000000c0000c13d1097025b0000040f0000000001000416000000000110004c000000510000c13d00000000010000310000009f02100039000000200a00008a0000000002a2016f0000042803200041000004290330009c0000001c0000213d0000043d0100004100000000001004350000004101000039000000040010043f0000043e010000410000109900010430000000400020043f0000001f0210018f000000020300036700000005041002720000002a0000613d00000000050000190000000506500210000000000763034f000000000707043b000000800660003900000000007604350000000105500039000000000645004b000000220000413d000000000520004c000000390000613d0000000504400210000000000343034f00000003022002100000008004400039000000000504043300000000052501cf000000000525022f000000000303043b0000010002200089000000000323022f00000000022301cf000000000252019f00000000002404350000042a02000041000000e00310008c000000000300001900000000030240190000042a04100197000000000540004c000000000200a0190000042a0440009c000000000203c019000000000220004c000000510000c13d00000080011000390000042a02000041000000e00310008c000000000300001900000000030240190000042a01100197000000000410004c000000000200a0190000042a0110009c00000000010300190000000001026019000000000110004c000000530000613d00000000010000190000109900010430000000a00300043d000000800500043d000000400400043d0000042b0140009c000000160000213d000000a001400039000000400010043f000000c00100043d0000042c0210009c000000510000213d0000000006140436000000e00100043d0000042c0210009c000000510000213d0000000000160435000001000100043d0000042c0210009c000000510000213d00000040074000390000000000170435000001200100043d0000042c0210009c000000510000213d00000060084000390000000000180435000001400100043d0000042c0210009c000000510000213d00000080024000390000000000120435000000400e00043d0000042d01e0009c000000160000213d0000004001e00039000000400010043f0000000a09000039000000000f9e04360000042e0100004100000000001f0435000000400c00043d0000042d01c0009c000000160000213d0000004001c00039000000400010043f000000040b000039000000000dbc04360000042f0100004100100000000d001d00000000001d043500000000010e0433001100000001001d000004300110009c000000160000213d00090000000f001d000a0000000e001d000c0000000c001d000d0000000b001d000b0000000a001d000100000009001d000200000002001d000300000008001d000400000007001d000500000006001d000600000005001d000700000004001d000800000003001d0000000301000039000f00000001001d000000000101041a000000010210019000000001011002700000007f0310018f0000000001036019000e00000001001d0000001f0110008c00000000010000190000000101002039000000010110018f000000000112004b000000a90000613d0000043d0100004100000000001004350000002201000039000000040010043f0000043e0100004100001099000104300000000e01000029000000200110008c000000c90000413d0000000f01000029000000000010043500000427010000410000000002000414000004270320009c0000000001024019000000c00110021000000431011001c70000801002000039109710920000040f0000000102200190000000510000613d00000011030000290000001f023000390000000502200270000000200330008c0000000002004019000000000301043b0000000e010000290000001f01100039000000050110027000000000011300190000000002230019000000000312004b000000c90000813d000000000002041b0000000102200039000000000312004b000000c50000413d00000011010000290000001f0110008c000000fb0000a13d0000000f01000029000000000010043500000427010000410000000002000414000004270320009c0000000001024019000000c00110021000000431011001c70000801002000039109710920000040f00000001022001900000000b02000029000000510000613d000000110300002900000000032301700000002002000039000000000101043b0000000a06000029000000e90000613d0000002002000039000000000400001900000000056200190000000005050433000000000051041b000000200220003900000001011000390000002004400039000000000534004b000000e10000413d0000001104000029000000000343004b000000f70000813d00000011030000290000000303300210000000f80330018f000000010400008a000000000334022f000000000343013f0000000a0400002900000000024200190000000002020433000000000232016f000000000021041b000000010100003900000011020000290000000102200210000001080000013d0000001101000029000000000110004c0000000001000019000001010000613d0000000901000029000000000101043300000011040000290000000302400210000000010300008a000000000223022f000000000232013f000000000221016f0000000101400210000000000112019f0000000f02000029000000000012041b0000000c010000290000000001010433001100000001001d000004300110009c0000000d01000029000000160000213d000000000101041a000000010210019000000001021002700000007f0320018f0000000002036019000f00000002001d0000001f0220008c00000000020000190000000102002039000000000121013f0000000101100190000000a30000c13d0000000f01000029000000200110008c0000013d0000413d0000000d01000029000000000010043500000427010000410000000002000414000004270320009c0000000001024019000000c00110021000000431011001c70000801002000039109710920000040f0000000102200190000000510000613d00000011030000290000001f023000390000000502200270000000200330008c0000000002004019000000000301043b0000000f010000290000001f01100039000000050110027000000000011300190000000002230019000000000312004b0000013d0000813d000000000002041b0000000102200039000000000312004b000001390000413d00000011010000290000001f0110008c0000016f0000a13d0000000d01000029000000000010043500000427010000410000000002000414000004270320009c0000000001024019000000c00110021000000431011001c70000801002000039109710920000040f00000001022001900000000b02000029000000510000613d000000110300002900000000032301700000002002000039000000000101043b0000000c060000290000015d0000613d0000002002000039000000000400001900000000056200190000000005050433000000000051041b000000200220003900000001011000390000002004400039000000000534004b000001550000413d0000001104000029000000000343004b0000016b0000813d00000011030000290000000303300210000000f80330018f000000010400008a000000000334022f000000000343013f0000000c0400002900000000024200190000000002020433000000000232016f000000000021041b0000000101000039000000110200002900000001022002100000017c0000013d0000001101000029000000000110004c0000000001000019000001750000613d0000001001000029000000000101043300000011040000290000000302400210000000010300008a000000000223022f000000000232013f000000000221016f0000000101400210000000000112019f0000000d02000029000000000012041b000000400100043d000004320210009c000000160000213d00000024021000390000043303000041000000000032043500000084021000390000000003000410001100000003001d0000000000320435000000640210003900000000030004140000002004000039001000000004001d000000000042043500000044021000390000006004000039000000000042043500000434020000410000000000210435000000040210003900000000000204350000042702000041000004270430009c0000000003028019000004270410009c00000000010280190000004001100210000000c002300210000000000121019f00000435011001c700008006020000391097108d0000040f0000000102200190000001a80000613d000000000101043b000000000210004c000001d30000c13d00000003010003670000000104000031000001ad0000013d000300000001035500000000020100190000006002200270000104270020019d0000042704200197000000400200043d0000001f0340018f0000000504400272000001ba0000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000645004b000001b20000413d000000000530004c000001c90000613d0000000504400210000000000141034f00000000044200190000000303300210000000000504043300000000053501cf000000000535022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f000000000014043500000427010000410000000103000031000004270430009c0000000003018019000004270420009c000000000102401900000040011002100000006002300210000000000112019f0000109900010430000000100110021000000436011001970000000502000039000000000302041a0000043703300197000000000113019f000000000012041b0000001101000029000000000110004c000001ef0000c13d000000400100043d00000044021000390000043f03000041000000000032043500000024021000390000001f030000390000000000320435000004400200004100000000002104350000000402100039000000100300002900000000003204350000042702000041000004270310009c0000000001028019000000400110021000000441011001c700001099000104300000000201000039000000000201041a000004380320009c000001f90000413d0000043d0100004100000000001004350000001101000039000000040010043f0000043e0100004100001099000104300000043902200041000000000021041b00000011010000290000000000100435000000200000043f00000427010000410000000002000414000004270320009c0000000001024019000000c0011002100000043a011001c70000801002000039109710920000040f0000000102200190000000510000613d000000000101043b000000000201041a0000043902200041000000000021041b0000043901000041000000400200043d000000000012043500000427010000410000000003000414000004270430009c0000000003018019000004270420009c00000000010240190000004001100210000000c002300210000000000121019f00000431011001c70000800d0200003900000003030000390000043b04000041000000000500001900000011060000291097108d0000040f0000000308000029000000040700002900000005060000290000000605000029000000070400002900000008030000290000000101200190000000510000613d0000000701000039000000000051041b0000000801000039000000000031041b00000000010404330000042c011001970000000902000039000000000012041b00000000010604330000042c011001970000000102000029000000000012041b00000000010704330000042c011001970000000b02000039000000000012041b00000000010804330000042c011001970000000c02000039000000000012041b000000020100002900000000010104330000042c011001970000000d02000039000000000012041b0000001001000029000001000010044300000120000004430000043c01000041000010980001042e0000042703000041000004270410009c00000000010380190000004001100210000004270420009c00000000020380190000006002200210000000000112019f0000000002000414000004270420009c0000000002038019000000c002200210000000000112019f00000442011001c70000801002000039109710920000040f0000000102200190000002590000613d000000000101043b000000000001042d0000000001000019000010990001043000120000000000020000008001000039000000400010043f0000000002000031000000040120008c00000e940000413d001200000000001d0000000201000367000000000101043b000000e001100270000004430310009c000002940000213d0000045b0210009c000002b80000213d000004670210009c000003130000213d0000046d0210009c000003d70000213d000004700210009c000004e60000613d000004710110009c00000e940000c13d0000000001000416000000000110004c00000e940000c13d000000040100008a00000000011000310000042a02000041000000400310008c000000000300001900000000030240190000042a01100197000000000410004c000000000200a0190000042a0110009c00000000010300190000000001026019000000000110004c00000e940000c13d00000002010003670000000402100370000000000202043b0000042c0320009c00000e940000213d0000002401100370000000000301043b0000000001000411109710260000040f0000000101000039000000400200043d00000000001204350000042701000041000004270320009c0000000001024019000000400110021000000473011001c7000010980001042e000004440310009c000002f90000213d000004500310009c000003370000213d000004560210009c000003f60000213d000004590210009c000005090000613d0000045a0110009c00000e940000c13d0000000001000416000000000110004c00000e940000c13d000000040100008a00000000011000310000042a02000041000000000310004c000000000300001900000000030240190000042a01100197000000000410004c000000000200a0190000042a0110009c00000000010300190000000001026019000000000110004c00000e940000c13d000000400100043d000004390200004100000000002104350000042702000041000004270310009c0000000001028019000000400110021000000473011001c7000010980001042e0000045c0210009c0000000002000410000100000002001d0000038f0000213d000004620210009c000004230000213d000004650210009c000005230000613d000004660110009c00000e940000c13d0000000001000416000000000110004c00000e940000c13d000000040100008a00000000011000310000042a02000041000000400310008c000000000300001900000000030240190000042a01100197000000000410004c000000000200a0190000042a0110009c00000000010300190000000001026019000000000110004c00000e940000c13d00000004010000390000000201100367000000000101043b000f00000001001d0000042c0110009c00000e940000213d0000000001000411000c00000001001d00000000001004350000000101000039000d00000001001d000000200010043f0000004002000039000e00000002001d0000000001000019109702450000040f0000000f020000290000000000200435000000200010043f00000000010000190000000e02000029109702450000040f000000000101041a00000024020000390000000202200367000000000202043b0000000003120019000000000123004b0000000001000019000000010100403900000001011001900000087f0000613d0000043d0100004100000000001004350000001101000039000000040010043f0000043e010000410000109900010430000004450210009c000003b60000213d0000044b0210009c0000044b0000213d0000044e0210009c000005800000613d0000044f0110009c00000e940000c13d0000000001000416000000000110004c00000e940000c13d000000040100008a00000000011000310000042a02000041000000000310004c000000000300001900000000030240190000042a01100197000000000410004c000000000200a0190000042a0110009c00000000010300190000000001026019000000000110004c00000e940000c13d0000073b0000013d000004680210009c0000046c0000213d0000046b0210009c0000059a0000613d0000046c0110009c00000e940000c13d0000000001000416000000000110004c00000e940000c13d000000040100008a00000000011000310000042a02000041000000000310004c000000000300001900000000030240190000042a01100197000000000410004c000000000200a0190000042a0110009c00000000010300190000000001026019000000000110004c00000e940000c13d0000000501000039000000000101041a00000487011001980000000001000019000000010100c039000000400200043d00000000001204350000042701000041000004270320009c0000000001024019000000400110021000000473011001c7000010980001042e000004510310009c0000048a0000213d000004540210009c000005f10000613d000004550110009c00000e940000c13d0000000001000416000000000110004c00000e940000c13d000000040100008a00000000011000310000042a02000041000000400310008c000000000300001900000000030240190000042a01100197000000000410004c000000000200a0190000042a0110009c00000000010300190000000001026019000000000110004c00000e940000c13d00000002010003670000000402100370000000000202043b000f00000002001d0000042c0220009c00000e940000213d0000002401100370000000000101043b000e00000001001d0000000001000411000c00000001001d00000000001004350000000101000039000d00000001001d000000200010043f00000427010000410000000002000414000004270320009c0000000001024019000000c0011002100000043a011001c70000801002000039109710920000040f000000010220019000000e940000613d000000000101043b0000000f020000290000000000200435000000200010043f00000427010000410000000002000414000004270320009c0000000001024019000000c0011002100000043a011001c70000801002000039109710920000040f000000010220019000000e940000613d000000000101043b000000000101041a0000000e03000029000000000231004b000008e80000813d000000400100043d000000640210003900000481030000410000000000320435000000440210003900000482030000410000000000320435000000240210003900000025030000390000000000320435000004400200004100000000002104350000000402100039000000200300003900000000003204350000042702000041000004270310009c0000000001028019000000400110021000000483011001c700001099000104300000045d0210009c000004b10000213d000004600210009c0000060f0000613d000004610110009c00000e940000c13d0000000001000416000000000110004c00000e940000c13d000000040100008a00000000011000310000042a02000041000000200310008c000000000300001900000000030240190000042a01100197000000000410004c000000000200a0190000042a0110009c00000000010300190000000001026019000000000110004c00000e940000c13d00000004010000390000000201100367000000000101043b000000040210008c00000e940000213d0000000901100039000000000101041a0000042c01100197000000400200043d00000000001204350000042701000041000004270320009c0000000001024019000000400110021000000473011001c7000010980001042e000004460210009c000004d00000213d000004490210009c000006580000613d0000044a0110009c00000e940000c13d0000000001000416000000000110004c00000e940000c13d000000040100008a00000000011000310000042a02000041000000000310004c000000000300001900000000030240190000042a01100197000000000410004c000000000200a0190000042a0110009c00000000010300190000000001026019000000000110004c00000e940000c13d0000000801000039000000000101041a000000400200043d00000000001204350000042701000041000004270320009c0000000001024019000000400110021000000473011001c7000010980001042e0000046e0210009c000006890000613d0000046f0110009c00000e940000c13d0000000001000416000000000110004c00000e940000c13d000000040100008a00000000011000310000042a02000041000000000310004c000000000300001900000000030240190000042a01100197000000000410004c000000000200a0190000042a0110009c00000000010300190000000001026019000000000110004c00000e940000c13d0000000201000039000000000101041a000000400200043d00000000001204350000042701000041000004270320009c0000000001024019000000400110021000000473011001c7000010980001042e000004570210009c0000072a0000613d000004580110009c00000e940000c13d0000000001000416000000000110004c00000e940000c13d000000040100008a00000000011000310000042a02000041000000000310004c000000000300001900000000030240190000042a01100197000000000410004c000000000200a0190000042a0110009c00000000010300190000000001026019000000000110004c00000e940000c13d0000000404000039000000000304041a000000010530019000000001013002700000007f0210018f000000000701001900000000070260190000001f0270008c00000000020000190000000102002039000000000223013f0000000102200190000005030000c13d000000400100043d0000000002710436000000000550004c0000088b0000c13d000001000400008a000000000343016f0000000000320435000000000270004c00000020030000390000000003006019000008970000013d000004630210009c000007440000613d000004640110009c00000e940000c13d0000000001000416000000000110004c00000e940000c13d000000040100008a00000000011000310000042a02000041000000200310008c000000000300001900000000030240190000042a01100197000000000410004c000000000200a0190000042a0110009c00000000010300190000000001026019000000000110004c00000e940000c13d00000004010000390000000201100367000000000101043b0000042c0210009c00000e940000213d0000000000100435000000200000043f00000040020000390000000001000019109702450000040f000000000101041a000000400200043d00000000001204350000042701000041000004270320009c0000000001024019000000400110021000000473011001c7000010980001042e0000044c0210009c0000075e0000613d0000044d0110009c00000e940000c13d0000000001000416000000000110004c00000e940000c13d000000040100008a00000000011000310000042a02000041000000000310004c000000000300001900000000030240190000042a01100197000000000410004c000000000200a0190000042a0110009c00000000010300190000000001026019000000000110004c00000e940000c13d0000000501000039000000000101041a00000010011002700000042c01100197000000400200043d00000000001204350000042701000041000004270320009c0000000001024019000000400110021000000473011001c7000010980001042e000004690210009c000007790000613d0000046a0110009c00000e940000c13d0000000001000416000000000110004c00000e940000c13d000000040100008a00000000011000310000042a02000041000000000310004c000000000300001900000000030240190000042a01100197000000000410004c000000000200a0190000042a0110009c00000000010300190000000001026019000000000110004c00000e940000c13d000000400100043d000000120200003900000000002104350000042702000041000004270310009c0000000001028019000000400110021000000473011001c7000010980001042e000004520310009c0000079e0000613d000004530110009c00000e940000c13d0000000001000416000000000110004c00000e940000c13d000000040100008a00000000011000310000042a02000041000000400310008c000000000300001900000000030240190000042a01100197000000000410004c000000000200a0190000042a0110009c00000000010300190000000001026019000000000110004c00000e940000c13d00000002010003670000000402100370000000000202043b0000042c0320009c00000e940000213d0000002401100370000000000301043b000000000100041110970f2d0000040f0000000101000039000000400200043d00000000001204350000042701000041000004270320009c0000000001024019000000400110021000000473011001c7000010980001042e0000045e0210009c000007ce0000613d0000045f0110009c00000e940000c13d0000000001000416000000000110004c00000e940000c13d000000040100008a00000000011000310000042a02000041000000000310004c000000000300001900000000030240190000042a01100197000000000410004c000000000200a0190000042a0110009c00000000010300190000000001026019000000000110004c00000e940000c13d0000000601000039000000000101041a000000400200043d00000000001204350000042701000041000004270320009c0000000001024019000000400110021000000473011001c7000010980001042e000004470210009c000007e80000613d000004480110009c00000e940000c13d0000000001000416000000000110004c00000e940000c13d000000040100008a00000000011000310000042a02000041000000000310004c000000000300001900000000030240190000042a01100197000000000410004c000000000200a0190000042a0110009c00000000010300190000000001026019000000000110004c00000e940000c13d0000073b0000013d0000000001000416000000000110004c00000e940000c13d000000040100008a00000000011000310000042a02000041000000000310004c000000000300001900000000030240190000042a01100197000000000410004c000000000200a0190000042a0110009c00000000010300190000000001026019000000000110004c00000e940000c13d0000000303000039000000000203041a000000010420019000000001012002700000007f0510018f00000000010560190000001f0510008c00000000050000190000000105002039000000010550018f000000000554004b000008020000613d0000043d0100004100000000001004350000002201000039000000040010043f0000043e0100004100001099000104300000000001000416000000000110004c00000e940000c13d000000040100008a00000000011000310000042a02000041000000000310004c000000000300001900000000030240190000042a01100197000000000410004c000000000200a0190000042a0110009c00000000010300190000000001026019000000000110004c00000e940000c13d000000400100043d000004790200004100000000002104350000042702000041000004270310009c0000000001028019000000400110021000000473011001c7000010980001042e0000000001000416000000000110004c00000e940000c13d000000040100008a00000000011000310000042a02000041000000000310004c000000000300001900000000030240190000042a01100197000000000410004c000000000200a0190000042a0110009c00000000010300190000000001026019000000000110004c00000e940000c13d0000047501000041000000000010043900000427010000410000000002000414000004270320009c0000000001024019000000c00110021000000476011001c70000800b02000039109710920000040f000000010220019000000e940000613d0000000802000039000000000202041a000000000101043b000000000121004b000006460000a13d0000000502000039000000000302041a0000047701300198000008c10000c13d000e00000003001d000004950130019700000496011001c7000f00000002001d000000000012041b000004970100004100000000001004390000000101000029000000040010044300000427010000410000000002000414000004270320009c0000000001024019000000c0011002100000048a011001c70000800a02000039109710920000040f000000010220019000000e940000613d000000000101043b000004740110009c00000dad0000413d0000000e01000029000004980110019700000499011001c70000000f02000029000000000012041b0000000901000039000e00000001001d000000000101041a0000042c021001970000000101000029000000000110004c00000b160000c13d000000400100043d0000006402100039000004a20300004100000000003204350000004402100039000004a3030000410000000000320435000000240210003900000025030000390000000000320435000004400200004100000000002104350000000402100039000000200300003900000000003204350000042702000041000004270310009c0000000001028019000000400110021000000483011001c700001099000104300000000001000416000000000110004c00000e940000c13d000000040100008a00000000011000310000042a02000041000000000310004c000000000300001900000000030240190000042a01100197000000000410004c000000000200a0190000042a0110009c00000000010300190000000001026019000000000110004c00000e940000c13d000000400100043d000004740200004100000000002104350000042702000041000004270310009c0000000001028019000000400110021000000473011001c7000010980001042e0000000001000416000000000110004c00000e940000c13d000000040100008a00000000011000310000042a02000041000000600310008c000000000300001900000000030240190000042a01100197000000000410004c000000000200a0190000042a0110009c00000000010300190000000001026019000000000110004c00000e940000c13d00000002010003670000000402100370000000000202043b000f00000002001d0000042c0220009c00000e940000213d0000002402100370000000000202043b000e00000002001d0000042c0220009c00000e940000213d0000004401100370000000000101043b000d00000001001d0000000f0100002900000000001004350000000101000039000c00000001001d000000200010043f00000427010000410000000002000414000004270320009c0000000001024019000000c0011002100000043a011001c70000801002000039109710920000040f000000010220019000000e940000613d000000000101043b0000000002000411000b00000002001d0000000000200435000000200010043f00000427010000410000000002000414000004270320009c0000000001024019000000c0011002100000043a011001c70000801002000039109710920000040f000000010220019000000e940000613d000000000101043b000000000101041a000000010200008a000000000221004b00000b320000613d0000000d03000029000000000231004b00000b2e0000813d000000400100043d0000004402100039000004a403000041000000000032043500000024021000390000001d030000390000000000320435000004400200004100000000002104350000000402100039000000200300003900000000003204350000042702000041000004270310009c0000000001028019000000400110021000000441011001c700001099000104300000000001000416000000000110004c00000e940000c13d000000040100008a00000000011000310000042a02000041000000000310004c000000000300001900000000030240190000042a01100197000000000410004c000000000200a0190000042a0110009c00000000010300190000000001026019000000000110004c00000e940000c13d0000000501000039000000000101041a00000477011001980000000001000019000000010100c039000000400200043d00000000001204350000042701000041000004270320009c0000000001024019000000400110021000000473011001c7000010980001042e0000000001000416000000000110004c00000e940000c13d0000000001000031000000040210008a0000042a03000041000000200420008c000000000400001900000000040340190000042a02200197000000000520004c000000000300a0190000042a0220009c00000000020400190000000002036019000000000220004c00000e940000c13d00000002030003670000000402300370000000000202043b000004300420009c00000e940000213d00000023042000390000042a05000041000000000614004b000000000600001900000000060580190000042a071001970000042a04400197000000000874004b0000000005008019000000000474013f0000042a0440009c00000000040600190000000004056019000000000440004c00000e940000c13d0000000404200039000000000343034f000000000303043b000800000003001d000004300330009c00000e940000213d000000080300002900000005033002100000002402200039000600000002001d0000000002320019000000000112004b00000e940000213d0000000501000039000900000001001d000000000101041a0000047701100198000008f50000c13d000000400100043d000000440210003900000493030000410000000000320435000000240210003900000016030000390000000000320435000004400200004100000000002104350000000402100039000000200300003900000000003204350000042702000041000004270310009c0000000001028019000000400110021000000441011001c700001099000104300000000001000416000000000110004c00000e940000c13d000000040100008a00000000011000310000042a02000041000000400310008c000000000300001900000000030240190000042a01100197000000000410004c000000000200a0190000042a0110009c00000000010300190000000001026019000000000110004c00000e940000c13d00000002020003670000000401200370000000000101043b0000042c0310009c00000e940000213d0000002402200370000000000202043b000f00000002001d0000042c0220009c00000e940000213d00000000001004350000000101000039000000200010043f0000004002000039000e00000002001d0000000001000019109702450000040f0000000f020000290000000000200435000000200010043f00000000010000190000000e02000029109702450000040f000000000101041a000000400200043d00000000001204350000042701000041000004270320009c0000000001024019000000400110021000000473011001c7000010980001042e0000000001000416000000000110004c00000e940000c13d000000040100008a00000000011000310000042a02000041000000000310004c000000000300001900000000030240190000042a01100197000000000410004c000000000200a0190000042a0110009c00000000010300190000000001026019000000000110004c00000e940000c13d0000000503000039000000000403041a0000ff0001400190000f00000003001d000c00000001001d0000080c0000c13d000000ff0140019000000000020000190000000102006039001000000002001d0000000002000415000000100220008a00000020022000c9000000000110004c000008130000c13d000001000100008a000000000114016f00000001011001bf000000000013041b000004a70140019700000101011001bf000000000013041b0000000001000410000000000203041a00000010022002700000042c02200197000e00000001001d10970fc00000040f0000000f01000029000000000101041a000d00000001001d0000000a01000039000a00000001001d000000000101041a000b00000001001d0000047501000041000000000010043900000427010000410000000002000414000004270320009c0000000001024019000000c00110021000000476011001c70000800b02000039109710920000040f0000000b030000290000042c03300197000b00000003001d0000000d0300002900000010033002700000042c03300197000d00000003001d000000010220019000000e940000613d000000000101043b000900000001001d0000047501000041000000000010043900000427010000410000000002000414000004270320009c0000000001024019000000c00110021000000476011001c70000800b02000039109710920000040f0000000903000029000004a803300041000900000003001d000000010220019000000e940000613d000000000101043b0000000902000029000000000121004b000002f30000213d000004890100004100000000001004390000000d01000029000000040010044300000427010000410000000002000414000004270320009c0000000001024019000000c0011002100000048a011001c70000800202000039109710920000040f000000010220019000000e940000613d000000000101043b000000000110004c00000e940000613d000000400400043d0000048b010000410000000000140435000000840240003900000000010004140000048503000041000000000032043500000064024000390000000203000039000800000003001d000000000032043500000044024000390000000a030000290000000000320435000000240240003900000009030000290000000000320435000900000004001d00000004024000390000000b0300002900000000003204350000000d02000029000000040220008c000007210000613d0000042702000041000004270310009c00000000010280190000000904000029000004270340009c00000000020440190000004002200210000000c001100210000000000121019f0000048c011001c70000000d020000291097108d0000040f00000000030100190000006003300270000104270030019d00000427043001970003000000010355000000010220019000000c700000613d0000000901000029000004a90110009c00000b660000413d0000043d0100004100000000001004350000004101000039000000040010043f0000043e0100004100001099000104300000000001000416000000000110004c00000e940000c13d000000040100008a00000000011000310000042a02000041000000000310004c000000000300001900000000030240190000042a01100197000000000410004c000000000200a0190000042a0110009c00000000010300190000000001026019000000000110004c00000e940000c13d000000400100043d000004850200004100000000002104350000042702000041000004270310009c0000000001028019000000400110021000000473011001c7000010980001042e0000000001000416000000000110004c00000e940000c13d000000040100008a00000000011000310000042a02000041000000000310004c000000000300001900000000030240190000042a01100197000000000410004c000000000200a0190000042a0110009c00000000010300190000000001026019000000000110004c00000e940000c13d000000400100043d000004920200004100000000002104350000042702000041000004270310009c0000000001028019000000400110021000000473011001c7000010980001042e0000000001000416000000000110004c00000e940000c13d000000040100008a00000000011000310000042a02000041000000000310004c000000000300001900000000030240190000042a01100197000000000410004c000000000200a0190000042a0110009c00000000010300190000000001026019000000000110004c00000e940000c13d0000000701000039000000000101041a000000400200043d00000000001204350000042701000041000004270320009c0000000001024019000000400110021000000473011001c7000010980001042e0000000001000416000000000110004c00000e940000c13d000000040100008a00000000011000310000042a02000041000000200310008c000000000300001900000000030240190000042a01100197000000000410004c000000000200a0190000042a0110009c00000000010300190000000001026019000000000110004c00000e940000c13d00000004010000390000000201100367000000000101043b0000042c0210009c00000e940000213d00000000001004350000000e01000039000000200010043f00000040020000390000000001000019109702450000040f000000000101041a000000400200043d00000000001204350000042701000041000004270320009c0000000001024019000000400110021000000473011001c7000010980001042e000000040120008a0000042a02000041000000000310004c000000000300001900000000030240190000042a01100197000000000410004c000000000200a0190000042a0110009c00000000010300190000000001026019000000000110004c00000e940000c13d0000047501000041000000000010043900000427010000410000000002000414000004270320009c0000000001024019000000c00110021000000476011001c70000800b02000039109710920000040f000000010220019000000e940000613d0000000702000039000000000202041a000000000101043b000000000121004b0000083a0000813d000000400100043d000000440210003900000480030000410000000000320435000000240210003900000018030000390000000000320435000004400200004100000000002104350000000402100039000000200300003900000000003204350000042702000041000004270310009c0000000001028019000000400110021000000441011001c700001099000104300000000001000416000000000110004c00000e940000c13d000000040100008a00000000011000310000042a02000041000000000310004c000000000300001900000000030240190000042a01100197000000000410004c000000000200a0190000042a0110009c00000000010300190000000001026019000000000110004c00000e940000c13d000000400100043d000004860200004100000000002104350000042702000041000004270310009c0000000001028019000000400110021000000473011001c7000010980001042e0000000001000416000000000110004c00000e940000c13d000000040100008a00000000011000310000042a02000041000000000310004c000000000300001900000000030240190000042a01100197000000000410004c000000000200a0190000042a0110009c00000000010300190000000001026019000000000110004c00000e940000c13d000000400100043d000004720200004100000000002104350000042702000041000004270310009c0000000001028019000000400110021000000473011001c7000010980001042e000000800010043f000000000440004c0000085d0000c13d000001000300008a000000000232016f000000a00020043f000000000110004c000000c002000039000000a0020060390000086c0000013d000000000110004c00000000010000190000000101006039001100000001001d0000000002000415000000110220008a00000020022000c9000d00000002001d000b00000004001d000004890100004100000000001004390000000001000410000e00000001001d000000040010044300000427010000410000000002000414000004270320009c0000000001024019000000c0011002100000048a011001c70000800202000039109710920000040f000000010220019000000e940000613d000000000101043b000000000110004c000008a90000c13d0000000b04000029000000ff0140018f000000010110008c000000000100001900000001010060390000000d02000029000000200220011a000000000201001f000008ac0000c13d000001000100008a000000000114016f00000001011001bf0000000f03000029000000000013041b0000000c01000029000000000110004c0000000e01000029000006b10000c13d000006ad0000013d0000047501000041000000000010043900000427010000410000000002000414000004270320009c0000000001024019000000c00110021000000476011001c70000800b02000039109710920000040f000000010220019000000e940000613d0000000802000039000000000202041a000000000101043b000000000121004b000008d30000a13d000000400100043d00000044021000390000047f03000041000000000032043500000024021000390000000e030000390000000000320435000004400200004100000000002104350000000402100039000000200300003900000000003204350000042702000041000004270310009c0000000001028019000000400110021000000441011001c700001099000104300000000000300435000000a002000039000000000310004c0000086c0000613d000004b00200004100000000040000190000000003040019000000000402041a000000a005300039000000000045043500000001022000390000002004300039000000000514004b000008630000413d000000c002300039000000800220008a0000008001000039000f00000001001d10970f1a0000040f000000400100043d000e00000001001d0000000f0200002910970f040000040f0000000e0400002900000000014100490000042702000041000004270310009c0000000001028019000004270340009c000000000204401900000040022002100000006001100210000000000121019f000010980001042e0000000c010000290000000f02000029109710260000040f000000400100043d0000000d0200002900000000002104350000042702000041000004270310009c0000000001028019000000400110021000000473011001c7000010980001042e00000012030000290000000000430435000000000473004b000008970000813d00000484040000410000000005320019000000000604041a000000000065043500000001044000390000002003300039000000000573004b000008900000413d0000002002300039000f00000001001d10970f1a0000040f000000400100043d000e00000001001d0000000f0200002910970f040000040f0000000e0400002900000000014100490000042702000041000004270310009c0000000001028019000004270340009c000000000204401900000040022002100000006001100210000000000121019f000010980001042e0000000d01000029000000200110011a000000000100001f000000400100043d0000006402100039000004a50300004100000000003204350000004402100039000004a603000041000000000032043500000024021000390000002e030000390000000000320435000004400200004100000000002104350000000402100039000000200300003900000000003204350000042702000041000004270310009c0000000001028019000000400110021000000483011001c70000109900010430000000400100043d000000440210003900000494030000410000000000320435000000240210003900000016030000390000000000320435000004400200004100000000002104350000000402100039000000200300003900000000003204350000042702000041000004270310009c0000000001028019000000400110021000000441011001c700001099000104300000000001000416000000000110004c00000aeb0000c13d000000400100043d00000044021000390000047e03000041000000000032043500000024021000390000001d030000390000000000320435000004400200004100000000002104350000000402100039000000200300003900000000003204350000042702000041000004270310009c0000000001028019000000400110021000000441011001c7000010990001043000000000033100490000000c010000290000000f02000029109710260000040f000000400100043d0000000d0200002900000000002104350000042702000041000004270310009c0000000001028019000000400110021000000473011001c7000010980001042e0000000801000029000000000110004c00000dc80000613d0000000e01000039000c00000001001d0000801001000039000500000001001d000e00000000001d000009040000013d0000000e0200002900000001022000390000000801000029000e00000002001d000000000112004b00000dc80000813d0000000e01000029000000050110021000000006020000290000000001120019000f00000001001d0000000201100367000000000101043b0000042c0210009c00000e940000213d00000000001004350000000c01000029000000200010043f00000427010000410000000002000414000004270320009c0000000001024019000000c0011002100000043a011001c70000000502000029109710920000040f000000010220019000000e940000613d000000000101043b000000000101041a000000000110004c000008fe0000613d0000000f010000290000000201100367000000000101043b0000000902000029000000000202041a000004870220019800000a540000613d0000042c0210009c00000e940000213d00000000001004350000000c01000029000000200010043f00000427010000410000000002000414000004270320009c0000000001024019000000c0011002100000043a011001c70000801002000039109710920000040f000000010220019000000e940000613d000000000101043b000000000101041a000700000001001d0000000f010000290000000201100367000000000101043b0000042c0210009c00000e940000213d00000000001004350000000c01000029000000200010043f00000427010000410000000002000414000004270320009c0000000001024019000000c0011002100000043a011001c70000801002000039109710920000040f000000010220019000000e940000613d000000000101043b000000000001041b0000000f010000290000000201100367000000000101043b000a00000001001d0000042c0110009c00000e940000213d00000001010000290000042c01100198000d00000001001d0000056b0000613d0000000a01000029000000000110004c00000b190000613d0000000d010000290000000000100435000000200000043f00000427010000410000000002000414000004270320009c0000000001024019000000c0011002100000043a011001c70000801002000039109710920000040f000000010220019000000e940000613d00000007020000290000000202200270000000000101043b000000000101041a000b00000002001d000400000001001d000000000121004b00000b510000413d0000000d010000290000000000100435000000200000043f00000427010000410000000002000414000004270320009c0000000001024019000000c0011002100000043a011001c70000801002000039109710920000040f000000010220019000000e940000613d0000000b0200002900000004030000290000000002230049000000000101043b000000000021041b0000000a01000029000000000010043500000427010000410000000002000414000004270320009c0000000001024019000000c0011002100000043a011001c70000801002000039109710920000040f000000010220019000000e940000613d000000000101043b000000000201041a0000000b030000290000000002320019000000000021041b000000400100043d000000000031043500000427020000410000000003000414000004270430009c0000000003028019000004270410009c00000000010280190000004001100210000000c002300210000000000112019f00000431011001c70000800d0200003900000003030000390000043b040000410000000d050000290000000a060000291097108d0000040f000000010120019000000e940000613d0000000901000029000000000101041a00000010011002700000042c01100198000a00000001001d00000d1a0000613d0000000d0100002900000000001004350000000101000039000400000001001d000000200010043f00000427010000410000000002000414000004270320009c0000000001024019000000c0011002100000043a011001c70000801002000039109710920000040f00000001022001900000000a0400002900000e940000613d000000000101043b0000000000400435000000200010043f00000427010000410000000002000414000004270320009c0000000001024019000000c0011002100000043a011001c70000801002000039109710920000040f0000000a06000029000000010220019000000e940000613d0000000b0200002900000007030000290000000002230049000000000101043b000000000021041b000000400100043d000700000002001d000000000021043500000427020000410000000003000414000004270430009c0000000003028019000004270410009c00000000010280190000004001100210000000c002300210000000000112019f00000431011001c70000800d0200003900000003030000390000048804000041000300000003001d0000000d050000291097108d0000040f000000010120019000000e940000613d0000000901000029000000000101041a00000010011002700000042c01100197000d00000001001d0000000f010000290000000201100367000000000101043b000200000001001d0000042c0110009c00000e940000213d000004890100004100000000001004390000000d01000029000000040010044300000427010000410000000002000414000004270320009c0000000001024019000000c0011002100000048a011001c70000800202000039109710920000040f000000010220019000000e940000613d000000000101043b000000000110004c00000e940000613d000000400200043d000a00000002001d0000048b0100004100000000001204350000000401200039000000020200002900000000002104350000047501000041000000000010043900000427010000410000000002000414000004270320009c0000000001024019000000c00110021000000476011001c70000800b02000039109710920000040f0000000a06000029000000010220019000000e940000613d000000000101043b0000008402600039000000070300002900000000003204350000006402600039000000040300002900000000003204350000004402600039000000030300002900000000003204350000002402600039000000000012043500000000010004140000000d02000029000000040320008c00000a350000613d0000042704000041000004270310009c0000000001048019000004270360009c000000000304001900000000030640190000004003300210000000c001100210000000000131019f0000048c011001c71097108d0000040f0000000a0600002900000000030100190000006003300270000104270030019d00000427043001970003000000010355000000010220019000000d470000613d000004300160009c000007240000213d000000400060043f00000008010000290000000e02000029000000000112004b00000d2f0000813d0000000f010000290000000201100367000000000501043b0000042c0150009c00000e940000213d0000000b01000029000000000016043500000427010000410000000002000414000004270320009c0000000002018019000004270360009c00000000010640190000004001100210000000c002200210000000000121019f00000431011001c70000800d0200003900000002030000390000048d040000411097108d0000040f0000000101200190000008fe0000c13d00000e940000013d0000042c0210009c00000e940000213d00000000001004350000000c01000029000000200010043f00000427010000410000000002000414000004270320009c0000000001024019000000c0011002100000043a011001c70000801002000039109710920000040f000000010220019000000e940000613d000000000101043b000000000101041a00000479231000d1000000000210004c00000a6b0000613d00000000211300d9000004790110009c000002f30000c13d000b00000003001d000004781230012a000d00000002001d0000000f010000290000000201100367000000000101043b0000042c0210009c00000e940000213d00000000001004350000000c01000029000000200010043f00000427010000410000000002000414000004270320009c0000000001024019000000c0011002100000043a011001c70000801002000039109710920000040f000000010220019000000e940000613d000000000101043b000000000001041b00000000010004140000000f020000290000000202200367000000000402043b0000042c0240009c00000e940000213d000000040240008c00000a8d0000c13d0000000102000039000000010100003100000aa40000013d0000042702000041000004270310009c0000000001028019000000c0011002100000000b02000029000004780220009c00000a9b0000813d00000000020400191097108d0000040f00030000000103550000006001100270000104270010019d000004270110019700000aa40000013d00000442011001c700008009020000390000000d0300002900000000050000191097108d0000040f00030000000103550000006001100270000104270010019d0000042701100197000000000310004c00000ad00000613d0000003f03100039000000200400008a000000000443016f000000400300043d0000000004430019000000000534004b00000000050000190000000105004039000004300640009c000007240000213d0000000105500190000007240000c13d000000400040043f000000000113043600000003030003670000000105000031000000050450027200000ac10000613d000000000600001900000005076002100000000008710019000000000773034f000000000707043b00000000007804350000000106600039000000000746004b00000ab90000413d0000001f0550019000000ad00000613d0000000504400210000000000343034f00000000014100190000000304500210000000000501043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000310435000000010120019000000d350000613d0000000f010000290000000201100367000000000501043b0000042c0150009c00000e940000213d000000400100043d0000000d02000029000000000021043500000427020000410000000003000414000004270430009c0000000003028019000004270410009c00000000010280190000004001100210000000c002300210000000000121019f00000431011001c70000800d02000039000000020300003900000491040000411097108d0000040f0000000101200190000008fe0000c13d00000e940000013d0000000501000039000000000101041a00000477011001980000084b0000c13d000000000100041600000478211000d10000000002000416000000000320004c000002f30000613d00000000322100d9000004780220009c000002f30000c13d000004791210012a0000000601000039000000000301041a000f00000002001d0000000002230019000000000332004b000000000300001900000001030040390000000103300190000002f30000c13d000000000021041b0000047a0120009c00000c960000413d000000400100043d00000044021000390000047d03000041000000000032043500000024021000390000001f030000390000000000320435000004400200004100000000002104350000000402100039000000200300003900000000003204350000042702000041000004270310009c0000000001028019000000400110021000000441011001c70000109900010430000d00000002001d000000000120004c00000b3f0000c13d000000400100043d0000006402100039000004a00300004100000000003204350000004402100039000004a1030000410000000000320435000000240210003900000023030000390000000000320435000004400200004100000000002104350000000402100039000000200300003900000000003204350000042702000041000004270310009c0000000001028019000000400110021000000483011001c7000010990001043000000000033100490000000f010000290000000b02000029109710260000040f0000000f010000290000000e020000290000000d0300002910970f2d0000040f000000400100043d0000000c0200002900000000002104350000042702000041000004270310009c0000000001028019000000400110021000000473011001c7000010980001042e00000001010000290000000000100435000000200000043f00000427010000410000000002000414000004270320009c0000000001024019000000c0011002100000043a011001c70000801002000039109710920000040f000000010220019000000e940000613d000000000101043b000000000101041a000c00000001001d0000049a0110009c00000cc90000213d000000400100043d00000064021000390000049e03000041000000000032043500000044021000390000049f030000410000000000320435000000240210003900000026030000390000000000320435000004400200004100000000002104350000000402100039000000200300003900000000003204350000042702000041000004270310009c0000000001028019000000400110021000000483011001c700001099000104300000000901000029000000400010043f0000000f01000029000000000101041a00000010011002700000042c021001970000000e0100002910970fc00000040f0000000f01000029000000000101041a000d00000001001d0000000b01000039000000000101041a000b00000001001d0000047501000041000000000010043900000427010000410000000002000414000004270320009c0000000001024019000000c00110021000000476011001c70000800b02000039109710920000040f0000000b030000290000042c03300197000b00000003001d0000000d0300002900000010033002700000042c03300197000d00000003001d000000010220019000000e940000613d000000000101043b000900000001001d0000047501000041000000000010043900000427010000410000000002000414000004270320009c0000000001024019000000c00110021000000476011001c70000800b02000039109710920000040f0000000903000029000004aa03300041000900000003001d000000010220019000000e940000613d000000000101043b0000000902000029000000000121004b000002f30000213d000004890100004100000000001004390000000d01000029000000040010044300000427010000410000000002000414000004270320009c0000000001024019000000c0011002100000048a011001c70000800202000039109710920000040f000000010220019000000e940000613d000000000101043b000000000110004c00000e940000613d000000400400043d0000048b010000410000000000140435000000840240003900000000010004140000048503000041000000000032043500000064024000390000000803000029000000000032043500000044024000390000000a030000290000000000320435000000240240003900000009030000290000000000320435000a00000004001d00000004024000390000000b0300002900000000003204350000000d02000029000000040220008c00000bd70000613d0000042702000041000004270310009c00000000010280190000000a04000029000004270340009c00000000020440190000004002200210000000c001100210000000000121019f0000048c011001c70000000d020000291097108d0000040f00000000030100190000006003300270000104270030019d00000427043001970003000000010355000000010220019000000d7b0000613d0000000a01000029000004300110009c000007240000213d0000000a01000029000000400010043f0000000f01000029000000000101041a00000010011002700000042c021001970000000e0100002910970fc00000040f0000000f01000029000000000101041a000d00000001001d0000000c01000039000000000101041a000b00000001001d0000047501000041000000000010043900000427010000410000000002000414000004270320009c0000000001024019000000c00110021000000476011001c70000800b02000039109710920000040f0000000b030000290000042c03300197000b00000003001d0000000d0300002900000010033002700000042c03300197000d00000003001d000000010220019000000e940000613d000000000101043b000a00000001001d0000047501000041000000000010043900000427010000410000000002000414000004270320009c0000000001024019000000c00110021000000476011001c70000800b02000039109710920000040f0000000a03000029000004ab03300041000a00000003001d000000010220019000000e940000613d000000000101043b0000000a02000029000000000121004b000002f30000213d000004890100004100000000001004390000000d01000029000000040010044300000427010000410000000002000414000004270320009c0000000001024019000000c0011002100000048a011001c70000800202000039109710920000040f000000010220019000000e940000613d000000000101043b000000000110004c00000e940000613d000000400300043d0000008401300039000004850200004100000000002104350000048b01000041000000000013043500000064023000390000000801000029000900000002001d000000000012043500000024023000390000000a01000029000700000002001d000000000012043500000004023000390000000b01000029000500000002001d0000000000120435000b00000003001d0000004401300039000600000001001d000000000001043500000000010004140000000d02000029000000040220008c00000c4e0000613d0000042702000041000004270310009c00000000010280190000000b04000029000004270340009c00000000020440190000004002200210000000c001100210000000000121019f0000048c011001c70000000d020000291097108d0000040f00000000030100190000006003300270000104270030019d00000427043001970003000000010355000000010220019000000e080000613d0000000b01000029000004300110009c000007240000213d0000000b01000029000000400010043f0000000f01000029000000000101041a00000010011002700000042c01100197000d00000001001d0000000e01000029000000000110004c00000e2e0000c13d00000440010000410000000b030000290000000000130435000000200100003900000005020000290000000000120435000000240100003900000007020000290000000000120435000004ae0100004100000006020000290000000000120435000004af01000041000000090200002900000000001204350000042701000041000004270230009c0000000001034019000000400110021000000483011001c70000109900010430000000400200043d0000001f0340018f000000050440027200000c7d0000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000645004b00000c750000413d000000000530004c00000c8c0000613d0000000504400210000000000141034f00000000044200190000000303300210000000000504043300000000053501cf000000000535022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f000000000014043500000427010000410000000103000031000004270430009c0000000003018019000004270420009c000000000102401900000040011002100000006002300210000000000112019f00001099000104300000000001000411000e00000001001d00000000001004350000000e01000039000000200010043f00000427010000410000000002000414000004270320009c0000000001024019000000c0011002100000043a011001c70000801002000039109710920000040f000000010220019000000e940000613d000000000101043b000000000301041a0000000f020000290000000002230019000000000332004b000000000300001900000001030040390000000103300190000002f30000c13d000000000021041b000000400100043d0000000f02000029000000000021043500000427020000410000000003000414000004270430009c0000000003028019000004270410009c00000000010280190000004001100210000000c002300210000000000112019f00000431011001c70000800d0200003900000002030000390000047b040000410000000e050000291097108d0000040f000000010120019000000e940000613d00000427010000410000001202000029000004270320009c00000000010240190000047c211000d1000010980001042e00000001010000290000000000100435000000200000043f00000427010000410000000002000414000004270320009c0000000001024019000000c0011002100000043a011001c70000801002000039109710920000040f000000010220019000000e940000613d000000000101043b0000000c020000290000049b02200041000000000021041b0000000d01000029000000000010043500000427010000410000000002000414000004270320009c0000000001024019000000c0011002100000043a011001c70000801002000039109710920000040f000000010220019000000e940000613d000000000101043b000000000201041a0000047202200041000000000021041b0000047201000041000000400200043d000000000012043500000427010000410000000003000414000004270430009c0000000003018019000004270420009c00000000010240190000004001100210000000c002300210000000000112019f00000431011001c70000800d0200003900000003030000390000043b0400004100000001050000290000000d060000291097108d0000040f000000010120019000000e940000613d0000000001000414000d00000001001d0000000e01000029000000000101041a000e00000001001d000004970100004100000000001004390000000101000029000000040010044300000427010000410000000002000414000004270320009c0000000001024019000000c0011002100000048a011001c70000800a02000039109710920000040f0000000e030000290000042c04300197000000010220019000000e940000613d000000000301043b000000040140008c00000d6d0000c13d0000000102000039000000010100003100000da90000013d000000400100043d00000064021000390000048e03000041000000000032043500000044021000390000048f030000410000000000320435000000240210003900000022030000390000000000320435000004400200004100000000002104350000000402100039000000200300003900000000003204350000042702000041000004270310009c0000000001028019000000400110021000000483011001c700001099000104300000043d0100004100000000001004350000003201000039000000040010043f0000043e010000410000109900010430000000400100043d00000044021000390000049003000041000000000032043500000024021000390000000d030000390000000000320435000004400200004100000000002104350000000402100039000000200300003900000000003204350000042702000041000004270310009c0000000001028019000000400110021000000441011001c70000109900010430000000400200043d0000001f0340018f000000050440027200000d540000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000645004b00000d4c0000413d000000000530004c00000d630000613d0000000504400210000000000141034f00000000044200190000000303300210000000000504043300000000053501cf000000000535022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f000000000014043500000427010000410000000103000031000004270430009c0000000003018019000004270420009c000000000102401900000040011002100000006002300210000000000112019f000010990001043000000427010000410000000d05000029000004270250009c0000000001054019000000c001100210000000000230004c00000da10000c13d00000000020400191097108d0000040f00030000000103550000006001100270000104270010019d000004270110019700000da90000013d000000400200043d0000001f0340018f000000050440027200000d880000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000645004b00000d800000413d000000000530004c00000d970000613d0000000504400210000000000141034f00000000044200190000000303300210000000000504043300000000053501cf000000000535022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f000000000014043500000427010000410000000103000031000004270430009c0000000003018019000004270420009c000000000102401900000040011002100000006002300210000000000112019f000010990001043000000442011001c7000080090200003900000000050000191097108d0000040f00030000000103550000006001100270000104270010019d0000042701100197000000000310004c00000dca0000c13d000000010120019000000df60000613d0000000601000039000000000101041a0000000f02000029000000000202041a00000487022001980000000002000019000000010200c039000000400300043d00000020043000390000000000240435000000000013043500000427010000410000000002000414000004270420009c0000000002018019000004270430009c00000000010340190000004001100210000000c002200210000000000112019f0000043a011001c70000800d0200003900000001030000390000049d040000411097108d0000040f000000010120019000000e940000613d0000000001000019000010980001042e0000003f03100039000000200400008a000000000443016f000000400300043d0000000004430019000000000534004b00000000050000190000000105004039000004300640009c000007240000213d0000000105500190000007240000c13d000000400040043f0000000001130436000000030300036700000001050000310000001f0450018f000000050550027200000de60000613d000000000600001900000005076002100000000008710019000000000773034f000000000707043b00000000007804350000000106600039000000000756004b00000dde0000413d000000000640004c00000dab0000613d0000000505500210000000000353034f00000000015100190000000304400210000000000501043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f000000000031043500000dab0000013d000000400100043d00000044021000390000049c03000041000000000032043500000024021000390000000f030000390000000000320435000004400200004100000000002104350000000402100039000000200300003900000000003204350000042702000041000004270310009c0000000001028019000000400110021000000441011001c70000109900010430000000400200043d0000001f0340018f000000050440027200000e150000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000645004b00000e0d0000413d000000000530004c00000e240000613d0000000504400210000000000141034f00000000044200190000000303300210000000000504043300000000053501cf000000000535022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f000000000014043500000427010000410000000103000031000004270430009c0000000003018019000004270420009c000000000102401900000040011002100000006002300210000000000112019f00001099000104300000000d01000029000000000110004c00000e460000c13d00000440010000410000000b0300002900000000001304350000002001000039000000050200002900000000001204350000002201000039000000070200002900000000001204350000048f01000041000000060200002900000000001204350000048e01000041000000090200002900000000001204350000042701000041000004270230009c0000000001034019000000400110021000000483011001c700001099000104300000000e0100002900000000001004350000000101000039000b00000001001d000000200010043f00000427010000410000000002000414000004270320009c0000000001024019000000c0011002100000043a011001c70000801002000039109710920000040f000000010220019000000e940000613d000000000101043b0000000d020000290000000000200435000000200010043f00000427010000410000000002000414000004270320009c0000000001024019000000c0011002100000043a011001c70000801002000039109710920000040f000000010220019000000e940000613d000000000101043b0000048602000041000000000021041b000000400100043d000000000021043500000427020000410000000003000414000004270430009c0000000003028019000004270410009c00000000010280190000004001100210000000c002300210000000000112019f00000431011001c70000800d02000039000000030300003900000488040000410000000e050000290000000d060000291097108d0000040f000000010120019000000e940000613d0000000d01000039000000000101041a000e00000001001d0000000f01000029000000000101041a0000048902000041000000000020043900000010011002700000042c01100197000d00000001001d000000040010044300000427010000410000000002000414000004270320009c0000000001024019000000c0011002100000048a011001c70000800202000039109710920000040f0000000e030000290000042c03300197000000010220019000000e940000613d000000000101043b000000000110004c00000e960000c13d00000000010000190000109900010430000000400400043d00000084014000390000048602000041000000000021043500000064014000390000000802000029000000000021043500000024014000390000000a0200002900000000002104350000048b01000041000000000014043500000004014000390000000000310435000e00000004001d0000004401400039000000000001043500000000010004140000000d02000029000000040220008c00000ebe0000613d0000042702000041000004270310009c00000000010280190000000e04000029000004270340009c00000000020440190000004002200210000000c001100210000000000121019f0000048c011001c70000000d020000291097108d0000040f00000000030100190000006003300270000104270030019d00000427043001970003000000010355000000010220019000000ede0000613d0000000e01000029000004300110009c000007240000213d0000000e01000029000000400010043f0000000c01000029000000000110004c00000dc80000c13d0000000f03000029000000000103041a000004ac02000041000000000121016f000000000013041b000000400100043d0000000b03000029000000000031043500000427020000410000000005000414000004270450009c0000000005028019000004270410009c00000000010280190000004001100210000000c002500210000000000112019f00000431011001c70000800d02000039000004ad040000411097108d0000040f000000010120019000000e940000613d00000dc80000013d000000400200043d0000001f0340018f000000050440027200000eeb0000613d000000000500001900000005065002100000000007620019000000000661034f000000000606043b00000000006704350000000105500039000000000645004b00000ee30000413d000000000530004c00000efa0000613d0000000504400210000000000141034f00000000044200190000000303300210000000000504043300000000053501cf000000000535022f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f000000000014043500000427010000410000000103000031000004270430009c0000000003018019000004270420009c000000000102401900000040011002100000006002300210000000000112019f000010990001043000000020030000390000000004310436000000000302043300000000003404350000004001100039000000000430004c00000f130000613d000000000400001900000000054100190000002004400039000000000624001900000000060604330000000000650435000000000534004b00000f0c0000413d000000000231001900000000000204350000001f02300039000000200300008a000000000232016f0000000001210019000000000001042d0000001f02200039000000200300008a000000000232016f0000000001120019000000000221004b00000000020000190000000102004039000004300310009c00000f270000213d000000010220019000000f270000c13d000000400010043f000000000001042d0000043d0100004100000000001004350000004101000039000000040010043f0000043e0100004100001099000104300004000000000002000400000003001d0000042c0110019800000f810000613d0000042c02200198000200000002001d00000f960000613d000300000001001d0000000000100435000000200000043f00000427010000410000000002000414000004270320009c0000000001024019000000c0011002100000043a011001c70000801002000039109710920000040f000000010220019000000f7f0000613d000000000101043b000000000201041a0000000401000029000100000002001d000000000112004b00000fab0000413d00000003010000290000000000100435000000200000043f00000427010000410000000002000414000004270320009c0000000001024019000000c0011002100000043a011001c70000801002000039109710920000040f000000010220019000000f7f0000613d000000040200002900000001030000290000000002230049000000000101043b000000000021041b0000000201000029000000000010043500000427010000410000000002000414000004270320009c0000000001024019000000c0011002100000043a011001c70000801002000039109710920000040f000000010220019000000f7f0000613d000000000101043b000000000201041a00000004030000290000000002320019000000000021041b000000400100043d000000000031043500000427020000410000000003000414000004270430009c0000000003028019000004270410009c00000000010280190000004001100210000000c002300210000000000112019f00000431011001c70000800d0200003900000003030000390000043b04000041000000030500002900000002060000291097108d0000040f000000010120019000000f7f0000613d000000000001042d00000000010000190000109900010430000000400100043d0000006402100039000004a20300004100000000003204350000004402100039000004a3030000410000000000320435000000240210003900000025030000390000000000320435000004400200004100000000002104350000000402100039000000200300003900000000003204350000042702000041000004270310009c0000000001028019000000400110021000000483011001c70000109900010430000000400100043d0000006402100039000004a00300004100000000003204350000004402100039000004a1030000410000000000320435000000240210003900000023030000390000000000320435000004400200004100000000002104350000000402100039000000200300003900000000003204350000042702000041000004270310009c0000000001028019000000400110021000000483011001c70000109900010430000000400100043d00000064021000390000049e03000041000000000032043500000044021000390000049f030000410000000000320435000000240210003900000026030000390000000000320435000004400200004100000000002104350000000402100039000000200300003900000000003204350000042702000041000004270310009c0000000001028019000000400110021000000483011001c7000010990001043000020000000000020000042c0110019800000ffc0000613d0000042c02200198000200000002001d000010110000613d000100000001001d00000000001004350000000101000039000000200010043f00000427010000410000000002000414000004270320009c0000000001024019000000c0011002100000043a011001c70000801002000039109710920000040f0000000102200190000000020400002900000ffa0000613d000000000101043b0000000000400435000000200010043f00000427010000410000000002000414000004270320009c0000000001024019000000c0011002100000043a011001c70000801002000039109710920000040f0000000206000029000000010220019000000ffa0000613d000000000101043b0000048502000041000000000021041b000000400100043d000000000021043500000427020000410000000003000414000004270430009c0000000003028019000004270410009c00000000010280190000004001100210000000c002300210000000000112019f00000431011001c70000800d020000390000000303000039000004880400004100000001050000291097108d0000040f000000010120019000000ffa0000613d000000000001042d00000000010000190000109900010430000000400100043d0000006402100039000004af0300004100000000003204350000004402100039000004ae030000410000000000320435000000240210003900000024030000390000000000320435000004400200004100000000002104350000000402100039000000200300003900000000003204350000042702000041000004270310009c0000000001028019000000400110021000000483011001c70000109900010430000000400100043d00000064021000390000048e03000041000000000032043500000044021000390000048f030000410000000000320435000000240210003900000022030000390000000000320435000004400200004100000000002104350000000402100039000000200300003900000000003204350000042702000041000004270310009c0000000001028019000000400110021000000483011001c7000010990001043000030000000000020000042c01100198000010630000613d000200000003001d0000042c02200198000300000002001d000010780000613d000100000001001d00000000001004350000000101000039000000200010043f00000427010000410000000002000414000004270320009c0000000001024019000000c0011002100000043a011001c70000801002000039109710920000040f00000001022001900000000304000029000010610000613d000000000101043b0000000000400435000000200010043f00000427010000410000000002000414000004270320009c0000000001024019000000c0011002100000043a011001c70000801002000039109710920000040f00000003060000290000000102200190000010610000613d000000000101043b0000000202000029000000000021041b000000400100043d000000000021043500000427020000410000000003000414000004270430009c0000000003028019000004270410009c00000000010280190000004001100210000000c002300210000000000112019f00000431011001c70000800d020000390000000303000039000004880400004100000001050000291097108d0000040f0000000101200190000010610000613d000000000001042d00000000010000190000109900010430000000400100043d0000006402100039000004af0300004100000000003204350000004402100039000004ae030000410000000000320435000000240210003900000024030000390000000000320435000004400200004100000000002104350000000402100039000000200300003900000000003204350000042702000041000004270310009c0000000001028019000000400110021000000483011001c70000109900010430000000400100043d00000064021000390000048e03000041000000000032043500000044021000390000048f030000410000000000320435000000240210003900000022030000390000000000320435000004400200004100000000002104350000000402100039000000200300003900000000003204350000042702000041000004270310009c0000000001028019000000400110021000000483011001c7000010990001043000001090002104210000000102000039000000000001042d0000000002000019000000000001042d00001095002104230000000102000039000000000001042d0000000002000019000000000001042d0000109700000432000010980001042e00001099000104300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffffffffffffffffffffffffffffffffffff000000000000007f8000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff5f000000000000000000000000ffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffbf426f6c7420546f6b656e00000000000000000000000000000000000000000000424f4c5400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff0200000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff7b01000249d86146ba2e14a7c2d08ea4724227de7d40ebfa4a1f2411230ae571239c4d535bdea7cd8a978f128b93471df48c7dbab89d703809115bdc118c235bfd02000000000000000000000000000000000000a400000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff0000ffffffffffffffffffff0000000000000000000000000000000000000000fffffffffffffffffffffffffffffffffffffffffffab0ad635ada8943976e00000000000000000000000000000000000000000000054f529ca52576bc68920000000200000000000000000000000000000000000040000000000000000000000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef00000002000000000000000000000000000000400000010000000000000000004e487b7100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002400000000000000000000000045524332303a206d696e7420746f20746865207a65726f20616464726573730008c379a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000640000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008d859f3d00000000000000000000000000000000000000000000000000000000b652dc2e00000000000000000000000000000000000000000000000000000000dd62ed3d00000000000000000000000000000000000000000000000000000000f9428f3700000000000000000000000000000000000000000000000000000000f9428f3800000000000000000000000000000000000000000000000000000000fd99cbed00000000000000000000000000000000000000000000000000000000dd62ed3e00000000000000000000000000000000000000000000000000000000efbe1c1c00000000000000000000000000000000000000000000000000000000be9a655400000000000000000000000000000000000000000000000000000000be9a655500000000000000000000000000000000000000000000000000000000db39b6c500000000000000000000000000000000000000000000000000000000b652dc2f00000000000000000000000000000000000000000000000000000000bc9f3566000000000000000000000000000000000000000000000000000000009b8906ad00000000000000000000000000000000000000000000000000000000a6f2ae3900000000000000000000000000000000000000000000000000000000a6f2ae3a00000000000000000000000000000000000000000000000000000000a9059cbb000000000000000000000000000000000000000000000000000000009b8906ae00000000000000000000000000000000000000000000000000000000a457c2d70000000000000000000000000000000000000000000000000000000094cd77770000000000000000000000000000000000000000000000000000000094cd77780000000000000000000000000000000000000000000000000000000095d89b41000000000000000000000000000000000000000000000000000000008d859f3e00000000000000000000000000000000000000000000000000000000902d55a500000000000000000000000000000000000000000000000000000000380d831a00000000000000000000000000000000000000000000000000000000729ad39d0000000000000000000000000000000000000000000000000000000085c21d2b0000000000000000000000000000000000000000000000000000000085c21d2c000000000000000000000000000000000000000000000000000000008970103500000000000000000000000000000000000000000000000000000000729ad39e000000000000000000000000000000000000000000000000000000007ad71f72000000000000000000000000000000000000000000000000000000003dc762ef000000000000000000000000000000000000000000000000000000003dc762f00000000000000000000000000000000000000000000000000000000070a0823100000000000000000000000000000000000000000000000000000000380d831b00000000000000000000000000000000000000000000000000000000395093510000000000000000000000000000000000000000000000000000000023b872dc000000000000000000000000000000000000000000000000000000002d4a16dc000000000000000000000000000000000000000000000000000000002d4a16dd00000000000000000000000000000000000000000000000000000000313ce5670000000000000000000000000000000000000000000000000000000023b872dd000000000000000000000000000000000000000000000000000000002b9edee90000000000000000000000000000000000000000000000000000000017aed2000000000000000000000000000000000000000000000000000000000017aed2010000000000000000000000000000000000000000000000000000000018160ddd0000000000000000000000000000000000000000000000000000000006fdde0300000000000000000000000000000000000000000000000000000000095ea7b30000000000000000000000000000000000000000cbe5fde5926b690faf80000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000015af1d78b58c40000796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d9553913202000002000000000000000000000000000000040000000000000000000000000000000000000000ff00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000de0b6b3a7640000000000000000000000000000000000000000000000000000000000000bce926500000000000000000000000000000000000000032f97f79649ada43ebe000001745f661b8143944fb883f50694ebed3a871e43c451d9d4bf4648a9d551d7e47a00000000000000000000000000000000000000010000000100000000000000004e6f7420656e6f75676820746f6b656e73206c65667420666f722073616c6500416d6f756e74206d7573742062652067726561746572207468616e203000000053616c652068617320656e64656400000000000000000000000000000000000053616c6520686173206e6f742073746172746564207965740000000000000000207a65726f00000000000000000000000000000000000000000000000000000045524332303a2064656372656173656420616c6c6f77616e63652062656c6f7700000000000000000000000000000000000000840000000000000000000000008a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b000000000000000000000000000000000000000043f754a1db7923053a800000000000000000000000000000000000000000000087eea943b6f2460a75000000000000000000000000ff000000000000000000000000000000000000000000008c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9251806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b83020000020000000000000000000000000000002400000000000000000000000052b04ce00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a4000000000000000000000000896e034966eaaf1adc54acc0f257056febbd300c9e47182cf761982cf1f5e430737300000000000000000000000000000000000000000000000000000000000045524332303a20617070726f766520746f20746865207a65726f206164647265526566756e64206661696c656400000000000000000000000000000000000000ffab3269bdaceca4d1bbc53e74b982ac2b306687e17e21f1e499e7fdf6751ac800000000000000000000000000000000000000032f97f79649ada43ebe00000053616c6520686173206e6f7420656e646564207965740000000000000000000053616c652068617320616c726561647920656e64656400000000000000000000ffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffff00000000000000000100000000000000000000000000000000000000000000009cc7f708afc65944829bd487b90b72536b1951864fbfc14e125fc972a6507f39ffffffffffffffff0000ffffffffffffffffffffffffffffffffffffffffffff00000000000000000101000000000000000000000000000000000000000000000000000000000000000000000000000000000000cbe5fde5926b690faf7fffffffffffffffffffffffffffffffffffffffffffff341a021a6d9496f0508000005472616e73666572206661696c65640000000000000000000000000000000000d7206f5fdab21edc11f68dedb2d7d0382dc40ab424a49f18aa4268a4f501c3e0616c616e6365000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220616d6f756e7420657863656564732062657373000000000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220746f20746865207a65726f2061646472647265737300000000000000000000000000000000000000000000000000000045524332303a207472616e736665722066726f6d20746865207a65726f20616445524332303a20696e73756666696369656e7420616c6c6f77616e6365000000647920696e697469616c697a6564000000000000000000000000000000000000496e697469616c697a61626c653a20636f6e747261637420697320616c726561ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000000000ed4e0000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000278d000000000000000000000000000000000000000000000000000000000000127500ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb384740249845524332303a20617070726f76652066726f6d20746865207a65726f206164647265737300000000000000000000000000000000000000000000000000000000c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b00000000000000000000000000000000000000000000000000000000000000009f612370ee6f16cb727fd14b0c102e235938a0060ce20a4af26d13f6b52f53fe
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0x00000000000000000000000000000000000000000000000000000000644bb41400000000000000000000000000000000000000000000000000000000644c5cd400000000000000000000000033bc92478fe83a7ff9c2f04316802225c60fd5de000000000000000000000000eb17c1dae558778070da10fea40da1197f4866c30000000000000000000000009fbe0c5452d15541596a4e21b83a0855c08823f2000000000000000000000000c50d602e448db810d8e0eeb46ec77a3a4aad9c300000000000000000000000003c8d45be08c46901a0b40cce1f4bc32b1d256c36
-----Decoded View---------------
Arg [0] : _start (uint256): 1682682900
Arg [1] : _end (uint256): 1682726100
Arg [2] : _wallets (address[5]): 0x33Bc92478fE83a7Ff9C2f04316802225C60fd5DE,0xeB17C1dAE558778070Da10fea40da1197F4866C3,0x9fbE0C5452D15541596a4e21b83A0855c08823F2,0xc50D602E448DB810d8E0EEb46ec77A3A4aAD9c30,0x3c8D45Be08c46901a0b40cce1f4bC32b1D256C36
-----Encoded View---------------
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.