CRO Price: $0.08 (+0.68%)

Token

SINGLE Token (SINGLE)

Overview

Max Total Supply

999,999,999.99398174654378284 SINGLE

Holders

19,561 ( -0.010%)

Market

Price

$0.00 @ 0.007029 CRO (-0.10%)

Onchain Market Cap

$563,500.00

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
202.44446820654033022 SINGLE

Value
$0.11 ( ~1.3720 CRO) [0.0000%]
0xe63c9580f032047883eac063e3f0b700033b823a
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Single Finance is the DeFi protocol offering USD-based capital-protecting strategies for leveraged yield farmers.

Contract Source Code Verified (Exact Match)

Contract Name:
SingleToken

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at cronoscan.com on 2022-05-31
*/

pragma solidity ^0.8.0;

// File @openzeppelin/contracts/utils/[email protected]
// SPDX-License-Identifier: MIT
/**
       _____ _             __     _______                           
      / ___/(_)___  ____ _/ /__  / ____(_)___  ____ _____  ________ 
      \__ \/ / __ \/ __ `/ / _ \/ /_  / / __ \/ __ `/ __ \/ ___/ _ \
     ___/ / / / / / /_/ / /  __/ __/ / / / / / /_/ / / / / /__/  __/
    /____/_/_/ /_/\__, /_/\___/_/   /_/_/ /_/\__,_/_/ /_/\___/\___/ 
                 /____/                                             
*/


/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}


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


/**
 * @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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


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


// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
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) {
        unchecked {
            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) {
        unchecked {
            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) {
        unchecked {
            // 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) {
        unchecked {
            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) {
        unchecked {
            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) {
        return a + b;
    }

    /**
     * @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 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) {
        return a * b;
    }

    /**
     * @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.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        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) {
        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) {
        unchecked {
            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.
     *
     * 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) {
        unchecked {
            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) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}


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


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


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}


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



/**
 * @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 Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * 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, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override 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 this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        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] + 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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * 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);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(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:
     *
     * - `account` 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 += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(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);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(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 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 transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}


// File contracts/SingleToken.sol


pragma solidity ^0.8.0;




// import "hardhat/console.sol";

/**
 * Single Finance token with Governance.
 */
contract SingleToken is ERC20("SINGLE Token", "SINGLE"), Ownable {
  using SafeMath for uint256;

  uint256 private constant CAP = 1000_000_000e18;

  uint256 public constant INVESTOR_MINT_CAP = 137_000_000e18;
  uint256 public constant LIQUIDITY_MINT_CAP = 20_000_000e18;

  uint256 public startMiningTimestamp;
  // uint256 public startReleaseTimestamp;
  uint256 public launchPeriodEndTimestamp;
  uint256 public nextAdjustTimestamp;

  uint256 public INITIAL_SUPPLY_PER_BLOCK;
  uint256 public SUPPLY_PER_BLOCK;
  uint256 public constant LAUNCH_PERIOD_ADJUST_WINDOW = 365 days / 12;
  uint256 public constant SUPPLY_HALVING_WINDOW = 365 days / 2;

  uint256 public constant ECOSYSTEM_TGE_RELEASE = 11_150_000e18;
  uint256 public constant ECOSYSTEM_VESTING_AMT = 211_850_000e18;
  uint256 public constant ECOSYSTEM_VESTING_PERIOD = 365 days *2; // 24 months

  uint256 public constant TEAM_TGE_RELEASE = 2_200_000e18;
  uint256 public constant TEAM_VESTING_AMT = 217_800_000e18;
  uint256 public constant TEAM_VESTING_PERIOD = 365 days *2; // 24 months

  uint256 public investorMinted = 0;
  uint256 public liquidityMinted = 0;
  uint256 public teamMinted = 0;
  uint256 public ecosystemMinted = 0;

  
  event SupplyAdjusted(uint256 supplyPerBlock, uint256 nextAdjustTs);


  constructor(
    uint256 initialSupplyPerBlock,
    uint256 _startMiningTimestamp
  ) {

    if(_startMiningTimestamp == 0){
      _startMiningTimestamp = block.timestamp;
    }

    require(block.timestamp <= _startMiningTimestamp, "cannot set past block number");

    startMiningTimestamp = _startMiningTimestamp;
    
    launchPeriodEndTimestamp = startMiningTimestamp.add(SUPPLY_HALVING_WINDOW);

    // available for first adjustment after mining started
    nextAdjustTimestamp = startMiningTimestamp;

    INITIAL_SUPPLY_PER_BLOCK = initialSupplyPerBlock;
    SUPPLY_PER_BLOCK = 0;

  }

  function cap() public pure returns (uint256) {
    return CAP;
  }



  
  function mint(address _to, uint256 _amount) public onlyOwner {
    require(totalSupply().add(_amount) <= cap(), "cap exceeded");
    _mint(_to, _amount);
    _moveDelegates(address(0), _delegates[_to], _amount);
  }

  function mintForLiquidity(address _to, uint256 _amount) public onlyOwner {
    require(liquidityMinted.add(_amount) <= LIQUIDITY_MINT_CAP, "mint limit exceeded");
    liquidityMinted = liquidityMinted.add(_amount);
    mint(_to, _amount);
  }

  function mintForInvestor(address _to, uint256 _amount) public onlyOwner {
    require(investorMinted.add(_amount) <= INVESTOR_MINT_CAP, "mint limit exceeded");
    investorMinted = investorMinted.add(_amount);
    mint(_to, _amount);
  }


  function mintForEcosystem(address _to, uint256 _amount) public onlyOwner {
    require(ecosystemMinted.add(_amount) <= ECOSYSTEM_VESTING_AMT.add(ECOSYSTEM_TGE_RELEASE), "mint limit exceeded");
    require(_amount <= pendingEcosystemTokens(), "available limit exceeded");
    ecosystemMinted = ecosystemMinted.add(_amount);
    mint(_to, _amount);
  }

  function mintForTeam(address _to, uint256 _amount) public onlyOwner {
    require(teamMinted.add(_amount) <= TEAM_VESTING_AMT.add(TEAM_TGE_RELEASE), "mint limit exceeded");
    require(_amount <= pendingTeamTokens(), "available limit exceeded");
    teamMinted = teamMinted.add(_amount);
    mint(_to, _amount);
  }


  function burn(address _account, uint256 _amount) external onlyOwner {
    _burn(_account, _amount);
    _moveDelegates(_delegates[_account], address(0), _amount);
  }

  function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
    require(recipient != address(this), "ERC20: transfer to the token contract");

    _transfer(_msgSender(), recipient, amount);
    _moveDelegates(_delegates[_msgSender()], _delegates[recipient], amount);
    return true;
  }

  function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
    require(recipient != address(this), "ERC20: transfer to the token contract");

    _transfer(sender, recipient, amount);
    _approve(sender, _msgSender(), allowance(sender, _msgSender()).sub(amount, "ERC20: transfer amount exceeds allowance"));
    _moveDelegates(_delegates[sender], _delegates[recipient], amount);
    return true;
  }


  function pendingEcosystemTokens() public view returns (uint256)
  {
    if(block.timestamp < startMiningTimestamp){
      return 0;
    }

    uint256 singlePerSec = ECOSYSTEM_VESTING_AMT.div(ECOSYSTEM_VESTING_PERIOD);

    uint256 timePast = uint256(block.timestamp).sub(startMiningTimestamp);

    if(timePast >= ECOSYSTEM_VESTING_PERIOD){
      return ECOSYSTEM_VESTING_AMT.add(ECOSYSTEM_TGE_RELEASE).sub(ecosystemMinted);
    }

    return timePast.mul(singlePerSec).add(ECOSYSTEM_TGE_RELEASE).sub(ecosystemMinted);
  }


  function pendingTeamTokens() public view returns (uint256)
  {
    if(block.timestamp < startMiningTimestamp){
      return 0;
    }

    uint256 singlePerSec = TEAM_VESTING_AMT.div(TEAM_VESTING_PERIOD);

    uint256 timePast = uint256(block.timestamp).sub(startMiningTimestamp);

    if(timePast >= TEAM_VESTING_PERIOD){
      return TEAM_VESTING_AMT.add(TEAM_TGE_RELEASE).sub(teamMinted);
    }

    return timePast.mul(singlePerSec).add(TEAM_TGE_RELEASE).sub(teamMinted);
  }


  /**
   * Perform adjust on token supply once invoked
   */
  function supplyAdjust() public onlyOwner
  {

    require(block.timestamp >= nextAdjustTimestamp, "SingleToken: not yet");


    if(block.timestamp < launchPeriodEndTimestamp)
    {
      launchPeriodSupplyAdjust();
    }else
    {

      // first halving
      if( (block.timestamp - launchPeriodEndTimestamp) < SUPPLY_HALVING_WINDOW ){
        SUPPLY_PER_BLOCK = INITIAL_SUPPLY_PER_BLOCK.div(2);
      }else{
        // halving
        SUPPLY_PER_BLOCK = SUPPLY_PER_BLOCK.div(2);
      }

      nextAdjustTimestamp = nextAdjustTimestamp.add(SUPPLY_HALVING_WINDOW);

      emit SupplyAdjusted(SUPPLY_PER_BLOCK, nextAdjustTimestamp);

    }

  }


  function launchPeriodSupplyAdjust() internal{

    uint256 N = 6 - (launchPeriodEndTimestamp - block.timestamp).mul(100).div(LAUNCH_PERIOD_ADJUST_WINDOW).div(100);

    // multiplier = ( 32 + p(3.5-N) ) / 32
    // p = 5
    uint256 multiplier = uint256(3200).add(1750).sub(N.mul(500)).mul(1e12).div(3200);

    SUPPLY_PER_BLOCK = INITIAL_SUPPLY_PER_BLOCK.mul(multiplier).div(1e12);

    // advance the next adjust time
    nextAdjustTimestamp = nextAdjustTimestamp.add(LAUNCH_PERIOD_ADJUST_WINDOW);

    emit SupplyAdjusted(SUPPLY_PER_BLOCK, nextAdjustTimestamp);

  }



  // Copied and modified from YAM code:
  // https://github.com/yam-finance/yam-protocol/blob/master/contracts/token/YAMGovernanceStorage.sol
  // https://github.com/yam-finance/yam-protocol/blob/master/contracts/token/YAMGovernance.sol
  // Which is copied and modified from COMPOUND:
  // https://github.com/compound-finance/compound-protocol/blob/master/contracts/Governance/Comp.sol

  /// @notice A record of each accounts delegate
  mapping (address => address) internal _delegates;

  /// @notice A checkpoint for marking number of votes from a given block
  struct Checkpoint {
    uint32 fromBlock;
    uint256 votes;
  }

  /// @notice A record of votes checkpoints for each account, by index
  mapping (address => mapping (uint32 => Checkpoint)) public checkpoints;

  /// @notice The number of checkpoints for each account
  mapping (address => uint32) public numCheckpoints;

  /// @notice The EIP-712 typehash for the contract's domain
  bytes32 public constant DOMAIN_TYPEHASH = keccak256("EIP712Domain(string name,uint256 chainId,address verifyingContract)");

  /// @notice The EIP-712 typehash for the delegation struct used by the contract
  bytes32 public constant DELEGATION_TYPEHASH = keccak256("Delegation(address delegatee,uint256 nonce,uint256 expiry)");

  /// @notice A record of states for signing / validating signatures
  mapping (address => uint) public nonces;

  /// @notice An event thats emitted when an account changes its delegate
  event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate);

  /// @notice An event thats emitted when a delegate account's vote balance changes
  event DelegateVotesChanged(address indexed delegate, uint previousBalance, uint newBalance);

  /**
    * @notice Delegate votes from `msg.sender` to `delegatee`
    * @param delegator The address to get delegatee for
    */
  function delegates(address delegator)
      external
      view
      returns (address)
  {
      return _delegates[delegator];
  }

  /**
  * @notice Delegate votes from `msg.sender` to `delegatee`
  * @param delegatee The address to delegate votes to
  */
  function delegate(address delegatee) external {
    return _delegate(msg.sender, delegatee);
  }

  /**
    * @notice Delegates votes from signatory to `delegatee`
    * @param delegatee The address to delegate votes to
    * @param nonce The contract state required to match the signature
    * @param expiry The time at which to expire the signature
    * @param v The recovery byte of the signature
    * @param r Half of the ECDSA signature pair
    * @param s Half of the ECDSA signature pair
    */
  function delegateBySig(
    address delegatee,
    uint256 nonce,
    uint256 expiry,
    uint8 v,
    bytes32 r,
    bytes32 s
  )
      external
  {
      bytes32 domainSeparator = keccak256(
          abi.encode(
              DOMAIN_TYPEHASH,
              keccak256(bytes(name())),
              // getChainId(),
              block.chainid,
              address(this)
          )
      );

      bytes32 structHash = keccak256(
          abi.encode(
              DELEGATION_TYPEHASH,
              delegatee,
              nonce,
              expiry
          )
      );

      bytes32 digest = keccak256(
          abi.encodePacked(
              "\x19\x01",
              domainSeparator,
              structHash
          )
      );

      address signatory = ecrecover(digest, v, r, s);
      require(signatory != address(0), "SINGLE::delegateBySig: invalid signature");
      require(nonce == nonces[signatory]++, "SINGLE::delegateBySig: invalid nonce");
      require(block.timestamp <= expiry, "SINGLE::delegateBySig: signature expired");
      return _delegate(signatory, delegatee);
  }

  /**
    * @notice Gets the current votes balance for `account`
    * @param account The address to get votes balance
    * @return The number of current votes for `account`
    */
  function getCurrentVotes(address account)
      external
      view
      returns (uint256)
  {
      uint32 nCheckpoints = numCheckpoints[account];
      return nCheckpoints > 0 ? checkpoints[account][nCheckpoints - 1].votes : 0;
  }

  /**
    * @notice Determine the prior number of votes for an account as of a block number
    * @dev Block number must be a finalized block or else this function will revert to prevent misinformation.
    * @param account The address of the account to check
    * @param blockNumber The block number to get the vote balance at
    * @return The number of votes the account had as of the given block
    */
  function getPriorVotes(address account, uint blockNumber)
      external
      view
      returns (uint256)
  {
    require(blockNumber < block.number, "SINGLE::getPriorVotes: not yet determined");

    uint32 nCheckpoints = numCheckpoints[account];
    if (nCheckpoints == 0) {
        return 0;
    }

    // First check most recent balance
    if (checkpoints[account][nCheckpoints - 1].fromBlock <= blockNumber) {
        return checkpoints[account][nCheckpoints - 1].votes;
    }

    // Next check implicit zero balance
    if (checkpoints[account][0].fromBlock > blockNumber) {
        return 0;
    }

    uint32 lower = 0;
    uint32 upper = nCheckpoints - 1;
    while (upper > lower) {
        uint32 center = upper - (upper - lower) / 2; // ceil, avoiding overflow
        Checkpoint memory cp = checkpoints[account][center];
        if (cp.fromBlock == blockNumber) {
            return cp.votes;
        } else if (cp.fromBlock < blockNumber) {
            lower = center;
        } else {
            upper = center - 1;
        }
    }
    return checkpoints[account][lower].votes;
  }

  function _delegate(address delegator, address delegatee)
      internal
  {
    address currentDelegate = _delegates[delegator];
    uint256 delegatorBalance = balanceOf(delegator); // balance of underlying YAMs (not scaled);
    _delegates[delegator] = delegatee;

    emit DelegateChanged(delegator, currentDelegate, delegatee);

    _moveDelegates(currentDelegate, delegatee, delegatorBalance);
  }

  function _moveDelegates(address srcRep, address dstRep, uint256 amount) internal {
    if (srcRep != dstRep && amount > 0) {
      if (srcRep != address(0)) {
        // decrease old representative
        uint32 srcRepNum = numCheckpoints[srcRep];
        uint256 srcRepOld = srcRepNum > 0 ? checkpoints[srcRep][srcRepNum - 1].votes : 0;
        uint256 srcRepNew = srcRepOld.sub(amount);
        _writeCheckpoint(srcRep, srcRepNum, srcRepOld, srcRepNew);
      }

      if (dstRep != address(0)) {
        // increase new representative
        uint32 dstRepNum = numCheckpoints[dstRep];
        uint256 dstRepOld = dstRepNum > 0 ? checkpoints[dstRep][dstRepNum - 1].votes : 0;
        uint256 dstRepNew = dstRepOld.add(amount);
        _writeCheckpoint(dstRep, dstRepNum, dstRepOld, dstRepNew);
      }
    }
  }

  function _writeCheckpoint(
    address delegatee,
    uint32 nCheckpoints,
    uint256 oldVotes,
    uint256 newVotes
  ) internal
  {
    uint32 blockNumber = safe32(block.number, "SINGLE::_writeCheckpoint: block number exceeds 32 bits");

    if (nCheckpoints > 0 && checkpoints[delegatee][nCheckpoints - 1].fromBlock == blockNumber) {
        checkpoints[delegatee][nCheckpoints - 1].votes = newVotes;
    } else {
        checkpoints[delegatee][nCheckpoints] = Checkpoint(blockNumber, newVotes);
        numCheckpoints[delegatee] = nCheckpoints + 1;
    }

    emit DelegateVotesChanged(delegatee, oldVotes, newVotes);
  }

  function safe32(uint n, string memory errorMessage) internal pure returns (uint32) {
    require(n < 2**32, errorMessage);
    return uint32(n);
  }


}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"initialSupplyPerBlock","type":"uint256"},{"internalType":"uint256","name":"_startMiningTimestamp","type":"uint256"}],"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":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"DelegateVotesChanged","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":false,"internalType":"uint256","name":"supplyPerBlock","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"nextAdjustTs","type":"uint256"}],"name":"SupplyAdjusted","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":"DELEGATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ECOSYSTEM_TGE_RELEASE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ECOSYSTEM_VESTING_AMT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ECOSYSTEM_VESTING_PERIOD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"INITIAL_SUPPLY_PER_BLOCK","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"INVESTOR_MINT_CAP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LAUNCH_PERIOD_ADJUST_WINDOW","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LIQUIDITY_MINT_CAP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SUPPLY_HALVING_WINDOW","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SUPPLY_PER_BLOCK","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TEAM_TGE_RELEASE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TEAM_VESTING_AMT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TEAM_VESTING_PERIOD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint32","name":"","type":"uint32"}],"name":"checkpoints","outputs":[{"internalType":"uint32","name":"fromBlock","type":"uint32"},{"internalType":"uint256","name":"votes","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":"delegatee","type":"address"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegator","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ecosystemMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getCurrentVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPriorVotes","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":[],"name":"investorMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchPeriodEndTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintForEcosystem","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintForInvestor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintForLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintForTeam","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextAdjustTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingEcosystemTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingTeamTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startMiningTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"supplyAdjust","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamMinted","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"}]

60806040526000600b556000600c556000600d556000600e553480156200002557600080fd5b506040516200287a3803806200287a833981016040819052620000489162000274565b604080518082018252600c81526b29a4a723a622902a37b5b2b760a11b60208083019182528351808501909452600684526553494e474c4560d01b9084015281519192916200009a91600391620001ce565b508051620000b0906004906020840190620001ce565b505050620000cd620000c76200016360201b60201c565b62000167565b80620000d65750425b804211156200012b5760405162461bcd60e51b815260206004820152601c60248201527f63616e6e6f7420736574207061737420626c6f636b206e756d62657200000000604482015260640160405180910390fd5b60068190556200014b8162f099c0620001b9602090811b620016c317901c565b600755506006546008556009556000600a55620002fa565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000620001c7828462000298565b9392505050565b828054620001dc90620002bd565b90600052602060002090601f0160209004810192826200020057600085556200024b565b82601f106200021b57805160ff19168380011785556200024b565b828001600101855582156200024b579182015b828111156200024b5782518255916020019190600101906200022e565b50620002599291506200025d565b5090565b5b808211156200025957600081556001016200025e565b6000806040838503121562000287578182fd5b505080516020909101519092909150565b60008219821115620002b857634e487b7160e01b81526011600452602481fd5b500190565b600181811c90821680620002d257607f821691505b60208210811415620002f457634e487b7160e01b600052602260045260246000fd5b50919050565b612570806200030a6000396000f3fe608060405234801561001057600080fd5b50600436106103275760003560e01c80638da5cb5b116101b8578063d743b81b11610104578063e7a324dc116100a2578063f1127ed81161007c578063f1127ed8146106f8578063f2fde38b1461074f578063f73acdc714610762578063f7ecc4281461076b57600080fd5b8063e7a324dc146106b6578063e8b5498d146106dd578063f05affac146106e657600080fd5b8063e0664b74116100de578063e0664b7414610699578063e3348889146106a3578063e559c7241461036d578063e6956bf7146106ac57600080fd5b8063d743b81b14610645578063dc04b8e114610658578063dd62ed3e1461066057600080fd5b8063a9059cbb11610171578063c3cda5201161014b578063c3cda5201461060f578063c7952e9e14610622578063cda1a7a61461062b578063d6cd62441461063357600080fd5b8063a9059cbb146105d7578063b4b5ea57146105ea578063b9d592bb146105fd57600080fd5b80638da5cb5b146105865780638eab07511461059757806395d89b41146105a05780639dc29fac146105a8578063a3a57c64146105bb578063a457c2d7146105c457600080fd5b806344d79c3811610277578063715018a61161023057806377641b6a1161020a57806377641b6a14610538578063782d6fe1146105415780637ecebe0014610554578063893507fe1461057457600080fd5b8063715018a61461050c578063720315c514610514578063727d5fcc1461052657600080fd5b806344d79c381461043f578063587cde1e146104485780635c19a95c1461048c5780636687fb531461049f5780636fcfff45146104a857806370a08231146104e357600080fd5b806323b872dd116102e4578063313ce567116102be578063313ce567146103f8578063355274ea14610407578063395093511461041957806340c10f191461042c57600080fd5b806323b872dd146103ca5780632c1a0137146103dd5780632c27e40e146103e557600080fd5b806306fdde031461032c578063095ea7b31461034a57806317a9b9db1461036d57806318160ddd1461038657806319e6af1c1461038e57806320606b70146103a3575b600080fd5b61033461077e565b604051610341919061228e565b60405180910390f35b61035d6103583660046121c9565b610810565b6040519015158152602001610341565b6103786303c2670081565b604051908152602001610341565b600254610378565b6103a161039c3660046121c9565b610827565b005b6103787f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b61035d6103d836600461218e565b610915565b6103786109bf565b6103a16103f33660046121c9565b610a6c565b60405160128152602001610341565b6b033b2e3c9fd0803ce8000000610378565b61035d6104273660046121c9565b610ae8565b6103a161043a3660046121c9565b610b1f565b61037860075481565b610474610456366004612142565b6001600160a01b039081166000908152600f60205260409020541690565b6040516001600160a01b039091168152602001610341565b6103a161049a366004612142565b610bcf565b610378600a5481565b6104ce6104b6366004612142565b60116020526000908152604090205463ffffffff1681565b60405163ffffffff9091168152602001610341565b6103786104f1366004612142565b6001600160a01b031660009081526020819052604090205490565b6103a1610bdc565b6103786ab428f1a88abfc52d00000081565b6103786a7152e0e1abab2b2900000081565b61037860065481565b61037861054f3660046121c9565b610c12565b610378610562366004612142565b60126020526000908152604090205481565b6103786a09391ab60ea0265cc0000081565b6005546001600160a01b0316610474565b610378600c5481565b610334610e79565b6103a16105b63660046121c9565b610e88565b610378600e5481565b61035d6105d23660046121c9565b610ee2565b61035d6105e53660046121c9565b610f71565b6103786105f8366004612142565b610fd8565b6103786aaf3cfb8315e2d8e240000081565b6103a161061d3660046121f2565b61104d565b610378600b5481565b610378611317565b6103786a01d1de3d2d5c712f00000081565b6103a16106533660046121c9565b6113b1565b6103a1611492565b61037861066e36600461215c565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610378622819a081565b61037860085481565b61037862f099c081565b6103787fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b610378600d5481565b6103786a108b2a2c2802909400000081565b610733610706366004612250565b60106020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b6040805163ffffffff9093168352602083019190915201610341565b6103a161075d366004612142565b6115af565b61037860095481565b6103a16107793660046121c9565b611647565b60606003805461078d9061245a565b80601f01602080910402602001604051908101604052809291908181526020018280546107b99061245a565b80156108065780601f106107db57610100808354040283529160200191610806565b820191906000526020600020905b8154815290600101906020018083116107e957829003601f168201915b5050505050905090565b600061081d3384846116cf565b5060015b92915050565b6005546001600160a01b0316331461085a5760405162461bcd60e51b815260040161085190612326565b60405180910390fd5b61087a6aaf3cfb8315e2d8e24000006a09391ab60ea0265cc000006116c3565b600e5461088790836116c3565b11156108a55760405162461bcd60e51b81526004016108519061235b565b6108ad611317565b8111156108f75760405162461bcd60e51b8152602060048201526018602482015277185d985a5b18589b19481b1a5b5a5d08195e18d95959195960421b6044820152606401610851565b600e5461090490826116c3565b600e556109118282610b1f565b5050565b60006001600160a01b0383163014156109405760405162461bcd60e51b8152600401610851906122e1565b61094b8484846117f3565b610983843361097e856040518060600160405280602881526020016124dd602891396109778a3361066e565b91906119c3565b6116cf565b6001600160a01b038085166000908152600f60205260408082205486841683529120546109b5929182169116846119ef565b5060019392505050565b60006006544210156109d15750600090565b60006109ec6ab428f1a88abfc52d0000006303c26700611b53565b90506000610a0560065442611b5f90919063ffffffff16565b90506303c267008110610a4657600d54610a3f90610a396ab428f1a88abfc52d0000006a01d1de3d2d5c712f0000006116c3565b90611b5f565b9250505090565b600d54610a3f90610a396a01d1de3d2d5c712f000000610a668587611b6b565b906116c3565b6005546001600160a01b03163314610a965760405162461bcd60e51b815260040161085190612326565b600c546a108b2a2c2802909400000090610ab090836116c3565b1115610ace5760405162461bcd60e51b81526004016108519061235b565b600c54610adb90826116c3565b600c556109118282610b1f565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161081d91859061097e908690612388565b6005546001600160a01b03163314610b495760405162461bcd60e51b815260040161085190612326565b6b033b2e3c9fd0803ce8000000610b6382610a6660025490565b1115610ba05760405162461bcd60e51b815260206004820152600c60248201526b18d85c08195e18d95959195960a21b6044820152606401610851565b610baa8282611b77565b6001600160a01b038083166000908152600f60205260408120546109119216836119ef565b610bd93382611c56565b50565b6005546001600160a01b03163314610c065760405162461bcd60e51b815260040161085190612326565b610c106000611ccf565b565b6000438210610c755760405162461bcd60e51b815260206004820152602960248201527f53494e474c453a3a6765745072696f72566f7465733a206e6f74207965742064604482015268195d195c9b5a5b995960ba1b6064820152608401610851565b6001600160a01b03831660009081526011602052604090205463ffffffff1680610ca3576000915050610821565b6001600160a01b03841660009081526010602052604081208491610cc8600185612435565b63ffffffff90811682526020820192909252604001600020541611610d31576001600160a01b038416600090815260106020526040812090610d0b600184612435565b63ffffffff1663ffffffff16815260200190815260200160002060010154915050610821565b6001600160a01b038416600090815260106020908152604080832083805290915290205463ffffffff16831015610d6c576000915050610821565b600080610d7a600184612435565b90505b8163ffffffff168163ffffffff161115610e425760006002610d9f8484612435565b610da991906123dc565b610db39083612435565b6001600160a01b038816600090815260106020908152604080832063ffffffff8086168552908352928190208151808301909252805490931680825260019093015491810191909152919250871415610e16576020015194506108219350505050565b805163ffffffff16871115610e2d57819350610e3b565b610e38600183612435565b92505b5050610d7d565b506001600160a01b038516600090815260106020908152604080832063ffffffff9094168352929052206001015491505092915050565b60606004805461078d9061245a565b6005546001600160a01b03163314610eb25760405162461bcd60e51b815260040161085190612326565b610ebc8282611d21565b6001600160a01b038083166000908152600f6020526040812054610911921690836119ef565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610f645760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610851565b6109b533858584036116cf565b60006001600160a01b038316301415610f9c5760405162461bcd60e51b8152600401610851906122e1565b610fa73384846117f3565b336000908152600f6020526040808220546001600160a01b038681168452919092205461081d9282169116846119ef565b6001600160a01b03811660009081526011602052604081205463ffffffff1680611003576000611046565b6001600160a01b038316600090815260106020526040812090611027600184612435565b63ffffffff1663ffffffff168152602001908152602001600020600101545b9392505050565b60007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86661107861077e565b8051602091820120604080518084019490945283810191909152466060840152306080808501919091528151808503909101815260a0840182528051908301207fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf60c08501526001600160a01b038b1660e085015261010084018a90526101208085018a90528251808603909101815261014085019092528151919092012061190160f01b61016084015261016283018290526101828301819052909250906000906101a20160408051601f198184030181528282528051602091820120600080855291840180845281905260ff8a169284019290925260608301889052608083018790529092509060019060a0016020604051602081039080840390855afa1580156111a9573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661121d5760405162461bcd60e51b815260206004820152602860248201527f53494e474c453a3a64656c656761746542795369673a20696e76616c6964207360448201526769676e617475726560c01b6064820152608401610851565b6001600160a01b038116600090815260126020526040812080549161124183612495565b91905055891461129f5760405162461bcd60e51b8152602060048201526024808201527f53494e474c453a3a64656c656761746542795369673a20696e76616c6964206e6044820152636f6e636560e01b6064820152608401610851565b874211156113005760405162461bcd60e51b815260206004820152602860248201527f53494e474c453a3a64656c656761746542795369673a207369676e617475726560448201526708195e1c1a5c995960c21b6064820152608401610851565b61130a818b611c56565b505050505b505050505050565b60006006544210156113295750600090565b60006113446aaf3cfb8315e2d8e24000006303c26700611b53565b9050600061135d60065442611b5f90919063ffffffff16565b90506303c26700811061139157600e54610a3f90610a396aaf3cfb8315e2d8e24000006a09391ab60ea0265cc000006116c3565b600e54610a3f90610a396a09391ab60ea0265cc00000610a668587611b6b565b6005546001600160a01b031633146113db5760405162461bcd60e51b815260040161085190612326565b6113fb6ab428f1a88abfc52d0000006a01d1de3d2d5c712f0000006116c3565b600d5461140890836116c3565b11156114265760405162461bcd60e51b81526004016108519061235b565b61142e6109bf565b8111156114785760405162461bcd60e51b8152602060048201526018602482015277185d985a5b18589b19481b1a5b5a5d08195e18d95959195960421b6044820152606401610851565b600d5461148590826116c3565b600d556109118282610b1f565b6005546001600160a01b031633146114bc5760405162461bcd60e51b815260040161085190612326565b6008544210156115055760405162461bcd60e51b815260206004820152601460248201527314da5b99db19551bdad95b8e881b9bdd081e595d60621b6044820152606401610851565b60075442101561151757610c10611e6f565b62f099c060075442611529919061241e565b10156115455760095461153d906002611b53565b600a55611557565b600a54611553906002611b53565b600a555b6008546115679062f099c06116c3565b6008819055600a546040517f9cd8d3fc4ba7908f75314e1c9a0c1ea439763c16945a6d4c8cd12a90fcfde9ae926115a5928252602082015260400190565b60405180910390a1565b6005546001600160a01b031633146115d95760405162461bcd60e51b815260040161085190612326565b6001600160a01b03811661163e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610851565b610bd981611ccf565b6005546001600160a01b031633146116715760405162461bcd60e51b815260040161085190612326565b600b546a7152e0e1abab2b290000009061168b90836116c3565b11156116a95760405162461bcd60e51b81526004016108519061235b565b600b546116b690826116c3565b600b556109118282610b1f565b60006110468284612388565b6001600160a01b0383166117315760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610851565b6001600160a01b0382166117925760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610851565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166118575760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610851565b6001600160a01b0382166118b95760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610851565b6001600160a01b038316600090815260208190526040902054818110156119315760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610851565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611968908490612388565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516119b491815260200190565b60405180910390a35b50505050565b600081848411156119e75760405162461bcd60e51b8152600401610851919061228e565b505050900390565b816001600160a01b0316836001600160a01b031614158015611a115750600081115b15611b4e576001600160a01b03831615611ab4576001600160a01b03831660009081526011602052604081205463ffffffff169081611a51576000611a94565b6001600160a01b038516600090815260106020526040812090611a75600185612435565b63ffffffff1663ffffffff168152602001908152602001600020600101545b90506000611aa28285611b5f565b9050611ab086848484611f54565b5050505b6001600160a01b03821615611b4e576001600160a01b03821660009081526011602052604081205463ffffffff169081611aef576000611b32565b6001600160a01b038416600090815260106020526040812090611b13600185612435565b63ffffffff1663ffffffff168152602001908152602001600020600101545b90506000611b4082856116c3565b905061130f85848484611f54565b505050565b600061104682846123c8565b6000611046828461241e565b600061104682846123ff565b6001600160a01b038216611bcd5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610851565b8060026000828254611bdf9190612388565b90915550506001600160a01b03821660009081526020819052604081208054839290611c0c908490612388565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b038281166000818152600f60208181526040808420805485845282862054949093528787166001600160a01b03198416811790915590519190951694919391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a46119bd8284836119ef565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216611d815760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610851565b6001600160a01b03821660009081526020819052604090205481811015611df55760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610851565b6001600160a01b0383166000908152602081905260408120838303905560028054849290611e2490849061241e565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b6000611e9c6064611e96622819a0611e96606442600754611e90919061241e565b90611b6b565b90611b53565b611ea790600661241e565b90506000611ed7610c80611e9664e8d4a51000611e90611ec9876101f4611b6b565b610a39610c806106d66116c3565b9050611ef764e8d4a51000611e9683600954611b6b90919063ffffffff16565b600a55600854611f0a90622819a06116c3565b6008819055600a546040517f9cd8d3fc4ba7908f75314e1c9a0c1ea439763c16945a6d4c8cd12a90fcfde9ae92611f48928252602082015260400190565b60405180910390a15050565b6000611f7843604051806060016040528060368152602001612505603691396120f6565b905060008463ffffffff16118015611fd257506001600160a01b038516600090815260106020526040812063ffffffff831691611fb6600188612435565b63ffffffff908116825260208201929092526040016000205416145b1561201b576001600160a01b03851660009081526010602052604081208391611ffc600188612435565b63ffffffff1681526020810191909152604001600020600101556120ab565b60408051808201825263ffffffff838116825260208083018681526001600160a01b038a166000908152601083528581208a851682529092529390209151825463ffffffff19169116178155905160019182015561207a9085906123a0565b6001600160a01b0386166000908152601160205260409020805463ffffffff191663ffffffff929092169190911790555b60408051848152602081018490526001600160a01b038716917fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724910160405180910390a25050505050565b600081640100000000841061211e5760405162461bcd60e51b8152600401610851919061228e565b509192915050565b80356001600160a01b038116811461213d57600080fd5b919050565b600060208284031215612153578081fd5b61104682612126565b6000806040838503121561216e578081fd5b61217783612126565b915061218560208401612126565b90509250929050565b6000806000606084860312156121a2578081fd5b6121ab84612126565b92506121b960208501612126565b9150604084013590509250925092565b600080604083850312156121db578182fd5b6121e483612126565b946020939093013593505050565b60008060008060008060c0878903121561220a578182fd5b61221387612126565b95506020870135945060408701359350606087013560ff81168114612236578283fd5b9598949750929560808101359460a0909101359350915050565b60008060408385031215612262578182fd5b61226b83612126565b9150602083013563ffffffff81168114612283578182fd5b809150509250929050565b6000602080835283518082850152825b818110156122ba5785810183015185820160400152820161229e565b818111156122cb5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526025908201527f45524332303a207472616e7366657220746f2074686520746f6b656e20636f6e6040820152641d1c9858dd60da1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601390820152721b5a5b9d081b1a5b5a5d08195e18d959591959606a1b604082015260600190565b6000821982111561239b5761239b6124b0565b500190565b600063ffffffff8083168185168083038211156123bf576123bf6124b0565b01949350505050565b6000826123d7576123d76124c6565b500490565b600063ffffffff808416806123f3576123f36124c6565b92169190910492915050565b6000816000190483118215151615612419576124196124b0565b500290565b600082821015612430576124306124b0565b500390565b600063ffffffff83811690831681811015612452576124526124b0565b039392505050565b600181811c9082168061246e57607f821691505b6020821081141561248f57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156124a9576124a96124b0565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fdfe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636553494e474c453a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d62657220657863656564732033322062697473a2646970667358221220b0ffc8b251c78c9c9cbf24ad1050431896eb16e11c726ca4f54922ae091d01c564736f6c634300080400330000000000000000000000000000000000000000000000040d2614056e0cd0000000000000000000000000000000000000000000000000000000000062099b80

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106103275760003560e01c80638da5cb5b116101b8578063d743b81b11610104578063e7a324dc116100a2578063f1127ed81161007c578063f1127ed8146106f8578063f2fde38b1461074f578063f73acdc714610762578063f7ecc4281461076b57600080fd5b8063e7a324dc146106b6578063e8b5498d146106dd578063f05affac146106e657600080fd5b8063e0664b74116100de578063e0664b7414610699578063e3348889146106a3578063e559c7241461036d578063e6956bf7146106ac57600080fd5b8063d743b81b14610645578063dc04b8e114610658578063dd62ed3e1461066057600080fd5b8063a9059cbb11610171578063c3cda5201161014b578063c3cda5201461060f578063c7952e9e14610622578063cda1a7a61461062b578063d6cd62441461063357600080fd5b8063a9059cbb146105d7578063b4b5ea57146105ea578063b9d592bb146105fd57600080fd5b80638da5cb5b146105865780638eab07511461059757806395d89b41146105a05780639dc29fac146105a8578063a3a57c64146105bb578063a457c2d7146105c457600080fd5b806344d79c3811610277578063715018a61161023057806377641b6a1161020a57806377641b6a14610538578063782d6fe1146105415780637ecebe0014610554578063893507fe1461057457600080fd5b8063715018a61461050c578063720315c514610514578063727d5fcc1461052657600080fd5b806344d79c381461043f578063587cde1e146104485780635c19a95c1461048c5780636687fb531461049f5780636fcfff45146104a857806370a08231146104e357600080fd5b806323b872dd116102e4578063313ce567116102be578063313ce567146103f8578063355274ea14610407578063395093511461041957806340c10f191461042c57600080fd5b806323b872dd146103ca5780632c1a0137146103dd5780632c27e40e146103e557600080fd5b806306fdde031461032c578063095ea7b31461034a57806317a9b9db1461036d57806318160ddd1461038657806319e6af1c1461038e57806320606b70146103a3575b600080fd5b61033461077e565b604051610341919061228e565b60405180910390f35b61035d6103583660046121c9565b610810565b6040519015158152602001610341565b6103786303c2670081565b604051908152602001610341565b600254610378565b6103a161039c3660046121c9565b610827565b005b6103787f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b61035d6103d836600461218e565b610915565b6103786109bf565b6103a16103f33660046121c9565b610a6c565b60405160128152602001610341565b6b033b2e3c9fd0803ce8000000610378565b61035d6104273660046121c9565b610ae8565b6103a161043a3660046121c9565b610b1f565b61037860075481565b610474610456366004612142565b6001600160a01b039081166000908152600f60205260409020541690565b6040516001600160a01b039091168152602001610341565b6103a161049a366004612142565b610bcf565b610378600a5481565b6104ce6104b6366004612142565b60116020526000908152604090205463ffffffff1681565b60405163ffffffff9091168152602001610341565b6103786104f1366004612142565b6001600160a01b031660009081526020819052604090205490565b6103a1610bdc565b6103786ab428f1a88abfc52d00000081565b6103786a7152e0e1abab2b2900000081565b61037860065481565b61037861054f3660046121c9565b610c12565b610378610562366004612142565b60126020526000908152604090205481565b6103786a09391ab60ea0265cc0000081565b6005546001600160a01b0316610474565b610378600c5481565b610334610e79565b6103a16105b63660046121c9565b610e88565b610378600e5481565b61035d6105d23660046121c9565b610ee2565b61035d6105e53660046121c9565b610f71565b6103786105f8366004612142565b610fd8565b6103786aaf3cfb8315e2d8e240000081565b6103a161061d3660046121f2565b61104d565b610378600b5481565b610378611317565b6103786a01d1de3d2d5c712f00000081565b6103a16106533660046121c9565b6113b1565b6103a1611492565b61037861066e36600461215c565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610378622819a081565b61037860085481565b61037862f099c081565b6103787fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b610378600d5481565b6103786a108b2a2c2802909400000081565b610733610706366004612250565b60106020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b6040805163ffffffff9093168352602083019190915201610341565b6103a161075d366004612142565b6115af565b61037860095481565b6103a16107793660046121c9565b611647565b60606003805461078d9061245a565b80601f01602080910402602001604051908101604052809291908181526020018280546107b99061245a565b80156108065780601f106107db57610100808354040283529160200191610806565b820191906000526020600020905b8154815290600101906020018083116107e957829003601f168201915b5050505050905090565b600061081d3384846116cf565b5060015b92915050565b6005546001600160a01b0316331461085a5760405162461bcd60e51b815260040161085190612326565b60405180910390fd5b61087a6aaf3cfb8315e2d8e24000006a09391ab60ea0265cc000006116c3565b600e5461088790836116c3565b11156108a55760405162461bcd60e51b81526004016108519061235b565b6108ad611317565b8111156108f75760405162461bcd60e51b8152602060048201526018602482015277185d985a5b18589b19481b1a5b5a5d08195e18d95959195960421b6044820152606401610851565b600e5461090490826116c3565b600e556109118282610b1f565b5050565b60006001600160a01b0383163014156109405760405162461bcd60e51b8152600401610851906122e1565b61094b8484846117f3565b610983843361097e856040518060600160405280602881526020016124dd602891396109778a3361066e565b91906119c3565b6116cf565b6001600160a01b038085166000908152600f60205260408082205486841683529120546109b5929182169116846119ef565b5060019392505050565b60006006544210156109d15750600090565b60006109ec6ab428f1a88abfc52d0000006303c26700611b53565b90506000610a0560065442611b5f90919063ffffffff16565b90506303c267008110610a4657600d54610a3f90610a396ab428f1a88abfc52d0000006a01d1de3d2d5c712f0000006116c3565b90611b5f565b9250505090565b600d54610a3f90610a396a01d1de3d2d5c712f000000610a668587611b6b565b906116c3565b6005546001600160a01b03163314610a965760405162461bcd60e51b815260040161085190612326565b600c546a108b2a2c2802909400000090610ab090836116c3565b1115610ace5760405162461bcd60e51b81526004016108519061235b565b600c54610adb90826116c3565b600c556109118282610b1f565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161081d91859061097e908690612388565b6005546001600160a01b03163314610b495760405162461bcd60e51b815260040161085190612326565b6b033b2e3c9fd0803ce8000000610b6382610a6660025490565b1115610ba05760405162461bcd60e51b815260206004820152600c60248201526b18d85c08195e18d95959195960a21b6044820152606401610851565b610baa8282611b77565b6001600160a01b038083166000908152600f60205260408120546109119216836119ef565b610bd93382611c56565b50565b6005546001600160a01b03163314610c065760405162461bcd60e51b815260040161085190612326565b610c106000611ccf565b565b6000438210610c755760405162461bcd60e51b815260206004820152602960248201527f53494e474c453a3a6765745072696f72566f7465733a206e6f74207965742064604482015268195d195c9b5a5b995960ba1b6064820152608401610851565b6001600160a01b03831660009081526011602052604090205463ffffffff1680610ca3576000915050610821565b6001600160a01b03841660009081526010602052604081208491610cc8600185612435565b63ffffffff90811682526020820192909252604001600020541611610d31576001600160a01b038416600090815260106020526040812090610d0b600184612435565b63ffffffff1663ffffffff16815260200190815260200160002060010154915050610821565b6001600160a01b038416600090815260106020908152604080832083805290915290205463ffffffff16831015610d6c576000915050610821565b600080610d7a600184612435565b90505b8163ffffffff168163ffffffff161115610e425760006002610d9f8484612435565b610da991906123dc565b610db39083612435565b6001600160a01b038816600090815260106020908152604080832063ffffffff8086168552908352928190208151808301909252805490931680825260019093015491810191909152919250871415610e16576020015194506108219350505050565b805163ffffffff16871115610e2d57819350610e3b565b610e38600183612435565b92505b5050610d7d565b506001600160a01b038516600090815260106020908152604080832063ffffffff9094168352929052206001015491505092915050565b60606004805461078d9061245a565b6005546001600160a01b03163314610eb25760405162461bcd60e51b815260040161085190612326565b610ebc8282611d21565b6001600160a01b038083166000908152600f6020526040812054610911921690836119ef565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610f645760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610851565b6109b533858584036116cf565b60006001600160a01b038316301415610f9c5760405162461bcd60e51b8152600401610851906122e1565b610fa73384846117f3565b336000908152600f6020526040808220546001600160a01b038681168452919092205461081d9282169116846119ef565b6001600160a01b03811660009081526011602052604081205463ffffffff1680611003576000611046565b6001600160a01b038316600090815260106020526040812090611027600184612435565b63ffffffff1663ffffffff168152602001908152602001600020600101545b9392505050565b60007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86661107861077e565b8051602091820120604080518084019490945283810191909152466060840152306080808501919091528151808503909101815260a0840182528051908301207fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf60c08501526001600160a01b038b1660e085015261010084018a90526101208085018a90528251808603909101815261014085019092528151919092012061190160f01b61016084015261016283018290526101828301819052909250906000906101a20160408051601f198184030181528282528051602091820120600080855291840180845281905260ff8a169284019290925260608301889052608083018790529092509060019060a0016020604051602081039080840390855afa1580156111a9573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661121d5760405162461bcd60e51b815260206004820152602860248201527f53494e474c453a3a64656c656761746542795369673a20696e76616c6964207360448201526769676e617475726560c01b6064820152608401610851565b6001600160a01b038116600090815260126020526040812080549161124183612495565b91905055891461129f5760405162461bcd60e51b8152602060048201526024808201527f53494e474c453a3a64656c656761746542795369673a20696e76616c6964206e6044820152636f6e636560e01b6064820152608401610851565b874211156113005760405162461bcd60e51b815260206004820152602860248201527f53494e474c453a3a64656c656761746542795369673a207369676e617475726560448201526708195e1c1a5c995960c21b6064820152608401610851565b61130a818b611c56565b505050505b505050505050565b60006006544210156113295750600090565b60006113446aaf3cfb8315e2d8e24000006303c26700611b53565b9050600061135d60065442611b5f90919063ffffffff16565b90506303c26700811061139157600e54610a3f90610a396aaf3cfb8315e2d8e24000006a09391ab60ea0265cc000006116c3565b600e54610a3f90610a396a09391ab60ea0265cc00000610a668587611b6b565b6005546001600160a01b031633146113db5760405162461bcd60e51b815260040161085190612326565b6113fb6ab428f1a88abfc52d0000006a01d1de3d2d5c712f0000006116c3565b600d5461140890836116c3565b11156114265760405162461bcd60e51b81526004016108519061235b565b61142e6109bf565b8111156114785760405162461bcd60e51b8152602060048201526018602482015277185d985a5b18589b19481b1a5b5a5d08195e18d95959195960421b6044820152606401610851565b600d5461148590826116c3565b600d556109118282610b1f565b6005546001600160a01b031633146114bc5760405162461bcd60e51b815260040161085190612326565b6008544210156115055760405162461bcd60e51b815260206004820152601460248201527314da5b99db19551bdad95b8e881b9bdd081e595d60621b6044820152606401610851565b60075442101561151757610c10611e6f565b62f099c060075442611529919061241e565b10156115455760095461153d906002611b53565b600a55611557565b600a54611553906002611b53565b600a555b6008546115679062f099c06116c3565b6008819055600a546040517f9cd8d3fc4ba7908f75314e1c9a0c1ea439763c16945a6d4c8cd12a90fcfde9ae926115a5928252602082015260400190565b60405180910390a1565b6005546001600160a01b031633146115d95760405162461bcd60e51b815260040161085190612326565b6001600160a01b03811661163e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610851565b610bd981611ccf565b6005546001600160a01b031633146116715760405162461bcd60e51b815260040161085190612326565b600b546a7152e0e1abab2b290000009061168b90836116c3565b11156116a95760405162461bcd60e51b81526004016108519061235b565b600b546116b690826116c3565b600b556109118282610b1f565b60006110468284612388565b6001600160a01b0383166117315760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610851565b6001600160a01b0382166117925760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610851565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166118575760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610851565b6001600160a01b0382166118b95760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610851565b6001600160a01b038316600090815260208190526040902054818110156119315760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610851565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611968908490612388565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516119b491815260200190565b60405180910390a35b50505050565b600081848411156119e75760405162461bcd60e51b8152600401610851919061228e565b505050900390565b816001600160a01b0316836001600160a01b031614158015611a115750600081115b15611b4e576001600160a01b03831615611ab4576001600160a01b03831660009081526011602052604081205463ffffffff169081611a51576000611a94565b6001600160a01b038516600090815260106020526040812090611a75600185612435565b63ffffffff1663ffffffff168152602001908152602001600020600101545b90506000611aa28285611b5f565b9050611ab086848484611f54565b5050505b6001600160a01b03821615611b4e576001600160a01b03821660009081526011602052604081205463ffffffff169081611aef576000611b32565b6001600160a01b038416600090815260106020526040812090611b13600185612435565b63ffffffff1663ffffffff168152602001908152602001600020600101545b90506000611b4082856116c3565b905061130f85848484611f54565b505050565b600061104682846123c8565b6000611046828461241e565b600061104682846123ff565b6001600160a01b038216611bcd5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610851565b8060026000828254611bdf9190612388565b90915550506001600160a01b03821660009081526020819052604081208054839290611c0c908490612388565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b038281166000818152600f60208181526040808420805485845282862054949093528787166001600160a01b03198416811790915590519190951694919391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a46119bd8284836119ef565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216611d815760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610851565b6001600160a01b03821660009081526020819052604090205481811015611df55760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610851565b6001600160a01b0383166000908152602081905260408120838303905560028054849290611e2490849061241e565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b6000611e9c6064611e96622819a0611e96606442600754611e90919061241e565b90611b6b565b90611b53565b611ea790600661241e565b90506000611ed7610c80611e9664e8d4a51000611e90611ec9876101f4611b6b565b610a39610c806106d66116c3565b9050611ef764e8d4a51000611e9683600954611b6b90919063ffffffff16565b600a55600854611f0a90622819a06116c3565b6008819055600a546040517f9cd8d3fc4ba7908f75314e1c9a0c1ea439763c16945a6d4c8cd12a90fcfde9ae92611f48928252602082015260400190565b60405180910390a15050565b6000611f7843604051806060016040528060368152602001612505603691396120f6565b905060008463ffffffff16118015611fd257506001600160a01b038516600090815260106020526040812063ffffffff831691611fb6600188612435565b63ffffffff908116825260208201929092526040016000205416145b1561201b576001600160a01b03851660009081526010602052604081208391611ffc600188612435565b63ffffffff1681526020810191909152604001600020600101556120ab565b60408051808201825263ffffffff838116825260208083018681526001600160a01b038a166000908152601083528581208a851682529092529390209151825463ffffffff19169116178155905160019182015561207a9085906123a0565b6001600160a01b0386166000908152601160205260409020805463ffffffff191663ffffffff929092169190911790555b60408051848152602081018490526001600160a01b038716917fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724910160405180910390a25050505050565b600081640100000000841061211e5760405162461bcd60e51b8152600401610851919061228e565b509192915050565b80356001600160a01b038116811461213d57600080fd5b919050565b600060208284031215612153578081fd5b61104682612126565b6000806040838503121561216e578081fd5b61217783612126565b915061218560208401612126565b90509250929050565b6000806000606084860312156121a2578081fd5b6121ab84612126565b92506121b960208501612126565b9150604084013590509250925092565b600080604083850312156121db578182fd5b6121e483612126565b946020939093013593505050565b60008060008060008060c0878903121561220a578182fd5b61221387612126565b95506020870135945060408701359350606087013560ff81168114612236578283fd5b9598949750929560808101359460a0909101359350915050565b60008060408385031215612262578182fd5b61226b83612126565b9150602083013563ffffffff81168114612283578182fd5b809150509250929050565b6000602080835283518082850152825b818110156122ba5785810183015185820160400152820161229e565b818111156122cb5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526025908201527f45524332303a207472616e7366657220746f2074686520746f6b656e20636f6e6040820152641d1c9858dd60da1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601390820152721b5a5b9d081b1a5b5a5d08195e18d959591959606a1b604082015260600190565b6000821982111561239b5761239b6124b0565b500190565b600063ffffffff8083168185168083038211156123bf576123bf6124b0565b01949350505050565b6000826123d7576123d76124c6565b500490565b600063ffffffff808416806123f3576123f36124c6565b92169190910492915050565b6000816000190483118215151615612419576124196124b0565b500290565b600082821015612430576124306124b0565b500390565b600063ffffffff83811690831681811015612452576124526124b0565b039392505050565b600181811c9082168061246e57607f821691505b6020821081141561248f57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156124a9576124a96124b0565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fdfe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636553494e474c453a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d62657220657863656564732033322062697473a2646970667358221220b0ffc8b251c78c9c9cbf24ad1050431896eb16e11c726ca4f54922ae091d01c564736f6c63430008040033

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

0000000000000000000000000000000000000000000000040d2614056e0cd0000000000000000000000000000000000000000000000000000000000062099b80

-----Decoded View---------------
Arg [0] : initialSupplyPerBlock (uint256): 74734443080000000000
Arg [1] : _startMiningTimestamp (uint256): 1644796800

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000040d2614056e0cd000
Arg [1] : 0000000000000000000000000000000000000000000000000000000062099b80


Deployed Bytecode Sourcemap

26117:14729:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15994:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18161:169;;;;;;:::i;:::-;;:::i;:::-;;;3068:14:1;;3061:22;3043:41;;3031:2;3016:18;18161:169:0;2998:92:1;26922:62:0;;26973:11;26922:62;;;;;3241:25:1;;;3229:2;3214:18;26922:62:0;3196:76:1;17114:108:0;17202:12;;17114:108;;28864:355;;;;;;:::i;:::-;;:::i;:::-;;33888:122;;33930:80;33888:122;;30062:462;;;;;;:::i;:::-;;:::i;31078:493::-;;;:::i;28363:246::-;;;;;;:::i;:::-;;:::i;16956:93::-;;;17039:2;13968:36:1;;13956:2;13941:18;16956:93:0;13923:87:1;28056:68:0;26251:15;28056:68;;19713:215;;;;;;:::i;:::-;;:::i;28138:219::-;;;;;;:::i;:::-;;:::i;26485:39::-;;;;;;34846:137;;;;;;:::i;:::-;-1:-1:-1;;;;;34956:21:0;;;34928:7;34956:21;;;:10;:21;;;;;;;;34846:137;;;;-1:-1:-1;;;;;2859:32:1;;;2841:51;;2829:2;2814:18;34846:137:0;2796:102:1;35118:98:0;;;;;;:::i;:::-;;:::i;26614:31::-;;;;;;33770:49;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;13535:10:1;13523:23;;;13505:42;;13493:2;13478:18;33770:49:0;13460:93:1;17285:127:0;;;;;;:::i;:::-;-1:-1:-1;;;;;17386:18:0;17359:7;17386:18;;;;;;;;;;;;17285:127;2931:94;;;:::i;27064:57::-;;27107:14;27064:57;;26273:58;;26317:14;26273:58;;26401:35;;;;;;37640:1137;;;;;;:::i;:::-;;:::i;34294:39::-;;;;;;:::i;:::-;;;;;;;;;;;;;;26789:61;;26837:13;26789:61;;2280:87;2353:6;;-1:-1:-1;;;;;2353:6:0;2280:87;;27241:34;;;;;;16213:104;;;:::i;29553:169::-;;;;;;:::i;:::-;;:::i;27314:34::-;;;;;;20431:413;;;;;;:::i;:::-;;:::i;29728:328::-;;;;;;:::i;:::-;;:::i;36978:241::-;;;;;;:::i;:::-;;:::i;26855:62::-;;26903:14;26855:62;;35638:1147;;;;;;:::i;:::-;;:::i;27203:33::-;;;;;;30532:538;;;:::i;27004:55::-;;27047:12;27004:55;;29225:320;;;;;;:::i;:::-;;:::i;31643:671::-;;;:::i;17863:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;17979:18:0;;;17952:7;17979:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;17863:151;26650:67;;26704:13;26650:67;;26529:34;;;;;;26722:60;;26770:12;26722:60;;34100:117;;34146:71;34100:117;;27280:29;;;;;;26336:58;;26381:13;26336:58;;33635:70;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13760:10:1;13748:23;;;13730:42;;13803:2;13788:18;;13781:34;;;;13703:18;33635:70:0;13685:136:1;3180:192:0;;;;;;:::i;:::-;;:::i;26570:39::-;;;;;;28615:241;;;;;;:::i;:::-;;:::i;15994:100::-;16048:13;16081:5;16074:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15994:100;:::o;18161:169::-;18244:4;18261:39;1171:10;18284:7;18293:6;18261:8;:39::i;:::-;-1:-1:-1;18318:4:0;18161:169;;;;;:::o;28864:355::-;2353:6;;-1:-1:-1;;;;;2353:6:0;1171:10;2500:23;2492:68;;;;-1:-1:-1;;;2492:68:0;;;;;;;:::i;:::-;;;;;;;;;28984:48:::1;26903:14;26837:13;28984:25;:48::i;:::-;28952:15;::::0;:28:::1;::::0;28972:7;28952:19:::1;:28::i;:::-;:80;;28944:112;;;;-1:-1:-1::0;;;28944:112:0::1;;;;;;;:::i;:::-;29082:24;:22;:24::i;:::-;29071:7;:35;;29063:72;;;::::0;-1:-1:-1;;;29063:72:0;;10448:2:1;29063:72:0::1;::::0;::::1;10430:21:1::0;10487:2;10467:18;;;10460:30;-1:-1:-1;;;10506:18:1;;;10499:54;10570:18;;29063:72:0::1;10420:174:1::0;29063:72:0::1;29160:15;::::0;:28:::1;::::0;29180:7;29160:19:::1;:28::i;:::-;29142:15;:46:::0;29195:18:::1;29200:3:::0;29205:7;29195:4:::1;:18::i;:::-;28864:355:::0;;:::o;30062:462::-;30168:4;-1:-1:-1;;;;;30189:26:0;;30210:4;30189:26;;30181:76;;;;-1:-1:-1;;;30181:76:0;;;;;;;:::i;:::-;30266:36;30276:6;30284:9;30295:6;30266:9;:36::i;:::-;30309:119;30318:6;1171:10;30340:87;30376:6;30340:87;;;;;;;;;;;;;;;;;:31;30350:6;1171:10;17863:151;:::i;30340:31::-;:35;:87;:35;:87::i;:::-;30309:8;:119::i;:::-;-1:-1:-1;;;;;30450:18:0;;;;;;;:10;:18;;;;;;;30470:21;;;;;;;;30435:65;;30450:18;;;;30470:21;30493:6;30435:14;:65::i;:::-;-1:-1:-1;30514:4:0;30062:462;;;;;:::o;31078:493::-;31128:7;31168:20;;31150:15;:38;31147:67;;;-1:-1:-1;31205:1:0;;31078:493::o;31147:67::-;31222:20;31245:41;27107:14;27172:11;31245:20;:41::i;:::-;31222:64;;31295:16;31314:50;31343:20;;31322:15;31314:28;;:50;;;;:::i;:::-;31295:69;;27172:11;31376:8;:31;31373:113;;31467:10;;31424:54;;:38;27107:14;27047:12;31424:20;:38::i;:::-;:42;;:54::i;:::-;31417:61;;;;31078:493;:::o;31373:113::-;31554:10;;31501:64;;:48;27047:12;31501:26;:8;31514:12;31501;:26::i;:::-;:30;;:48::i;28363:246::-;2353:6;;-1:-1:-1;;;;;2353:6:0;1171:10;2500:23;2492:68;;;;-1:-1:-1;;;2492:68:0;;;;;;;:::i;:::-;28451:15:::1;::::0;26381:13:::1;::::0;28451:28:::1;::::0;28471:7;28451:19:::1;:28::i;:::-;:50;;28443:82;;;;-1:-1:-1::0;;;28443:82:0::1;;;;;;;:::i;:::-;28550:15;::::0;:28:::1;::::0;28570:7;28550:19:::1;:28::i;:::-;28532:15;:46:::0;28585:18:::1;28590:3:::0;28595:7;28585:4:::1;:18::i;19713:215::-:0;1171:10;19801:4;19850:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;19850:34:0;;;;;;;;;;19801:4;;19818:80;;19841:7;;19850:47;;19887:10;;19850:47;:::i;28138:219::-;2353:6;;-1:-1:-1;;;;;2353:6:0;1171:10;2500:23;2492:68;;;;-1:-1:-1;;;2492:68:0;;;;;;;:::i;:::-;26251:15;28214:26:::1;28232:7;28214:13;17202:12:::0;;;17114:108;28214:26:::1;:35;;28206:60;;;::::0;-1:-1:-1;;;28206:60:0;;8171:2:1;28206:60:0::1;::::0;::::1;8153:21:1::0;8210:2;8190:18;;;8183:30;-1:-1:-1;;;8229:18:1;;;8222:42;8281:18;;28206:60:0::1;8143:162:1::0;28206:60:0::1;28273:19;28279:3;28284:7;28273:5;:19::i;:::-;-1:-1:-1::0;;;;;28326:15:0;;::::1;28322:1;28326:15:::0;;;:10:::1;:15;::::0;;;;;28299:52:::1;::::0;28326:15:::1;28343:7:::0;28299:14:::1;:52::i;35118:98::-:0;35178:32;35188:10;35200:9;35178;:32::i;:::-;35118:98;:::o;2931:94::-;2353:6;;-1:-1:-1;;;;;2353:6:0;1171:10;2500:23;2492:68;;;;-1:-1:-1;;;2492:68:0;;;;;;;:::i;:::-;2996:21:::1;3014:1;2996:9;:21::i;:::-;2931:94::o:0;37640:1137::-;37742:7;37783:12;37769:11;:26;37761:80;;;;-1:-1:-1;;;37761:80:0;;8512:2:1;37761:80:0;;;8494:21:1;8551:2;8531:18;;;8524:30;8590:34;8570:18;;;8563:62;-1:-1:-1;;;8641:18:1;;;8634:39;8690:19;;37761:80:0;8484:231:1;37761:80:0;-1:-1:-1;;;;;37872:23:0;;37850:19;37872:23;;;:14;:23;;;;;;;;37906:17;37902:50;;37943:1;37936:8;;;;;37902:50;-1:-1:-1;;;;;38004:20:0;;;;;;:11;:20;;;;;38056:11;;38025:16;38040:1;38025:12;:16;:::i;:::-;38004:38;;;;;;;;;;;;;;;-1:-1:-1;38004:38:0;:48;;:63;38000:139;;-1:-1:-1;;;;;38087:20:0;;;;;;:11;:20;;;;;;38108:16;38123:1;38108:12;:16;:::i;:::-;38087:38;;;;;;;;;;;;;;;:44;;;38080:51;;;;;38000:139;-1:-1:-1;;;;;38192:20:0;;;;;;:11;:20;;;;;;;;:23;;;;;;;;:33;:23;:33;:47;-1:-1:-1;38188:80:0;;;38259:1;38252:8;;;;;38188:80;38276:12;;38314:16;38329:1;38314:12;:16;:::i;:::-;38299:31;;38337:388;38352:5;38344:13;;:5;:13;;;38337:388;;;38370:13;38412:1;38395:13;38403:5;38395;:13;:::i;:::-;38394:19;;;;:::i;:::-;38386:27;;:5;:27;:::i;:::-;-1:-1:-1;;;;;38474:20:0;;38451;38474;;;:11;:20;;;;;;;;:28;;;;;;;;;;;;;38451:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;38370:43;;-1:-1:-1;38517:27:0;;38513:205;;;38568:8;;;;-1:-1:-1;38561:15:0;;-1:-1:-1;;;;38561:15:0;38513:205;38598:12;;:26;;;-1:-1:-1;38594:124:0;;;38649:6;38641:14;;38594:124;;;38696:10;38705:1;38696:6;:10;:::i;:::-;38688:18;;38594:124;38337:388;;;;;-1:-1:-1;;;;;;38738:20:0;;;;;;:11;:20;;;;;;;;:27;;;;;;;;;;:33;;;;-1:-1:-1;;37640:1137:0;;;;:::o;16213:104::-;16269:13;16302:7;16295:14;;;;;:::i;29553:169::-;2353:6;;-1:-1:-1;;;;;2353:6:0;1171:10;2500:23;2492:68;;;;-1:-1:-1;;;2492:68:0;;;;;;;:::i;:::-;29628:24:::1;29634:8;29644:7;29628:5;:24::i;:::-;-1:-1:-1::0;;;;;29674:20:0;;::::1;;::::0;;;:10:::1;:20;::::0;;;;;29659:57:::1;::::0;29674:20:::1;::::0;29708:7;29659:14:::1;:57::i;20431:413::-:0;1171:10;20524:4;20568:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;20568:34:0;;;;;;;;;;20621:35;;;;20613:85;;;;-1:-1:-1;;;20613:85:0;;12362:2:1;20613:85:0;;;12344:21:1;12401:2;12381:18;;;12374:30;12440:34;12420:18;;;12413:62;-1:-1:-1;;;12491:18:1;;;12484:35;12536:19;;20613:85:0;12334:227:1;20613:85:0;20734:67;1171:10;20757:7;20785:15;20766:16;:34;20734:8;:67::i;29728:328::-;29814:4;-1:-1:-1;;;;;29835:26:0;;29856:4;29835:26;;29827:76;;;;-1:-1:-1;;;29827:76:0;;;;;;;:::i;:::-;29912:42;1171:10;29936:9;29947:6;29912:9;:42::i;:::-;1171:10;29976:24;;;;:10;:24;;;;;;;-1:-1:-1;;;;;30002:21:0;;;;;;;;;;29961:71;;29976:24;;;30002:21;30025:6;29961:14;:71::i;36978:241::-;-1:-1:-1;;;;;37107:23:0;;37064:7;37107:23;;;:14;:23;;;;;;;;37146:16;:67;;37212:1;37146:67;;;-1:-1:-1;;;;;37165:20:0;;;;;;:11;:20;;;;;;37186:16;37201:1;37186:12;:16;:::i;:::-;37165:38;;;;;;;;;;;;;;;:44;;;37146:67;37139:74;36978:241;-1:-1:-1;;;36978:241:0:o;35638:1147::-;35805:23;33930:80;35928:6;:4;:6::i;:::-;35912:24;;;;;;;35853:188;;;;;;3930:25:1;;;;3971:18;;;3964:34;;;;35985:13:0;4014:18:1;;;4007:34;36023:4:0;4057:18:1;;;;4050:60;;;;35853:188:0;;;;;;;;;;3902:19:1;;;35853:188:0;;35831:219;;;;;;34146:71;36104:130;;;3508:25:1;-1:-1:-1;;;;;3569:32:1;;3549:18;;;3542:60;3618:18;;;3611:34;;;3661:18;;;;3654:34;;;36104:130:0;;;;;;;;;;3480:19:1;;;36104:130:0;;;36082:161;;;;;;;-1:-1:-1;;;36293:115:0;;;2556:27:1;2599:11;;;2592:27;;;2635:12;;;2628:28;;;35831:219:0;;-1:-1:-1;36082:161:0;-1:-1:-1;;2672:12:1;;36293:115:0;;;-1:-1:-1;;36293:115:0;;;;;;;;;36271:146;;36293:115;36271:146;;;;36428:17;36448:26;;;;;;;;;4348:25:1;;;4421:4;4409:17;;4389:18;;;4382:45;;;;4443:18;;;4436:34;;;4486:18;;;4479:34;;;36271:146:0;;-1:-1:-1;36428:17:0;36448:26;;4320:19:1;;36448:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;36448:26:0;;-1:-1:-1;;36448:26:0;;;-1:-1:-1;;;;;;;36491:23:0;;36483:76;;;;-1:-1:-1;;;36483:76:0;;10039:2:1;36483:76:0;;;10021:21:1;10078:2;10058:18;;;10051:30;10117:34;10097:18;;;10090:62;-1:-1:-1;;;10168:18:1;;;10161:38;10216:19;;36483:76:0;10011:230:1;36483:76:0;-1:-1:-1;;;;;36585:17:0;;;;;;:6;:17;;;;;:19;;;;;;:::i;:::-;;;;;36576:5;:28;36568:77;;;;-1:-1:-1;;;36568:77:0;;7766:2:1;36568:77:0;;;7748:21:1;7805:2;7785:18;;;7778:30;7844:34;7824:18;;;7817:62;-1:-1:-1;;;7895:18:1;;;7888:34;7939:19;;36568:77:0;7738:226:1;36568:77:0;36681:6;36662:15;:25;;36654:78;;;;-1:-1:-1;;;36654:78:0;;7357:2:1;36654:78:0;;;7339:21:1;7396:2;7376:18;;;7369:30;7435:34;7415:18;;;7408:62;-1:-1:-1;;;7486:18:1;;;7479:38;7534:19;;36654:78:0;7329:230:1;36654:78:0;36748:31;36758:9;36769;36748;:31::i;:::-;36741:38;;;;35638:1147;;;;;;;:::o;30532:538::-;30587:7;30627:20;;30609:15;:38;30606:67;;;-1:-1:-1;30664:1:0;;30532:538::o;30606:67::-;30681:20;30704:51;26903:14;26973:11;30704:25;:51::i;:::-;30681:74;;30764:16;30783:50;30812:20;;30791:15;30783:28;;:50;;;;:::i;:::-;30764:69;;26973:11;30845:8;:36;30842:133;;30951:15;;30898:69;;:48;26903:14;26837:13;30898:25;:48::i;30842:133::-;31048:15;;30990:74;;:53;26837:13;30990:26;:8;31003:12;30990;:26::i;29225:320::-;2353:6;;-1:-1:-1;;;;;2353:6:0;1171:10;2500:23;2492:68;;;;-1:-1:-1;;;2492:68:0;;;;;;;:::i;:::-;29335:38:::1;27107:14;27047:12;29335:20;:38::i;:::-;29308:10;::::0;:23:::1;::::0;29323:7;29308:14:::1;:23::i;:::-;:65;;29300:97;;;;-1:-1:-1::0;;;29300:97:0::1;;;;;;;:::i;:::-;29423:19;:17;:19::i;:::-;29412:7;:30;;29404:67;;;::::0;-1:-1:-1;;;29404:67:0;;10448:2:1;29404:67:0::1;::::0;::::1;10430:21:1::0;10487:2;10467:18;;;10460:30;-1:-1:-1;;;10506:18:1;;;10499:54;10570:18;;29404:67:0::1;10420:174:1::0;29404:67:0::1;29491:10;::::0;:23:::1;::::0;29506:7;29491:14:::1;:23::i;:::-;29478:10;:36:::0;29521:18:::1;29526:3:::0;29531:7;29521:4:::1;:18::i;31643:671::-:0;2353:6;;-1:-1:-1;;;;;2353:6:0;1171:10;2500:23;2492:68;;;;-1:-1:-1;;;2492:68:0;;;;;;;:::i;:::-;31723:19:::1;;31704:15;:38;;31696:71;;;::::0;-1:-1:-1;;;31696:71:0;;9329:2:1;31696:71:0::1;::::0;::::1;9311:21:1::0;9368:2;9348:18;;;9341:30;-1:-1:-1;;;9387:18:1;;;9380:50;9447:18;;31696:71:0::1;9301:170:1::0;31696:71:0::1;31799:24;;31781:15;:42;31778:529;;;31839:26;:24;:26::i;31778:529::-;26770:12;31941:24;;31923:15;:42;;;;:::i;:::-;31922:68;31918:232;;;32022:24;::::0;:31:::1;::::0;32051:1:::1;32022:28;:31::i;:::-;32003:16;:50:::0;31918:232:::1;;;32117:16;::::0;:23:::1;::::0;32138:1:::1;32117:20;:23::i;:::-;32098:16;:42:::0;31918:232:::1;32182:19;::::0;:46:::1;::::0;26770:12:::1;32182:23;:46::i;:::-;32160:19;:68:::0;;;32259:16:::1;::::0;32244:53:::1;::::0;::::1;::::0;::::1;::::0;13282:25:1;;13338:2;13323:18;;13316:34;13270:2;13255:18;;13237:119;32244:53:0::1;;;;;;;;31643:671::o:0;3180:192::-;2353:6;;-1:-1:-1;;;;;2353:6:0;1171:10;2500:23;2492:68;;;;-1:-1:-1;;;2492:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3269:22:0;::::1;3261:73;;;::::0;-1:-1:-1;;;3261:73:0;;6547:2:1;3261:73:0::1;::::0;::::1;6529:21:1::0;6586:2;6566:18;;;6559:30;6625:34;6605:18;;;6598:62;-1:-1:-1;;;6676:18:1;;;6669:36;6722:19;;3261:73:0::1;6519:228:1::0;3261:73:0::1;3345:19;3355:8;3345:9;:19::i;28615:241::-:0;2353:6;;-1:-1:-1;;;;;2353:6:0;1171:10;2500:23;2492:68;;;;-1:-1:-1;;;2492:68:0;;;;;;;:::i;:::-;28702:14:::1;::::0;26317::::1;::::0;28702:27:::1;::::0;28721:7;28702:18:::1;:27::i;:::-;:48;;28694:80;;;;-1:-1:-1::0;;;28694:80:0::1;;;;;;;:::i;:::-;28798:14;::::0;:27:::1;::::0;28817:7;28798:18:::1;:27::i;:::-;28781:14;:44:::0;28832:18:::1;28837:3:::0;28842:7;28832:4:::1;:18::i;6331:98::-:0;6389:7;6416:5;6420:1;6416;:5;:::i;24115:380::-;-1:-1:-1;;;;;24251:19:0;;24243:68;;;;-1:-1:-1;;;24243:68:0;;11609:2:1;24243:68:0;;;11591:21:1;11648:2;11628:18;;;11621:30;11687:34;11667:18;;;11660:62;-1:-1:-1;;;11738:18:1;;;11731:34;11782:19;;24243:68:0;11581:226:1;24243:68:0;-1:-1:-1;;;;;24330:21:0;;24322:68;;;;-1:-1:-1;;;24322:68:0;;6954:2:1;24322:68:0;;;6936:21:1;6993:2;6973:18;;;6966:30;7032:34;7012:18;;;7005:62;-1:-1:-1;;;7083:18:1;;;7076:32;7125:19;;24322:68:0;6926:224:1;24322:68:0;-1:-1:-1;;;;;24403:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;24455:32;;3241:25:1;;;24455:32:0;;3214:18:1;24455:32:0;;;;;;;24115:380;;;:::o;21334:733::-;-1:-1:-1;;;;;21474:20:0;;21466:70;;;;-1:-1:-1;;;21466:70:0;;11203:2:1;21466:70:0;;;11185:21:1;11242:2;11222:18;;;11215:30;11281:34;11261:18;;;11254:62;-1:-1:-1;;;11332:18:1;;;11325:35;11377:19;;21466:70:0;11175:227:1;21466:70:0;-1:-1:-1;;;;;21555:23:0;;21547:71;;;;-1:-1:-1;;;21547:71:0;;5334:2:1;21547:71:0;;;5316:21:1;5373:2;5353:18;;;5346:30;5412:34;5392:18;;;5385:62;-1:-1:-1;;;5463:18:1;;;5456:33;5506:19;;21547:71:0;5306:225:1;21547:71:0;-1:-1:-1;;;;;21715:17:0;;21691:21;21715:17;;;;;;;;;;;21751:23;;;;21743:74;;;;-1:-1:-1;;;21743:74:0;;8922:2:1;21743:74:0;;;8904:21:1;8961:2;8941:18;;;8934:30;9000:34;8980:18;;;8973:62;-1:-1:-1;;;9051:18:1;;;9044:36;9097:19;;21743:74:0;8894:228:1;21743:74:0;-1:-1:-1;;;;;21853:17:0;;;:9;:17;;;;;;;;;;;21873:22;;;21853:42;;21917:20;;;;;;;;:30;;21889:6;;21853:9;21917:30;;21889:6;;21917:30;:::i;:::-;;;;;;;;21982:9;-1:-1:-1;;;;;21965:35:0;21974:6;-1:-1:-1;;;;;21965:35:0;;21993:6;21965:35;;;;3241:25:1;;3229:2;3214:18;;3196:76;21965:35:0;;;;;;;;22013:46;21334:733;;;;:::o;8610:240::-;8730:7;8791:12;8783:6;;;;8775:29;;;;-1:-1:-1;;;8775:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;8826:5:0;;;8610:240::o;39200:833::-;39302:6;-1:-1:-1;;;;;39292:16:0;:6;-1:-1:-1;;;;;39292:16:0;;;:30;;;;;39321:1;39312:6;:10;39292:30;39288:740;;;-1:-1:-1;;;;;39337:20:0;;;39333:339;;-1:-1:-1;;;;;39429:22:0;;39410:16;39429:22;;;:14;:22;;;;;;;;;39482:13;:60;;39541:1;39482:60;;;-1:-1:-1;;;;;39498:19:0;;;;;;:11;:19;;;;;;39518:13;39530:1;39518:9;:13;:::i;:::-;39498:34;;;;;;;;;;;;;;;:40;;;39482:60;39462:80;-1:-1:-1;39553:17:0;39573:21;39462:80;39587:6;39573:13;:21::i;:::-;39553:41;;39605:57;39622:6;39630:9;39641;39652;39605:16;:57::i;:::-;39333:339;;;;-1:-1:-1;;;;;39686:20:0;;;39682:339;;-1:-1:-1;;;;;39778:22:0;;39759:16;39778:22;;;:14;:22;;;;;;;;;39831:13;:60;;39890:1;39831:60;;;-1:-1:-1;;;;;39847:19:0;;;;;;:11;:19;;;;;;39867:13;39879:1;39867:9;:13;:::i;:::-;39847:34;;;;;;;;;;;;;;;:40;;;39831:60;39811:80;-1:-1:-1;39902:17:0;39922:21;39811:80;39936:6;39922:13;:21::i;:::-;39902:41;;39954:57;39971:6;39979:9;39990;40001;39954:16;:57::i;39682:339::-;39200:833;;;:::o;7468:98::-;7526:7;7553:5;7557:1;7553;:5;:::i;6712:98::-;6770:7;6797:5;6801:1;6797;:5;:::i;7069:98::-;7127:7;7154:5;7158:1;7154;:5;:::i;22354:399::-;-1:-1:-1;;;;;22438:21:0;;22430:65;;;;-1:-1:-1;;;22430:65:0;;12768:2:1;22430:65:0;;;12750:21:1;12807:2;12787:18;;;12780:30;12846:33;12826:18;;;12819:61;12897:18;;22430:65:0;12740:181:1;22430:65:0;22586:6;22570:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;22603:18:0;;:9;:18;;;;;;;;;;:28;;22625:6;;22603:9;:28;;22625:6;;22603:28;:::i;:::-;;;;-1:-1:-1;;22647:37:0;;3241:25:1;;;-1:-1:-1;;;;;22647:37:0;;;22664:1;;22647:37;;3229:2:1;3214:18;22647:37:0;;;;;;;28864:355;;:::o;38783:411::-;-1:-1:-1;;;;;38892:21:0;;;38866:23;38892:21;;;:10;:21;;;;;;;;;;17386:18;;;;;;;39018:21;;;;:33;;;-1:-1:-1;;;;;;39018:33:0;;;;;;;39065:54;;38892:21;;;;;17386:18;;39018:33;;38892:21;;;39065:54;;38866:23;39065:54;39128:60;39143:15;39160:9;39171:16;39128:14;:60::i;3380:173::-;3455:6;;;-1:-1:-1;;;;;3472:17:0;;;-1:-1:-1;;;;;;3472:17:0;;;;;;;3505:40;;3455:6;;;3472:17;3455:6;;3505:40;;3436:16;;3505:40;3380:173;;:::o;23086:591::-;-1:-1:-1;;;;;23170:21:0;;23162:67;;;;-1:-1:-1;;;23162:67:0;;10801:2:1;23162:67:0;;;10783:21:1;10840:2;10820:18;;;10813:30;10879:34;10859:18;;;10852:62;-1:-1:-1;;;10930:18:1;;;10923:31;10971:19;;23162:67:0;10773:223:1;23162:67:0;-1:-1:-1;;;;;23329:18:0;;23304:22;23329:18;;;;;;;;;;;23366:24;;;;23358:71;;;;-1:-1:-1;;;23358:71:0;;5738:2:1;23358:71:0;;;5720:21:1;5777:2;5757:18;;;5750:30;5816:34;5796:18;;;5789:62;-1:-1:-1;;;5867:18:1;;;5860:32;5909:19;;23358:71:0;5710:224:1;23358:71:0;-1:-1:-1;;;;;23465:18:0;;:9;:18;;;;;;;;;;23486:23;;;23465:44;;23531:12;:22;;23503:6;;23465:9;23531:22;;23503:6;;23531:22;:::i;:::-;;;;-1:-1:-1;;23571:37:0;;3241:25:1;;;23597:1:0;;-1:-1:-1;;;;;23571:37:0;;;;;3229:2:1;3214:18;23571:37:0;;;;;;;39200:833;;;:::o;32322:584::-;32375:9;32391:95;32482:3;32391:86;26704:13;32391:53;32440:3;32419:15;32392:24;;:42;;;;:::i;:::-;32391:48;;:53::i;:::-;:57;;:86::i;:95::-;32387:99;;:1;:99;:::i;:::-;32375:111;-1:-1:-1;32553:18:0;32574:59;32628:4;32574:49;32618:4;32574:39;32602:10;32375:111;32608:3;32602:5;:10::i;:::-;32574:23;32582:4;32592;32574:17;:23::i;:59::-;32553:80;;32661:50;32706:4;32661:40;32690:10;32661:24;;:28;;:40;;;;:::i;:50::-;32642:16;:69;32779:19;;:52;;26704:13;32779:23;:52::i;:::-;32757:19;:74;;;32860:16;;32845:53;;;;;;13282:25:1;;13338:2;13323:18;;13316:34;13270:2;13255:18;;13237:119;32845:53:0;;;;;;;;32322:584;;:::o;40039:643::-;40185:18;40206:78;40213:12;40206:78;;;;;;;;;;;;;;;;;:6;:78::i;:::-;40185:99;;40312:1;40297:12;:16;;;:85;;;;-1:-1:-1;;;;;;40317:22:0;;;;;;:11;:22;;;;;:65;;;;40340:16;40355:1;40340:12;:16;:::i;:::-;40317:40;;;;;;;;;;;;;;;-1:-1:-1;40317:40:0;:50;;:65;40297:85;40293:319;;;-1:-1:-1;;;;;40395:22:0;;;;;;:11;:22;;;;;40444:8;;40418:16;40433:1;40418:12;:16;:::i;:::-;40395:40;;;;;;;;;;;;;-1:-1:-1;40395:40:0;:46;;:57;40293:319;;;40516:33;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;40477:22:0;;-1:-1:-1;40477:22:0;;;:11;:22;;;;;:36;;;;;;;;;;;:72;;;;-1:-1:-1;;40477:72:0;;;;;;;;-1:-1:-1;40477:72:0;;;;40588:16;;40477:36;;40588:16;:::i;:::-;-1:-1:-1;;;;;40560:25:0;;;;;;:14;:25;;;;;:44;;-1:-1:-1;;40560:44:0;;;;;;;;;;;;40293:319;40625:51;;;13282:25:1;;;13338:2;13323:18;;13316:34;;;-1:-1:-1;;;;;40625:51:0;;;;;13255:18:1;40625:51:0;;;;;;;40039:643;;;;;:::o;40688:151::-;40763:6;40797:12;40790:5;40786:9;;40778:32;;;;-1:-1:-1;;;40778:32:0;;;;;;;;:::i;:::-;-1:-1:-1;40831:1:0;;40688:151;-1:-1:-1;;40688:151:0:o;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:196::-;251:6;304:2;292:9;283:7;279:23;275:32;272:2;;;325:6;317;310:22;272:2;353:29;372:9;353:29;:::i;393:270::-;461:6;469;522:2;510:9;501:7;497:23;493:32;490:2;;;543:6;535;528:22;490:2;571:29;590:9;571:29;:::i;:::-;561:39;;619:38;653:2;642:9;638:18;619:38;:::i;:::-;609:48;;480:183;;;;;:::o;668:338::-;745:6;753;761;814:2;802:9;793:7;789:23;785:32;782:2;;;835:6;827;820:22;782:2;863:29;882:9;863:29;:::i;:::-;853:39;;911:38;945:2;934:9;930:18;911:38;:::i;:::-;901:48;;996:2;985:9;981:18;968:32;958:42;;772:234;;;;;:::o;1011:264::-;1079:6;1087;1140:2;1128:9;1119:7;1115:23;1111:32;1108:2;;;1161:6;1153;1146:22;1108:2;1189:29;1208:9;1189:29;:::i;:::-;1179:39;1265:2;1250:18;;;;1237:32;;-1:-1:-1;;;1098:177:1:o;1280:638::-;1382:6;1390;1398;1406;1414;1422;1475:3;1463:9;1454:7;1450:23;1446:33;1443:2;;;1497:6;1489;1482:22;1443:2;1525:29;1544:9;1525:29;:::i;:::-;1515:39;;1601:2;1590:9;1586:18;1573:32;1563:42;;1652:2;1641:9;1637:18;1624:32;1614:42;;1706:2;1695:9;1691:18;1678:32;1750:4;1743:5;1739:16;1732:5;1729:27;1719:2;;1775:6;1767;1760:22;1719:2;1433:485;;;;-1:-1:-1;1433:485:1;;1855:3;1840:19;;1827:33;;1907:3;1892:19;;;1879:33;;-1:-1:-1;1433:485:1;-1:-1:-1;;1433:485:1:o;1923:370::-;1990:6;1998;2051:2;2039:9;2030:7;2026:23;2022:32;2019:2;;;2072:6;2064;2057:22;2019:2;2100:29;2119:9;2100:29;:::i;:::-;2090:39;;2179:2;2168:9;2164:18;2151:32;2223:10;2216:5;2212:22;2205:5;2202:33;2192:2;;2254:6;2246;2239:22;2192:2;2282:5;2272:15;;;2009:284;;;;;:::o;4524:603::-;4636:4;4665:2;4694;4683:9;4676:21;4726:6;4720:13;4769:6;4764:2;4753:9;4749:18;4742:34;4794:4;4807:140;4821:6;4818:1;4815:13;4807:140;;;4916:14;;;4912:23;;4906:30;4882:17;;;4901:2;4878:26;4871:66;4836:10;;4807:140;;;4965:6;4962:1;4959:13;4956:2;;;5035:4;5030:2;5021:6;5010:9;5006:22;5002:31;4995:45;4956:2;-1:-1:-1;5111:2:1;5090:15;-1:-1:-1;;5086:29:1;5071:45;;;;5118:2;5067:54;;4645:482;-1:-1:-1;;;4645:482:1:o;5939:401::-;6141:2;6123:21;;;6180:2;6160:18;;;6153:30;6219:34;6214:2;6199:18;;6192:62;-1:-1:-1;;;6285:2:1;6270:18;;6263:35;6330:3;6315:19;;6113:227::o;9476:356::-;9678:2;9660:21;;;9697:18;;;9690:30;9756:34;9751:2;9736:18;;9729:62;9823:2;9808:18;;9650:182::o;11812:343::-;12014:2;11996:21;;;12053:2;12033:18;;;12026:30;-1:-1:-1;;;12087:2:1;12072:18;;12065:49;12146:2;12131:18;;11986:169::o;14015:128::-;14055:3;14086:1;14082:6;14079:1;14076:13;14073:2;;;14092:18;;:::i;:::-;-1:-1:-1;14128:9:1;;14063:80::o;14148:228::-;14187:3;14215:10;14252:2;14249:1;14245:10;14282:2;14279:1;14275:10;14313:3;14309:2;14305:12;14300:3;14297:21;14294:2;;;14321:18;;:::i;:::-;14357:13;;14195:181;-1:-1:-1;;;;14195:181:1:o;14381:120::-;14421:1;14447;14437:2;;14452:18;;:::i;:::-;-1:-1:-1;14486:9:1;;14427:74::o;14506:191::-;14545:1;14571:10;14608:2;14605:1;14601:10;14630:3;14620:2;;14637:18;;:::i;:::-;14675:10;;14671:20;;;;;14551:146;-1:-1:-1;;14551:146:1:o;14702:168::-;14742:7;14808:1;14804;14800:6;14796:14;14793:1;14790:21;14785:1;14778:9;14771:17;14767:45;14764:2;;;14815:18;;:::i;:::-;-1:-1:-1;14855:9:1;;14754:116::o;14875:125::-;14915:4;14943:1;14940;14937:8;14934:2;;;14948:18;;:::i;:::-;-1:-1:-1;14985:9:1;;14924:76::o;15005:221::-;15044:4;15073:10;15133;;;;15103;;15155:12;;;15152:2;;;15170:18;;:::i;:::-;15207:13;;15053:173;-1:-1:-1;;;15053:173:1:o;15231:380::-;15310:1;15306:12;;;;15353;;;15374:2;;15428:4;15420:6;15416:17;15406:27;;15374:2;15481;15473:6;15470:14;15450:18;15447:38;15444:2;;;15527:10;15522:3;15518:20;15515:1;15508:31;15562:4;15559:1;15552:15;15590:4;15587:1;15580:15;15444:2;;15286:325;;;:::o;15616:135::-;15655:3;-1:-1:-1;;15676:17:1;;15673:2;;;15696:18;;:::i;:::-;-1:-1:-1;15743:1:1;15732:13;;15663:88::o;15756:127::-;15817:10;15812:3;15808:20;15805:1;15798:31;15848:4;15845:1;15838:15;15872:4;15869:1;15862:15;15888:127;15949:10;15944:3;15940:20;15937:1;15930:31;15980:4;15977:1;15970:15;16004:4;16001:1;15994:15

Swarm Source

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