Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
100,000,000 NCT
Holders
53
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
39,812,501.279701210831608769 NCTValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
NCashToken
Compiler Version
v0.6.6+commit.6c089d02
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-09-30 */ // SPDX-License-Identifier: MIT pragma solidity ^0.6.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 GSN 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 payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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 `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, uint256 amount) external returns (bool); /** * @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 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 * ==== */ function isContract(address account) internal view returns (bool) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @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"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /** * @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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of 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 { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name, string memory symbol) public { _name = name; _symbol = symbol; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view 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 {_setupDecimals} is * called. * * 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 returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, 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}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), 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}; * * Requirements: * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); 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) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(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) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is 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: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, 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 * * - `to` 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 = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(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); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens. * * This is 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 Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } /** * @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 to 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 Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { uint256 decreasedAllowance = allowance(account, _msgSender()).sub(amount, "ERC20: burn amount exceeds allowance"); _approve(account, _msgSender(), decreasedAllowance); _burn(account, amount); } } contract NCashToken is ERC20, ERC20Burnable { using SafeMath for uint256; uint256 public start; mapping (address => uint256) public lockedBalance; constructor() ERC20("NiceCash Token", "NCT") public { _mint(msg.sender, 100000000 * (10 ** uint(decimals()))); start = now; } function _beforeTokenTransfer(address from, address to, uint256 amount) internal override { require(lockedBalance[from] == 0 || amount <= vestedAmount(from)); } function transferWithVesting(address recipient, uint256 amount) public returns (bool) { _transfer(_msgSender(), recipient, amount); lockedBalance[recipient] = lockedBalance[recipient].add(amount); return true; } /** * @dev Calculates the amount that has already vested. */ function vestedAmount(address from) public view returns (uint256) { uint256 balance = balanceOf(address(from)); if (now >= start + 360 days) { return balance; } else if (now >= start + 330 days) { return balance.sub(lockedBalance[from].div(12)); } else if (now >= start + 300 days) { return balance.sub(lockedBalance[from].div(12).mul(2)); } else if (now >= start + 270 days) { return balance.sub(lockedBalance[from].div(12).mul(3)); } else if (now >= start + 240 days) { return balance.sub(lockedBalance[from].div(12).mul(4)); } else if (now >= start + 210 days) { return balance.sub(lockedBalance[from].div(12).mul(5)); } else if (now >= start + 180 days) { return balance.sub(lockedBalance[from].div(12).mul(6)); } else if (now >= start + 150 days) { return balance.sub(lockedBalance[from].div(12).mul(7)); } else if (now >= start + 120 days) { return balance.sub(lockedBalance[from].div(12).mul(8)); } else if (now >= start + 90 days) { return balance.sub(lockedBalance[from].div(12).mul(9)); } else if (now >= start + 60 days) { return balance.sub(lockedBalance[from].div(12).mul(10)); } else if (now >= start + 30 days) { return balance.sub(lockedBalance[from].div(12).mul(11)); } else { return balance.sub(lockedBalance[from]); } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"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":"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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","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":[{"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":[{"internalType":"address","name":"","type":"address"}],"name":"lockedBalance","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":"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":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferWithVesting","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"}],"name":"vestedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600e81526020016d2734b1b2a1b0b9b4102a37b5b2b760911b815250604051806040016040528060038152602001621390d560ea1b81525081600390805190602001906200006d92919062000902565b5080516200008390600490602084019062000902565b50506005805460ff1916601217905550620000c333620000ab6001600160e01b03620000cd16565b60ff16600a0a6305f5e10002620000d760201b60201c565b42600655620009a4565b60055460ff165b90565b6001600160a01b03821662000133576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6200014a600083836001600160e01b03620001ef16565b62000166816002546200023760201b62000ebc1790919060201c565b6002556001600160a01b038216600090815260208181526040909120546200019991839062000ebc62000237821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b038316600090815260076020526040902054158062000228575062000224836001600160e01b036200029b16565b8111155b6200023257600080fd5b505050565b60008282018381101562000292576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b90505b92915050565b600080620002b2836001600160e01b03620006f116565b90506006546301da9c00014210620002cc579050620006ec565b6006546301b30f0001421062000333576001600160a01b0383166000908152600760209081526040909120546200032a91620003159190600c9062000dd86200070c821b17901c565b826200075660201b62000e211790919060201c565b915050620006ec565b60065463018b8200014210620003a1576200032a6200031560026200038d600c60076000896001600160a01b03166001600160a01b03168152602001908152602001600020546200070c60201b62000dd81790919060201c565b620007a060201b62000e631790919060201c565b600654630163f500014210620003fb576200032a6200031560036200038d600c60076000896001600160a01b03166001600160a01b03168152602001908152602001600020546200070c60201b62000dd81790919060201c565b60065463013c680001421062000455576200032a6200031560046200038d600c60076000896001600160a01b03166001600160a01b03168152602001908152602001600020546200070c60201b62000dd81790919060201c565b600654630114db00014210620004af576200032a6200031560056200038d600c60076000896001600160a01b03166001600160a01b03168152602001908152602001600020546200070c60201b62000dd81790919060201c565b60065462ed4e0001421062000508576200032a6200031560066200038d600c60076000896001600160a01b03166001600160a01b03168152602001908152602001600020546200070c60201b62000dd81790919060201c565b60065462c5c10001421062000555576001600160a01b0383166000908152600760208181526040909220546200032a926200031592916200038d91600c9062000dd86200070c821b17901c565b600654629e3400014210620005ae576200032a6200031560086200038d600c60076000896001600160a01b03166001600160a01b03168152602001908152602001600020546200070c60201b62000dd81790919060201c565b6006546276a70001421062000607576200032a6200031560096200038d600c60076000896001600160a01b03166001600160a01b03168152602001908152602001600020546200070c60201b62000dd81790919060201c565b600654624f1a0001421062000660576200032a62000315600a6200038d600c60076000896001600160a01b03166001600160a01b03168152602001908152602001600020546200070c60201b62000dd81790919060201c565b60065462278d00014210620006b9576200032a62000315600b6200038d600c60076000896001600160a01b03166001600160a01b03168152602001908152602001600020546200070c60201b62000dd81790919060201c565b6001600160a01b0383166000908152600760209081526040909120546200032a9183919062000e2162000756821b17901c565b919050565b6001600160a01b031660009081526020819052604090205490565b60006200029283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250620007fe60201b60201c565b60006200029283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250620008a560201b60201c565b600082620007b15750600062000295565b82820282848281620007bf57fe5b0414620002925760405162461bcd60e51b815260040180806020018281038252602181526020018062001c2c6021913960400191505060405180910390fd5b600081836200088e5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156200085257818101518382015260200162000838565b50505050905090810190601f168015620008805780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385816200089b57fe5b0495945050505050565b60008184841115620008fa5760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156200085257818101518382015260200162000838565b505050900390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200094557805160ff191683800117855562000975565b8280016001018555821562000975579182015b828111156200097557825182559160200191906001019062000958565b506200098392915062000987565b5090565b620000d491905b808211156200098357600081556001016200098e565b61127880620009b46000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c80635576b791116100a25780639ae697bf116100715780639ae697bf14610332578063a457c2d714610358578063a9059cbb14610384578063be9a6555146103b0578063dd62ed3e146103b85761010b565b80635576b791146102ac57806370a08231146102d857806379cc6790146102fe57806395d89b411461032a5761010b565b8063313ce567116100de578063313ce5671461021d578063384711cc1461023b578063395093511461026157806342966c681461028d5761010b565b806306fdde0314610110578063095ea7b31461018d57806318160ddd146101cd57806323b872dd146101e7575b600080fd5b6101186103e6565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561015257818101518382015260200161013a565b50505050905090810190601f16801561017f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101b9600480360360408110156101a357600080fd5b506001600160a01b03813516906020013561047c565b604080519115158252519081900360200190f35b6101d561049a565b60408051918252519081900360200190f35b6101b9600480360360608110156101fd57600080fd5b506001600160a01b038135811691602081013590911690604001356104a0565b61022561052d565b6040805160ff9092168252519081900360200190f35b6101d56004803603602081101561025157600080fd5b50356001600160a01b0316610536565b6101b96004803603604081101561027757600080fd5b506001600160a01b038135169060200135610889565b6102aa600480360360208110156102a357600080fd5b50356108dd565b005b6101b9600480360360408110156102c257600080fd5b506001600160a01b0381351690602001356108f1565b6101d5600480360360208110156102ee57600080fd5b50356001600160a01b0316610950565b6102aa6004803603604081101561031457600080fd5b506001600160a01b03813516906020013561096b565b6101186109cb565b6101d56004803603602081101561034857600080fd5b50356001600160a01b0316610a2c565b6101b96004803603604081101561036e57600080fd5b506001600160a01b038135169060200135610a3e565b6101b96004803603604081101561039a57600080fd5b506001600160a01b038135169060200135610aac565b6101d5610ab9565b6101d5600480360360408110156103ce57600080fd5b506001600160a01b0381358116916020013516610abf565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104725780601f1061044757610100808354040283529160200191610472565b820191906000526020600020905b81548152906001019060200180831161045557829003601f168201915b5050505050905090565b6000610490610489610aea565b8484610aee565b5060015b92915050565b60025490565b60006104ad848484610bda565b610523846104b9610aea565b61051e85604051806060016040528060288152602001611168602891396001600160a01b038a166000908152600160205260408120906104f7610aea565b6001600160a01b03168152602081019190915260400160002054919063ffffffff610d4116565b610aee565b5060019392505050565b60055460ff1690565b60008061054283610950565b90506006546301da9c0001421061055a579050610884565b6006546301b30f000142106105ac576001600160a01b0383166000908152600760205260409020546105a49061059790600c63ffffffff610dd816565b829063ffffffff610e2116565b915050610884565b60065463018b82000142106105fc576001600160a01b0383166000908152600760205260409020546105a490610597906002906105f090600c63ffffffff610dd816565b9063ffffffff610e6316565b600654630163f500014210610640576001600160a01b0383166000908152600760205260409020546105a490610597906003906105f090600c63ffffffff610dd816565b60065463013c6800014210610684576001600160a01b0383166000908152600760205260409020546105a490610597906004906105f090600c63ffffffff610dd816565b600654630114db000142106106c8576001600160a01b0383166000908152600760205260409020546105a490610597906005906105f090600c63ffffffff610dd816565b60065462ed4e0001421061070b576001600160a01b0383166000908152600760205260409020546105a490610597906006906105f090600c63ffffffff610dd816565b60065462c5c10001421061074e576001600160a01b0383166000908152600760208190526040909120546105a491610597916105f090600c63ffffffff610dd816565b600654629e3400014210610791576001600160a01b0383166000908152600760205260409020546105a490610597906008906105f090600c63ffffffff610dd816565b6006546276a7000142106107d4576001600160a01b0383166000908152600760205260409020546105a490610597906009906105f090600c63ffffffff610dd816565b600654624f1a00014210610817576001600160a01b0383166000908152600760205260409020546105a49061059790600a906105f090600c63ffffffff610dd816565b60065462278d0001421061085a576001600160a01b0383166000908152600760205260409020546105a49061059790600b906105f090600c63ffffffff610dd816565b6001600160a01b0383166000908152600760205260409020546105a490829063ffffffff610e2116565b919050565b6000610490610896610aea565b8461051e85600160006108a7610aea565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff610ebc16565b6108ee6108e8610aea565b82610f16565b50565b60006109056108fe610aea565b8484610bda565b6001600160a01b03831660009081526007602052604090205461092e908363ffffffff610ebc16565b6001600160a01b03841660009081526007602052604090205550600192915050565b6001600160a01b031660009081526020819052604090205490565b60006109a8826040518060600160405280602481526020016111906024913961099b86610996610aea565b610abf565b919063ffffffff610d4116565b90506109bc836109b6610aea565b83610aee565b6109c68383610f16565b505050565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104725780601f1061044757610100808354040283529160200191610472565b60076020526000908152604090205481565b6000610490610a4b610aea565b8461051e8560405180606001604052806025815260200161121e6025913960016000610a75610aea565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff610d4116565b60006104906108fe610aea565b60065481565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3390565b6001600160a01b038316610b335760405162461bcd60e51b81526004018080602001828103825260248152602001806111fa6024913960400191505060405180910390fd5b6001600160a01b038216610b785760405162461bcd60e51b81526004018080602001828103825260228152602001806110ff6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610c1f5760405162461bcd60e51b81526004018080602001828103825260258152602001806111d56025913960400191505060405180910390fd5b6001600160a01b038216610c645760405162461bcd60e51b81526004018080602001828103825260238152602001806110ba6023913960400191505060405180910390fd5b610c6f83838361101e565b610cb281604051806060016040528060268152602001611121602691396001600160a01b038616600090815260208190526040902054919063ffffffff610d4116565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610ce7908263ffffffff610ebc16565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610dd05760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610d95578181015183820152602001610d7d565b50505050905090810190601f168015610dc25780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000610e1a83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611054565b9392505050565b6000610e1a83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610d41565b600082610e7257506000610494565b82820282848281610e7f57fe5b0414610e1a5760405162461bcd60e51b81526004018080602001828103825260218152602001806111476021913960400191505060405180910390fd5b600082820183811015610e1a576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b038216610f5b5760405162461bcd60e51b81526004018080602001828103825260218152602001806111b46021913960400191505060405180910390fd5b610f678260008361101e565b610faa816040518060600160405280602281526020016110dd602291396001600160a01b038516600090815260208190526040902054919063ffffffff610d4116565b6001600160a01b038316600090815260208190526040902055600254610fd6908263ffffffff610e2116565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6001600160a01b038316600090815260076020526040902054158061104b575061104783610536565b8111155b6109c657600080fd5b600081836110a35760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315610d95578181015183820152602001610d7d565b5060008385816110af57fe5b049594505050505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220056973d429fb58ee26ee9ca03fbf01a7dbfd7e582a45e2633b708c41317c90c364736f6c63430006060033536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061010b5760003560e01c80635576b791116100a25780639ae697bf116100715780639ae697bf14610332578063a457c2d714610358578063a9059cbb14610384578063be9a6555146103b0578063dd62ed3e146103b85761010b565b80635576b791146102ac57806370a08231146102d857806379cc6790146102fe57806395d89b411461032a5761010b565b8063313ce567116100de578063313ce5671461021d578063384711cc1461023b578063395093511461026157806342966c681461028d5761010b565b806306fdde0314610110578063095ea7b31461018d57806318160ddd146101cd57806323b872dd146101e7575b600080fd5b6101186103e6565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561015257818101518382015260200161013a565b50505050905090810190601f16801561017f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101b9600480360360408110156101a357600080fd5b506001600160a01b03813516906020013561047c565b604080519115158252519081900360200190f35b6101d561049a565b60408051918252519081900360200190f35b6101b9600480360360608110156101fd57600080fd5b506001600160a01b038135811691602081013590911690604001356104a0565b61022561052d565b6040805160ff9092168252519081900360200190f35b6101d56004803603602081101561025157600080fd5b50356001600160a01b0316610536565b6101b96004803603604081101561027757600080fd5b506001600160a01b038135169060200135610889565b6102aa600480360360208110156102a357600080fd5b50356108dd565b005b6101b9600480360360408110156102c257600080fd5b506001600160a01b0381351690602001356108f1565b6101d5600480360360208110156102ee57600080fd5b50356001600160a01b0316610950565b6102aa6004803603604081101561031457600080fd5b506001600160a01b03813516906020013561096b565b6101186109cb565b6101d56004803603602081101561034857600080fd5b50356001600160a01b0316610a2c565b6101b96004803603604081101561036e57600080fd5b506001600160a01b038135169060200135610a3e565b6101b96004803603604081101561039a57600080fd5b506001600160a01b038135169060200135610aac565b6101d5610ab9565b6101d5600480360360408110156103ce57600080fd5b506001600160a01b0381358116916020013516610abf565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104725780601f1061044757610100808354040283529160200191610472565b820191906000526020600020905b81548152906001019060200180831161045557829003601f168201915b5050505050905090565b6000610490610489610aea565b8484610aee565b5060015b92915050565b60025490565b60006104ad848484610bda565b610523846104b9610aea565b61051e85604051806060016040528060288152602001611168602891396001600160a01b038a166000908152600160205260408120906104f7610aea565b6001600160a01b03168152602081019190915260400160002054919063ffffffff610d4116565b610aee565b5060019392505050565b60055460ff1690565b60008061054283610950565b90506006546301da9c0001421061055a579050610884565b6006546301b30f000142106105ac576001600160a01b0383166000908152600760205260409020546105a49061059790600c63ffffffff610dd816565b829063ffffffff610e2116565b915050610884565b60065463018b82000142106105fc576001600160a01b0383166000908152600760205260409020546105a490610597906002906105f090600c63ffffffff610dd816565b9063ffffffff610e6316565b600654630163f500014210610640576001600160a01b0383166000908152600760205260409020546105a490610597906003906105f090600c63ffffffff610dd816565b60065463013c6800014210610684576001600160a01b0383166000908152600760205260409020546105a490610597906004906105f090600c63ffffffff610dd816565b600654630114db000142106106c8576001600160a01b0383166000908152600760205260409020546105a490610597906005906105f090600c63ffffffff610dd816565b60065462ed4e0001421061070b576001600160a01b0383166000908152600760205260409020546105a490610597906006906105f090600c63ffffffff610dd816565b60065462c5c10001421061074e576001600160a01b0383166000908152600760208190526040909120546105a491610597916105f090600c63ffffffff610dd816565b600654629e3400014210610791576001600160a01b0383166000908152600760205260409020546105a490610597906008906105f090600c63ffffffff610dd816565b6006546276a7000142106107d4576001600160a01b0383166000908152600760205260409020546105a490610597906009906105f090600c63ffffffff610dd816565b600654624f1a00014210610817576001600160a01b0383166000908152600760205260409020546105a49061059790600a906105f090600c63ffffffff610dd816565b60065462278d0001421061085a576001600160a01b0383166000908152600760205260409020546105a49061059790600b906105f090600c63ffffffff610dd816565b6001600160a01b0383166000908152600760205260409020546105a490829063ffffffff610e2116565b919050565b6000610490610896610aea565b8461051e85600160006108a7610aea565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff610ebc16565b6108ee6108e8610aea565b82610f16565b50565b60006109056108fe610aea565b8484610bda565b6001600160a01b03831660009081526007602052604090205461092e908363ffffffff610ebc16565b6001600160a01b03841660009081526007602052604090205550600192915050565b6001600160a01b031660009081526020819052604090205490565b60006109a8826040518060600160405280602481526020016111906024913961099b86610996610aea565b610abf565b919063ffffffff610d4116565b90506109bc836109b6610aea565b83610aee565b6109c68383610f16565b505050565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104725780601f1061044757610100808354040283529160200191610472565b60076020526000908152604090205481565b6000610490610a4b610aea565b8461051e8560405180606001604052806025815260200161121e6025913960016000610a75610aea565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff610d4116565b60006104906108fe610aea565b60065481565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3390565b6001600160a01b038316610b335760405162461bcd60e51b81526004018080602001828103825260248152602001806111fa6024913960400191505060405180910390fd5b6001600160a01b038216610b785760405162461bcd60e51b81526004018080602001828103825260228152602001806110ff6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316610c1f5760405162461bcd60e51b81526004018080602001828103825260258152602001806111d56025913960400191505060405180910390fd5b6001600160a01b038216610c645760405162461bcd60e51b81526004018080602001828103825260238152602001806110ba6023913960400191505060405180910390fd5b610c6f83838361101e565b610cb281604051806060016040528060268152602001611121602691396001600160a01b038616600090815260208190526040902054919063ffffffff610d4116565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610ce7908263ffffffff610ebc16565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610dd05760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610d95578181015183820152602001610d7d565b50505050905090810190601f168015610dc25780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000610e1a83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611054565b9392505050565b6000610e1a83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610d41565b600082610e7257506000610494565b82820282848281610e7f57fe5b0414610e1a5760405162461bcd60e51b81526004018080602001828103825260218152602001806111476021913960400191505060405180910390fd5b600082820183811015610e1a576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b038216610f5b5760405162461bcd60e51b81526004018080602001828103825260218152602001806111b46021913960400191505060405180910390fd5b610f678260008361101e565b610faa816040518060600160405280602281526020016110dd602291396001600160a01b038516600090815260208190526040902054919063ffffffff610d4116565b6001600160a01b038316600090815260208190526040902055600254610fd6908263ffffffff610e2116565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6001600160a01b038316600090815260076020526040902054158061104b575061104783610536565b8111155b6109c657600080fd5b600081836110a35760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315610d95578181015183820152602001610d7d565b5060008385816110af57fe5b049594505050505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220056973d429fb58ee26ee9ca03fbf01a7dbfd7e582a45e2633b708c41317c90c364736f6c63430006060033
Deployed Bytecode Sourcemap
27188:2396:0:-:0;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;27188:2396:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;17262:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;17262:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19368:169;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;19368:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;18337:100;;;:::i;:::-;;;;;;;;;;;;;;;;20011:321;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;20011:321:0;;;;;;;;;;;;;;;;;:::i;18189:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28024:1557;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;28024:1557:0;-1:-1:-1;;;;;28024:1557:0;;:::i;20741:218::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;20741:218:0;;;;;;;;:::i;26472:91::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;26472:91:0;;:::i;:::-;;27699:243;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;27699:243:0;;;;;;;;:::i;18500:119::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;18500:119:0;-1:-1:-1;;;;;18500:119:0;;:::i;26882:295::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;26882:295:0;;;;;;;;:::i;17464:87::-;;;:::i;27303:49::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;27303:49:0;-1:-1:-1;;;;;27303:49:0;;:::i;21462:269::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;21462:269:0;;;;;;;;:::i;18832:175::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;18832:175:0;;;;;;;;:::i;27274:20::-;;;:::i;19070:151::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;19070:151:0;;;;;;;;;;:::i;17262:83::-;17332:5;17325:12;;;;;;;;-1:-1:-1;;17325:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17299:13;;17325:12;;17332:5;;17325:12;;17332:5;17325:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17262:83;:::o;19368:169::-;19451:4;19468:39;19477:12;:10;:12::i;:::-;19491:7;19500:6;19468:8;:39::i;:::-;-1:-1:-1;19525:4:0;19368:169;;;;;:::o;18337:100::-;18417:12;;18337:100;:::o;20011:321::-;20117:4;20134:36;20144:6;20152:9;20163:6;20134:9;:36::i;:::-;20181:121;20190:6;20198:12;:10;:12::i;:::-;20212:89;20250:6;20212:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20212:19:0;;;;;;:11;:19;;;;;;20232:12;:10;:12::i;:::-;-1:-1:-1;;;;;20212:33:0;;;;;;;;;;;;-1:-1:-1;20212:33:0;;;:89;;:37;:89;:::i;:::-;20181:8;:121::i;:::-;-1:-1:-1;20320:4:0;20011:321;;;;;:::o;18189:83::-;18255:9;;;;18189:83;:::o;28024:1557::-;28081:7;28101:15;28119:24;28137:4;28119:9;:24::i;:::-;28101:42;;28175:5;;28183:8;28175:16;28168:3;:23;28164:1410;;28215:7;-1:-1:-1;28208:14:0;;28164:1410;28251:5;;28259:8;28251:16;28244:3;:23;28240:1334;;-1:-1:-1;;;;;28303:19:0;;;;;;:13;:19;;;;;;28291:40;;28303:27;;28327:2;28303:27;:23;:27;:::i;:::-;28291:7;;:40;:11;:40;:::i;:::-;28284:47;;;;;28240:1334;28360:5;;28368:8;28360:16;28353:3;:23;28349:1225;;-1:-1:-1;;;;;28412:19:0;;;;;;:13;:19;;;;;;28400:47;;28412:34;;28444:1;;28412:27;;28436:2;28412:27;:23;:27;:::i;:::-;:31;:34;:31;:34;:::i;28349:1225::-;28476:5;;28484:8;28476:16;28469:3;:23;28465:1109;;-1:-1:-1;;;;;28528:19:0;;;;;;:13;:19;;;;;;28516:47;;28528:34;;28560:1;;28528:27;;28552:2;28528:27;:23;:27;:::i;28465:1109::-;28592:5;;28600:8;28592:16;28585:3;:23;28581:993;;-1:-1:-1;;;;;28644:19:0;;;;;;:13;:19;;;;;;28632:47;;28644:34;;28676:1;;28644:27;;28668:2;28644:27;:23;:27;:::i;28581:993::-;28708:5;;28716:8;28708:16;28701:3;:23;28697:877;;-1:-1:-1;;;;;28760:19:0;;;;;;:13;:19;;;;;;28748:47;;28760:34;;28792:1;;28760:27;;28784:2;28760:27;:23;:27;:::i;28697:877::-;28824:5;;28832:8;28824:16;28817:3;:23;28813:761;;-1:-1:-1;;;;;28876:19:0;;;;;;:13;:19;;;;;;28864:47;;28876:34;;28908:1;;28876:27;;28900:2;28876:27;:23;:27;:::i;28813:761::-;28940:5;;28948:8;28940:16;28933:3;:23;28929:645;;-1:-1:-1;;;;;28992:19:0;;;;;;29024:1;28992:19;;;;;;;;;28980:47;;28992:34;;:27;;29016:2;28992:27;:23;:27;:::i;28929:645::-;29056:5;;29064:8;29056:16;29049:3;:23;29045:529;;-1:-1:-1;;;;;29108:19:0;;;;;;:13;:19;;;;;;29096:47;;29108:34;;29140:1;;29108:27;;29132:2;29108:27;:23;:27;:::i;29045:529::-;29172:5;;29180:7;29172:15;29165:3;:22;29161:413;;-1:-1:-1;;;;;29223:19:0;;;;;;:13;:19;;;;;;29211:47;;29223:34;;29255:1;;29223:27;;29247:2;29223:27;:23;:27;:::i;29161:413::-;29287:5;;29295:7;29287:15;29280:3;:22;29276:298;;-1:-1:-1;;;;;29338:19:0;;;;;;:13;:19;;;;;;29326:48;;29338:35;;29370:2;;29338:27;;29362:2;29338:27;:23;:27;:::i;29276:298::-;29403:5;;29411:7;29403:15;29396:3;:22;29392:182;;-1:-1:-1;;;;;29454:19:0;;;;;;:13;:19;;;;;;29442:48;;29454:35;;29486:2;;29454:27;;29478:2;29454:27;:23;:27;:::i;29392:182::-;-1:-1:-1;;;;;29542:19:0;;;;;;:13;:19;;;;;;29530:32;;:7;;:32;:11;:32;:::i;28024:1557::-;;;;:::o;20741:218::-;20829:4;20846:83;20855:12;:10;:12::i;:::-;20869:7;20878:50;20917:10;20878:11;:25;20890:12;:10;:12::i;:::-;-1:-1:-1;;;;;20878:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;20878:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;26472:91::-;26528:27;26534:12;:10;:12::i;:::-;26548:6;26528:5;:27::i;:::-;26472:91;:::o;27699:243::-;27779:4;27796:42;27806:12;:10;:12::i;:::-;27820:9;27831:6;27796:9;:42::i;:::-;-1:-1:-1;;;;;27876:24:0;;;;;;:13;:24;;;;;;:36;;27905:6;27876:36;:28;:36;:::i;:::-;-1:-1:-1;;;;;27849:24:0;;;;;;:13;:24;;;;;:63;-1:-1:-1;27930:4:0;27699:243;;;;:::o;18500:119::-;-1:-1:-1;;;;;18593:18:0;18566:7;18593:18;;;;;;;;;;;;18500:119::o;26882:295::-;26959:26;26988:84;27025:6;26988:84;;;;;;;;;;;;;;;;;:32;26998:7;27007:12;:10;:12::i;:::-;26988:9;:32::i;:::-;:36;:84;;:36;:84;:::i;:::-;26959:113;;27085:51;27094:7;27103:12;:10;:12::i;:::-;27117:18;27085:8;:51::i;:::-;27147:22;27153:7;27162:6;27147:5;:22::i;:::-;26882:295;;;:::o;17464:87::-;17536:7;17529:14;;;;;;;;-1:-1:-1;;17529:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17503:13;;17529:14;;17536:7;;17529:14;;17536:7;17529:14;;;;;;;;;;;;;;;;;;;;;;;;27303:49;;;;;;;;;;;;;:::o;21462:269::-;21555:4;21572:129;21581:12;:10;:12::i;:::-;21595:7;21604:96;21643:15;21604:96;;;;;;;;;;;;;;;;;:11;:25;21616:12;:10;:12::i;:::-;-1:-1:-1;;;;;21604:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;21604:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;18832:175::-;18918:4;18935:42;18945:12;:10;:12::i;27274:20::-;;;;:::o;19070:151::-;-1:-1:-1;;;;;19186:18:0;;;19159:7;19186:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;19070:151::o;605:106::-;693:10;605:106;:::o;24609:346::-;-1:-1:-1;;;;;24711:19:0;;24703:68;;;;-1:-1:-1;;;24703:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24790:21:0;;24782:68;;;;-1:-1:-1;;;24782:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24863:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;24915:32;;;;;;;;;;;;;;;;;24609:346;;;:::o;22221:539::-;-1:-1:-1;;;;;22327:20:0;;22319:70;;;;-1:-1:-1;;;22319:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22408:23:0;;22400:71;;;;-1:-1:-1;;;22400:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22484:47;22505:6;22513:9;22524:6;22484:20;:47::i;:::-;22564:71;22586:6;22564:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22564:17:0;;:9;:17;;;;;;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;22544:17:0;;;:9;:17;;;;;;;;;;;:91;;;;22669:20;;;;;;;:32;;22694:6;22669:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;22646:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;22717:35;;;;;;;22646:20;;22717:35;;;;;;;;;;;;;22221:539;;;:::o;2708:192::-;2794:7;2830:12;2822:6;;;;2814:29;;;;-1:-1:-1;;;2814:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;2814:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;2866:5:0;;;2708:192::o;4106:132::-;4164:7;4191:39;4195:1;4198;4191:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;4184:46;4106:132;-1:-1:-1;;;4106:132:0:o;2269:136::-;2327:7;2354:43;2358:1;2361;2354:43;;;;;;;;;;;;;;;;;:3;:43::i;3159:471::-;3217:7;3462:6;3458:47;;-1:-1:-1;3492:1:0;3485:8;;3458:47;3529:5;;;3533:1;3529;:5;:1;3553:5;;;;;:10;3545:56;;;;-1:-1:-1;;;3545:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1805:181;1863:7;1895:5;;;1919:6;;;;1911:46;;;;;-1:-1:-1;;;1911:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;23751:418;-1:-1:-1;;;;;23835:21:0;;23827:67;;;;-1:-1:-1;;;23827:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23907:49;23928:7;23945:1;23949:6;23907:20;:49::i;:::-;23990:68;24013:6;23990:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23990:18:0;;:9;:18;;;;;;;;;;;;:68;;:22;:68;:::i;:::-;-1:-1:-1;;;;;23969:18:0;;:9;:18;;;;;;;;;;:89;24084:12;;:24;;24101:6;24084:24;:16;:24;:::i;:::-;24069:12;:39;24124:37;;;;;;;;24150:1;;-1:-1:-1;;;;;24124:37:0;;;;;;;;;;;;23751:418;;:::o;27517:174::-;-1:-1:-1;;;;;27626:19:0;;;;;;:13;:19;;;;;;:24;;:56;;;27664:18;27677:4;27664:12;:18::i;:::-;27654:6;:28;;27626:56;27618:65;;12:1:-1;9;2:12;4734:278:0;4820:7;4855:12;4848:5;4840:28;;;;-1:-1:-1;;;4840:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;4840:28:0;;4879:9;4895:1;4891;:5;;;;;;;4734:278;-1:-1:-1;;;;;4734:278:0:o
Swarm Source
ipfs://056973d429fb58ee26ee9ca03fbf01a7dbfd7e582a45e2633b708c41317c90c3
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.