ERC-20
Overview
Max Total Supply
1,000,000,000 QFT
Holders
44
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.000000000000000001 QFTValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
QFTToken
Compiler Version
v0.8.20+commit.a1b79de6
Contract Source Code (Solidity Standard Json-Input format)
/* A machine has two components: Team and Culture. https://www.deworker.ai/ https://docs.deworker.ai/ https://github.com/deworkerai https://twitter.com/DeworkerAI */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.20; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract QFTToken is ERC20, Ownable { uint256 public constant INITIAL_SUPPLY = 1_000_000_000 * 10**18; uint256 public constant INITIAL_RELEASE = 150_000_000 * 10**18; uint256 public currentSupply; uint256 public releaseRate; uint256 public lastReleaseTime; uint256 public startTime; constructor(address initialOwner) ERC20("Deworker AI", "QFT") Ownable(initialOwner) { _mint(address(this), INITIAL_SUPPLY); currentSupply = INITIAL_SUPPLY - INITIAL_RELEASE; releaseRate = INITIAL_RELEASE / (365 days); startTime = block.timestamp; lastReleaseTime = block.timestamp; _transfer(address(this), initialOwner, INITIAL_RELEASE); } function releaseTokens() public onlyOwner { require(block.timestamp >= startTime + 365 days, "Cannot release tokens in the first year"); require(block.timestamp >= lastReleaseTime + 1 days, "Can only release once a day"); uint256 elapsedTime = block.timestamp - startTime - 365 days; uint256 releaseAmount = releaseRate * (elapsedTime / 1 days) - (INITIAL_RELEASE - currentSupply); require(releaseAmount <= currentSupply, "Not enough tokens left to release"); currentSupply -= releaseAmount; lastReleaseTime = block.timestamp; _transfer(address(this), msg.sender, releaseAmount); } function adjustReleaseRate() public onlyOwner { uint256 yearsElapsed = (block.timestamp - startTime) / (365 days); if (yearsElapsed > 2 && (yearsElapsed - 1) % 2 == 0) { releaseRate /= 2; } } function distributeTokens(address to, uint256 amount) public onlyOwner { require(amount <= currentSupply, "Insufficient tokens available"); _transfer(address(this), to, amount); currentSupply -= amount; } function updateReleaseTime() public onlyOwner { lastReleaseTime = block.timestamp; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; import {Context} from "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * The initial owner is set to the address provided by the deployer. This can * later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.20; import {IERC20} from "./IERC20.sol"; import {IERC20Metadata} from "./extensions/IERC20Metadata.sol"; import {Context} from "../../utils/Context.sol"; import {IERC20Errors} from "../../interfaces/draft-IERC6093.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}. * * 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]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * 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. */ abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors { mapping(address account => uint256) private _balances; mapping(address account => mapping(address spender => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * 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 returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual 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 default value returned by this function, unless * it's 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 returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual 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 `value`. */ function transfer(address to, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _transfer(owner, to, value); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `value` 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 value) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, value); 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 `value`. * - the caller must have allowance for ``from``'s tokens of at least * `value`. */ function transferFrom(address from, address to, uint256 value) public virtual returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, value); _transfer(from, to, value); return true; } /** * @dev Moves a `value` 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. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _transfer(address from, address to, uint256 value) internal { if (from == address(0)) { revert ERC20InvalidSender(address(0)); } if (to == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(from, to, value); } /** * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding * this function. * * Emits a {Transfer} event. */ function _update(address from, address to, uint256 value) internal virtual { if (from == address(0)) { // Overflow check required: The rest of the code assumes that totalSupply never overflows _totalSupply += value; } else { uint256 fromBalance = _balances[from]; if (fromBalance < value) { revert ERC20InsufficientBalance(from, fromBalance, value); } unchecked { // Overflow not possible: value <= fromBalance <= totalSupply. _balances[from] = fromBalance - value; } } if (to == address(0)) { unchecked { // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply. _totalSupply -= value; } } else { unchecked { // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256. _balances[to] += value; } } emit Transfer(from, to, value); } /** * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0). * Relies on the `_update` mechanism * * Emits a {Transfer} event with `from` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _mint(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(address(0), account, value); } /** * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply. * Relies on the `_update` mechanism. * * Emits a {Transfer} event with `to` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead */ function _burn(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidSender(address(0)); } _update(account, address(0), value); } /** * @dev Sets `value` 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. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve(address owner, address spender, uint256 value) internal { _approve(owner, spender, value, true); } /** * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event. * * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any * `Approval` event during `transferFrom` operations. * * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to * true using the following override: * ``` * function _approve(address owner, address spender, uint256 value, bool) internal virtual override { * super._approve(owner, spender, value, true); * } * ``` * * Requirements are the same as {_approve}. */ function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual { if (owner == address(0)) { revert ERC20InvalidApprover(address(0)); } if (spender == address(0)) { revert ERC20InvalidSpender(address(0)); } _allowances[owner][spender] = value; if (emitEvent) { emit Approval(owner, spender, value); } } /** * @dev Updates `owner` s allowance for `spender` based on spent `value`. * * Does not update the allowance value in case of infinite allowance. * Revert if not enough allowance is available. * * Does not emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 value) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { if (currentAllowance < value) { revert ERC20InsufficientAllowance(spender, currentAllowance, value); } unchecked { _approve(owner, spender, currentAllowance - value, false); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @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; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.20; import {IERC20} from "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. */ 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 (last updated v5.0.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @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 value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` 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 value) external returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } }, "remappings": [] }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"initialOwner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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":"INITIAL_RELEASE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"INITIAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"adjustReleaseRate","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":"spender","type":"address"},{"internalType":"uint256","name":"value","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":"currentSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"distributeTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lastReleaseTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"releaseRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"releaseTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTime","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":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","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":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"updateReleaseTime","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801562000010575f80fd5b5060405162002362380380620023628339818101604052810190620000369190620006c1565b806040518060400160405280600b81526020017f4465776f726b65722041490000000000000000000000000000000000000000008152506040518060400160405280600381526020017f51465400000000000000000000000000000000000000000000000000000000008152508160039081620000b4919062000955565b508060049081620000c6919062000955565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036200013c575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040162000133919062000a4a565b60405180910390fd5b6200014d81620001ed60201b60201c565b506200016c306b033b2e3c9fd0803ce8000000620002b060201b60201c565b6a7c13bc4b2c133c560000006b033b2e3c9fd0803ce800000062000191919062000a92565b6006819055506301e133806a7c13bc4b2c133c56000000620001b4919062000af9565b6007819055504260098190555042600881905550620001e630826a7c13bc4b2c133c560000006200033a60201b60201c565b5062000bd1565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000323575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016200031a919062000a4a565b60405180910390fd5b620003365f83836200043860201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603620003ad575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401620003a4919062000a4a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000420575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040162000417919062000a4a565b60405180910390fd5b620004338383836200043860201b60201c565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036200048c578060025f8282546200047f919062000b30565b925050819055506200055d565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101562000518578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016200050f9392919062000b7b565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620005a6578060025f8282540392505081905550620005f0565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200064f919062000bb6565b60405180910390a3505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6200068b8262000660565b9050919050565b6200069d816200067f565b8114620006a8575f80fd5b50565b5f81519050620006bb8162000692565b92915050565b5f60208284031215620006d957620006d86200065c565b5b5f620006e884828501620006ab565b91505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200076d57607f821691505b60208210810362000783576200078262000728565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620007e77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620007aa565b620007f38683620007aa565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6200083d6200083762000831846200080b565b62000814565b6200080b565b9050919050565b5f819050919050565b62000858836200081d565b62000870620008678262000844565b848454620007b6565b825550505050565b5f90565b6200088662000878565b620008938184846200084d565b505050565b5b81811015620008ba57620008ae5f826200087c565b60018101905062000899565b5050565b601f8211156200090957620008d38162000789565b620008de846200079b565b81016020851015620008ee578190505b62000906620008fd856200079b565b83018262000898565b50505b505050565b5f82821c905092915050565b5f6200092b5f19846008026200090e565b1980831691505092915050565b5f6200094583836200091a565b9150826002028217905092915050565b6200096082620006f1565b67ffffffffffffffff8111156200097c576200097b620006fb565b5b62000988825462000755565b62000995828285620008be565b5f60209050601f831160018114620009cb575f8415620009b6578287015190505b620009c2858262000938565b86555062000a31565b601f198416620009db8662000789565b5f5b8281101562000a0457848901518255600182019150602085019450602081019050620009dd565b8683101562000a24578489015162000a20601f8916826200091a565b8355505b6001600288020188555050505b505050505050565b62000a44816200067f565b82525050565b5f60208201905062000a5f5f83018462000a39565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f62000a9e826200080b565b915062000aab836200080b565b925082820390508181111562000ac65762000ac562000a65565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f62000b05826200080b565b915062000b12836200080b565b92508262000b255762000b2462000acc565b5b828204905092915050565b5f62000b3c826200080b565b915062000b49836200080b565b925082820190508082111562000b645762000b6362000a65565b5b92915050565b62000b75816200080b565b82525050565b5f60608201905062000b905f83018662000a39565b62000b9f602083018562000b6a565b62000bae604083018462000b6a565b949350505050565b5f60208201905062000bcb5f83018462000b6a565b92915050565b6117838062000bdf5f395ff3fe608060405234801561000f575f80fd5b5060043610610140575f3560e01c806378e97925116100b6578063a96f86681161007a578063a96f866814610356578063c9cc646414610360578063dd62ed3e1461036a578063dfaf734a1461039a578063f2fde38b146103b8578063f68b32d0146103d457610140565b806378e97925146102ae5780638da5cb5b146102cc57806395d89b41146102ea578063a703299814610308578063a9059cbb1461032657610140565b806323b872dd1161010857806323b872dd146101ea5780632ff2e9dc1461021a578063313ce5671461023857806370a0823114610256578063715018a614610286578063771282f61461029057610140565b806306fdde0314610144578063095ea7b314610162578063158a49881461019257806316a3f7a4146101ae57806318160ddd146101cc575b5f80fd5b61014c6103de565b604051610159919061110f565b60405180910390f35b61017c600480360381019061017791906111c0565b61046e565b6040516101899190611218565b60405180910390f35b6101ac60048036038101906101a791906111c0565b610490565b005b6101b6610504565b6040516101c39190611240565b60405180910390f35b6101d4610513565b6040516101e19190611240565b60405180910390f35b61020460048036038101906101ff9190611259565b61051c565b6040516102119190611218565b60405180910390f35b61022261054a565b60405161022f9190611240565b60405180910390f35b61024061055a565b60405161024d91906112c4565b60405180910390f35b610270600480360381019061026b91906112dd565b610562565b60405161027d9190611240565b60405180910390f35b61028e6105a7565b005b6102986105ba565b6040516102a59190611240565b60405180910390f35b6102b66105c0565b6040516102c39190611240565b60405180910390f35b6102d46105c6565b6040516102e19190611317565b60405180910390f35b6102f26105ee565b6040516102ff919061110f565b60405180910390f35b61031061067e565b60405161031d9190611240565b60405180910390f35b610340600480360381019061033b91906111c0565b610684565b60405161034d9190611218565b60405180910390f35b61035e6106a6565b005b61036861082a565b005b610384600480360381019061037f9190611330565b61089b565b6040516103919190611240565b60405180910390f35b6103a261091d565b6040516103af9190611240565b60405180910390f35b6103d260048036038101906103cd91906112dd565b610923565b005b6103dc6109a7565b005b6060600380546103ed9061139b565b80601f01602080910402602001604051908101604052809291908181526020018280546104199061139b565b80156104645780601f1061043b57610100808354040283529160200191610464565b820191905f5260205f20905b81548152906001019060200180831161044757829003601f168201915b5050505050905090565b5f806104786109b8565b90506104858185856109bf565b600191505092915050565b6104986109d1565b6006548111156104dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104d490611415565b60405180910390fd5b6104e8308383610a58565b8060065f8282546104f99190611460565b925050819055505050565b6a7c13bc4b2c133c5600000081565b5f600254905090565b5f806105266109b8565b9050610533858285610b48565b61053e858585610a58565b60019150509392505050565b6b033b2e3c9fd0803ce800000081565b5f6012905090565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6105af6109d1565b6105b85f610bda565b565b60065481565b60095481565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546105fd9061139b565b80601f01602080910402602001604051908101604052809291908181526020018280546106299061139b565b80156106745780601f1061064b57610100808354040283529160200191610674565b820191905f5260205f20905b81548152906001019060200180831161065757829003601f168201915b5050505050905090565b60075481565b5f8061068e6109b8565b905061069b818585610a58565b600191505092915050565b6106ae6109d1565b6301e133806009546106c09190611493565b421015610702576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f990611536565b60405180910390fd5b620151806008546107139190611493565b421015610755576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074c9061159e565b60405180910390fd5b5f6301e13380600954426107699190611460565b6107739190611460565b90505f6006546a7c13bc4b2c133c5600000061078f9190611460565b620151808361079e91906115e9565b6007546107ab9190611619565b6107b59190611460565b90506006548111156107fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f3906116ca565b60405180910390fd5b8060065f82825461080d9190611460565b9250508190555042600881905550610826303383610a58565b5050565b6108326109d1565b5f6301e13380600954426108469190611460565b61085091906115e9565b905060028111801561087957505f600260018361086d9190611460565b61087791906116e8565b145b1561089857600260075f82825461089091906115e9565b925050819055505b50565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60085481565b61092b6109d1565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361099b575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016109929190611317565b60405180910390fd5b6109a481610bda565b50565b6109af6109d1565b42600881905550565b5f33905090565b6109cc8383836001610c9d565b505050565b6109d96109b8565b73ffffffffffffffffffffffffffffffffffffffff166109f76105c6565b73ffffffffffffffffffffffffffffffffffffffff1614610a5657610a1a6109b8565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610a4d9190611317565b60405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ac8575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610abf9190611317565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b38575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610b2f9190611317565b60405180910390fd5b610b43838383610e6c565b505050565b5f610b53848461089b565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610bd45781811015610bc5578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610bbc93929190611718565b60405180910390fd5b610bd384848484035f610c9d565b5b50505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610d0d575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610d049190611317565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d7d575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610d749190611317565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610e66578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610e5d9190611240565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ebc578060025f828254610eb09190611493565b92505081905550610f8a565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610f45578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610f3c93929190611718565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fd1578060025f828254039250508190555061101b565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516110789190611240565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156110bc5780820151818401526020810190506110a1565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6110e182611085565b6110eb818561108f565b93506110fb81856020860161109f565b611104816110c7565b840191505092915050565b5f6020820190508181035f83015261112781846110d7565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61115c82611133565b9050919050565b61116c81611152565b8114611176575f80fd5b50565b5f8135905061118781611163565b92915050565b5f819050919050565b61119f8161118d565b81146111a9575f80fd5b50565b5f813590506111ba81611196565b92915050565b5f80604083850312156111d6576111d561112f565b5b5f6111e385828601611179565b92505060206111f4858286016111ac565b9150509250929050565b5f8115159050919050565b611212816111fe565b82525050565b5f60208201905061122b5f830184611209565b92915050565b61123a8161118d565b82525050565b5f6020820190506112535f830184611231565b92915050565b5f805f606084860312156112705761126f61112f565b5b5f61127d86828701611179565b935050602061128e86828701611179565b925050604061129f868287016111ac565b9150509250925092565b5f60ff82169050919050565b6112be816112a9565b82525050565b5f6020820190506112d75f8301846112b5565b92915050565b5f602082840312156112f2576112f161112f565b5b5f6112ff84828501611179565b91505092915050565b61131181611152565b82525050565b5f60208201905061132a5f830184611308565b92915050565b5f80604083850312156113465761134561112f565b5b5f61135385828601611179565b925050602061136485828601611179565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806113b257607f821691505b6020821081036113c5576113c461136e565b5b50919050565b7f496e73756666696369656e7420746f6b656e7320617661696c61626c650000005f82015250565b5f6113ff601d8361108f565b915061140a826113cb565b602082019050919050565b5f6020820190508181035f83015261142c816113f3565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61146a8261118d565b91506114758361118d565b925082820390508181111561148d5761148c611433565b5b92915050565b5f61149d8261118d565b91506114a88361118d565b92508282019050808211156114c0576114bf611433565b5b92915050565b7f43616e6e6f742072656c6561736520746f6b656e7320696e20746865206669725f8201527f7374207965617200000000000000000000000000000000000000000000000000602082015250565b5f61152060278361108f565b915061152b826114c6565b604082019050919050565b5f6020820190508181035f83015261154d81611514565b9050919050565b7f43616e206f6e6c792072656c65617365206f6e636520612064617900000000005f82015250565b5f611588601b8361108f565b915061159382611554565b602082019050919050565b5f6020820190508181035f8301526115b58161157c565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6115f38261118d565b91506115fe8361118d565b92508261160e5761160d6115bc565b5b828204905092915050565b5f6116238261118d565b915061162e8361118d565b925082820261163c8161118d565b9150828204841483151761165357611652611433565b5b5092915050565b7f4e6f7420656e6f75676820746f6b656e73206c65667420746f2072656c6561735f8201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b5f6116b460218361108f565b91506116bf8261165a565b604082019050919050565b5f6020820190508181035f8301526116e1816116a8565b9050919050565b5f6116f28261118d565b91506116fd8361118d565b92508261170d5761170c6115bc565b5b828206905092915050565b5f60608201905061172b5f830186611308565b6117386020830185611231565b6117456040830184611231565b94935050505056fea264697066735822122028aca2f9d370ff95bc560daf8190034f0f2cd6567f2dd3b29bb15ab4f3e4baf064736f6c63430008140033000000000000000000000000eb4a1a3bfe9a0094e504081aa31eac3c7ac879f1
Deployed Bytecode
0x608060405234801561000f575f80fd5b5060043610610140575f3560e01c806378e97925116100b6578063a96f86681161007a578063a96f866814610356578063c9cc646414610360578063dd62ed3e1461036a578063dfaf734a1461039a578063f2fde38b146103b8578063f68b32d0146103d457610140565b806378e97925146102ae5780638da5cb5b146102cc57806395d89b41146102ea578063a703299814610308578063a9059cbb1461032657610140565b806323b872dd1161010857806323b872dd146101ea5780632ff2e9dc1461021a578063313ce5671461023857806370a0823114610256578063715018a614610286578063771282f61461029057610140565b806306fdde0314610144578063095ea7b314610162578063158a49881461019257806316a3f7a4146101ae57806318160ddd146101cc575b5f80fd5b61014c6103de565b604051610159919061110f565b60405180910390f35b61017c600480360381019061017791906111c0565b61046e565b6040516101899190611218565b60405180910390f35b6101ac60048036038101906101a791906111c0565b610490565b005b6101b6610504565b6040516101c39190611240565b60405180910390f35b6101d4610513565b6040516101e19190611240565b60405180910390f35b61020460048036038101906101ff9190611259565b61051c565b6040516102119190611218565b60405180910390f35b61022261054a565b60405161022f9190611240565b60405180910390f35b61024061055a565b60405161024d91906112c4565b60405180910390f35b610270600480360381019061026b91906112dd565b610562565b60405161027d9190611240565b60405180910390f35b61028e6105a7565b005b6102986105ba565b6040516102a59190611240565b60405180910390f35b6102b66105c0565b6040516102c39190611240565b60405180910390f35b6102d46105c6565b6040516102e19190611317565b60405180910390f35b6102f26105ee565b6040516102ff919061110f565b60405180910390f35b61031061067e565b60405161031d9190611240565b60405180910390f35b610340600480360381019061033b91906111c0565b610684565b60405161034d9190611218565b60405180910390f35b61035e6106a6565b005b61036861082a565b005b610384600480360381019061037f9190611330565b61089b565b6040516103919190611240565b60405180910390f35b6103a261091d565b6040516103af9190611240565b60405180910390f35b6103d260048036038101906103cd91906112dd565b610923565b005b6103dc6109a7565b005b6060600380546103ed9061139b565b80601f01602080910402602001604051908101604052809291908181526020018280546104199061139b565b80156104645780601f1061043b57610100808354040283529160200191610464565b820191905f5260205f20905b81548152906001019060200180831161044757829003601f168201915b5050505050905090565b5f806104786109b8565b90506104858185856109bf565b600191505092915050565b6104986109d1565b6006548111156104dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104d490611415565b60405180910390fd5b6104e8308383610a58565b8060065f8282546104f99190611460565b925050819055505050565b6a7c13bc4b2c133c5600000081565b5f600254905090565b5f806105266109b8565b9050610533858285610b48565b61053e858585610a58565b60019150509392505050565b6b033b2e3c9fd0803ce800000081565b5f6012905090565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6105af6109d1565b6105b85f610bda565b565b60065481565b60095481565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546105fd9061139b565b80601f01602080910402602001604051908101604052809291908181526020018280546106299061139b565b80156106745780601f1061064b57610100808354040283529160200191610674565b820191905f5260205f20905b81548152906001019060200180831161065757829003601f168201915b5050505050905090565b60075481565b5f8061068e6109b8565b905061069b818585610a58565b600191505092915050565b6106ae6109d1565b6301e133806009546106c09190611493565b421015610702576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f990611536565b60405180910390fd5b620151806008546107139190611493565b421015610755576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074c9061159e565b60405180910390fd5b5f6301e13380600954426107699190611460565b6107739190611460565b90505f6006546a7c13bc4b2c133c5600000061078f9190611460565b620151808361079e91906115e9565b6007546107ab9190611619565b6107b59190611460565b90506006548111156107fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f3906116ca565b60405180910390fd5b8060065f82825461080d9190611460565b9250508190555042600881905550610826303383610a58565b5050565b6108326109d1565b5f6301e13380600954426108469190611460565b61085091906115e9565b905060028111801561087957505f600260018361086d9190611460565b61087791906116e8565b145b1561089857600260075f82825461089091906115e9565b925050819055505b50565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60085481565b61092b6109d1565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361099b575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016109929190611317565b60405180910390fd5b6109a481610bda565b50565b6109af6109d1565b42600881905550565b5f33905090565b6109cc8383836001610c9d565b505050565b6109d96109b8565b73ffffffffffffffffffffffffffffffffffffffff166109f76105c6565b73ffffffffffffffffffffffffffffffffffffffff1614610a5657610a1a6109b8565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610a4d9190611317565b60405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ac8575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610abf9190611317565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b38575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610b2f9190611317565b60405180910390fd5b610b43838383610e6c565b505050565b5f610b53848461089b565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610bd45781811015610bc5578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610bbc93929190611718565b60405180910390fd5b610bd384848484035f610c9d565b5b50505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610d0d575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610d049190611317565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d7d575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610d749190611317565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610e66578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610e5d9190611240565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ebc578060025f828254610eb09190611493565b92505081905550610f8a565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610f45578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610f3c93929190611718565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fd1578060025f828254039250508190555061101b565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516110789190611240565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156110bc5780820151818401526020810190506110a1565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6110e182611085565b6110eb818561108f565b93506110fb81856020860161109f565b611104816110c7565b840191505092915050565b5f6020820190508181035f83015261112781846110d7565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61115c82611133565b9050919050565b61116c81611152565b8114611176575f80fd5b50565b5f8135905061118781611163565b92915050565b5f819050919050565b61119f8161118d565b81146111a9575f80fd5b50565b5f813590506111ba81611196565b92915050565b5f80604083850312156111d6576111d561112f565b5b5f6111e385828601611179565b92505060206111f4858286016111ac565b9150509250929050565b5f8115159050919050565b611212816111fe565b82525050565b5f60208201905061122b5f830184611209565b92915050565b61123a8161118d565b82525050565b5f6020820190506112535f830184611231565b92915050565b5f805f606084860312156112705761126f61112f565b5b5f61127d86828701611179565b935050602061128e86828701611179565b925050604061129f868287016111ac565b9150509250925092565b5f60ff82169050919050565b6112be816112a9565b82525050565b5f6020820190506112d75f8301846112b5565b92915050565b5f602082840312156112f2576112f161112f565b5b5f6112ff84828501611179565b91505092915050565b61131181611152565b82525050565b5f60208201905061132a5f830184611308565b92915050565b5f80604083850312156113465761134561112f565b5b5f61135385828601611179565b925050602061136485828601611179565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806113b257607f821691505b6020821081036113c5576113c461136e565b5b50919050565b7f496e73756666696369656e7420746f6b656e7320617661696c61626c650000005f82015250565b5f6113ff601d8361108f565b915061140a826113cb565b602082019050919050565b5f6020820190508181035f83015261142c816113f3565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61146a8261118d565b91506114758361118d565b925082820390508181111561148d5761148c611433565b5b92915050565b5f61149d8261118d565b91506114a88361118d565b92508282019050808211156114c0576114bf611433565b5b92915050565b7f43616e6e6f742072656c6561736520746f6b656e7320696e20746865206669725f8201527f7374207965617200000000000000000000000000000000000000000000000000602082015250565b5f61152060278361108f565b915061152b826114c6565b604082019050919050565b5f6020820190508181035f83015261154d81611514565b9050919050565b7f43616e206f6e6c792072656c65617365206f6e636520612064617900000000005f82015250565b5f611588601b8361108f565b915061159382611554565b602082019050919050565b5f6020820190508181035f8301526115b58161157c565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6115f38261118d565b91506115fe8361118d565b92508261160e5761160d6115bc565b5b828204905092915050565b5f6116238261118d565b915061162e8361118d565b925082820261163c8161118d565b9150828204841483151761165357611652611433565b5b5092915050565b7f4e6f7420656e6f75676820746f6b656e73206c65667420746f2072656c6561735f8201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b5f6116b460218361108f565b91506116bf8261165a565b604082019050919050565b5f6020820190508181035f8301526116e1816116a8565b9050919050565b5f6116f28261118d565b91506116fd8361118d565b92508261170d5761170c6115bc565b5b828206905092915050565b5f60608201905061172b5f830186611308565b6117386020830185611231565b6117456040830184611231565b94935050505056fea264697066735822122028aca2f9d370ff95bc560daf8190034f0f2cd6567f2dd3b29bb15ab4f3e4baf064736f6c63430008140033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000eb4a1a3bfe9a0094e504081aa31eac3c7ac879f1
-----Decoded View---------------
Arg [0] : initialOwner (address): 0xEB4a1a3bFe9a0094E504081aA31EAC3C7Ac879f1
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000eb4a1a3bfe9a0094e504081aa31eac3c7ac879f1
Deployed Bytecode Sourcemap
347:1992:6:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2074:89:2;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4293:186;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1994:236:6;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;460:62;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3144:97:2;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5039:244;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;390:63:6;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3002:82:2;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3299:116;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2293:101:0;;;:::i;:::-;;529:28:6;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;634:24;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1638:85:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2276:93:2;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;564:26:6;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3610:178:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1078:664:6;;;:::i;:::-;;1750:236;;;:::i;:::-;;3846:140:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;597:30:6;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2543:215:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2238:98:6;;;:::i;:::-;;2074:89:2;2119:13;2151:5;2144:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2074:89;:::o;4293:186::-;4366:4;4382:13;4398:12;:10;:12::i;:::-;4382:28;;4420:31;4429:5;4436:7;4445:5;4420:8;:31::i;:::-;4468:4;4461:11;;;4293:186;;;;:::o;1994:236:6:-;1531:13:0;:11;:13::i;:::-;2094::6::1;;2084:6;:23;;2076:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;2152:36;2170:4;2177:2;2181:6;2152:9;:36::i;:::-;2216:6;2199:13;;:23;;;;;;;:::i;:::-;;;;;;;;1994:236:::0;;:::o;460:62::-;502:20;460:62;:::o;3144:97:2:-;3196:7;3222:12;;3215:19;;3144:97;:::o;5039:244::-;5126:4;5142:15;5160:12;:10;:12::i;:::-;5142:30;;5182:37;5198:4;5204:7;5213:5;5182:15;:37::i;:::-;5229:26;5239:4;5245:2;5249:5;5229:9;:26::i;:::-;5272:4;5265:11;;;5039:244;;;;;:::o;390:63:6:-;431:22;390:63;:::o;3002:82:2:-;3051:5;3075:2;3068:9;;3002:82;:::o;3299:116::-;3364:7;3390:9;:18;3400:7;3390:18;;;;;;;;;;;;;;;;3383:25;;3299:116;;;:::o;2293:101:0:-;1531:13;:11;:13::i;:::-;2357:30:::1;2384:1;2357:18;:30::i;:::-;2293:101::o:0;529:28:6:-;;;;:::o;634:24::-;;;;:::o;1638:85:0:-;1684:7;1710:6;;;;;;;;;;;1703:13;;1638:85;:::o;2276:93:2:-;2323:13;2355:7;2348:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2276:93;:::o;564:26:6:-;;;;:::o;3610:178:2:-;3679:4;3695:13;3711:12;:10;:12::i;:::-;3695:28;;3733:27;3743:5;3750:2;3754:5;3733:9;:27::i;:::-;3777:4;3770:11;;;3610:178;;;;:::o;1078:664:6:-;1531:13:0;:11;:13::i;:::-;1170:8:6::1;1158:9;;:20;;;;:::i;:::-;1139:15;:39;;1131:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;1278:6;1260:15;;:24;;;;:::i;:::-;1241:15;:43;;1233:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;1329:19;1381:8;1369:9;;1351:15;:27;;;;:::i;:::-;:38;;;;:::i;:::-;1329:60;;1400:21;1482:13;;502:20;1464:31;;;;:::i;:::-;1453:6;1439:11;:20;;;;:::i;:::-;1424:11;;:36;;;;:::i;:::-;:72;;;;:::i;:::-;1400:96;;1532:13;;1515;:30;;1507:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;1613:13;1596;;:30;;;;;;;:::i;:::-;;;;;;;;1655:15;1637;:33;;;;1683:51;1701:4;1708:10;1720:13;1683:9;:51::i;:::-;1120:622;;1078:664::o:0;1750:236::-;1531:13:0;:11;:13::i;:::-;1807:20:6::1;1863:8;1849:9;;1831:15;:27;;;;:::i;:::-;1830:42;;;;:::i;:::-;1807:65;;1902:1;1887:12;:16;:47;;;;;1933:1;1928;1923;1908:12;:16;;;;:::i;:::-;1907:22;;;;:::i;:::-;:27;1887:47;1883:96;;;1966:1;1951:11;;:16;;;;;;;:::i;:::-;;;;;;;;1883:96;1796:190;1750:236::o:0;3846:140:2:-;3926:7;3952:11;:18;3964:5;3952:18;;;;;;;;;;;;;;;:27;3971:7;3952:27;;;;;;;;;;;;;;;;3945:34;;3846:140;;;;:::o;597:30:6:-;;;;:::o;2543:215:0:-;1531:13;:11;:13::i;:::-;2647:1:::1;2627:22;;:8;:22;;::::0;2623:91:::1;;2700:1;2672:31;;;;;;;;;;;:::i;:::-;;;;;;;;2623:91;2723:28;2742:8;2723:18;:28::i;:::-;2543:215:::0;:::o;2238:98:6:-;1531:13:0;:11;:13::i;:::-;2313:15:6::1;2295;:33;;;;2238:98::o:0;656:96:5:-;709:7;735:10;728:17;;656:96;:::o;8989:128:2:-;9073:37;9082:5;9089:7;9098:5;9105:4;9073:8;:37::i;:::-;8989:128;;;:::o;1796:162:0:-;1866:12;:10;:12::i;:::-;1855:23;;:7;:5;:7::i;:::-;:23;;;1851:101;;1928:12;:10;:12::i;:::-;1901:40;;;;;;;;;;;:::i;:::-;;;;;;;;1851:101;1796:162::o;5656:300:2:-;5755:1;5739:18;;:4;:18;;;5735:86;;5807:1;5780:30;;;;;;;;;;;:::i;:::-;;;;;;;;5735:86;5848:1;5834:16;;:2;:16;;;5830:86;;5902:1;5873:32;;;;;;;;;;;:::i;:::-;;;;;;;;5830:86;5925:24;5933:4;5939:2;5943:5;5925:7;:24::i;:::-;5656:300;;;:::o;10663:477::-;10762:24;10789:25;10799:5;10806:7;10789:9;:25::i;:::-;10762:52;;10848:17;10828:16;:37;10824:310;;10904:5;10885:16;:24;10881:130;;;10963:7;10972:16;10990:5;10936:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;10881:130;11052:57;11061:5;11068:7;11096:5;11077:16;:24;11103:5;11052:8;:57::i;:::-;10824:310;10752:388;10663:477;;;:::o;2912:187:0:-;2985:16;3004:6;;;;;;;;;;;2985:25;;3029:8;3020:6;;:17;;;;;;;;;;;;;;;;;;3083:8;3052:40;;3073:8;3052:40;;;;;;;;;;;;2975:124;2912:187;:::o;9949:432:2:-;10078:1;10061:19;;:5;:19;;;10057:89;;10132:1;10103:32;;;;;;;;;;;:::i;:::-;;;;;;;;10057:89;10178:1;10159:21;;:7;:21;;;10155:90;;10231:1;10203:31;;;;;;;;;;;:::i;:::-;;;;;;;;10155:90;10284:5;10254:11;:18;10266:5;10254:18;;;;;;;;;;;;;;;:27;10273:7;10254:27;;;;;;;;;;;;;;;:35;;;;10303:9;10299:76;;;10349:7;10333:31;;10342:5;10333:31;;;10358:5;10333:31;;;;;;:::i;:::-;;;;;;;;10299:76;9949:432;;;;:::o;6271:1107::-;6376:1;6360:18;;:4;:18;;;6356:540;;6512:5;6496:12;;:21;;;;;;;:::i;:::-;;;;;;;;6356:540;;;6548:19;6570:9;:15;6580:4;6570:15;;;;;;;;;;;;;;;;6548:37;;6617:5;6603:11;:19;6599:115;;;6674:4;6680:11;6693:5;6649:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;6599:115;6866:5;6852:11;:19;6834:9;:15;6844:4;6834:15;;;;;;;;;;;;;;;:37;;;;6534:362;6356:540;6924:1;6910:16;;:2;:16;;;6906:425;;7089:5;7073:12;;:21;;;;;;;;;;;6906:425;;;7301:5;7284:9;:13;7294:2;7284:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;6906:425;7361:2;7346:25;;7355:4;7346:25;;;7365:5;7346:25;;;;;;:::i;:::-;;;;;;;;6271:1107;;;:::o;7:99:7:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:118::-;5275:24;5293:5;5275:24;:::i;:::-;5270:3;5263:37;5188:118;;:::o;5312:222::-;5405:4;5443:2;5432:9;5428:18;5420:26;;5456:71;5524:1;5513:9;5509:17;5500:6;5456:71;:::i;:::-;5312:222;;;;:::o;5540:474::-;5608:6;5616;5665:2;5653:9;5644:7;5640:23;5636:32;5633:119;;;5671:79;;:::i;:::-;5633:119;5791:1;5816:53;5861:7;5852:6;5841:9;5837:22;5816:53;:::i;:::-;5806:63;;5762:117;5918:2;5944:53;5989:7;5980:6;5969:9;5965:22;5944:53;:::i;:::-;5934:63;;5889:118;5540:474;;;;;:::o;6020:180::-;6068:77;6065:1;6058:88;6165:4;6162:1;6155:15;6189:4;6186:1;6179:15;6206:320;6250:6;6287:1;6281:4;6277:12;6267:22;;6334:1;6328:4;6324:12;6355:18;6345:81;;6411:4;6403:6;6399:17;6389:27;;6345:81;6473:2;6465:6;6462:14;6442:18;6439:38;6436:84;;6492:18;;:::i;:::-;6436:84;6257:269;6206:320;;;:::o;6532:179::-;6672:31;6668:1;6660:6;6656:14;6649:55;6532:179;:::o;6717:366::-;6859:3;6880:67;6944:2;6939:3;6880:67;:::i;:::-;6873:74;;6956:93;7045:3;6956:93;:::i;:::-;7074:2;7069:3;7065:12;7058:19;;6717:366;;;:::o;7089:419::-;7255:4;7293:2;7282:9;7278:18;7270:26;;7342:9;7336:4;7332:20;7328:1;7317:9;7313:17;7306:47;7370:131;7496:4;7370:131;:::i;:::-;7362:139;;7089:419;;;:::o;7514:180::-;7562:77;7559:1;7552:88;7659:4;7656:1;7649:15;7683:4;7680:1;7673:15;7700:194;7740:4;7760:20;7778:1;7760:20;:::i;:::-;7755:25;;7794:20;7812:1;7794:20;:::i;:::-;7789:25;;7838:1;7835;7831:9;7823:17;;7862:1;7856:4;7853:11;7850:37;;;7867:18;;:::i;:::-;7850:37;7700:194;;;;:::o;7900:191::-;7940:3;7959:20;7977:1;7959:20;:::i;:::-;7954:25;;7993:20;8011:1;7993:20;:::i;:::-;7988:25;;8036:1;8033;8029:9;8022:16;;8057:3;8054:1;8051:10;8048:36;;;8064:18;;:::i;:::-;8048:36;7900:191;;;;:::o;8097:226::-;8237:34;8233:1;8225:6;8221:14;8214:58;8306:9;8301:2;8293:6;8289:15;8282:34;8097:226;:::o;8329:366::-;8471:3;8492:67;8556:2;8551:3;8492:67;:::i;:::-;8485:74;;8568:93;8657:3;8568:93;:::i;:::-;8686:2;8681:3;8677:12;8670:19;;8329:366;;;:::o;8701:419::-;8867:4;8905:2;8894:9;8890:18;8882:26;;8954:9;8948:4;8944:20;8940:1;8929:9;8925:17;8918:47;8982:131;9108:4;8982:131;:::i;:::-;8974:139;;8701:419;;;:::o;9126:177::-;9266:29;9262:1;9254:6;9250:14;9243:53;9126:177;:::o;9309:366::-;9451:3;9472:67;9536:2;9531:3;9472:67;:::i;:::-;9465:74;;9548:93;9637:3;9548:93;:::i;:::-;9666:2;9661:3;9657:12;9650:19;;9309:366;;;:::o;9681:419::-;9847:4;9885:2;9874:9;9870:18;9862:26;;9934:9;9928:4;9924:20;9920:1;9909:9;9905:17;9898:47;9962:131;10088:4;9962:131;:::i;:::-;9954:139;;9681:419;;;:::o;10106:180::-;10154:77;10151:1;10144:88;10251:4;10248:1;10241:15;10275:4;10272:1;10265:15;10292:185;10332:1;10349:20;10367:1;10349:20;:::i;:::-;10344:25;;10383:20;10401:1;10383:20;:::i;:::-;10378:25;;10422:1;10412:35;;10427:18;;:::i;:::-;10412:35;10469:1;10466;10462:9;10457:14;;10292:185;;;;:::o;10483:410::-;10523:7;10546:20;10564:1;10546:20;:::i;:::-;10541:25;;10580:20;10598:1;10580:20;:::i;:::-;10575:25;;10635:1;10632;10628:9;10657:30;10675:11;10657:30;:::i;:::-;10646:41;;10836:1;10827:7;10823:15;10820:1;10817:22;10797:1;10790:9;10770:83;10747:139;;10866:18;;:::i;:::-;10747:139;10531:362;10483:410;;;;:::o;10899:220::-;11039:34;11035:1;11027:6;11023:14;11016:58;11108:3;11103:2;11095:6;11091:15;11084:28;10899:220;:::o;11125:366::-;11267:3;11288:67;11352:2;11347:3;11288:67;:::i;:::-;11281:74;;11364:93;11453:3;11364:93;:::i;:::-;11482:2;11477:3;11473:12;11466:19;;11125:366;;;:::o;11497:419::-;11663:4;11701:2;11690:9;11686:18;11678:26;;11750:9;11744:4;11740:20;11736:1;11725:9;11721:17;11714:47;11778:131;11904:4;11778:131;:::i;:::-;11770:139;;11497:419;;;:::o;11922:176::-;11954:1;11971:20;11989:1;11971:20;:::i;:::-;11966:25;;12005:20;12023:1;12005:20;:::i;:::-;12000:25;;12044:1;12034:35;;12049:18;;:::i;:::-;12034:35;12090:1;12087;12083:9;12078:14;;11922:176;;;;:::o;12104:442::-;12253:4;12291:2;12280:9;12276:18;12268:26;;12304:71;12372:1;12361:9;12357:17;12348:6;12304:71;:::i;:::-;12385:72;12453:2;12442:9;12438:18;12429:6;12385:72;:::i;:::-;12467;12535:2;12524:9;12520:18;12511:6;12467:72;:::i;:::-;12104:442;;;;;;:::o
Swarm Source
ipfs://28aca2f9d370ff95bc560daf8190034f0f2cd6567f2dd3b29bb15ab4f3e4baf0
Loading...
Loading
Loading...
Loading
[ 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.