ETH Price: $2,972.56 (+1.41%)
Gas: 2 Gwei

Token

Cryptonovae (YAE)
 

Overview

Max Total Supply

100,000,000 YAE

Holders

1,269 (0.00%)

Market

Price

$0.00 @ 0.000000 ETH

Onchain Market Cap

$72,366.00

Circulating Supply Market Cap

$60,697.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
8,952.38 YAE

Value
$6.48 ( ~0.00217993602308279 Eth) [0.0090%]
0x9a9a79a540d9fee859365c112f563650db9967fc
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Cryptonovae is an all-in-one multi-exchange trading ecosystem to manage digital assets across centralized and decentralized exchanges. It aims to provide a sophisticated trading experience through advanced charting features and trade management.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
YAEToken

Compiler Version
v0.7.6+commit.7338295f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 7 : YAEToken.sol
pragma solidity ^0.7.6;
pragma experimental ABIEncoderV2;

struct VestingWallet {
    address wallet;
    uint256 totalAmount;
    uint256 dayAmount;
    uint256 startDay;
    uint256 afterDays;
    bool nonlinear;
}

/**
 * dailyRate:       the daily amount of tokens to give access to,
 *                  this is a percentage * 1000000000000000000
 *                  this value is ignored if nonlinear is true
 * afterDays:       vesting cliff, dont allow any withdrawal before these days expired
 * nonlinear:       non linear vesting, more vesting at the start, less at the end
**/

struct VestingType {
    uint256 dailyRate;
    uint256 afterDays;
    bool nonlinear;
}

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 YAEToken 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;
        
    // Non linear unlocks per year per day, year 1 = index 0
    uint256[] public nonLinearUnlockYears = [
        58333333333333333, // 21%
        41666666666666667, // 15%
        33333333333333333, // 12%
        27777777777777778, // 10%
        25000000000000000, // 9%
        22222222222222222, // 8%
        19444444444444444, // 7%
        18055555555555556, // 6.5%
        16666666666666667, // 6%
        15277777777777778  // 5.5%
    ];
    
    /**
     * Setup the initial supply and types of vesting schemas
    **/
    
    constructor() ERC20("Cryptonovae", "YAE") {

		// 0: 90 Days 0.277% per day (360 days), pre-seed
        vestingTypes.push(VestingType(277777777777777778, 90 days, false));

        // 1: Immediate release for 360 days, seed, advisor
        vestingTypes.push(VestingType(277777777777777778, 0, false));

        // 2: Immediate release for 150 days, p1
        vestingTypes.push(VestingType(666666666666666667, 0, false));

        // 3: Immediate release for 120 days, p2
        vestingTypes.push(VestingType(833333333333333333, 0, false));

        // 4: IDO, release all first day
        vestingTypes.push(VestingType(100000000000000000000, 0, false)); 

        // 5: Immediate release for 1080 days, reserve
        vestingTypes.push(VestingType(92592592592592592, 0, false));

        // 6: Release for 360 days, after 360 days, team
        vestingTypes.push(VestingType(277777777777777778, 360 days, false));

        // 7: Release immediately, for 3600 days using nonlinear function, rewards
        vestingTypes.push(VestingType(1337, 0, true));
        
        // Release before token start, tokens for liquidity
        _mint(address(0x285F56c5Fdb0FF311db0Fb6ab95BF5f0D7C31D85), 2000000e18);
    }
	
    // Vested tokens wont be available before the listing time
    function getListingTime() public pure returns (uint256) {
        return 1617984000; // 2021/4/9 16:00 UTC
    }

    function getMaxTotalSupply() public pure returns (uint256) {
        return PRECISION * 1e8; // 100 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;
            bool nonlinear = vestingType.nonlinear;

            addVestingWallet(_address, totalAmount, dayAmount, afterDay, nonlinear);
        }

        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, bool nonlinear) internal {

        require(vestingWallets[wallet].totalAmount == 0, "Vesting wallet already created for this address");

        uint256 releaseTime = getListingTime();

        // Create vesting wallets
        VestingWallet memory vestingWallet = VestingWallet(
            wallet,
            totalAmount,
            dayAmount,
            releaseTime.add(afterDays),
            afterDays,
            nonlinear
        );
            
        vestingWallets[wallet] = 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) public view returns (uint256) {
        uint256 releaseTime = getListingTime();
        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;
    }
    
    // Calculate the amount of unlocked tokens after X days for a given amount, nonlinear over 10 years
    // 21.0%	15.0%	12.0%	10.0%	9.0%	8.0%	7.0%	6.5%	6.0%	5.5%
    function calculateNonLinear(uint256 _days, uint256 amount) public view returns (uint256) {

        uint256 _years = _days.div(360);
    
        if (_years > 9) {
            return amount;
        }

        uint256 unlocked = 0;
        uint256 _days_remainder = _days.mod(360);

        for(uint256 i = 0; i < _years; i++) {
            // Add 360x the amount unlocked per day counting for this year
            unlocked = unlocked.add(mulDiv(amount, nonLinearUnlockYears[i], ONE_HUNDRED_PERCENT).mul(360));
        }
        
        uint256 _rem = mulDiv(amount, nonLinearUnlockYears[_years], ONE_HUNDRED_PERCENT);
        unlocked = unlocked.add(_rem.mul(_days_remainder));

		if (unlocked > amount){
			unlocked = amount;
		} 

        return unlocked;
    }
    
    // Returns the amount of tokens unlocked by vesting so far
    function getUnlockedVestingAmount(address sender) public view returns (uint256) {
        
        if (vestingWallets[sender].totalAmount == 0) {
			return 0;
        }

        if (!isStarted(0)) {
            return 0;
        }

        uint256 dailyTransferableAmount = 0;
        uint256 trueDays = getDays(vestingWallets[sender].afterDays);
        
        // 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; 
        }
        
        if (vestingWallets[sender].nonlinear == true) {
            dailyTransferableAmount = calculateNonLinear(trueDays, vestingWallets[sender].totalAmount);
        } else {
            dailyTransferableAmount = vestingWallets[sender].dayAmount.mul(trueDays);
        }

        if (dailyTransferableAmount > vestingWallets[sender].totalAmount) {
            return vestingWallets[sender].totalAmount;
        }

        return dailyTransferableAmount;
    }
    
    // Returns the amount of vesting tokens still locked
    function getRestAmount(address sender) public view returns (uint256) {
        uint256 transferableAmount = getUnlockedVestingAmount(sender);
        uint256 restAmount = vestingWallets[sender].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].totalAmount == 0) {
            return true;
        }

        uint256 balance = balanceOf(sender);
        uint256 restAmount = getRestAmount(sender);
        
        // Account for sending received tokens outside of the vesting schedule
        if (balance > vestingWallets[sender].totalAmount && balance.sub(vestingWallets[sender].totalAmount) >= amount) {
            return true;
        }

        // Don't allow vesting if the period has not started yet or if you are below allowance
        if (!isStarted(vestingWallets[sender].startDay) || 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);
    }
}

File 2 of 7 : ERC20Burnable.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

import "../../GSN/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);
    }
}

File 3 of 7 : ERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

import "../../GSN/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 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 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 { }
}

File 4 of 7 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

import "../GSN/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 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;
    }
}

File 5 of 7 : SafeMath.sol
// 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, 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;
    }
}

File 6 of 7 : Context.sol
// 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;
    }
}

File 7 of 7 : IERC20.sol
// 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);
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"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":"uint256","name":"_days","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"calculateNonLinear","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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"}],"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":"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":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"nonLinearUnlockYears","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"bool","name":"nonlinear","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"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":"bool","name":"nonlinear","type":"bool"}],"stateMutability":"view","type":"function"}]

6101c060405266cf3ddb8be5d55560809081526694079cd1a42aab60a05266766c7d7483555560c0526662afbde1181c7260e0526658d15e1762800061010052664ef2fe4dace38e610120526645149e83f7471c610140526640256e9f1c78e461016052663b363eba41aaab610180526636470ed566dc726101a0526200008b90600990600a62000e9b565b503480156200009957600080fd5b506040518060400160405280600b81526020016a43727970746f6e6f76616560a81b8152506040518060400160405280600381526020016259414560e81b8152506000620000ec6200046960201b60201c565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35081516200014b90600490602085019062000ef6565b5080516200016190600590602084019062000ef6565b505060068054601260ff199182161790915560408051606080820183526703dadd6acaf11c728083526276a70060208085019182526000858701818152600880546001818101835582855298517ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee360039283028181019290925596517ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee48083019190915593517ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee591820180548e169115159190911790558a51808a018c52888152808701868152818d018781528554808e0187558689529251928502808b01939093559051828701555190820180548e169115159190911790558a51808a018c5267094079cd1a42aaab8152808701868152818d018781528554808e0187558689529251928502808b01939093559051828701555190820180548e169115159190911790558a51808a018c52670b90984060d355558152808701868152818d018781528554808e0187558689529251928502808b01939093559051828701555190820180548e169115159190911790558a51808a018c5268056bc75e2d631000008152808701868152818d018781528554808e0187558689529251928502808b01939093559051828701555190820180548e169115159190911790558a51808a018c52670148f478ee505ed08152808701868152818d018781528554808e0187558689529251928502808b01939093559051828701555190820180548e169115159190911790558a51808a018c529788526301da9c00888701908152888c018681528454808d0186558588529951998402808a019a909a559051898601555197810180548d169815159890981790975589519788018a52610539885293870183815298870188815281549889018255925294519590910291820194909455935191840191909155905191018054909216901515179055506200046373285f56c5fdb0ff311db0fb6ab95bf5f0d7c31d856a01a784379d99db420000006200046d565b6200100c565b3390565b600062000484620004f060201b620004df1760201c565b9050620004a08282620004f660201b62000f6a1790919060201c565b620004aa6200055a565b1015620004d45760405162461bcd60e51b8152600401620004cb9062000fd5565b60405180910390fd5b620004eb83836200056960201b62000fcb1760201c565b505050565b60035490565b60008282018381101562000551576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b90505b92915050565b6a52b7d2dcc80cd2e400000090565b6001600160a01b038216620005c5576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b620005d3600083836200067c565b620005ef81600354620004f660201b62000f6a1790919060201c565b6003556001600160a01b0382166000908152600160209081526040909120546200062491839062000f6a620004f6821b17901c565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b620006888382620006bf565b620006a75760405162461bcd60e51b8152600401620004cb9062000f90565b620004eb838383620004eb60201b620009231760201c565b6001600160a01b038216600090815260076020526040812060010154620006e95750600162000554565b6000620006f684620007e3565b90506000620007058562000802565b6001600160a01b038616600090815260076020526040902060010154909150821180156200076857506001600160a01b038516600090815260076020908152604090912060010154859162000765918591620010bd62000851821b17901c565b10155b156200077a5760019250505062000554565b6001600160a01b038516600090815260076020526040902060030154620007a1906200089b565b1580620007c6575080620007c485846200085160201b620010bd1790919060201c565b105b15620007d85760009250505062000554565b506001949350505050565b6001600160a01b0381166000908152600160205260409020545b919050565b6000806200081083620008d2565b6001600160a01b0384166000908152600760209081526040822060010154929350909162000849918490620010bd62000851821b17901c565b949350505050565b60006200055183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525062000a3f60201b60201c565b600080620008a862000ada565b905080421080620008b857508242105b15620008c9576000915050620007fd565b50600192915050565b6001600160a01b038116600090815260076020526040812060010154620008fc57506000620007fd565b6200090860006200089b565b6200091657506000620007fd565b6001600160a01b03821660009081526007602052604081206004015481906200093f9062000ae2565b9050600081118015620009525750601e81105b156200095c5750601e5b6001600160a01b03841660009081526007602052604090206005015460ff16151560011415620009b7576001600160a01b038416600090815260076020526040902060010154620009af90829062000b85565b9150620009ef565b6001600160a01b038416600090815260076020908152604090912060020154620009ec918390620010ff62000ca5821b17901c565b91505b6001600160a01b03841660009081526007602052604090206001015482111562000a38575050506001600160a01b038116600090815260076020526040902060010154620007fd565b5092915050565b6000818484111562000ad25760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101562000a9657818101518382015260200162000a7c565b50505050905090810190601f16801562000ac45780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6360707a0090565b60008062000aef62000ada565b9050600062000b0d8483620004f660201b62000f6a1790919060201c565b90508042101562000b2457600092505050620007fd565b600062000b4082426200085160201b620010bd1790919060201c565b9050600062000b7b600162000b67620151808562000d0360201b620011581790919060201c565b620004f660201b62000f6a1790919060201c565b9695505050505050565b60008062000ba46101688562000d0360201b620011581790919060201c565b9050600981111562000bba578291505062000554565b60008062000bd96101688762000d4d60201b6200119a1790919060201c565b905060005b8381101562000c555762000c4a62000c3561016862000c21896009868154811062000c0557fe5b60009182526020909120015468056bc75e2d6310000062000d97565b62000ca560201b620010ff1790919060201c565b84620004f660201b62000f6a1790919060201c565b925060010162000bde565b50600062000c6b866009868154811062000c0557fe5b905062000c8b62000c35838362000ca560201b620010ff1790919060201c565b92508583111562000c9a578592505b509095945050505050565b60008262000cb65750600062000554565b8282028284828162000cc457fe5b0414620005515760405162461bcd60e51b815260040180806020018281038252602181526020018062002ebe6021913960400191505060405180910390fd5b60006200055183836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525062000dcc60201b60201c565b60006200055183836040518060400160405280601881526020017f536166654d6174683a206d6f64756c6f206279207a65726f000000000000000081525062000e3560201b60201c565b6000620008498262000db8858762000ca560201b620010ff1790919060201c565b62000d0360201b620011581790919060201c565b6000818362000e1e5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831562000a9657818101518382015260200162000a7c565b50600083858162000e2b57fe5b0495945050505050565b6000818362000e875760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831562000a9657818101518382015260200162000a7c565b5082848162000e9257fe5b06949350505050565b82805482825590600052602060002090810192821562000ee4579160200282015b8281111562000ee4578251829066ffffffffffffff1690559160200191906001019062000ebc565b5062000ef292915062000f79565b5090565b828054600181600116156101000203166002900490600052602060002090601f01602090048101928262000f2e576000855562000ee4565b82601f1062000f4957805160ff191683800117855562000ee4565b8280016001018555821562000ee4579182015b8281111562000ee457825182559160200191906001019062000f5c565b5b8082111562000ef2576000815560010162000f7a565b60208082526025908201527f556e61626c6520746f207472616e736665722c206e6f7420756e6c6f636b6564604082015264103cb2ba1760d91b606082015260800190565b60208082526018908201527f4d6178696d756d20737570706c79206578636565646564210000000000000000604082015260600190565b611ea2806200101c6000396000f3fe608060405234801561001057600080fd5b50600436106101e55760003560e01c806395d89b411161010f578063c632395e116100a2578063e66fa23911610071578063e66fa239146103d0578063f22a0b31146103f2578063f2fde38b14610405578063f97e810614610418576101e5565b8063c632395e1461038f578063d45e09c1146103a2578063dd0081c7146103b5578063dd62ed3e146103bd576101e5565b8063aaf5eb68116100de578063aaf5eb6814610347578063abd225e11461034f578063baf3510714610362578063bb0099d514610387576101e5565b806395d89b4114610306578063a457c2d71461030e578063a851c2e514610321578063a9059cbb14610334576101e5565b80633950935111610187578063715018a611610156578063715018a6146102c3578063786de14f146102cb57806379cc6790146102de5780638da5cb5b146102f1576101e5565b8063395093511461028057806342966c68146102935780635db30bb1146102a857806370a08231146102b0576101e5565b8063188ec356116101c3578063188ec3561461023d57806323b872dd14610245578063313ce56714610258578063324cca2c1461026d576101e5565b806306fdde03146101ea578063095ea7b31461020857806318160ddd14610228575b600080fd5b6101f261042b565b6040516101ff9190611aab565b60405180910390f35b61021b61021636600461192e565b6104c1565b6040516101ff9190611aa0565b6102306104df565b6040516101ff9190611c4c565b6102306104e5565b61021b6102533660046118f3565b6104e9565b610260610570565b6040516101ff9190611c6d565b61023061027b366004611a36565b610579565b61021b61028e36600461192e565b610641565b6102a66102a1366004611a1e565b61068f565b005b6102306106a3565b6102306102be3660046118a7565b6106b2565b6102a66106d1565b6102306102d93660046118a7565b610785565b6102a66102ec36600461192e565b6108d3565b6102f9610928565b6040516101ff9190611a57565b6101f2610937565b61021b61031c36600461192e565b610998565b61021b61032f366004611957565b610a00565b61021b61034236600461192e565b610ba8565b610230610bbc565b61021b61035d366004611a1e565b610bc8565b6103756103703660046118a7565b610bf1565b6040516101ff96959493929190611a6b565b610230610c33565b61023061039d3660046118a7565b610c3b565b61021b6103b036600461192e565b610c79565b610230610d71565b6102306103cb3660046118c1565b610d7e565b6103e36103de366004611a1e565b610da9565b6040516101ff93929190611c55565b610230610400366004611a1e565b610ddf565b6102a66104133660046118a7565b610e3f565b610230610426366004611a1e565b610f49565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104b75780601f1061048c576101008083540402835291602001916104b7565b820191906000526020600020905b81548152906001019060200180831161049a57829003601f168201915b5050505050905090565b60006104d56104ce6111dc565b84846111e0565b5060015b92915050565b60035490565b4290565b60006104f68484846112cc565b610566846105026111dc565b61056185604051806060016040528060288152602001611d92602891396001600160a01b038a166000908152600260205260408120906105406111dc565b6001600160a01b031681526020810191909152604001600020549190611429565b6111e0565b5060019392505050565b60065460ff1690565b60008061058884610168611158565b9050600981111561059c57829150506104d9565b6000806105ab8661016861119a565b905060005b83811015610605576105fb6105f46101686105ee89600986815481106105d257fe5b9060005260206000200154670de0b6b3a76400006064026114c0565b906110ff565b8490610f6a565b92506001016105b0565b50600061061986600986815481106105d257fe5b90506106286105f482846110ff565b925085831115610636578592505b509095945050505050565b60006104d561064e6111dc565b84610561856002600061065f6111dc565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490610f6a565b6106a061069a6111dc565b826114d6565b50565b6a52b7d2dcc80cd2e400000090565b6001600160a01b0381166000908152600160205260409020545b919050565b6106d96111dc565b6000546001600160a01b0390811691161461073b576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6001600160a01b0381166000908152600760205260408120600101546107ad575060006106cc565b6107b76000610bc8565b6107c3575060006106cc565b6001600160a01b03821660009081526007602052604081206004015481906107ea90610ddf565b90506000811180156107fc5750601e81105b156108055750601e5b6001600160a01b03841660009081526007602052604090206005015460ff1615156001141561085c576001600160a01b038416600090815260076020526040902060010154610855908290610579565b9150610885565b6001600160a01b03841660009081526007602052604090206002015461088290826110ff565b91505b6001600160a01b0384166000908152600760205260409020600101548211156108cc575050506001600160a01b0381166000908152600760205260409020600101546106cc565b5092915050565b600061090582604051806060016040528060248152602001611dba602491396108fe866103cb6111dc565b9190611429565b9050610919836109136111dc565b836111e0565b61092383836114d6565b505050565b6000546001600160a01b031690565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104b75780601f1061048c576101008083540402835291602001916104b7565b60006104d56109a56111dc565b8461056185604051806060016040528060258152602001611e4860259139600260006109cf6111dc565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611429565b6000610a0a6111dc565b6000546001600160a01b03908116911614610a6c576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b8251845114610a965760405162461bcd60e51b8152600401610a8d90611c00565b60405180910390fd5b6008548210610ab75760405162461bcd60e51b8152600401610a8d90611afe565b600060088381548110610ac657fe5b600091825260208083206040805160608101825260039094029091018054845260018101549284019290925260029091015460ff161515908201528651909250905b81811015610b9b576000878281518110610b1e57fe5b602002602001015190506000878381518110610b3657fe5b602002602001015190506000610b6f898581518110610b5157fe5b60200260200101518760000151670de0b6b3a76400006064026114c0565b6020870151604088015191925090610b8a85858585856115d2565b505060019093019250610b08915050565b5060019695505050505050565b60006104d5610bb56111dc565b84846112cc565b670de0b6b3a764000081565b600080610bd3610c33565b905080421080610be257508242105b156104d55760009150506106cc565b6007602052600090815260409020805460018201546002830154600384015460048501546005909501546001600160a01b039094169492939192909160ff1686565b6360707a0090565b600080610c4783610785565b6001600160a01b03841660009081526007602052604081206001015491925090610c7190836110bd565b949350505050565b6001600160a01b038216600090815260076020526040812060010154610ca1575060016104d9565b6000610cac846106b2565b90506000610cb985610c3b565b6001600160a01b03861660009081526007602052604090206001015490915082118015610d0d57506001600160a01b0385166000908152600760205260409020600101548490610d0a9084906110bd565b10155b15610d1d576001925050506104d9565b6001600160a01b038516600090815260076020526040902060030154610d4290610bc8565b1580610d56575080610d5483866110bd565b105b15610d66576000925050506104d9565b506001949350505050565b68056bc75e2d6310000081565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b60088181548110610db957600080fd5b600091825260209091206003909102018054600182015460029092015490925060ff1683565b600080610dea610c33565b90506000610df88285610f6a565b905080421015610e0d576000925050506106cc565b6000610e1942836110bd565b90506000610e356001610e2f8462015180611158565b90610f6a565b9695505050505050565b610e476111dc565b6000546001600160a01b03908116911614610ea9576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b038116610eee5760405162461bcd60e51b8152600401808060200182810382526026815260200180611d036026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60098181548110610f5957600080fd5b600091825260209091200154905081565b600082820183811015610fc4576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b038216611026576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b611032600083836116e6565b60035461103f9082610f6a565b6003556001600160a01b0382166000908152600160205260409020546110659082610f6a565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6000610fc483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611429565b60008261110e575060006104d9565b8282028284828161111b57fe5b0414610fc45760405162461bcd60e51b8152600401808060200182810382526021815260200180611d716021913960400191505060405180910390fd5b6000610fc483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611717565b6000610fc483836040518060400160405280601881526020017f536166654d6174683a206d6f64756c6f206279207a65726f000000000000000081525061177c565b3390565b6001600160a01b0383166112255760405162461bcd60e51b8152600401808060200182810382526024815260200180611e246024913960400191505060405180910390fd5b6001600160a01b03821661126a5760405162461bcd60e51b8152600401808060200182810382526022815260200180611d296022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166113115760405162461bcd60e51b8152600401808060200182810382526025815260200180611dff6025913960400191505060405180910390fd5b6001600160a01b0382166113565760405162461bcd60e51b8152600401808060200182810382526023815260200180611cbe6023913960400191505060405180910390fd5b6113618383836116e6565b61139e81604051806060016040528060268152602001611d4b602691396001600160a01b0386166000908152600160205260409020549190611429565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546113cd9082610f6a565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156114b85760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561147d578181015183820152602001611465565b50505050905090810190601f1680156114aa5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000610c71826114d086866110ff565b90611158565b6001600160a01b03821661151b5760405162461bcd60e51b8152600401808060200182810382526021815260200180611dde6021913960400191505060405180910390fd5b611527826000836116e6565b61156481604051806060016040528060228152602001611ce1602291396001600160a01b0385166000908152600160205260409020549190611429565b6001600160a01b03831660009081526001602052604090205560035461158a90826110bd565b6003556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6001600160a01b0385166000908152600760205260409020600101541561160b5760405162461bcd60e51b8152600401610a8d90611bb1565b6000611615610c33565b905060006040518060c00160405280886001600160a01b031681526020018781526020018681526020016116528685610f6a90919063ffffffff16565b815260208082018790528515156040928301526001600160a01b038a8116600090815260078352839020845181546001600160a01b0319169216919091178155908301516001820155908201516002820155606082015160038201556080820151600482015560a08201516005909101805460ff191691151591909117905590506116dd87876117de565b50505050505050565b6116f08382610c79565b61170c5760405162461bcd60e51b8152600401610a8d90611b35565b610923838383610923565b600081836117665760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561147d578181015183820152602001611465565b50600083858161177257fe5b0495945050505050565b600081836117cb5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561147d578181015183820152602001611465565b508284816117d557fe5b06949350505050565b60006117e86104df565b90506117f48183610f6a565b6117fc6106a3565b101561181a5760405162461bcd60e51b8152600401610a8d90611b7a565b6109238383610fcb565b80356001600160a01b03811681146106cc57600080fd5b600082601f83011261184b578081fd5b8135602061186061185b83611c9f565b611c7b565b828152818101908583018385028701840188101561187c578586fd5b855b8581101561189a5781358452928401929084019060010161187e565b5090979650505050505050565b6000602082840312156118b8578081fd5b610fc482611824565b600080604083850312156118d3578081fd5b6118dc83611824565b91506118ea60208401611824565b90509250929050565b600080600060608486031215611907578081fd5b61191084611824565b925061191e60208501611824565b9150604084013590509250925092565b60008060408385031215611940578182fd5b61194983611824565b946020939093013593505050565b60008060006060848603121561196b578283fd5b833567ffffffffffffffff80821115611982578485fd5b818601915086601f830112611995578485fd5b813560206119a561185b83611c9f565b82815281810190858301838502870184018c10156119c157898afd5b8996505b848710156119ea576119d681611824565b8352600196909601959183019183016119c5565b5097505087013592505080821115611a00578384fd5b50611a0d8682870161183b565b925050604084013590509250925092565b600060208284031215611a2f578081fd5b5035919050565b60008060408385031215611a48578182fd5b50508035926020909101359150565b6001600160a01b0391909116815260200190565b6001600160a01b039690961686526020860194909452604085019290925260608401526080830152151560a082015260c00190565b901515815260200190565b6000602080835283518082850152825b81811015611ad757858101830151858201604001528201611abb565b81811115611ae85783604083870101525b50601f01601f1916929092016040019392505050565b60208082526017908201527f56657374696e6720747970652069736e7420666f756e64000000000000000000604082015260600190565b60208082526025908201527f556e61626c6520746f207472616e736665722c206e6f7420756e6c6f636b6564604082015264103cb2ba1760d91b606082015260800190565b60208082526018908201527f4d6178696d756d20737570706c79206578636565646564210000000000000000604082015260600190565b6020808252602f908201527f56657374696e672077616c6c657420616c72656164792063726561746564206660408201526e6f722074686973206164647265737360881b606082015260800190565b6020808252602c908201527f4164647265737320616e6420746f74616c416d6f756e7473206c656e6774682060408201526b6d7573742062652073616d6560a01b606082015260800190565b90815260200190565b92835260208301919091521515604082015260600190565b60ff91909116815260200190565b60405181810167ffffffffffffffff81118282101715611c9757fe5b604052919050565b600067ffffffffffffffff821115611cb357fe5b506020908102019056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122006d3a6c9f79cdaf9bf68a36cb8a6013a52734a1add740c6b7fc3a8d04b3169aa64736f6c63430007060033536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101e55760003560e01c806395d89b411161010f578063c632395e116100a2578063e66fa23911610071578063e66fa239146103d0578063f22a0b31146103f2578063f2fde38b14610405578063f97e810614610418576101e5565b8063c632395e1461038f578063d45e09c1146103a2578063dd0081c7146103b5578063dd62ed3e146103bd576101e5565b8063aaf5eb68116100de578063aaf5eb6814610347578063abd225e11461034f578063baf3510714610362578063bb0099d514610387576101e5565b806395d89b4114610306578063a457c2d71461030e578063a851c2e514610321578063a9059cbb14610334576101e5565b80633950935111610187578063715018a611610156578063715018a6146102c3578063786de14f146102cb57806379cc6790146102de5780638da5cb5b146102f1576101e5565b8063395093511461028057806342966c68146102935780635db30bb1146102a857806370a08231146102b0576101e5565b8063188ec356116101c3578063188ec3561461023d57806323b872dd14610245578063313ce56714610258578063324cca2c1461026d576101e5565b806306fdde03146101ea578063095ea7b31461020857806318160ddd14610228575b600080fd5b6101f261042b565b6040516101ff9190611aab565b60405180910390f35b61021b61021636600461192e565b6104c1565b6040516101ff9190611aa0565b6102306104df565b6040516101ff9190611c4c565b6102306104e5565b61021b6102533660046118f3565b6104e9565b610260610570565b6040516101ff9190611c6d565b61023061027b366004611a36565b610579565b61021b61028e36600461192e565b610641565b6102a66102a1366004611a1e565b61068f565b005b6102306106a3565b6102306102be3660046118a7565b6106b2565b6102a66106d1565b6102306102d93660046118a7565b610785565b6102a66102ec36600461192e565b6108d3565b6102f9610928565b6040516101ff9190611a57565b6101f2610937565b61021b61031c36600461192e565b610998565b61021b61032f366004611957565b610a00565b61021b61034236600461192e565b610ba8565b610230610bbc565b61021b61035d366004611a1e565b610bc8565b6103756103703660046118a7565b610bf1565b6040516101ff96959493929190611a6b565b610230610c33565b61023061039d3660046118a7565b610c3b565b61021b6103b036600461192e565b610c79565b610230610d71565b6102306103cb3660046118c1565b610d7e565b6103e36103de366004611a1e565b610da9565b6040516101ff93929190611c55565b610230610400366004611a1e565b610ddf565b6102a66104133660046118a7565b610e3f565b610230610426366004611a1e565b610f49565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104b75780601f1061048c576101008083540402835291602001916104b7565b820191906000526020600020905b81548152906001019060200180831161049a57829003601f168201915b5050505050905090565b60006104d56104ce6111dc565b84846111e0565b5060015b92915050565b60035490565b4290565b60006104f68484846112cc565b610566846105026111dc565b61056185604051806060016040528060288152602001611d92602891396001600160a01b038a166000908152600260205260408120906105406111dc565b6001600160a01b031681526020810191909152604001600020549190611429565b6111e0565b5060019392505050565b60065460ff1690565b60008061058884610168611158565b9050600981111561059c57829150506104d9565b6000806105ab8661016861119a565b905060005b83811015610605576105fb6105f46101686105ee89600986815481106105d257fe5b9060005260206000200154670de0b6b3a76400006064026114c0565b906110ff565b8490610f6a565b92506001016105b0565b50600061061986600986815481106105d257fe5b90506106286105f482846110ff565b925085831115610636578592505b509095945050505050565b60006104d561064e6111dc565b84610561856002600061065f6111dc565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490610f6a565b6106a061069a6111dc565b826114d6565b50565b6a52b7d2dcc80cd2e400000090565b6001600160a01b0381166000908152600160205260409020545b919050565b6106d96111dc565b6000546001600160a01b0390811691161461073b576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6001600160a01b0381166000908152600760205260408120600101546107ad575060006106cc565b6107b76000610bc8565b6107c3575060006106cc565b6001600160a01b03821660009081526007602052604081206004015481906107ea90610ddf565b90506000811180156107fc5750601e81105b156108055750601e5b6001600160a01b03841660009081526007602052604090206005015460ff1615156001141561085c576001600160a01b038416600090815260076020526040902060010154610855908290610579565b9150610885565b6001600160a01b03841660009081526007602052604090206002015461088290826110ff565b91505b6001600160a01b0384166000908152600760205260409020600101548211156108cc575050506001600160a01b0381166000908152600760205260409020600101546106cc565b5092915050565b600061090582604051806060016040528060248152602001611dba602491396108fe866103cb6111dc565b9190611429565b9050610919836109136111dc565b836111e0565b61092383836114d6565b505050565b6000546001600160a01b031690565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104b75780601f1061048c576101008083540402835291602001916104b7565b60006104d56109a56111dc565b8461056185604051806060016040528060258152602001611e4860259139600260006109cf6111dc565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611429565b6000610a0a6111dc565b6000546001600160a01b03908116911614610a6c576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b8251845114610a965760405162461bcd60e51b8152600401610a8d90611c00565b60405180910390fd5b6008548210610ab75760405162461bcd60e51b8152600401610a8d90611afe565b600060088381548110610ac657fe5b600091825260208083206040805160608101825260039094029091018054845260018101549284019290925260029091015460ff161515908201528651909250905b81811015610b9b576000878281518110610b1e57fe5b602002602001015190506000878381518110610b3657fe5b602002602001015190506000610b6f898581518110610b5157fe5b60200260200101518760000151670de0b6b3a76400006064026114c0565b6020870151604088015191925090610b8a85858585856115d2565b505060019093019250610b08915050565b5060019695505050505050565b60006104d5610bb56111dc565b84846112cc565b670de0b6b3a764000081565b600080610bd3610c33565b905080421080610be257508242105b156104d55760009150506106cc565b6007602052600090815260409020805460018201546002830154600384015460048501546005909501546001600160a01b039094169492939192909160ff1686565b6360707a0090565b600080610c4783610785565b6001600160a01b03841660009081526007602052604081206001015491925090610c7190836110bd565b949350505050565b6001600160a01b038216600090815260076020526040812060010154610ca1575060016104d9565b6000610cac846106b2565b90506000610cb985610c3b565b6001600160a01b03861660009081526007602052604090206001015490915082118015610d0d57506001600160a01b0385166000908152600760205260409020600101548490610d0a9084906110bd565b10155b15610d1d576001925050506104d9565b6001600160a01b038516600090815260076020526040902060030154610d4290610bc8565b1580610d56575080610d5483866110bd565b105b15610d66576000925050506104d9565b506001949350505050565b68056bc75e2d6310000081565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b60088181548110610db957600080fd5b600091825260209091206003909102018054600182015460029092015490925060ff1683565b600080610dea610c33565b90506000610df88285610f6a565b905080421015610e0d576000925050506106cc565b6000610e1942836110bd565b90506000610e356001610e2f8462015180611158565b90610f6a565b9695505050505050565b610e476111dc565b6000546001600160a01b03908116911614610ea9576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b038116610eee5760405162461bcd60e51b8152600401808060200182810382526026815260200180611d036026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60098181548110610f5957600080fd5b600091825260209091200154905081565b600082820183811015610fc4576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b038216611026576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b611032600083836116e6565b60035461103f9082610f6a565b6003556001600160a01b0382166000908152600160205260409020546110659082610f6a565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6000610fc483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611429565b60008261110e575060006104d9565b8282028284828161111b57fe5b0414610fc45760405162461bcd60e51b8152600401808060200182810382526021815260200180611d716021913960400191505060405180910390fd5b6000610fc483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611717565b6000610fc483836040518060400160405280601881526020017f536166654d6174683a206d6f64756c6f206279207a65726f000000000000000081525061177c565b3390565b6001600160a01b0383166112255760405162461bcd60e51b8152600401808060200182810382526024815260200180611e246024913960400191505060405180910390fd5b6001600160a01b03821661126a5760405162461bcd60e51b8152600401808060200182810382526022815260200180611d296022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166113115760405162461bcd60e51b8152600401808060200182810382526025815260200180611dff6025913960400191505060405180910390fd5b6001600160a01b0382166113565760405162461bcd60e51b8152600401808060200182810382526023815260200180611cbe6023913960400191505060405180910390fd5b6113618383836116e6565b61139e81604051806060016040528060268152602001611d4b602691396001600160a01b0386166000908152600160205260409020549190611429565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546113cd9082610f6a565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600081848411156114b85760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561147d578181015183820152602001611465565b50505050905090810190601f1680156114aa5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000610c71826114d086866110ff565b90611158565b6001600160a01b03821661151b5760405162461bcd60e51b8152600401808060200182810382526021815260200180611dde6021913960400191505060405180910390fd5b611527826000836116e6565b61156481604051806060016040528060228152602001611ce1602291396001600160a01b0385166000908152600160205260409020549190611429565b6001600160a01b03831660009081526001602052604090205560035461158a90826110bd565b6003556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6001600160a01b0385166000908152600760205260409020600101541561160b5760405162461bcd60e51b8152600401610a8d90611bb1565b6000611615610c33565b905060006040518060c00160405280886001600160a01b031681526020018781526020018681526020016116528685610f6a90919063ffffffff16565b815260208082018790528515156040928301526001600160a01b038a8116600090815260078352839020845181546001600160a01b0319169216919091178155908301516001820155908201516002820155606082015160038201556080820151600482015560a08201516005909101805460ff191691151591909117905590506116dd87876117de565b50505050505050565b6116f08382610c79565b61170c5760405162461bcd60e51b8152600401610a8d90611b35565b610923838383610923565b600081836117665760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561147d578181015183820152602001611465565b50600083858161177257fe5b0495945050505050565b600081836117cb5760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561147d578181015183820152602001611465565b508284816117d557fe5b06949350505050565b60006117e86104df565b90506117f48183610f6a565b6117fc6106a3565b101561181a5760405162461bcd60e51b8152600401610a8d90611b7a565b6109238383610fcb565b80356001600160a01b03811681146106cc57600080fd5b600082601f83011261184b578081fd5b8135602061186061185b83611c9f565b611c7b565b828152818101908583018385028701840188101561187c578586fd5b855b8581101561189a5781358452928401929084019060010161187e565b5090979650505050505050565b6000602082840312156118b8578081fd5b610fc482611824565b600080604083850312156118d3578081fd5b6118dc83611824565b91506118ea60208401611824565b90509250929050565b600080600060608486031215611907578081fd5b61191084611824565b925061191e60208501611824565b9150604084013590509250925092565b60008060408385031215611940578182fd5b61194983611824565b946020939093013593505050565b60008060006060848603121561196b578283fd5b833567ffffffffffffffff80821115611982578485fd5b818601915086601f830112611995578485fd5b813560206119a561185b83611c9f565b82815281810190858301838502870184018c10156119c157898afd5b8996505b848710156119ea576119d681611824565b8352600196909601959183019183016119c5565b5097505087013592505080821115611a00578384fd5b50611a0d8682870161183b565b925050604084013590509250925092565b600060208284031215611a2f578081fd5b5035919050565b60008060408385031215611a48578182fd5b50508035926020909101359150565b6001600160a01b0391909116815260200190565b6001600160a01b039690961686526020860194909452604085019290925260608401526080830152151560a082015260c00190565b901515815260200190565b6000602080835283518082850152825b81811015611ad757858101830151858201604001528201611abb565b81811115611ae85783604083870101525b50601f01601f1916929092016040019392505050565b60208082526017908201527f56657374696e6720747970652069736e7420666f756e64000000000000000000604082015260600190565b60208082526025908201527f556e61626c6520746f207472616e736665722c206e6f7420756e6c6f636b6564604082015264103cb2ba1760d91b606082015260800190565b60208082526018908201527f4d6178696d756d20737570706c79206578636565646564210000000000000000604082015260600190565b6020808252602f908201527f56657374696e672077616c6c657420616c72656164792063726561746564206660408201526e6f722074686973206164647265737360881b606082015260800190565b6020808252602c908201527f4164647265737320616e6420746f74616c416d6f756e7473206c656e6774682060408201526b6d7573742062652073616d6560a01b606082015260800190565b90815260200190565b92835260208301919091521515604082015260600190565b60ff91909116815260200190565b60405181810167ffffffffffffffff81118282101715611c9757fe5b604052919050565b600067ffffffffffffffff821115611cb357fe5b506020908102019056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122006d3a6c9f79cdaf9bf68a36cb8a6013a52734a1add740c6b7fc3a8d04b3169aa64736f6c63430007060033

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.