ETH Price: $3,314.52 (-3.48%)
Gas: 22 Gwei

Token

Polkalaunch (POLA)
 

Overview

Max Total Supply

87,550,000 POLA

Holders

400

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
5,114.28568 POLA

Value
$0.00
0x7fe122e35e1e63cd8acb4efac755743ee00daffa
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
POLA

Compiler Version
v0.6.6+commit.6c089d02

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-08-08
*/

// Sources flattened with hardhat v2.2.1 https://hardhat.org

// File @openzeppelin/contracts/utils/[email protected]

// 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 @openzeppelin/contracts/token/ERC20/[email protected]

// 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);
}


// File @openzeppelin/contracts/math/[email protected]

// 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;
    }
}


// File @openzeppelin/contracts/token/ERC20/[email protected]

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;



/**
 * @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 { }
}


// File @openzeppelin/contracts/access/[email protected]

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

/**
 * @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;
    }
}


// File contracts/POLA.sol

//SPDX-License-Identifier: Unlicense
pragma solidity ^0.6.1;
contract POLA is ERC20('Polkalaunch', 'POLA') , Ownable {
    mapping(address => bool) public minter;
    uint256 private devVestingUnlocktime = 0;
    uint256 private devVestingLimit = 3;
    address private devAddress = address(0);

    uint256 public teamVestingUnlocktime = 0;
    uint256 public teamVestingLimit = 3;
    address private teamAddress = address(0);

    uint256 private seedVestingUnlocktime = 0;
    address private seedAddress = address(0);
    uint256 private seedVestingLimit = 8;

    uint256 private privateVestingUnlocktime = 0;
    address private privateAddress = address(0);
    uint256 private privateVestingLimit = 3;

    uint256 private liquidtyVestingUnlocktime = 0;
    address private liquidtyAddress = address(0);
    uint256 private liquidtyVestingLimit = 16;
    constructor(address _devAddress,address _privateAddress,address _seedAddress,address _teamAddress, address _liquidtyAddress) public {
        devAddress = _devAddress;
        privateAddress = _privateAddress;
        teamAddress = _teamAddress;
        seedAddress = _seedAddress;
        liquidtyAddress = _liquidtyAddress;

        _mint(liquidtyAddress,     10000000 * ( 10 ** 18 ));
        _mint(msg.sender,      1500000 * ( 10 ** 18 ));
        _mint(seedAddress,     7000000 * ( 10 ** 18 ));
        _mint(privateAddress, 12500000 * ( 10 ** 18 ));
        _mint(devAddress,     22500000 * ( 10 ** 18 ));
        _mint(teamAddress,    11550000 * ( 10 ** 18 ));

         devVestingUnlocktime = block.timestamp + 30 days;
         teamVestingUnlocktime = block.timestamp + 30 days;
         seedVestingUnlocktime = block.timestamp + 30 days;
         privateVestingUnlocktime = block.timestamp + 30 days;


    }
    function unlockVestingLiquidity() public {
         require(liquidtyAddress == msg.sender, "POLA: No Access");
        require(liquidtyVestingUnlocktime < block.timestamp, "POLA:Not Time Yet");
        require(liquidtyVestingLimit > 0 , "POLA: Cant Mint Anymore");
        if(liquidtyVestingLimit > 12) {
            _mint(liquidtyAddress, 7500000 * (10 ** 18));
        } else {
            _mint(liquidtyAddress, 5000000 * (10 ** 18));

        }
        
        liquidtyVestingLimit = liquidtyVestingLimit - 1;
        liquidtyVestingUnlocktime = block.timestamp + 30 days;
    }
    function unlockVestingSeedRound() public {
         require(seedAddress == msg.sender, "POLA: No Access");
        require(seedVestingUnlocktime < block.timestamp, "POLA:Not Time Yet");
        require(seedVestingLimit > 0 , "POLA: Cant Mint Anymore");
        _mint(seedAddress, 3500000 * (10 ** 18));
        
        seedVestingLimit = seedVestingLimit - 1;
        seedVestingUnlocktime = block.timestamp + 30 days;
    }
    function unlockVestingPrivateRound() public {
         require(privateAddress == msg.sender, "POLA: No Access");
        require(privateVestingUnlocktime < block.timestamp, "POLA:Not Time Yet");
        require(privateVestingLimit > 0 , "POLA: Cant Mint Anymore");
         _mint(privateAddress, 12500000 * (10 ** 18));
       
        privateVestingLimit = privateVestingLimit - 1;
        privateVestingUnlocktime = block.timestamp + 30 days;
    }
    function unlockVestingTeam() public {
         require(privateAddress == msg.sender, "POLA: No Access");
        require(teamVestingUnlocktime < block.timestamp, "POLA:Not Time Yet");
        require(teamVestingLimit > 0 , "POLA: Cant Mint Anymore");
        if(teamVestingLimit == 1) {
            _mint(teamAddress, 3850000 * (10 ** 18));
        } else {
            _mint(teamAddress, 11550000 * (10 ** 18));
        }
       
        teamVestingLimit = teamVestingLimit - 1; 
        teamVestingUnlocktime = block.timestamp + 30 days;
    }
    function unlockVestingDev()  public {
         require(devAddress == msg.sender, "POLA: No Access");
        require(devVestingUnlocktime < block.timestamp, "POLA:Not Time Yet");
        require(devVestingLimit > 0 , "POLA: Cant Mint Anymore");
        if(devVestingLimit == 1) {
             _mint(devAddress, 7500000 * (10 ** 18));
        } else {
            _mint(devAddress, 22500000 * (10 ** 18));
        }
       
        devVestingLimit = devVestingLimit - 1;
        devVestingUnlocktime = block.timestamp + 30 days;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_devAddress","type":"address"},{"internalType":"address","name":"_privateAddress","type":"address"},{"internalType":"address","name":"_seedAddress","type":"address"},{"internalType":"address","name":"_teamAddress","type":"address"},{"internalType":"address","name":"_liquidtyAddress","type":"address"}],"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":[{"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":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minter","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":"teamVestingLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamVestingUnlocktime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":[],"name":"unlockVestingDev","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unlockVestingLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unlockVestingPrivateRound","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unlockVestingSeedRound","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unlockVestingTeam","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600060075560036008556000600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600a556003600b556000600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600d556000600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506008600f5560006010556000601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600360125560006013556000601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060106015553480156200018d57600080fd5b5060405162002cd938038062002cd9833981810160405260a0811015620001b357600080fd5b8101908080519060200190929190805190602001909291908051906020019092919080519060200190929190805190602001909291905050506040518060400160405280600b81526020017f506f6c6b616c61756e63680000000000000000000000000000000000000000008152506040518060400160405280600481526020017f504f4c4100000000000000000000000000000000000000000000000000000000815250816003908051906020019062000270929190620008a5565b50806004908051906020019062000289929190620008a5565b506012600560006101000a81548160ff021916908360ff16021790555050506000620002ba6200063160201b60201c565b905080600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35084600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555083601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620004dd601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166a084595161401484a0000006200063960201b60201c565b620004fa336a013da329b63364718000006200063960201b60201c565b62000539600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166a05ca4ec2a79a7f670000006200063960201b60201c565b62000578601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166a0a56fa5b99019a5c8000006200063960201b60201c565b620005b7600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166a129c8f71ad02e2a68000006200063960201b60201c565b620005f6600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166a098dcec12e255236c000006200063960201b60201c565b62278d00420160078190555062278d004201600a8190555062278d004201600d8190555062278d004201601081905550505050505062000954565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620006dd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b620006f1600083836200081760201b60201c565b6200070d816002546200081c60201b6200218b1790919060201c565b6002819055506200076b816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200081c60201b6200218b1790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b505050565b6000808284019050838110156200089b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620008e857805160ff191683800117855562000919565b8280016001018555821562000919579182015b8281111562000918578251825591602001919060010190620008fb565b5b5090506200092891906200092c565b5090565b6200095191905b808211156200094d57600081600090555060010162000933565b5090565b90565b61237580620009646000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c80638da5cb5b116100b8578063b31efae11161007c578063b31efae1146105e7578063b7bd1a3f14610605578063c041b7551461060f578063ce80a69714610619578063dd62ed3e14610623578063f2fde38b1461069b57610142565b80638da5cb5b1461044457806395d89b411461048e578063a457c2d714610511578063a9059cbb14610577578063aea8b375146105dd57610142565b8063313ce5671161010a578063313ce567146102de57806339509351146103025780633dd08c3814610368578063433276fe146103c457806370a08231146103e2578063715018a61461043a57610142565b806306fdde0314610147578063095ea7b3146101ca57806310f537a41461023057806318160ddd1461023a57806323b872dd14610258575b600080fd5b61014f6106df565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561018f578082015181840152602081019050610174565b50505050905090810190601f1680156101bc5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610216600480360360408110156101e057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610781565b604051808215151515815260200191505060405180910390f35b61023861079f565b005b6102426109a2565b6040518082815260200191505060405180910390f35b6102c46004803603606081101561026e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506109ac565b604051808215151515815260200191505060405180910390f35b6102e6610a85565b604051808260ff1660ff16815260200191505060405180910390f35b61034e6004803603604081101561031857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610a9c565b604051808215151515815260200191505060405180910390f35b6103aa6004803603602081101561037e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610b4f565b604051808215151515815260200191505060405180910390f35b6103cc610b6f565b6040518082815260200191505060405180910390f35b610424600480360360208110156103f857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610b75565b6040518082815260200191505060405180910390f35b610442610bbd565b005b61044c610d2d565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610496610d57565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156104d65780820151818401526020810190506104bb565b50505050905090810190601f1680156105035780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61055d6004803603604081101561052757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610df9565b604051808215151515815260200191505060405180910390f35b6105c36004803603604081101561058d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ec6565b604051808215151515815260200191505060405180910390f35b6105e5610ee4565b005b6105ef61112f565b6040518082815260200191505060405180910390f35b61060d611135565b005b610617611380565b005b610621611583565b005b6106856004803603604081101561063957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506117ce565b6040518082815260200191505060405180910390f35b6106dd600480360360208110156106b157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611855565b005b606060038054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156107775780601f1061074c57610100808354040283529160200191610777565b820191906000526020600020905b81548152906001019060200180831161075a57829003601f168201915b5050505050905090565b600061079561078e611a4a565b8484611a52565b6001905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610862576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f504f4c413a204e6f20416363657373000000000000000000000000000000000081525060200191505060405180910390fd5b42601054106108d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f504f4c413a4e6f742054696d652059657400000000000000000000000000000081525060200191505060405180910390fd5b600060125411610951576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f504f4c413a2043616e74204d696e7420416e796d6f726500000000000000000081525060200191505060405180910390fd5b610988601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166a0a56fa5b99019a5c800000611c49565b60016012540360128190555062278d004201601081905550565b6000600254905090565b60006109b9848484611e10565b610a7a846109c5611a4a565b610a75856040518060600160405280602881526020016122aa60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610a2b611a4a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546120d19092919063ffffffff16565b611a52565b600190509392505050565b6000600560009054906101000a900460ff16905090565b6000610b45610aa9611a4a565b84610b408560016000610aba611a4a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461218b90919063ffffffff16565b611a52565b6001905092915050565b60066020528060005260406000206000915054906101000a900460ff1681565b600b5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610bc5611a4a565b73ffffffffffffffffffffffffffffffffffffffff16610be3610d2d565b73ffffffffffffffffffffffffffffffffffffffff1614610c6c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610def5780601f10610dc457610100808354040283529160200191610def565b820191906000526020600020905b815481529060010190602001808311610dd257829003601f168201915b5050505050905090565b6000610ebc610e06611a4a565b84610eb78560405180606001604052806025815260200161231b6025913960016000610e30611a4a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546120d19092919063ffffffff16565b611a52565b6001905092915050565b6000610eda610ed3611a4a565b8484611e10565b6001905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610fa7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f504f4c413a204e6f20416363657373000000000000000000000000000000000081525060200191505060405180910390fd5b426007541061101e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f504f4c413a4e6f742054696d652059657400000000000000000000000000000081525060200191505060405180910390fd5b600060085411611096576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f504f4c413a2043616e74204d696e7420416e796d6f726500000000000000000081525060200191505060405180910390fd5b600160085414156110dd576110d8600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166a06342fd08f00f637800000611c49565b611115565b611114600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166a129c8f71ad02e2a6800000611c49565b5b60016008540360088190555062278d004201600781905550565b600a5481565b3373ffffffffffffffffffffffffffffffffffffffff16601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146111f8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f504f4c413a204e6f20416363657373000000000000000000000000000000000081525060200191505060405180910390fd5b42600a541061126f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f504f4c413a4e6f742054696d652059657400000000000000000000000000000081525060200191505060405180910390fd5b6000600b54116112e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f504f4c413a2043616e74204d696e7420416e796d6f726500000000000000000081525060200191505060405180910390fd5b6001600b54141561132e57611329600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166a032f44eb0f61c612400000611c49565b611366565b611365600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166a098dcec12e255236c00000611c49565b5b6001600b5403600b8190555062278d004201600a81905550565b3373ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611443576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f504f4c413a204e6f20416363657373000000000000000000000000000000000081525060200191505060405180910390fd5b42600d54106114ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f504f4c413a4e6f742054696d652059657400000000000000000000000000000081525060200191505060405180910390fd5b6000600f5411611532576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f504f4c413a2043616e74204d696e7420416e796d6f726500000000000000000081525060200191505060405180910390fd5b611569600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166a02e5276153cd3fb3800000611c49565b6001600f5403600f8190555062278d004201600d81905550565b3373ffffffffffffffffffffffffffffffffffffffff16601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611646576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f504f4c413a204e6f20416363657373000000000000000000000000000000000081525060200191505060405180910390fd5b42601354106116bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f504f4c413a4e6f742054696d652059657400000000000000000000000000000081525060200191505060405180910390fd5b600060155411611735576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f504f4c413a2043616e74204d696e7420416e796d6f726500000000000000000081525060200191505060405180910390fd5b600c601554111561177c57611777601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166a06342fd08f00f637800000611c49565b6117b4565b6117b3601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166a0422ca8b0a00a425000000611c49565b5b60016015540360158190555062278d004201601381905550565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61185d611a4a565b73ffffffffffffffffffffffffffffffffffffffff1661187b610d2d565b73ffffffffffffffffffffffffffffffffffffffff1614611904576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561198a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061223c6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611ad8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806122f76024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b5e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806122626022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cec576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b611cf860008383612213565b611d0d8160025461218b90919063ffffffff16565b600281905550611d64816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461218b90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e96576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806122d26025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f1c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806122196023913960400191505060405180910390fd5b611f27838383612213565b611f9281604051806060016040528060268152602001612284602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546120d19092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612025816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461218b90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b600083831115829061217e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612143578082015181840152602081019050612128565b50505050905090810190601f1680156121705780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5082840390509392505050565b600080828401905083811015612209576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b50505056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212204ed9177694cfbf60c7deb788eba2dccd759c4d0cbfeb9b71d20ecde0c155375a64736f6c634300060600330000000000000000000000001b3b086d528eeffdf3b12170925909e24bb48d220000000000000000000000009a00e43cf4b78887f0705081fc4acafc391ff14c0000000000000000000000009a00e43cf4b78887f0705081fc4acafc391ff14c000000000000000000000000bbd899c03707b4ede2af94e00612b32d1cbcf0cf000000000000000000000000926456580a314c81b0b5ea9ddbe271a40abb7c55

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c80638da5cb5b116100b8578063b31efae11161007c578063b31efae1146105e7578063b7bd1a3f14610605578063c041b7551461060f578063ce80a69714610619578063dd62ed3e14610623578063f2fde38b1461069b57610142565b80638da5cb5b1461044457806395d89b411461048e578063a457c2d714610511578063a9059cbb14610577578063aea8b375146105dd57610142565b8063313ce5671161010a578063313ce567146102de57806339509351146103025780633dd08c3814610368578063433276fe146103c457806370a08231146103e2578063715018a61461043a57610142565b806306fdde0314610147578063095ea7b3146101ca57806310f537a41461023057806318160ddd1461023a57806323b872dd14610258575b600080fd5b61014f6106df565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561018f578082015181840152602081019050610174565b50505050905090810190601f1680156101bc5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610216600480360360408110156101e057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610781565b604051808215151515815260200191505060405180910390f35b61023861079f565b005b6102426109a2565b6040518082815260200191505060405180910390f35b6102c46004803603606081101561026e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506109ac565b604051808215151515815260200191505060405180910390f35b6102e6610a85565b604051808260ff1660ff16815260200191505060405180910390f35b61034e6004803603604081101561031857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610a9c565b604051808215151515815260200191505060405180910390f35b6103aa6004803603602081101561037e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610b4f565b604051808215151515815260200191505060405180910390f35b6103cc610b6f565b6040518082815260200191505060405180910390f35b610424600480360360208110156103f857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610b75565b6040518082815260200191505060405180910390f35b610442610bbd565b005b61044c610d2d565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610496610d57565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156104d65780820151818401526020810190506104bb565b50505050905090810190601f1680156105035780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61055d6004803603604081101561052757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610df9565b604051808215151515815260200191505060405180910390f35b6105c36004803603604081101561058d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ec6565b604051808215151515815260200191505060405180910390f35b6105e5610ee4565b005b6105ef61112f565b6040518082815260200191505060405180910390f35b61060d611135565b005b610617611380565b005b610621611583565b005b6106856004803603604081101561063957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506117ce565b6040518082815260200191505060405180910390f35b6106dd600480360360208110156106b157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611855565b005b606060038054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156107775780601f1061074c57610100808354040283529160200191610777565b820191906000526020600020905b81548152906001019060200180831161075a57829003601f168201915b5050505050905090565b600061079561078e611a4a565b8484611a52565b6001905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610862576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f504f4c413a204e6f20416363657373000000000000000000000000000000000081525060200191505060405180910390fd5b42601054106108d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f504f4c413a4e6f742054696d652059657400000000000000000000000000000081525060200191505060405180910390fd5b600060125411610951576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f504f4c413a2043616e74204d696e7420416e796d6f726500000000000000000081525060200191505060405180910390fd5b610988601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166a0a56fa5b99019a5c800000611c49565b60016012540360128190555062278d004201601081905550565b6000600254905090565b60006109b9848484611e10565b610a7a846109c5611a4a565b610a75856040518060600160405280602881526020016122aa60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610a2b611a4a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546120d19092919063ffffffff16565b611a52565b600190509392505050565b6000600560009054906101000a900460ff16905090565b6000610b45610aa9611a4a565b84610b408560016000610aba611a4a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461218b90919063ffffffff16565b611a52565b6001905092915050565b60066020528060005260406000206000915054906101000a900460ff1681565b600b5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610bc5611a4a565b73ffffffffffffffffffffffffffffffffffffffff16610be3610d2d565b73ffffffffffffffffffffffffffffffffffffffff1614610c6c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610def5780601f10610dc457610100808354040283529160200191610def565b820191906000526020600020905b815481529060010190602001808311610dd257829003601f168201915b5050505050905090565b6000610ebc610e06611a4a565b84610eb78560405180606001604052806025815260200161231b6025913960016000610e30611a4a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546120d19092919063ffffffff16565b611a52565b6001905092915050565b6000610eda610ed3611a4a565b8484611e10565b6001905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610fa7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f504f4c413a204e6f20416363657373000000000000000000000000000000000081525060200191505060405180910390fd5b426007541061101e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f504f4c413a4e6f742054696d652059657400000000000000000000000000000081525060200191505060405180910390fd5b600060085411611096576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f504f4c413a2043616e74204d696e7420416e796d6f726500000000000000000081525060200191505060405180910390fd5b600160085414156110dd576110d8600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166a06342fd08f00f637800000611c49565b611115565b611114600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166a129c8f71ad02e2a6800000611c49565b5b60016008540360088190555062278d004201600781905550565b600a5481565b3373ffffffffffffffffffffffffffffffffffffffff16601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146111f8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f504f4c413a204e6f20416363657373000000000000000000000000000000000081525060200191505060405180910390fd5b42600a541061126f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f504f4c413a4e6f742054696d652059657400000000000000000000000000000081525060200191505060405180910390fd5b6000600b54116112e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f504f4c413a2043616e74204d696e7420416e796d6f726500000000000000000081525060200191505060405180910390fd5b6001600b54141561132e57611329600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166a032f44eb0f61c612400000611c49565b611366565b611365600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166a098dcec12e255236c00000611c49565b5b6001600b5403600b8190555062278d004201600a81905550565b3373ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611443576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f504f4c413a204e6f20416363657373000000000000000000000000000000000081525060200191505060405180910390fd5b42600d54106114ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f504f4c413a4e6f742054696d652059657400000000000000000000000000000081525060200191505060405180910390fd5b6000600f5411611532576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f504f4c413a2043616e74204d696e7420416e796d6f726500000000000000000081525060200191505060405180910390fd5b611569600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166a02e5276153cd3fb3800000611c49565b6001600f5403600f8190555062278d004201600d81905550565b3373ffffffffffffffffffffffffffffffffffffffff16601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611646576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f504f4c413a204e6f20416363657373000000000000000000000000000000000081525060200191505060405180910390fd5b42601354106116bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f504f4c413a4e6f742054696d652059657400000000000000000000000000000081525060200191505060405180910390fd5b600060155411611735576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f504f4c413a2043616e74204d696e7420416e796d6f726500000000000000000081525060200191505060405180910390fd5b600c601554111561177c57611777601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166a06342fd08f00f637800000611c49565b6117b4565b6117b3601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166a0422ca8b0a00a425000000611c49565b5b60016015540360158190555062278d004201601381905550565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61185d611a4a565b73ffffffffffffffffffffffffffffffffffffffff1661187b610d2d565b73ffffffffffffffffffffffffffffffffffffffff1614611904576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561198a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061223c6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611ad8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806122f76024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b5e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806122626022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cec576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b611cf860008383612213565b611d0d8160025461218b90919063ffffffff16565b600281905550611d64816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461218b90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e96576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806122d26025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f1c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806122196023913960400191505060405180910390fd5b611f27838383612213565b611f9281604051806060016040528060268152602001612284602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546120d19092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612025816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461218b90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b600083831115829061217e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612143578082015181840152602081019050612128565b50505050905090810190601f1680156121705780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5082840390509392505050565b600080828401905083811015612209576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b50505056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212204ed9177694cfbf60c7deb788eba2dccd759c4d0cbfeb9b71d20ecde0c155375a64736f6c63430006060033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000001b3b086d528eeffdf3b12170925909e24bb48d220000000000000000000000009a00e43cf4b78887f0705081fc4acafc391ff14c0000000000000000000000009a00e43cf4b78887f0705081fc4acafc391ff14c000000000000000000000000bbd899c03707b4ede2af94e00612b32d1cbcf0cf000000000000000000000000926456580a314c81b0b5ea9ddbe271a40abb7c55

-----Decoded View---------------
Arg [0] : _devAddress (address): 0x1b3B086d528eEffdf3B12170925909e24Bb48D22
Arg [1] : _privateAddress (address): 0x9A00e43Cf4b78887f0705081fC4aCafc391fF14c
Arg [2] : _seedAddress (address): 0x9A00e43Cf4b78887f0705081fC4aCafc391fF14c
Arg [3] : _teamAddress (address): 0xbbd899c03707b4Ede2af94e00612B32d1CBCF0cf
Arg [4] : _liquidtyAddress (address): 0x926456580A314c81B0B5EA9DDbE271A40aBB7c55

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000001b3b086d528eeffdf3b12170925909e24bb48d22
Arg [1] : 0000000000000000000000009a00e43cf4b78887f0705081fc4acafc391ff14c
Arg [2] : 0000000000000000000000009a00e43cf4b78887f0705081fc4acafc391ff14c
Arg [3] : 000000000000000000000000bbd899c03707b4ede2af94e00612b32d1cbcf0cf
Arg [4] : 000000000000000000000000926456580a314c81b0b5ea9ddbe271a40abb7c55


Deployed Bytecode Sourcemap

24972:4383:0:-:0;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;24972:4383:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;13649:91:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;13649:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15795:169;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;15795:169:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;27780:458;;;:::i;:::-;;14748:108;;;:::i;:::-;;;;;;;;;;;;;;;;;;;16446:321;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;16446:321:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;14592:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;17176:218;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;17176:218:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;25035:38;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;25035:38:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;25264:35;;;:::i;:::-;;;;;;;;;;;;;;;;;;;14919:127;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;14919:127:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;24323:148;;;:::i;:::-;;23672:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;13859:95;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;13859:95:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17897:269;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;17897:269:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;15259:175;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;15259:175:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;28807:545;;;:::i;:::-;;25217:40;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28244:557;;;:::i;:::-;;27341:433;;;:::i;:::-;;26739:596;;;:::i;:::-;;15497:151;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;15497:151:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;24626:244;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;24626:244:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;13649:91;13694:13;13727:5;13720:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13649:91;:::o;15795:169::-;15878:4;15895:39;15904:12;:10;:12::i;:::-;15918:7;15927:6;15895:8;:39::i;:::-;15952:4;15945:11;;15795:169;;;;:::o;27780:458::-;27862:10;27844:28;;:14;;;;;;;;;;;:28;;;27836:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27938:15;27911:24;;:42;27903:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28016:1;27994:19;;:23;27986:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28058:44;28064:14;;;;;;;;;;;28080:21;28058:5;:44::i;:::-;28166:1;28144:19;;:23;28122:19;:45;;;;28223:7;28205:15;:25;28178:24;:52;;;;27780:458::o;14748:108::-;14809:7;14836:12;;14829:19;;14748:108;:::o;16446:321::-;16552:4;16569:36;16579:6;16587:9;16598:6;16569:9;:36::i;:::-;16616:121;16625:6;16633:12;:10;:12::i;:::-;16647:89;16685:6;16647:89;;;;;;;;;;;;;;;;;:11;:19;16659:6;16647:19;;;;;;;;;;;;;;;:33;16667:12;:10;:12::i;:::-;16647:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;16616:8;:121::i;:::-;16755:4;16748:11;;16446:321;;;;;:::o;14592:91::-;14641:5;14666:9;;;;;;;;;;;14659:16;;14592:91;:::o;17176:218::-;17264:4;17281:83;17290:12;:10;:12::i;:::-;17304:7;17313:50;17352:10;17313:11;:25;17325:12;:10;:12::i;:::-;17313:25;;;;;;;;;;;;;;;:34;17339:7;17313:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;17281:8;:83::i;:::-;17382:4;17375:11;;17176:218;;;;:::o;25035:38::-;;;;;;;;;;;;;;;;;;;;;;:::o;25264:35::-;;;;:::o;14919:127::-;14993:7;15020:9;:18;15030:7;15020:18;;;;;;;;;;;;;;;;15013:25;;14919:127;;;:::o;24323:148::-;23903:12;:10;:12::i;:::-;23892:23;;:7;:5;:7::i;:::-;:23;;;23884:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24430:1:::1;24393:40;;24414:6;;;;;;;;;;;24393:40;;;;;;;;;;;;24461:1;24444:6;;:19;;;;;;;;;;;;;;;;;;24323:148::o:0;23672:87::-;23718:7;23745:6;;;;;;;;;;;23738:13;;23672:87;:::o;13859:95::-;13906:13;13939:7;13932:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13859:95;:::o;17897:269::-;17990:4;18007:129;18016:12;:10;:12::i;:::-;18030:7;18039:96;18078:15;18039:96;;;;;;;;;;;;;;;;;:11;:25;18051:12;:10;:12::i;:::-;18039:25;;;;;;;;;;;;;;;:34;18065:7;18039:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;18007:8;:129::i;:::-;18154:4;18147:11;;17897:269;;;;:::o;15259:175::-;15345:4;15362:42;15372:12;:10;:12::i;:::-;15386:9;15397:6;15362:9;:42::i;:::-;15422:4;15415:11;;15259:175;;;;:::o;28807:545::-;28877:10;28863:24;;:10;;;;;;;;;;;:24;;;28855:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28949:15;28926:20;;:38;28918:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29023:1;29005:15;;:19;28997:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29086:1;29067:15;;:20;29064:165;;;29105:39;29111:10;;;;;;;;;;;29123:20;29105:5;:39::i;:::-;29064:165;;;29177:40;29183:10;;;;;;;;;;;29195:21;29177:5;:40::i;:::-;29064:165;29284:1;29266:15;;:19;29248:15;:37;;;;29337:7;29319:15;:25;29296:20;:48;;;;28807:545::o;25217:40::-;;;;:::o;28244:557::-;28318:10;28300:28;;:14;;;;;;;;;;;:28;;;28292:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28391:15;28367:21;;:39;28359:69;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28466:1;28447:16;;:20;28439:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28530:1;28510:16;;:21;28507:167;;;28548:40;28554:11;;;;;;;;;;;28567:20;28548:5;:40::i;:::-;28507:167;;;28621:41;28627:11;;;;;;;;;;;28640:21;28621:5;:41::i;:::-;28507:167;28731:1;28712:16;;:20;28693:16;:39;;;;28786:7;28768:15;:25;28744:21;:49;;;;28244:557::o;27341:433::-;27417:10;27402:25;;:11;;;;;;;;;;;:25;;;27394:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27490:15;27466:21;;:39;27458:69;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27565:1;27546:16;;:20;27538:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27606:40;27612:11;;;;;;;;;;;27625:20;27606:5;:40::i;:::-;27705:1;27686:16;;:20;27667:16;:39;;;;27759:7;27741:15;:25;27717:21;:49;;;;27341:433::o;26739:596::-;26819:10;26800:29;;:15;;;;;;;;;;;:29;;;26792:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26896:15;26868:25;;:43;26860:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26975:1;26952:20;;:24;26944:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27042:2;27019:20;;:25;27016:180;;;27061:44;27067:15;;;;;;;;;;;27084:20;27061:5;:44::i;:::-;27016:180;;;27138:44;27144:15;;;;;;;;;;;27161:20;27138:5;:44::i;:::-;27016:180;27262:1;27239:20;;:24;27216:20;:47;;;;27320:7;27302:15;:25;27274;:53;;;;26739:596::o;15497:151::-;15586:7;15613:11;:18;15625:5;15613:18;;;;;;;;;;;;;;;:27;15632:7;15613:27;;;;;;;;;;;;;;;;15606:34;;15497:151;;;;:::o;24626:244::-;23903:12;:10;:12::i;:::-;23892:23;;:7;:5;:7::i;:::-;:23;;;23884:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24735:1:::1;24715:22;;:8;:22;;;;24707:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24825:8;24796:38;;24817:6;;;;;;;;;;;24796:38;;;;;;;;;;;;24854:8;24845:6;;:17;;;;;;;;;;;;;;;;;;24626:244:::0;:::o;737:106::-;790:15;825:10;818:17;;737:106;:::o;21044:346::-;21163:1;21146:19;;:5;:19;;;;21138:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21244:1;21225:21;;:7;:21;;;;21217:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21328:6;21298:11;:18;21310:5;21298:18;;;;;;;;;;;;;;;:27;21317:7;21298:27;;;;;;;;;;;;;;;:36;;;;21366:7;21350:32;;21359:5;21350:32;;;21375:6;21350:32;;;;;;;;;;;;;;;;;;21044:346;;;:::o;19477:378::-;19580:1;19561:21;;:7;:21;;;;19553:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19631:49;19660:1;19664:7;19673:6;19631:20;:49::i;:::-;19708:24;19725:6;19708:12;;:16;;:24;;;;:::i;:::-;19693:12;:39;;;;19764:30;19787:6;19764:9;:18;19774:7;19764:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;19743:9;:18;19753:7;19743:18;;;;;;;;;;;;;;;:51;;;;19831:7;19810:37;;19827:1;19810:37;;;19840:6;19810:37;;;;;;;;;;;;;;;;;;19477:378;;:::o;18656:539::-;18780:1;18762:20;;:6;:20;;;;18754:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18864:1;18843:23;;:9;:23;;;;18835:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18919:47;18940:6;18948:9;18959:6;18919:20;:47::i;:::-;18999:71;19021:6;18999:71;;;;;;;;;;;;;;;;;:9;:17;19009:6;18999:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;18979:9;:17;18989:6;18979:17;;;;;;;;;;;;;;;:91;;;;19104:32;19129:6;19104:9;:20;19114:9;19104:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;19081:9;:20;19091:9;19081:20;;;;;;;;;;;;;;;:55;;;;19169:9;19152:35;;19161:6;19152:35;;;19180:6;19152:35;;;;;;;;;;;;;;;;;;18656:539;;;:::o;9604:166::-;9690:7;9723:1;9718;:6;;9726:12;9710:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;9710:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9761:1;9757;:5;9750:12;;9604:166;;;;;:::o;6777:179::-;6835:7;6855:9;6871:1;6867;:5;6855:17;;6896:1;6891;:6;;6883:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6947:1;6940:8;;;6777:179;;;;:::o;22423:92::-;;;;:::o

Swarm Source

ipfs://4ed9177694cfbf60c7deb788eba2dccd759c4d0cbfeb9b71d20ecde0c155375a
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.