Overview
Max Total Supply
199,470,799.811611394912191215 TRY
Holders
22,165 (0.00%)
Market
Price
$0.00 @ 0.000028 POL (-92.77%)
Onchain Market Cap
$4,097.13
Circulating Supply Market Cap
$3,465.22
Other Info
Token Contract (WITH 18 Decimals)
Balance
110 TRYValue
$0.00 ( ~0 POL) [0.0001%]Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
TRYToken
Compiler Version
v0.7.6+commit.7338295f
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
pragma solidity ^0.7.6; pragma experimental ABIEncoderV2; struct VestingWallet { address wallet; uint256 totalAmount; uint256 dayAmount; uint256 startDay; uint256 afterDays; uint256 firstMonthAmount; uint256 initialDelay; } /** * dailyRate: the daily amount of tokens to give access to, * this is a percentage * 1000000000000000000 * afterDays: vesting cliff, dont allow any withdrawal before these days expired * firstMonthDailyUnlock: same as dailyRate but for the first 30 days, which are unlocked all at the same time **/ struct VestingType { uint256 dailyRate; uint256 afterDays; uint256 firstMonthDailyUnlock; uint256 initialDelay; } import "@openzeppelin/contracts/token/ERC20/ERC20Burnable.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/math/SafeMath.sol"; contract TRYToken is Ownable, ERC20Burnable { using SafeMath for uint256; mapping (address => VestingWallet[]) public vestingWallets; VestingType[] public vestingTypes; uint256 public constant PRECISION = 1e18; uint256 public constant ONE_HUNDRED_PERCENT = PRECISION * 100; /** * Setup the initial supply and types of vesting schemas **/ constructor() ERC20("TryHards", "TRY") { // 0 (seed): 360 days, 5.00% first month, 6 hours delayed vestingTypes.push(VestingType(287878787878787879, 0 days, 166666666666666667, 21600)); // 1 (strategic): 360 days, 10.0% first month, 4 hours delayed vestingTypes.push(VestingType(272727272727272727, 0 days, 333333333333333333, 14400)); // 2 (private): 270 days, 10.0% first month, 2 hours delayed vestingTypes.push(VestingType(375000000000000000, 0 days, 333333333333333333, 7200)); // 3 (team): 720 days, default% first month, 0 hours delayed vestingTypes.push(VestingType(138888888888888896, 360 days, 138888888888888896, 0)); // 4 (airdrop): 0 days, default% first month, 0 hours delayed vestingTypes.push(VestingType(100000000000000000000, 30 days, 100000000000000000000, 0)); // 5 (advisors): 540 days, default% first month, 0 hours delayed vestingTypes.push(VestingType(185185185185185184, 90 days, 185185185185185184, 0)); // 6 (play2earn): 1440 days, 10.0% first month, 0 hours delayed vestingTypes.push(VestingType(63829787234042553, 30 days, 333333333333333333, 0)); // 7 (staking): 1080 days, 10.0% first month, 0 hours delayed vestingTypes.push(VestingType(85714285714285714, 30 days, 333333333333333333, 0)); // 8 (treasury): 720 days, default% first month, 0 hours delayed vestingTypes.push(VestingType(138888888888888896, 90 days, 138888888888888896, 0)); // 9 (development): 720 days, default% first month, 0 hours delayed vestingTypes.push(VestingType(138888888888888896, 360 days, 138888888888888896, 0)); // Release before token start, IDO _mint(address(0x81E218CAA01065fc094e20f4515b3e03b5f8460D), 10000000e18); // Release before token start, Liquidity _mint(address(0xBdB8F09191BaEc8C03E1be40c9E63094ECEaB823), 3000000e18); // Release before token start, Advisor #2 _mint(address(0xcB1dcEc4A437460cB68BAE8e0Be5A0842C27D722), 3000000e18); } // Vested tokens wont be available before the listing time function getListingTime() public pure returns (uint256) { return 1637769600; // 2021/11/24 16:00 UTC //return 1640995200; // 2022/01/01 midnight, used for test runs } function getMaxTotalSupply() public pure returns (uint256) { return PRECISION * 200000000; // 200 million tokens with 18 decimals } function mulDiv(uint256 x, uint256 y, uint256 z) private pure returns (uint256) { return x.mul(y).div(z); } function addAllocations(address[] memory addresses, uint256[] memory totalAmounts, uint256 vestingTypeIndex) external onlyOwner returns (bool) { require(addresses.length == totalAmounts.length, "Address and totalAmounts length must be same"); require(vestingTypeIndex < vestingTypes.length, "Vesting type isnt found"); VestingType memory vestingType = vestingTypes[vestingTypeIndex]; uint256 addressesLength = addresses.length; for(uint256 i = 0; i < addressesLength; i++) { address _address = addresses[i]; uint256 totalAmount = totalAmounts[i]; // We add 1 to round up, this prevents small amounts from never vesting uint256 dayAmount = mulDiv(totalAmounts[i], vestingType.dailyRate, ONE_HUNDRED_PERCENT); uint256 afterDay = vestingType.afterDays; uint256 initialDelay = vestingType.initialDelay; uint256 firstMonthAmount = mulDiv(totalAmounts[i], vestingType.firstMonthDailyUnlock, ONE_HUNDRED_PERCENT).mul(30); addVestingWallet(_address, totalAmount, dayAmount, afterDay, firstMonthAmount, initialDelay); } return true; } function _mint(address account, uint256 amount) internal override { uint256 totalSupply = super.totalSupply(); require(getMaxTotalSupply() >= totalSupply.add(amount), "Maximum supply exceeded!"); super._mint(account, amount); } function addVestingWallet(address wallet, uint256 totalAmount, uint256 dayAmount, uint256 afterDays, uint256 firstMonthAmount, uint256 initialDelay) internal { uint256 releaseTime = getListingTime(); // Create vesting wallets VestingWallet memory vestingWallet = VestingWallet( wallet, totalAmount, dayAmount, releaseTime.add(afterDays), afterDays, firstMonthAmount, initialDelay ); vestingWallets[wallet].push(vestingWallet); _mint(wallet, totalAmount); } function getTimestamp() external view returns (uint256) { return block.timestamp; } /** * Returns the amount of days passed with vesting */ function getDays(uint256 afterDays, uint256 initialDelay) public view returns (uint256) { uint256 releaseTime = getListingTime().add(initialDelay); uint256 time = releaseTime.add(afterDays); if (block.timestamp < time) { return 0; } uint256 diff = block.timestamp.sub(time); uint256 ds = diff.div(1 days).add(1); return ds; } function isStarted(uint256 startDay) public view returns (bool) { uint256 releaseTime = getListingTime(); if (block.timestamp < releaseTime || block.timestamp < startDay) { return false; } return true; } // Returns the amount of tokens unlocked by vesting so far function getUnlockedVestingAmount(address sender) public view returns (uint256) { if (!isStarted(0)) { return 0; } uint256 dailyTransferableAmount = 0; for (uint256 i=0; i<vestingWallets[sender].length; i++) { if (vestingWallets[sender][i].totalAmount == 0) { continue; } uint256 trueDays = getDays(vestingWallets[sender][i].afterDays, vestingWallets[sender][i].initialDelay); uint256 dailyTransferableAmountCurrent = 0; // Unlock the first month right away on the first day of vesting; // But only start the real vesting after the first month (0, 30, 30, .., 31) if (trueDays > 0 && trueDays < 30) { trueDays = 30; dailyTransferableAmountCurrent = vestingWallets[sender][i].firstMonthAmount; } if (trueDays >= 30) { dailyTransferableAmountCurrent = vestingWallets[sender][i].firstMonthAmount.add(vestingWallets[sender][i].dayAmount.mul(trueDays.sub(30))); } if (dailyTransferableAmountCurrent > vestingWallets[sender][i].totalAmount) { dailyTransferableAmountCurrent = vestingWallets[sender][i].totalAmount; } dailyTransferableAmount = dailyTransferableAmount.add(dailyTransferableAmountCurrent); } return dailyTransferableAmount; } function getTotalVestedAmount(address sender) public view returns (uint256) { uint256 totalAmount = 0; for (uint256 i=0; i<vestingWallets[sender].length; i++) { totalAmount = totalAmount.add(vestingWallets[sender][i].totalAmount); } return totalAmount; } // Returns the amount of vesting tokens still locked function getRestAmount(address sender) public view returns (uint256) { uint256 transferableAmount = getUnlockedVestingAmount(sender); uint256 totalAmount = getTotalVestedAmount(sender); uint256 restAmount = totalAmount.sub(transferableAmount); return restAmount; } // Transfer control function canTransfer(address sender, uint256 amount) public view returns (bool) { // Treat as a normal coin if this is not a vested wallet if (vestingWallets[sender].length == 0) { return true; } uint256 balance = balanceOf(sender); uint256 restAmount = getRestAmount(sender); uint256 totalAmount = getTotalVestedAmount(sender); // Account for sending received tokens outside of the vesting schedule if (balance > totalAmount && balance.sub(totalAmount) >= amount) { return true; } // Don't allow vesting if you are below allowance if (balance.sub(amount) < restAmount) { return false; } return true; } // @override function _beforeTokenTransfer(address sender, address recipient, uint256 amount) internal virtual override(ERC20) { // Reject any transfers that are not allowed require(canTransfer(sender, amount), "Unable to transfer, not unlocked yet."); super._beforeTokenTransfer(sender, recipient, amount); } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; import "../../utils/Context.sol"; import "./ERC20.sol"; /** * @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 { using SafeMath for uint256; /** * @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); } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; import "../../utils/Context.sol"; import "./IERC20.sol"; import "../../math/SafeMath.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.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; 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 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 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 virtual returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `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 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 virtual { _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 { } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; import "../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. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @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, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b > a) return (false, 0); return (true, a - b); } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, 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 (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a / b); } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a % b); } /** * @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) { require(b <= a, "SafeMath: subtraction overflow"); return a - b; } /** * @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) { 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, reverting 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) { require(b > 0, "SafeMath: division by zero"); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting 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) { require(b > 0, "SafeMath: modulo by zero"); return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * 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); return a - b; } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryDiv}. * * 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); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * 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; } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with 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; } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @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); }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
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":"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":"ONE_HUNDRED_PERCENT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRECISION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"totalAmounts","type":"uint256[]"},{"internalType":"uint256","name":"vestingTypeIndex","type":"uint256"}],"name":"addAllocations","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"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":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"canTransfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"uint256","name":"afterDays","type":"uint256"},{"internalType":"uint256","name":"initialDelay","type":"uint256"}],"name":"getDays","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getListingTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"getMaxTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"getRestAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"getTotalVestedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"getUnlockedVestingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"startDay","type":"uint256"}],"name":"isStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"vestingTypes","outputs":[{"internalType":"uint256","name":"dailyRate","type":"uint256"},{"internalType":"uint256","name":"afterDays","type":"uint256"},{"internalType":"uint256","name":"firstMonthDailyUnlock","type":"uint256"},{"internalType":"uint256","name":"initialDelay","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"vestingWallets","outputs":[{"internalType":"address","name":"wallet","type":"address"},{"internalType":"uint256","name":"totalAmount","type":"uint256"},{"internalType":"uint256","name":"dayAmount","type":"uint256"},{"internalType":"uint256","name":"startDay","type":"uint256"},{"internalType":"uint256","name":"afterDays","type":"uint256"},{"internalType":"uint256","name":"firstMonthAmount","type":"uint256"},{"internalType":"uint256","name":"initialDelay","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405180604001604052806008815260200167547279486172647360c01b8152506040518060400160405280600381526020016254525960e81b815250600062000061620006e660201b60201c565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3508151620000c090600490602085019062000fd1565b508051620000d690600590602084019062000fd1565b506012600660006101000a81548160ff021916908360ff1602179055505050600860405180608001604052806703fec03b79e29b278152602001600081526020016702501e734690aaab81526020016154608152509080600181540180825580915050600190039060005260206000209060040201600090919091909150600082015181600001556020820151816001015560408201518160020155606082015181600301555050600860405180608001604052806703c8ec0273785d178152602001600081526020016704a03ce68d215555815260200161384081525090806001815401808255809150506001900390600052602060002090600402016000909190919091506000820151816000015560208201518160010155604082015181600201556060820151816003015550506008604051806080016040528067053444835ec580008152602001600081526020016704a03ce68d2155558152602001611c208152509080600181540180825580915050600190039060005260206000209060040201600090919091909150600082015181600001556020820151816001015560408201518160020155606082015181600301555050600860405180608001604052806701ed6eb565788e4081526020016301da9c0081526020016701ed6eb565788e408152602001600081525090806001815401808255809150506001900390600052602060002090600402016000909190919091506000820151816000015560208201518160010155604082015181600201556060820151816003015550506008604051806080016040528068056bc75e2d63100000815260200162278d00815260200168056bc75e2d6310000081526020016000815250908060018154018082558091505060019003906000526020600020906004020160009091909190915060008201518160000155602082015181600101556040820151816002015560608201518160030155505060086040518060800160405280670291e8f1dca0bda081526020016276a7008152602001670291e8f1dca0bda08152602001600081525090806001815401808255809150506001900390600052602060002090600402016000909190919091506000820151816000015560208201518160010155604082015181600201556060820151816003015550506008604051806080016040528066e2c4da722c82b9815260200162278d0081526020016704a03ce68d2155558152602001600081525090806001815401808255809150506001900390600052602060002090600402016000909190919091506000820151816000015560208201518160010155604082015181600201556060820151816003015550506008604051806080016040528067013084b0502d2492815260200162278d0081526020016704a03ce68d215555815260200160008152509080600181540180825580915050600190039060005260206000209060040201600090919091909150600082015181600001556020820151816001015560408201518160020155606082015181600301555050600860405180608001604052806701ed6eb565788e4081526020016276a70081526020016701ed6eb565788e40815260200160008152509080600181540180825580915050600190039060005260206000209060040201600090919091909150600082015181600001556020820151816001015560408201518160020155606082015181600301555050600860405180608001604052806701ed6eb565788e4081526020016301da9c0081526020016701ed6eb565788e408152602001600081525090806001815401808255809150506001900390600052602060002090600402016000909190919091506000820151816000015560208201518160010155604082015181600201556060820151816003015550506200068a7381e218caa01065fc094e20f4515b3e03b5f8460d6a084595161401484a000000620006ea60201b60201c565b620006b573bdb8f09191baec8c03e1be40c9e63094eceab8236a027b46536c66c8e3000000620006ea565b620006e073cb1dcec4a437460cb68bae8e0be5a0842c27d7226a027b46536c66c8e3000000620006ea565b620010f9565b3390565b6000620007016200076d60201b620004c31760201c565b90506200071d82826200077360201b6200104d1790919060201c565b62000727620007d7565b1015620007515760405162461bcd60e51b81526004016200074890620010c2565b60405180910390fd5b620007688383620007e660201b620010ae1760201c565b505050565b60035490565b600082820183811015620007ce576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b90505b92915050565b6aa56fa5b99019a5c800000090565b6001600160a01b03821662000842576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6200085060008383620008f9565b6200086c816003546200077360201b6200104d1790919060201c565b6003556001600160a01b038216600090815260016020908152604090912054620008a19183906200104d62000773821b17901c565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6200090583826200093c565b620009245760405162461bcd60e51b815260040162000748906200107d565b620007688383836200076860201b620009ed1760201c565b6001600160a01b0382166000908152600760205260408120546200096357506001620007d1565b6000620009708462000a07565b905060006200097f8562000a26565b905060006200098e8662000a6a565b90508083118015620009b9575084620009b6828562000af460201b620011a01790919060201c565b10155b15620009cc5760019350505050620007d1565b81620009e7868562000af460201b620011a01790919060201c565b1015620009fb5760009350505050620007d1565b50600195945050505050565b6001600160a01b0381166000908152600160205260409020545b919050565b60008062000a348362000b52565b9050600062000a438462000a6a565b9050600062000a61838362000af460201b620011a01790919060201c565b95945050505050565b600080805b6001600160a01b03841660009081526007602052604090205481101562000aed576001600160a01b0384166000908152600760205260409020805462000ae291908390811062000abb57fe5b906000526020600020906007020160010154836200077360201b6200104d1790919060201c565b915060010162000a6f565b5092915050565b60008282111562000b4c576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b600062000b5f8162000e22565b62000b6d5750600062000a21565b6000805b6001600160a01b03841660009081526007602052604090205481101562000aed576001600160a01b038416600090815260076020526040902080548290811062000bb757fe5b9060005260206000209060070201600101546000141562000bd85762000e19565b6001600160a01b0384166000908152600760205260408120805462000c6491908490811062000c0357fe5b90600052602060002090600702016004015460076000886001600160a01b03166001600160a01b03168152602001908152602001600020848154811062000c4657fe5b90600052602060002090600702016006015462000e5960201b60201c565b90506000808211801562000c785750601e82105b1562000cbc576001600160a01b03861660009081526007602052604090208054601e93508490811062000ca757fe5b90600052602060002090600702016005015490505b601e821062000d815762000d7e62000d3362000ce8601e8562000af460201b620011a01790919060201c565b6001600160a01b038916600090815260076020526040902080548790811062000d0d57fe5b90600052602060002090600702016002015462000f0260201b620011fd1790919060201c565b6001600160a01b038816600090815260076020526040902080548690811062000d5857fe5b9060005260206000209060070201600501546200077360201b6200104d1790919060201c565b90505b6001600160a01b038616600090815260076020526040902080548490811062000da657fe5b90600052602060002090600702016001015481111562000dfa576001600160a01b038616600090815260076020526040902080548490811062000de557fe5b90600052602060002090600702016001015490505b62000e1481856200077360201b6200104d1790919060201c565b935050505b60010162000b71565b60008062000e2f62000f60565b90508042108062000e3f57508242105b1562000e5057600091505062000a21565b50600192915050565b60008062000e7f8362000e6b62000f60565b6200077360201b6200104d1790919060201c565b9050600062000e9d85836200077360201b6200104d1790919060201c565b90508042101562000eb457600092505050620007d1565b600062000ed0824262000af460201b620011a01790919060201c565b9050600062000ef7600162000e6b620151808562000f6860201b620012561790919060201c565b979650505050505050565b60008262000f1357506000620007d1565b8282028284828162000f2157fe5b0414620007ce5760405162461bcd60e51b815260040180806020018281038252602181526020018062002f6c6021913960400191505060405180910390fd5b63619e618090565b600080821162000fbf576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b81838162000fc957fe5b049392505050565b828054600181600116156101000203166002900490600052602060002090601f01602090048101928262001009576000855562001054565b82601f106200102457805160ff191683800117855562001054565b8280016001018555821562001054579182015b828111156200105457825182559160200191906001019062001037565b506200106292915062001066565b5090565b5b8082111562001062576000815560010162001067565b60208082526025908201527f556e61626c6520746f207472616e736665722c206e6f7420756e6c6f636b6564604082015264103cb2ba1760d91b606082015260800190565b60208082526018908201527f4d6178696d756d20737570706c79206578636565646564210000000000000000604082015260600190565b611e6380620011096000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c806395d89b4111610104578063bb0099d5116100a2578063dd0081c711610071578063dd0081c7146103be578063dd62ed3e146103c6578063e66fa239146103d9578063f2fde38b146103fc576101da565b8063bb0099d51461037d578063c632395e14610385578063d3715c7614610398578063d45e09c1146103ab576101da565b8063a9059cbb116100de578063a9059cbb1461033c578063aaf5eb681461034f578063abd225e114610357578063b7a241601461036a576101da565b806395d89b411461030e578063a457c2d714610316578063a851c2e514610329576101da565b806342966c681161017c578063715018a61161014b578063715018a6146102cb578063786de14f146102d357806379cc6790146102e65780638da5cb5b146102f9576101da565b806342966c68146102755780635db30bb11461028a578063605968161461029257806370a08231146102b8576101da565b8063188ec356116101b8578063188ec3561461023257806323b872dd1461023a578063313ce5671461024d5780633950935114610262576101da565b806306fdde03146101df578063095ea7b3146101fd57806318160ddd1461021d575b600080fd5b6101e761040f565b6040516101f49190611ab8565b60405180910390f35b61021061020b366004611935565b6104a5565b6040516101f49190611aad565b6102256104c3565b6040516101f49190611c0a565b6102256104c9565b6102106102483660046118fa565b6104cd565b610255610554565b6040516101f49190611c2e565b610210610270366004611935565b61055d565b610288610283366004611a25565b6105ab565b005b6102256105bf565b6102a56102a0366004611935565b6105ce565b6040516101f49796959493929190611a72565b6102256102c63660046118ae565b610632565b610288610651565b6102256102e13660046118ae565b61070f565b6102886102f4366004611935565b61099d565b6103016109f2565b6040516101f49190611a5e565b6101e7610a01565b610210610324366004611935565b610a62565b61021061033736600461195e565b610aca565b61021061034a366004611935565b610cca565b610225610cde565b610210610365366004611a25565b610cea565b610225610378366004611a3d565b610d13565b610225610d78565b6102256103933660046118ae565b610d80565b6102256103a63660046118ae565b610db0565b6102106103b9366004611935565b610e29565b610225610ec7565b6102256103d43660046118c8565b610ed4565b6103ec6103e7366004611a25565b610eff565b6040516101f49493929190611c13565b61028861040a3660046118ae565b610f39565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561049b5780601f106104705761010080835404028352916020019161049b565b820191906000526020600020905b81548152906001019060200180831161047e57829003601f168201915b5050505050905090565b60006104b96104b26112bd565b84846112c1565b5060015b92915050565b60035490565b4290565b60006104da8484846113ad565b61054a846104e66112bd565b61054585604051806060016040528060288152602001611d53602891396001600160a01b038a166000908152600260205260408120906105246112bd565b6001600160a01b03168152602081019190915260400160002054919061150a565b6112c1565b5060019392505050565b60065460ff1690565b60006104b961056a6112bd565b84610545856002600061057b6112bd565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549061104d565b6105bc6105b66112bd565b826115a1565b50565b6aa56fa5b99019a5c800000090565b600760205281600052604060002081815481106105ea57600080fd5b600091825260209091206007909102018054600182015460028301546003840154600485015460058601546006909601546001600160a01b0390951697509295509093909287565b6001600160a01b0381166000908152600160205260409020545b919050565b6106596112bd565b6001600160a01b031661066a6109f2565b6001600160a01b0316146106c5576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b600061071b6000610cea565b6107275750600061064c565b6000805b6001600160a01b038416600090815260076020526040902054811015610996576001600160a01b038416600090815260076020526040902080548290811061076f57fe5b9060005260206000209060070201600101546000141561078e5761098e565b6001600160a01b038416600090815260076020526040812080546108109190849081106107b757fe5b90600052602060002090600702016004015460076000886001600160a01b03166001600160a01b0316815260200190815260200160002084815481106107f957fe5b906000526020600020906007020160060154610d13565b9050600080821180156108235750601e82105b15610865576001600160a01b03861660009081526007602052604090208054601e93508490811061085057fe5b90600052602060002090600702016005015490505b601e8210610909576109066108c261087e84601e6111a0565b6001600160a01b03891660009081526007602052604090208054879081106108a257fe5b9060005260206000209060070201600201546111fd90919063ffffffff16565b6001600160a01b03881660009081526007602052604090208054869081106108e657fe5b90600052602060002090600702016005015461104d90919063ffffffff16565b90505b6001600160a01b038616600090815260076020526040902080548490811061092d57fe5b90600052602060002090600702016001015481111561097f576001600160a01b038616600090815260076020526040902080548490811061096a57fe5b90600052602060002090600702016001015490505b610989848261104d565b935050505b60010161072b565b5092915050565b60006109cf82604051806060016040528060248152602001611d7b602491396109c8866103d46112bd565b919061150a565b90506109e3836109dd6112bd565b836112c1565b6109ed83836115a1565b505050565b6000546001600160a01b031690565b60058054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561049b5780601f106104705761010080835404028352916020019161049b565b60006104b9610a6f6112bd565b8461054585604051806060016040528060258152602001611e096025913960026000610a996112bd565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919061150a565b6000610ad46112bd565b6001600160a01b0316610ae56109f2565b6001600160a01b031614610b40576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b8251845114610b6a5760405162461bcd60e51b8152600401610b6190611bbe565b60405180910390fd5b6008548210610b8b5760405162461bcd60e51b8152600401610b6190611b0b565b600060088381548110610b9a57fe5b9060005260206000209060040201604051806080016040529081600082015481526020016001820154815260200160028201548152602001600382015481525050905060008551905060005b81811015610cbd576000878281518110610bfc57fe5b602002602001015190506000878381518110610c1457fe5b602002602001015190506000610c4d898581518110610c2f57fe5b60200260200101518760000151670de0b6b3a764000060640261169d565b90506000866020015190506000876060015190506000610c9b601e610c958e8a81518110610c7757fe5b60200260200101518c60400151670de0b6b3a764000060640261169d565b906111fd565b9050610cab8686868685876116bb565b505060019094019350610be692505050565b5060019695505050505050565b60006104b9610cd76112bd565b84846113ad565b670de0b6b3a764000081565b600080610cf5610d78565b905080421080610d0457508242105b156104b957600091505061064c565b600080610d2883610d22610d78565b9061104d565b90506000610d36828661104d565b905080421015610d4b576000925050506104bd565b6000610d5742836111a0565b90506000610d6d6001610d228462015180611256565b979650505050505050565b63619e618090565b600080610d8c8361070f565b90506000610d9984610db0565b90506000610da782846111a0565b95945050505050565b600080805b6001600160a01b038416600090815260076020526040902054811015610996576001600160a01b03841660009081526007602052604090208054610e1f919083908110610dfe57fe5b9060005260206000209060070201600101548361104d90919063ffffffff16565b9150600101610db5565b6001600160a01b038216600090815260076020526040812054610e4e575060016104bd565b6000610e5984610632565b90506000610e6685610d80565b90506000610e7386610db0565b90508083118015610e8d575084610e8a84836111a0565b10155b15610e9e57600193505050506104bd565b81610ea984876111a0565b1015610ebb57600093505050506104bd565b50600195945050505050565b68056bc75e2d6310000081565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b60088181548110610f0f57600080fd5b60009182526020909120600490910201805460018201546002830154600390930154919350919084565b610f416112bd565b6001600160a01b0316610f526109f2565b6001600160a01b031614610fad576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b038116610ff25760405162461bcd60e51b8152600401808060200182810382526026815260200180611cc46026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000828201838110156110a7576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b038216611109576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b611115600083836117b4565b600354611122908261104d565b6003556001600160a01b038216600090815260016020526040902054611148908261104d565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6000828211156111f7576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b60008261120c575060006104bd565b8282028284828161121957fe5b04146110a75760405162461bcd60e51b8152600401808060200182810382526021815260200180611d326021913960400191505060405180910390fd5b60008082116112ac576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b8183816112b557fe5b049392505050565b3390565b6001600160a01b0383166113065760405162461bcd60e51b8152600401808060200182810382526024815260200180611de56024913960400191505060405180910390fd5b6001600160a01b03821661134b5760405162461bcd60e51b8152600401808060200182810382526022815260200180611cea6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166113f25760405162461bcd60e51b8152600401808060200182810382526025815260200180611dc06025913960400191505060405180910390fd5b6001600160a01b0382166114375760405162461bcd60e51b8152600401808060200182810382526023815260200180611c7f6023913960400191505060405180910390fd5b6114428383836117b4565b61147f81604051806060016040528060268152602001611d0c602691396001600160a01b038616600090815260016020526040902054919061150a565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546114ae908261104d565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156115995760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561155e578181015183820152602001611546565b50505050905090810190601f16801561158b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b0382166115e65760405162461bcd60e51b8152600401808060200182810382526021815260200180611d9f6021913960400191505060405180910390fd5b6115f2826000836117b4565b61162f81604051806060016040528060228152602001611ca2602291396001600160a01b038516600090815260016020526040902054919061150a565b6001600160a01b03831660009081526001602052604090205560035461165590826111a0565b6003556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b60006116b3826116ad86866111fd565b90611256565b949350505050565b60006116c5610d78565b905060006040518060e00160405280896001600160a01b03168152602001888152602001878152602001611702878561104d90919063ffffffff16565b81526020808201889052604080830188905260609283018790526001600160a01b038c8116600090815260078085528382208054600180820183559184529286902088519390920290910180546001600160a01b03191692909316919091178255928501519281019290925583015160028201559082015160038201556080820151600482015560a0820151600582015560c082015160069091015590506117aa88886117e5565b5050505050505050565b6117be8382610e29565b6117da5760405162461bcd60e51b8152600401610b6190611b42565b6109ed8383836109ed565b60006117ef6104c3565b90506117fb818361104d565b6118036105bf565b10156118215760405162461bcd60e51b8152600401610b6190611b87565b6109ed83836110ae565b80356001600160a01b038116811461064c57600080fd5b600082601f830112611852578081fd5b8135602061186761186283611c60565b611c3c565b8281528181019085830183850287018401881015611883578586fd5b855b858110156118a157813584529284019290840190600101611885565b5090979650505050505050565b6000602082840312156118bf578081fd5b6110a78261182b565b600080604083850312156118da578081fd5b6118e38361182b565b91506118f16020840161182b565b90509250929050565b60008060006060848603121561190e578081fd5b6119178461182b565b92506119256020850161182b565b9150604084013590509250925092565b60008060408385031215611947578182fd5b6119508361182b565b946020939093013593505050565b600080600060608486031215611972578283fd5b833567ffffffffffffffff80821115611989578485fd5b818601915086601f83011261199c578485fd5b813560206119ac61186283611c60565b82815281810190858301838502870184018c10156119c857898afd5b8996505b848710156119f1576119dd8161182b565b8352600196909601959183019183016119cc565b5097505087013592505080821115611a07578384fd5b50611a1486828701611842565b925050604084013590509250925092565b600060208284031215611a36578081fd5b5035919050565b60008060408385031215611a4f578182fd5b50508035926020909101359150565b6001600160a01b0391909116815260200190565b6001600160a01b03979097168752602087019590955260408601939093526060850191909152608084015260a083015260c082015260e00190565b901515815260200190565b6000602080835283518082850152825b81811015611ae457858101830151858201604001528201611ac8565b81811115611af55783604083870101525b50601f01601f1916929092016040019392505050565b60208082526017908201527f56657374696e6720747970652069736e7420666f756e64000000000000000000604082015260600190565b60208082526025908201527f556e61626c6520746f207472616e736665722c206e6f7420756e6c6f636b6564604082015264103cb2ba1760d91b606082015260800190565b60208082526018908201527f4d6178696d756d20737570706c79206578636565646564210000000000000000604082015260600190565b6020808252602c908201527f4164647265737320616e6420746f74616c416d6f756e7473206c656e6774682060408201526b6d7573742062652073616d6560a01b606082015260800190565b90815260200190565b93845260208401929092526040830152606082015260800190565b60ff91909116815260200190565b60405181810167ffffffffffffffff81118282101715611c5857fe5b604052919050565b600067ffffffffffffffff821115611c7457fe5b506020908102019056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220de97c0d3883bacbd12cd24abfa4a1ebb8e34b814a838a0347b8f98a04151b95064736f6c63430007060033536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101da5760003560e01c806395d89b4111610104578063bb0099d5116100a2578063dd0081c711610071578063dd0081c7146103be578063dd62ed3e146103c6578063e66fa239146103d9578063f2fde38b146103fc576101da565b8063bb0099d51461037d578063c632395e14610385578063d3715c7614610398578063d45e09c1146103ab576101da565b8063a9059cbb116100de578063a9059cbb1461033c578063aaf5eb681461034f578063abd225e114610357578063b7a241601461036a576101da565b806395d89b411461030e578063a457c2d714610316578063a851c2e514610329576101da565b806342966c681161017c578063715018a61161014b578063715018a6146102cb578063786de14f146102d357806379cc6790146102e65780638da5cb5b146102f9576101da565b806342966c68146102755780635db30bb11461028a578063605968161461029257806370a08231146102b8576101da565b8063188ec356116101b8578063188ec3561461023257806323b872dd1461023a578063313ce5671461024d5780633950935114610262576101da565b806306fdde03146101df578063095ea7b3146101fd57806318160ddd1461021d575b600080fd5b6101e761040f565b6040516101f49190611ab8565b60405180910390f35b61021061020b366004611935565b6104a5565b6040516101f49190611aad565b6102256104c3565b6040516101f49190611c0a565b6102256104c9565b6102106102483660046118fa565b6104cd565b610255610554565b6040516101f49190611c2e565b610210610270366004611935565b61055d565b610288610283366004611a25565b6105ab565b005b6102256105bf565b6102a56102a0366004611935565b6105ce565b6040516101f49796959493929190611a72565b6102256102c63660046118ae565b610632565b610288610651565b6102256102e13660046118ae565b61070f565b6102886102f4366004611935565b61099d565b6103016109f2565b6040516101f49190611a5e565b6101e7610a01565b610210610324366004611935565b610a62565b61021061033736600461195e565b610aca565b61021061034a366004611935565b610cca565b610225610cde565b610210610365366004611a25565b610cea565b610225610378366004611a3d565b610d13565b610225610d78565b6102256103933660046118ae565b610d80565b6102256103a63660046118ae565b610db0565b6102106103b9366004611935565b610e29565b610225610ec7565b6102256103d43660046118c8565b610ed4565b6103ec6103e7366004611a25565b610eff565b6040516101f49493929190611c13565b61028861040a3660046118ae565b610f39565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561049b5780601f106104705761010080835404028352916020019161049b565b820191906000526020600020905b81548152906001019060200180831161047e57829003601f168201915b5050505050905090565b60006104b96104b26112bd565b84846112c1565b5060015b92915050565b60035490565b4290565b60006104da8484846113ad565b61054a846104e66112bd565b61054585604051806060016040528060288152602001611d53602891396001600160a01b038a166000908152600260205260408120906105246112bd565b6001600160a01b03168152602081019190915260400160002054919061150a565b6112c1565b5060019392505050565b60065460ff1690565b60006104b961056a6112bd565b84610545856002600061057b6112bd565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549061104d565b6105bc6105b66112bd565b826115a1565b50565b6aa56fa5b99019a5c800000090565b600760205281600052604060002081815481106105ea57600080fd5b600091825260209091206007909102018054600182015460028301546003840154600485015460058601546006909601546001600160a01b0390951697509295509093909287565b6001600160a01b0381166000908152600160205260409020545b919050565b6106596112bd565b6001600160a01b031661066a6109f2565b6001600160a01b0316146106c5576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b600061071b6000610cea565b6107275750600061064c565b6000805b6001600160a01b038416600090815260076020526040902054811015610996576001600160a01b038416600090815260076020526040902080548290811061076f57fe5b9060005260206000209060070201600101546000141561078e5761098e565b6001600160a01b038416600090815260076020526040812080546108109190849081106107b757fe5b90600052602060002090600702016004015460076000886001600160a01b03166001600160a01b0316815260200190815260200160002084815481106107f957fe5b906000526020600020906007020160060154610d13565b9050600080821180156108235750601e82105b15610865576001600160a01b03861660009081526007602052604090208054601e93508490811061085057fe5b90600052602060002090600702016005015490505b601e8210610909576109066108c261087e84601e6111a0565b6001600160a01b03891660009081526007602052604090208054879081106108a257fe5b9060005260206000209060070201600201546111fd90919063ffffffff16565b6001600160a01b03881660009081526007602052604090208054869081106108e657fe5b90600052602060002090600702016005015461104d90919063ffffffff16565b90505b6001600160a01b038616600090815260076020526040902080548490811061092d57fe5b90600052602060002090600702016001015481111561097f576001600160a01b038616600090815260076020526040902080548490811061096a57fe5b90600052602060002090600702016001015490505b610989848261104d565b935050505b60010161072b565b5092915050565b60006109cf82604051806060016040528060248152602001611d7b602491396109c8866103d46112bd565b919061150a565b90506109e3836109dd6112bd565b836112c1565b6109ed83836115a1565b505050565b6000546001600160a01b031690565b60058054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561049b5780601f106104705761010080835404028352916020019161049b565b60006104b9610a6f6112bd565b8461054585604051806060016040528060258152602001611e096025913960026000610a996112bd565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919061150a565b6000610ad46112bd565b6001600160a01b0316610ae56109f2565b6001600160a01b031614610b40576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b8251845114610b6a5760405162461bcd60e51b8152600401610b6190611bbe565b60405180910390fd5b6008548210610b8b5760405162461bcd60e51b8152600401610b6190611b0b565b600060088381548110610b9a57fe5b9060005260206000209060040201604051806080016040529081600082015481526020016001820154815260200160028201548152602001600382015481525050905060008551905060005b81811015610cbd576000878281518110610bfc57fe5b602002602001015190506000878381518110610c1457fe5b602002602001015190506000610c4d898581518110610c2f57fe5b60200260200101518760000151670de0b6b3a764000060640261169d565b90506000866020015190506000876060015190506000610c9b601e610c958e8a81518110610c7757fe5b60200260200101518c60400151670de0b6b3a764000060640261169d565b906111fd565b9050610cab8686868685876116bb565b505060019094019350610be692505050565b5060019695505050505050565b60006104b9610cd76112bd565b84846113ad565b670de0b6b3a764000081565b600080610cf5610d78565b905080421080610d0457508242105b156104b957600091505061064c565b600080610d2883610d22610d78565b9061104d565b90506000610d36828661104d565b905080421015610d4b576000925050506104bd565b6000610d5742836111a0565b90506000610d6d6001610d228462015180611256565b979650505050505050565b63619e618090565b600080610d8c8361070f565b90506000610d9984610db0565b90506000610da782846111a0565b95945050505050565b600080805b6001600160a01b038416600090815260076020526040902054811015610996576001600160a01b03841660009081526007602052604090208054610e1f919083908110610dfe57fe5b9060005260206000209060070201600101548361104d90919063ffffffff16565b9150600101610db5565b6001600160a01b038216600090815260076020526040812054610e4e575060016104bd565b6000610e5984610632565b90506000610e6685610d80565b90506000610e7386610db0565b90508083118015610e8d575084610e8a84836111a0565b10155b15610e9e57600193505050506104bd565b81610ea984876111a0565b1015610ebb57600093505050506104bd565b50600195945050505050565b68056bc75e2d6310000081565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b60088181548110610f0f57600080fd5b60009182526020909120600490910201805460018201546002830154600390930154919350919084565b610f416112bd565b6001600160a01b0316610f526109f2565b6001600160a01b031614610fad576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b038116610ff25760405162461bcd60e51b8152600401808060200182810382526026815260200180611cc46026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000828201838110156110a7576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b038216611109576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b611115600083836117b4565b600354611122908261104d565b6003556001600160a01b038216600090815260016020526040902054611148908261104d565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6000828211156111f7576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b60008261120c575060006104bd565b8282028284828161121957fe5b04146110a75760405162461bcd60e51b8152600401808060200182810382526021815260200180611d326021913960400191505060405180910390fd5b60008082116112ac576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b8183816112b557fe5b049392505050565b3390565b6001600160a01b0383166113065760405162461bcd60e51b8152600401808060200182810382526024815260200180611de56024913960400191505060405180910390fd5b6001600160a01b03821661134b5760405162461bcd60e51b8152600401808060200182810382526022815260200180611cea6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166113f25760405162461bcd60e51b8152600401808060200182810382526025815260200180611dc06025913960400191505060405180910390fd5b6001600160a01b0382166114375760405162461bcd60e51b8152600401808060200182810382526023815260200180611c7f6023913960400191505060405180910390fd5b6114428383836117b4565b61147f81604051806060016040528060268152602001611d0c602691396001600160a01b038616600090815260016020526040902054919061150a565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546114ae908261104d565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156115995760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561155e578181015183820152602001611546565b50505050905090810190601f16801561158b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b0382166115e65760405162461bcd60e51b8152600401808060200182810382526021815260200180611d9f6021913960400191505060405180910390fd5b6115f2826000836117b4565b61162f81604051806060016040528060228152602001611ca2602291396001600160a01b038516600090815260016020526040902054919061150a565b6001600160a01b03831660009081526001602052604090205560035461165590826111a0565b6003556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b60006116b3826116ad86866111fd565b90611256565b949350505050565b60006116c5610d78565b905060006040518060e00160405280896001600160a01b03168152602001888152602001878152602001611702878561104d90919063ffffffff16565b81526020808201889052604080830188905260609283018790526001600160a01b038c8116600090815260078085528382208054600180820183559184529286902088519390920290910180546001600160a01b03191692909316919091178255928501519281019290925583015160028201559082015160038201556080820151600482015560a0820151600582015560c082015160069091015590506117aa88886117e5565b5050505050505050565b6117be8382610e29565b6117da5760405162461bcd60e51b8152600401610b6190611b42565b6109ed8383836109ed565b60006117ef6104c3565b90506117fb818361104d565b6118036105bf565b10156118215760405162461bcd60e51b8152600401610b6190611b87565b6109ed83836110ae565b80356001600160a01b038116811461064c57600080fd5b600082601f830112611852578081fd5b8135602061186761186283611c60565b611c3c565b8281528181019085830183850287018401881015611883578586fd5b855b858110156118a157813584529284019290840190600101611885565b5090979650505050505050565b6000602082840312156118bf578081fd5b6110a78261182b565b600080604083850312156118da578081fd5b6118e38361182b565b91506118f16020840161182b565b90509250929050565b60008060006060848603121561190e578081fd5b6119178461182b565b92506119256020850161182b565b9150604084013590509250925092565b60008060408385031215611947578182fd5b6119508361182b565b946020939093013593505050565b600080600060608486031215611972578283fd5b833567ffffffffffffffff80821115611989578485fd5b818601915086601f83011261199c578485fd5b813560206119ac61186283611c60565b82815281810190858301838502870184018c10156119c857898afd5b8996505b848710156119f1576119dd8161182b565b8352600196909601959183019183016119cc565b5097505087013592505080821115611a07578384fd5b50611a1486828701611842565b925050604084013590509250925092565b600060208284031215611a36578081fd5b5035919050565b60008060408385031215611a4f578182fd5b50508035926020909101359150565b6001600160a01b0391909116815260200190565b6001600160a01b03979097168752602087019590955260408601939093526060850191909152608084015260a083015260c082015260e00190565b901515815260200190565b6000602080835283518082850152825b81811015611ae457858101830151858201604001528201611ac8565b81811115611af55783604083870101525b50601f01601f1916929092016040019392505050565b60208082526017908201527f56657374696e6720747970652069736e7420666f756e64000000000000000000604082015260600190565b60208082526025908201527f556e61626c6520746f207472616e736665722c206e6f7420756e6c6f636b6564604082015264103cb2ba1760d91b606082015260800190565b60208082526018908201527f4d6178696d756d20737570706c79206578636565646564210000000000000000604082015260600190565b6020808252602c908201527f4164647265737320616e6420746f74616c416d6f756e7473206c656e6774682060408201526b6d7573742062652073616d6560a01b606082015260800190565b90815260200190565b93845260208401929092526040830152606082015260800190565b60ff91909116815260200190565b60405181810167ffffffffffffffff81118282101715611c5857fe5b604052919050565b600067ffffffffffffffff821115611c7457fe5b506020908102019056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220de97c0d3883bacbd12cd24abfa4a1ebb8e34b814a838a0347b8f98a04151b95064736f6c63430007060033
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.