ETH Price: $3,020.52 (-6.36%)
Gas: 9 Gwei

Token

Nsure Network Token (Nsure)
 

Overview

Max Total Supply

61,252,842.63 Nsure

Holders

2,867 (0.00%)

Market

Price

$0.00 @ 0.000001 ETH (-10.17%)

Onchain Market Cap

$254,994.36

Circulating Supply Market Cap

$98,674.00

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Ethereum Meta: Deployer
Balance
194,155.010247933298298156 Nsure

Value
$808.26 ( ~0.267589917469172 Eth) [0.3170%]
0x4EF0fA9c1F3E468E942f4ac48da9C5cd2F7be1Fb
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Nsure is an open insurance platform for Open Finance. The project borrows the idea of Lloyd’s London, a market place to trade insurance risks, where premiums are determined by a Dynamic Pricing Model.

Market

Volume (24H):$150,817.00
Market Capitalization:$98,674.00
Circulating Supply:23,727,236.00 Nsure
Market Data Source: Coinmarketcap

IEO Information

IEO Start Date : Oct 28, 2020
IEO End Date : Oct 30, 2020
Public Sale Allocation : 4000000 Nsure
Public Sale Vesting Period : Instant
Country : Singapore

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Nsure

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: @openzeppelin/contracts/utils/EnumerableSet.sol



pragma solidity ^0.6.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.0.0, only sets of type `address` (`AddressSet`) and `uint256`
 * (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;

        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping (bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) { // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            bytes32 lastvalue = set._values[lastIndex];

            // Move the last value to the index where the value to delete is
            set._values[toDeleteIndex] = lastvalue;
            // Update the index for the moved value
            set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        require(set._values.length > index, "EnumerableSet: index out of bounds");
        return set._values[index];
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(value)));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(value)));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(value)));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint256(_at(set._inner, index)));
    }


    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }
}

// File: @openzeppelin/contracts/GSN/Context.sol



pragma solidity ^0.6.0;

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

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol



pragma solidity ^0.6.0;

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol



pragma solidity ^0.6.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

// File: @openzeppelin/contracts/math/SafeMath.sol



pragma solidity ^0.6.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

// File: @openzeppelin/contracts/utils/Address.sol



pragma solidity ^0.6.2;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly { codehash := extcodehash(account) }
        return (codehash != accountHash && codehash != 0x0);
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
      return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return _functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        return _functionCallWithValue(target, data, value, errorMessage);
    }

    function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol



pragma solidity ^0.6.0;





/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20 {
    using SafeMath for uint256;
    using Address for address;

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name, string memory symbol) public {
        _name = name;
        _symbol = symbol;
        _decimals = 18;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is
     * called.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view returns (uint8) {
        return _decimals;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20};
     *
     * Requirements:
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
     *
     * This is internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal {
        _decimals = decimals_;
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
}

// File: @openzeppelin/contracts/token/ERC20/ERC20Burnable.sol



pragma solidity ^0.6.0;



/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        uint256 decreasedAllowance = allowance(account, _msgSender()).sub(amount, "ERC20: burn amount exceeds allowance");

        _approve(account, _msgSender(), decreasedAllowance);
        _burn(account, amount);
    }
}

// File: contracts/governance.sol

pragma solidity ^0.6.0;
pragma experimental ABIEncoderV2;



abstract contract DeligateERC20 is ERC20Burnable {
    /// @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;


    // support delegates mint
    function _mint(address account, uint256 amount) internal override virtual {
        super._mint(account, amount);

        // add delegates to the minter
        _moveDelegates(address(0), _delegates[account], amount);
    }


    function _transfer(address sender, address recipient, uint256 amount) internal override virtual {
        super._transfer(sender, recipient, amount);
        _moveDelegates(_delegates[sender], _delegates[recipient], amount);
    }

    
    // support delegates burn
    function burn(uint256 amount) public override virtual {
        super.burn(amount);

        // del delegates to backhole
        _moveDelegates(_delegates[_msgSender()], address(0), amount);
    }

    function burnFrom(address account, uint256 amount) public override virtual {
        super.burnFrom(account, amount);

        // del delegates to the backhole
        _moveDelegates(_delegates[account], address(0), amount);
    }
    
    /**
    * @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,
        uint nonce,
        uint expiry,
        uint8 v,
        bytes32 r,
        bytes32 s
    )
        external
    {
        bytes32 domainSeparator = keccak256(
            abi.encode(
                DOMAIN_TYPEHASH,
                keccak256(bytes(name())),
                getChainId(),
                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), "Governance::delegateBySig: invalid signature");
        require(nonce == nonces[signatory]++, "Governance::delegateBySig: invalid nonce");
        require(now <= expiry, "Governance::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, "Governance::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 balances (not scaled);
        _delegates[delegator] = delegatee;

        _moveDelegates(currentDelegate, delegatee, delegatorBalance);

        emit DelegateChanged(delegator, currentDelegate, delegatee);
    }

    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, "Governance::_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);
    }

    function getChainId() internal pure returns (uint) {
        uint256 chainId;
        assembly { chainId := chainid() }

        return chainId;
    }

    

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

}

// File: contracts/nsure.sol

// SPDX-License-Identifier: nsure.network

/**
 * @author  Nsure.Team
 *
 * @dev     Contract for Nsure token with burn support
 */

pragma solidity ^0.6.0;




// Nsure erc20 Token Contract.
contract Nsure is DeligateERC20, Ownable {
    uint256 private constant preMineSupply  = 45 * 1e6 * 1e18;      // pre-mine
    uint256 private constant maxSupply      = 100 * 1e6 * 1e18;     // the total supply
    address private constant nsureAdmin     = 0x5Ba189D1A3E74cf3d1D38ad81F3d75cbFdbdb5bf;

    // for minters
    using EnumerableSet for EnumerableSet.AddressSet;
    EnumerableSet.AddressSet private _minters;


    constructor() public ERC20("Nsure Network Token", "Nsure") {
        _mint(nsureAdmin, preMineSupply);
    }


    // mint with max supply
    function mint(address _to, uint256 _amount) public onlyMinter returns (bool) {
        if(_amount.add(totalSupply()) > maxSupply) {
            return false;
        }

        _mint(_to, _amount);
        return true;
    }


    function addMinter(address _addMinter) public onlyOwner returns (bool) {
        require(_addMinter != address(0), "Nsure: _addMinter is the zero address");
        
        return EnumerableSet.add(_minters, _addMinter);
    }

    function delMinter(address _delMinter) public onlyOwner returns (bool) {
        require(_delMinter != address(0), "Nsure: _delMinter is the zero address");
        
        return EnumerableSet.remove(_minters, _delMinter);
    }

    function getMinterLength() public view returns (uint256) {
        return EnumerableSet.length(_minters);
    }

    function isMinter(address account) public view returns (bool) {
        return EnumerableSet.contains(_minters, account);
    }

    // modifier for mint function
    modifier onlyMinter() {
        require(isMinter(msg.sender), "Nsure: caller is not the minter");
        _;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":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":[{"internalType":"address","name":"_addMinter","type":"address"}],"name":"addMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","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":"_delMinter","type":"address"}],"name":"delMinter","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":"account","type":"address"}],"name":"getCurrentVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMinterLength","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":[{"internalType":"address","name":"account","type":"address"}],"name":"isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604080518082018252601381527f4e73757265204e6574776f726b20546f6b656e000000000000000000000000006020808301918252835180850190945260058452644e7375726560d81b908401528151919291620000749160039162000611565b5080516200008a90600490602084019062000611565b50506005805460ff19166012179055506000620000a662000125565b600a80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506200011f735ba189d1a3e74cf3d1d38ad81f3d75cbfdbdb5bf6a25391ee35a05c54d00000062000129565b62000788565b3390565b6200014082826200016b60201b62000eb21760201c565b6001600160a01b038083166000908152600660205260408120546200016792168362000257565b5050565b6001600160a01b0382166200019d5760405162461bcd60e51b815260040162000194906200073a565b60405180910390fd5b620001ab60008383620003c4565b620001c781600254620003c960201b62000f721790919060201c565b6002556001600160a01b03821660009081526020818152604090912054620001fa91839062000f72620003c9821b17901c565b6001600160a01b0383166000818152602081905260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906200024b90859062000771565b60405180910390a35050565b816001600160a01b0316836001600160a01b0316141580156200027a5750600081115b15620003c4576001600160a01b0383161562000322576001600160a01b03831660009081526008602052604081205463ffffffff169081620002be576000620002f0565b6001600160a01b038516600090815260076020908152604080832063ffffffff60001987011684529091529020600101545b905060006200030e8483620003f860201b62000f971790919060201c565b90506200031e8684848462000442565b5050505b6001600160a01b03821615620003c4576001600160a01b03821660009081526008602052604081205463ffffffff1690816200036057600062000392565b6001600160a01b038416600090815260076020908152604080832063ffffffff60001987011684529091529020600101545b90506000620003b08483620003c960201b62000f721790919060201c565b9050620003c08584848462000442565b5050505b505050565b600082820183811015620003f15760405162461bcd60e51b8152600401620001949062000703565b9392505050565b6000620003f183836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250620005af60201b60201c565b600062000469436040518060600160405280603a815260200162002850603a9139620005de565b905060008463ffffffff16118015620004b357506001600160a01b038516600090815260076020908152604080832063ffffffff6000198901811685529252909120548282169116145b15620004f2576001600160a01b038516600090815260076020908152604080832063ffffffff6000198901168452909152902060010182905562000563565b60408051808201825263ffffffff808416825260208083018681526001600160a01b038a166000818152600784528681208b8616825284528681209551865490861663ffffffff19918216178755925160019687015590815260089092529390208054928801909116919092161790555b846001600160a01b03167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248484604051620005a09291906200077a565b60405180910390a25050505050565b60008184841115620005d65760405162461bcd60e51b8152600401620001949190620006ad565b505050900390565b6000816401000000008410620006095760405162461bcd60e51b8152600401620001949190620006ad565b509192915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200065457805160ff191683800117855562000684565b8280016001018555821562000684579182015b828111156200068457825182559160200191906001019062000667565b506200069292915062000696565b5090565b5b8082111562000692576000815560010162000697565b6000602080835283518082850152825b81811015620006db57858101830151858201604001528201620006bd565b81811115620006ed5783604083870101525b50601f01601f1916929092016040019392505050565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b918252602082015260400190565b6120b880620007986000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c8063782d6fe111610104578063a9059cbb116100a2578063dd62ed3e11610071578063dd62ed3e146103ce578063e7a324dc146103e1578063f1127ed8146103e9578063f2fde38b1461040a576101da565b8063a9059cbb14610382578063aa271e1a14610395578063b4b5ea57146103a8578063c3cda520146103bb576101da565b80638da5cb5b116100de5780638da5cb5b1461033f57806395d89b4114610354578063983b2d561461035c578063a457c2d71461036f576101da565b8063782d6fe11461030657806379cc6790146103195780637ecebe001461032c576101da565b8063313ce5671161017c5780635c19a95c1161014b5780635c19a95c146102b85780636fcfff45146102cb57806370a08231146102eb578063715018a6146102fe576101da565b8063313ce56714610268578063395093511461027d57806340c10f191461029057806342966c68146102a3576101da565b806318160ddd116101b857806318160ddd1461023257806320606b701461023a57806323338b881461024257806323b872dd14610255576101da565b80630323aac7146101df57806306fdde03146101fd578063095ea7b314610212575b600080fd5b6101e761041d565b6040516101f49190611a4f565b60405180910390f35b61020561042e565b6040516101f49190611abe565b610225610220366004611935565b6104c4565b6040516101f49190611a44565b6101e76104e2565b6101e76104e8565b6102256102503660046118a6565b61050c565b6102256102633660046118f5565b61057d565b610270610604565b6040516101f49190611f6c565b61022561028b366004611935565b61060d565b61022561029e366004611935565b61065b565b6102b66102b13660046119fd565b6106b8565b005b6102b66102c63660046118a6565b6106fb565b6102de6102d93660046118a6565b610705565b6040516101f49190611f45565b6101e76102f93660046118a6565b61071d565b6102b6610738565b6101e7610314366004611935565b6107b7565b6102b6610327366004611935565b6109a0565b6101e761033a3660046118a6565b6109d4565b6103476109e6565b6040516101f49190611a30565b6102056109f5565b61022561036a3660046118a6565b610a56565b61022561037d366004611935565b610abe565b610225610390366004611935565b610b26565b6102256103a33660046118a6565b610b3a565b6101e76103b63660046118a6565b610b47565b6102b66103c936600461195f565b610bab565b6101e76103dc3660046118c1565b610d7f565b6101e7610daa565b6103fc6103f73660046119be565b610dce565b6040516101f4929190611f56565b6102b66104183660046118a6565b610dfb565b6000610429600b610fd9565b905090565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104ba5780601f1061048f576101008083540402835291602001916104ba565b820191906000526020600020905b81548152906001019060200180831161049d57829003601f168201915b5050505050905090565b60006104d86104d1610fe4565b8484610fe8565b5060015b92915050565b60025490565b7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b6000610516610fe4565b600a546001600160a01b0390811691161461054c5760405162461bcd60e51b815260040161054390611ca5565b60405180910390fd5b6001600160a01b0382166105725760405162461bcd60e51b815260040161054390611da4565b6104dc600b8361109c565b600061058a8484846110b1565b6105fa84610596610fe4565b6105f585604051806060016040528060288152602001612012602891396001600160a01b038a166000908152600160205260408120906105d4610fe4565b6001600160a01b0316815260208101919091526040016000205491906110f3565b610fe8565b5060019392505050565b60055460ff1690565b60006104d861061a610fe4565b846105f5856001600061062b610fe4565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490610f72565b600061066633610b3a565b6106825760405162461bcd60e51b815260040161054390611e35565b6a52b7d2dcc80cd2e40000006106a06106996104e2565b8490610f72565b11156106ae575060006104dc565b6104d8838361111f565b6106c18161114e565b6106f8600660006106d0610fe4565b6001600160a01b0390811682526020820192909252604001600090812054909116908361115f565b50565b6106f8338261129c565b60086020526000908152604090205463ffffffff1681565b6001600160a01b031660009081526020819052604090205490565b610740610fe4565b600a546001600160a01b0390811691161461076d5760405162461bcd60e51b815260040161054390611ca5565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b60004382106107d85760405162461bcd60e51b815260040161054390611b11565b6001600160a01b03831660009081526008602052604090205463ffffffff16806108065760009150506104dc565b6001600160a01b038416600090815260076020908152604080832063ffffffff600019860181168552925290912054168310610875576001600160a01b03841660009081526007602090815260408083206000199490940163ffffffff168352929052206001015490506104dc565b6001600160a01b038416600090815260076020908152604080832083805290915290205463ffffffff168310156108b05760009150506104dc565b600060001982015b8163ffffffff168163ffffffff16111561096957600282820363ffffffff160481036108e2611878565b506001600160a01b038716600090815260076020908152604080832063ffffffff808616855290835292819020815180830190925280549093168082526001909301549181019190915290871415610944576020015194506104dc9350505050565b805163ffffffff1687111561095b57819350610962565b6001820392505b50506108b8565b506001600160a01b038516600090815260076020908152604080832063ffffffff9094168352929052206001015491505092915050565b6109aa828261134e565b6001600160a01b038083166000908152600660205260408120546109d09216908361115f565b5050565b60096020526000908152604090205481565b600a546001600160a01b031690565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104ba5780601f1061048f576101008083540402835291602001916104ba565b6000610a60610fe4565b600a546001600160a01b03908116911614610a8d5760405162461bcd60e51b815260040161054390611ca5565b6001600160a01b038216610ab35760405162461bcd60e51b815260040161054390611ba1565b6104dc600b8361139e565b60006104d8610acb610fe4565b846105f58560405180606001604052806025815260200161205e6025913960016000610af5610fe4565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906110f3565b60006104d8610b33610fe4565b84846110b1565b60006104dc600b836113b3565b6001600160a01b03811660009081526008602052604081205463ffffffff1680610b72576000610ba4565b6001600160a01b038316600090815260076020908152604080832063ffffffff60001986011684529091529020600101545b9392505050565b60007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a866610bd661042e565b80519060200120610be56113c8565b30604051602001610bf99493929190611a7c565b60405160208183030381529060405280519060200120905060007fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf888888604051602001610c4a9493929190611a58565b60405160208183030381529060405280519060200120905060008282604051602001610c77929190611a15565b604051602081830303815290604052805190602001209050600060018288888860405160008152602001604052604051610cb49493929190611aa0565b6020604051602081039080840390855afa158015610cd6573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610d095760405162461bcd60e51b815260040161054390611de9565b6001600160a01b03811660009081526009602052604090208054600181019091558914610d485760405162461bcd60e51b815260040161054390611e6c565b87421115610d685760405162461bcd60e51b815260040161054390611eeb565b610d72818b61129c565b505050505b505050505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b60076020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b610e03610fe4565b600a546001600160a01b03908116911614610e305760405162461bcd60e51b815260040161054390611ca5565b6001600160a01b038116610e565760405162461bcd60e51b815260040161054390611be6565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038216610ed85760405162461bcd60e51b815260040161054390611eb4565b610ee4600083836110ee565b600254610ef19082610f72565b6002556001600160a01b038216600090815260208190526040902054610f179082610f72565b6001600160a01b0383166000818152602081905260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610f66908590611a4f565b60405180910390a35050565b600082820183811015610ba45760405162461bcd60e51b815260040161054390611c6e565b6000610ba483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506110f3565b60006104dc826113cc565b3390565b6001600160a01b03831661100e5760405162461bcd60e51b815260040161054390611d60565b6001600160a01b0382166110345760405162461bcd60e51b815260040161054390611c2c565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061108f908590611a4f565b60405180910390a3505050565b6000610ba4836001600160a01b0384166113d0565b6110bc838383611496565b6001600160a01b038084166000908152600660205260408082205485841683529120546110ee9291821691168361115f565b505050565b600081848411156111175760405162461bcd60e51b81526004016105439190611abe565b505050900390565b6111298282610eb2565b6001600160a01b038083166000908152600660205260408120546109d092168361115f565b6106f8611159610fe4565b826115ab565b816001600160a01b0316836001600160a01b0316141580156111815750600081115b156110ee576001600160a01b03831615611213576001600160a01b03831660009081526008602052604081205463ffffffff1690816111c15760006111f3565b6001600160a01b038516600090815260076020908152604080832063ffffffff60001987011684529091529020600101545b905060006112018285610f97565b905061120f86848484611681565b5050505b6001600160a01b038216156110ee576001600160a01b03821660009081526008602052604081205463ffffffff16908161124e576000611280565b6001600160a01b038416600090815260076020908152604080832063ffffffff60001987011684529091529020600101545b9050600061128e8285610f72565b9050610d7785848484611681565b6001600160a01b03808316600090815260066020526040812054909116906112c38461071d565b6001600160a01b03858116600090815260066020526040902080546001600160a01b03191691861691909117905590506112fe82848361115f565b826001600160a01b0316826001600160a01b0316856001600160a01b03167f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f60405160405180910390a450505050565b60006113808260405180606001604052806024815260200161203a60249139611379866103dc610fe4565b91906110f3565b90506113948361138e610fe4565b83610fe8565b6110ee83836115ab565b6000610ba4836001600160a01b0384166117e6565b6000610ba4836001600160a01b038416611830565b4690565b5490565b6000818152600183016020526040812054801561148c578354600019808301919081019060009087908390811061140357fe5b906000526020600020015490508087600001848154811061142057fe5b60009182526020808320909101929092558281526001898101909252604090209084019055865487908061145057fe5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506104dc565b60009150506104dc565b6001600160a01b0383166114bc5760405162461bcd60e51b815260040161054390611d1b565b6001600160a01b0382166114e25760405162461bcd60e51b815260040161054390611b5e565b6114ed8383836110ee565b61152a81604051806060016040528060268152602001611fb2602691396001600160a01b03861660009081526020819052604090205491906110f3565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546115599082610f72565b6001600160a01b0380841660008181526020819052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061108f908590611a4f565b6001600160a01b0382166115d15760405162461bcd60e51b815260040161054390611cda565b6115dd826000836110ee565b61161a81604051806060016040528060228152602001611f90602291396001600160a01b03851660009081526020819052604090205491906110f3565b6001600160a01b0383166000908152602081905260409020556002546116409082610f97565b6002556040516000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610f66908590611a4f565b60006116a5436040518060600160405280603a8152602001611fd8603a9139611848565b905060008463ffffffff161180156116ee57506001600160a01b038516600090815260076020908152604080832063ffffffff6000198901811685529252909120548282169116145b1561172b576001600160a01b038516600090815260076020908152604080832063ffffffff6000198901168452909152902060010182905561179c565b60408051808201825263ffffffff808416825260208083018681526001600160a01b038a166000818152600784528681208b8616825284528681209551865490861663ffffffff19918216178755925160019687015590815260089092529390208054928801909116919092161790555b846001600160a01b03167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a72484846040516117d7929190611f37565b60405180910390a25050505050565b60006117f28383611830565b611828575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556104dc565b5060006104dc565b60009081526001919091016020526040902054151590565b60008164010000000084106118705760405162461bcd60e51b81526004016105439190611abe565b509192915050565b604080518082019091526000808252602082015290565b80356001600160a01b03811681146104dc57600080fd5b6000602082840312156118b7578081fd5b610ba4838361188f565b600080604083850312156118d3578081fd5b6118dd848461188f565b91506118ec846020850161188f565b90509250929050565b600080600060608486031215611909578081fd5b833561191481611f7a565b9250602084013561192481611f7a565b929592945050506040919091013590565b60008060408385031215611947578182fd5b611951848461188f565b946020939093013593505050565b60008060008060008060c08789031215611977578182fd5b611981888861188f565b95506020870135945060408701359350606087013560ff811681146119a4578283fd5b9598949750929560808101359460a0909101359350915050565b600080604083850312156119d0578182fd5b6119da848461188f565b9150602083013563ffffffff811681146119f2578182fd5b809150509250929050565b600060208284031215611a0e578081fd5b5035919050565b61190160f01b81526002810192909252602282015260420190565b6001600160a01b0391909116815260200190565b901515815260200190565b90815260200190565b9384526001600160a01b039290921660208401526040830152606082015260800190565b938452602084019290925260408301526001600160a01b0316606082015260800190565b93845260ff9290921660208401526040830152606082015260800190565b6000602080835283518082850152825b81811015611aea57858101830151858201604001528201611ace565b81811115611afb5783604083870101525b50601f01601f1916929092016040019392505050565b6020808252602d908201527f476f7665726e616e63653a3a6765745072696f72566f7465733a206e6f74207960408201526c195d0819195d195c9b5a5b9959609a1b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526025908201527f4e737572653a205f6164644d696e74657220697320746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f4e737572653a205f64656c4d696e74657220697320746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602c908201527f476f7665726e616e63653a3a64656c656761746542795369673a20696e76616c60408201526b6964207369676e617475726560a01b606082015260800190565b6020808252601f908201527f4e737572653a2063616c6c6572206973206e6f7420746865206d696e74657200604082015260600190565b60208082526028908201527f476f7665726e616e63653a3a64656c656761746542795369673a20696e76616c6040820152676964206e6f6e636560c01b606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b6020808252602c908201527f476f7665726e616e63653a3a64656c656761746542795369673a207369676e6160408201526b1d1d5c9948195e1c1a5c995960a21b606082015260800190565b918252602082015260400190565b63ffffffff91909116815260200190565b63ffffffff929092168252602082015260400190565b60ff91909116815260200190565b6001600160a01b03811681146106f857600080fdfe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365476f7665726e616e63653a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d6265722065786365656473203332206269747345524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220610002a3925b7ad2327437ef6750b0301586307d618a9c7b0deeab090431af6264736f6c634300060c0033476f7665726e616e63653a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d62657220657863656564732033322062697473

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101da5760003560e01c8063782d6fe111610104578063a9059cbb116100a2578063dd62ed3e11610071578063dd62ed3e146103ce578063e7a324dc146103e1578063f1127ed8146103e9578063f2fde38b1461040a576101da565b8063a9059cbb14610382578063aa271e1a14610395578063b4b5ea57146103a8578063c3cda520146103bb576101da565b80638da5cb5b116100de5780638da5cb5b1461033f57806395d89b4114610354578063983b2d561461035c578063a457c2d71461036f576101da565b8063782d6fe11461030657806379cc6790146103195780637ecebe001461032c576101da565b8063313ce5671161017c5780635c19a95c1161014b5780635c19a95c146102b85780636fcfff45146102cb57806370a08231146102eb578063715018a6146102fe576101da565b8063313ce56714610268578063395093511461027d57806340c10f191461029057806342966c68146102a3576101da565b806318160ddd116101b857806318160ddd1461023257806320606b701461023a57806323338b881461024257806323b872dd14610255576101da565b80630323aac7146101df57806306fdde03146101fd578063095ea7b314610212575b600080fd5b6101e761041d565b6040516101f49190611a4f565b60405180910390f35b61020561042e565b6040516101f49190611abe565b610225610220366004611935565b6104c4565b6040516101f49190611a44565b6101e76104e2565b6101e76104e8565b6102256102503660046118a6565b61050c565b6102256102633660046118f5565b61057d565b610270610604565b6040516101f49190611f6c565b61022561028b366004611935565b61060d565b61022561029e366004611935565b61065b565b6102b66102b13660046119fd565b6106b8565b005b6102b66102c63660046118a6565b6106fb565b6102de6102d93660046118a6565b610705565b6040516101f49190611f45565b6101e76102f93660046118a6565b61071d565b6102b6610738565b6101e7610314366004611935565b6107b7565b6102b6610327366004611935565b6109a0565b6101e761033a3660046118a6565b6109d4565b6103476109e6565b6040516101f49190611a30565b6102056109f5565b61022561036a3660046118a6565b610a56565b61022561037d366004611935565b610abe565b610225610390366004611935565b610b26565b6102256103a33660046118a6565b610b3a565b6101e76103b63660046118a6565b610b47565b6102b66103c936600461195f565b610bab565b6101e76103dc3660046118c1565b610d7f565b6101e7610daa565b6103fc6103f73660046119be565b610dce565b6040516101f4929190611f56565b6102b66104183660046118a6565b610dfb565b6000610429600b610fd9565b905090565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104ba5780601f1061048f576101008083540402835291602001916104ba565b820191906000526020600020905b81548152906001019060200180831161049d57829003601f168201915b5050505050905090565b60006104d86104d1610fe4565b8484610fe8565b5060015b92915050565b60025490565b7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b6000610516610fe4565b600a546001600160a01b0390811691161461054c5760405162461bcd60e51b815260040161054390611ca5565b60405180910390fd5b6001600160a01b0382166105725760405162461bcd60e51b815260040161054390611da4565b6104dc600b8361109c565b600061058a8484846110b1565b6105fa84610596610fe4565b6105f585604051806060016040528060288152602001612012602891396001600160a01b038a166000908152600160205260408120906105d4610fe4565b6001600160a01b0316815260208101919091526040016000205491906110f3565b610fe8565b5060019392505050565b60055460ff1690565b60006104d861061a610fe4565b846105f5856001600061062b610fe4565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490610f72565b600061066633610b3a565b6106825760405162461bcd60e51b815260040161054390611e35565b6a52b7d2dcc80cd2e40000006106a06106996104e2565b8490610f72565b11156106ae575060006104dc565b6104d8838361111f565b6106c18161114e565b6106f8600660006106d0610fe4565b6001600160a01b0390811682526020820192909252604001600090812054909116908361115f565b50565b6106f8338261129c565b60086020526000908152604090205463ffffffff1681565b6001600160a01b031660009081526020819052604090205490565b610740610fe4565b600a546001600160a01b0390811691161461076d5760405162461bcd60e51b815260040161054390611ca5565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b60004382106107d85760405162461bcd60e51b815260040161054390611b11565b6001600160a01b03831660009081526008602052604090205463ffffffff16806108065760009150506104dc565b6001600160a01b038416600090815260076020908152604080832063ffffffff600019860181168552925290912054168310610875576001600160a01b03841660009081526007602090815260408083206000199490940163ffffffff168352929052206001015490506104dc565b6001600160a01b038416600090815260076020908152604080832083805290915290205463ffffffff168310156108b05760009150506104dc565b600060001982015b8163ffffffff168163ffffffff16111561096957600282820363ffffffff160481036108e2611878565b506001600160a01b038716600090815260076020908152604080832063ffffffff808616855290835292819020815180830190925280549093168082526001909301549181019190915290871415610944576020015194506104dc9350505050565b805163ffffffff1687111561095b57819350610962565b6001820392505b50506108b8565b506001600160a01b038516600090815260076020908152604080832063ffffffff9094168352929052206001015491505092915050565b6109aa828261134e565b6001600160a01b038083166000908152600660205260408120546109d09216908361115f565b5050565b60096020526000908152604090205481565b600a546001600160a01b031690565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104ba5780601f1061048f576101008083540402835291602001916104ba565b6000610a60610fe4565b600a546001600160a01b03908116911614610a8d5760405162461bcd60e51b815260040161054390611ca5565b6001600160a01b038216610ab35760405162461bcd60e51b815260040161054390611ba1565b6104dc600b8361139e565b60006104d8610acb610fe4565b846105f58560405180606001604052806025815260200161205e6025913960016000610af5610fe4565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906110f3565b60006104d8610b33610fe4565b84846110b1565b60006104dc600b836113b3565b6001600160a01b03811660009081526008602052604081205463ffffffff1680610b72576000610ba4565b6001600160a01b038316600090815260076020908152604080832063ffffffff60001986011684529091529020600101545b9392505050565b60007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a866610bd661042e565b80519060200120610be56113c8565b30604051602001610bf99493929190611a7c565b60405160208183030381529060405280519060200120905060007fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf888888604051602001610c4a9493929190611a58565b60405160208183030381529060405280519060200120905060008282604051602001610c77929190611a15565b604051602081830303815290604052805190602001209050600060018288888860405160008152602001604052604051610cb49493929190611aa0565b6020604051602081039080840390855afa158015610cd6573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610d095760405162461bcd60e51b815260040161054390611de9565b6001600160a01b03811660009081526009602052604090208054600181019091558914610d485760405162461bcd60e51b815260040161054390611e6c565b87421115610d685760405162461bcd60e51b815260040161054390611eeb565b610d72818b61129c565b505050505b505050505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b60076020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b610e03610fe4565b600a546001600160a01b03908116911614610e305760405162461bcd60e51b815260040161054390611ca5565b6001600160a01b038116610e565760405162461bcd60e51b815260040161054390611be6565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038216610ed85760405162461bcd60e51b815260040161054390611eb4565b610ee4600083836110ee565b600254610ef19082610f72565b6002556001600160a01b038216600090815260208190526040902054610f179082610f72565b6001600160a01b0383166000818152602081905260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610f66908590611a4f565b60405180910390a35050565b600082820183811015610ba45760405162461bcd60e51b815260040161054390611c6e565b6000610ba483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506110f3565b60006104dc826113cc565b3390565b6001600160a01b03831661100e5760405162461bcd60e51b815260040161054390611d60565b6001600160a01b0382166110345760405162461bcd60e51b815260040161054390611c2c565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061108f908590611a4f565b60405180910390a3505050565b6000610ba4836001600160a01b0384166113d0565b6110bc838383611496565b6001600160a01b038084166000908152600660205260408082205485841683529120546110ee9291821691168361115f565b505050565b600081848411156111175760405162461bcd60e51b81526004016105439190611abe565b505050900390565b6111298282610eb2565b6001600160a01b038083166000908152600660205260408120546109d092168361115f565b6106f8611159610fe4565b826115ab565b816001600160a01b0316836001600160a01b0316141580156111815750600081115b156110ee576001600160a01b03831615611213576001600160a01b03831660009081526008602052604081205463ffffffff1690816111c15760006111f3565b6001600160a01b038516600090815260076020908152604080832063ffffffff60001987011684529091529020600101545b905060006112018285610f97565b905061120f86848484611681565b5050505b6001600160a01b038216156110ee576001600160a01b03821660009081526008602052604081205463ffffffff16908161124e576000611280565b6001600160a01b038416600090815260076020908152604080832063ffffffff60001987011684529091529020600101545b9050600061128e8285610f72565b9050610d7785848484611681565b6001600160a01b03808316600090815260066020526040812054909116906112c38461071d565b6001600160a01b03858116600090815260066020526040902080546001600160a01b03191691861691909117905590506112fe82848361115f565b826001600160a01b0316826001600160a01b0316856001600160a01b03167f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f60405160405180910390a450505050565b60006113808260405180606001604052806024815260200161203a60249139611379866103dc610fe4565b91906110f3565b90506113948361138e610fe4565b83610fe8565b6110ee83836115ab565b6000610ba4836001600160a01b0384166117e6565b6000610ba4836001600160a01b038416611830565b4690565b5490565b6000818152600183016020526040812054801561148c578354600019808301919081019060009087908390811061140357fe5b906000526020600020015490508087600001848154811061142057fe5b60009182526020808320909101929092558281526001898101909252604090209084019055865487908061145057fe5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506104dc565b60009150506104dc565b6001600160a01b0383166114bc5760405162461bcd60e51b815260040161054390611d1b565b6001600160a01b0382166114e25760405162461bcd60e51b815260040161054390611b5e565b6114ed8383836110ee565b61152a81604051806060016040528060268152602001611fb2602691396001600160a01b03861660009081526020819052604090205491906110f3565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546115599082610f72565b6001600160a01b0380841660008181526020819052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061108f908590611a4f565b6001600160a01b0382166115d15760405162461bcd60e51b815260040161054390611cda565b6115dd826000836110ee565b61161a81604051806060016040528060228152602001611f90602291396001600160a01b03851660009081526020819052604090205491906110f3565b6001600160a01b0383166000908152602081905260409020556002546116409082610f97565b6002556040516000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610f66908590611a4f565b60006116a5436040518060600160405280603a8152602001611fd8603a9139611848565b905060008463ffffffff161180156116ee57506001600160a01b038516600090815260076020908152604080832063ffffffff6000198901811685529252909120548282169116145b1561172b576001600160a01b038516600090815260076020908152604080832063ffffffff6000198901168452909152902060010182905561179c565b60408051808201825263ffffffff808416825260208083018681526001600160a01b038a166000818152600784528681208b8616825284528681209551865490861663ffffffff19918216178755925160019687015590815260089092529390208054928801909116919092161790555b846001600160a01b03167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a72484846040516117d7929190611f37565b60405180910390a25050505050565b60006117f28383611830565b611828575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556104dc565b5060006104dc565b60009081526001919091016020526040902054151590565b60008164010000000084106118705760405162461bcd60e51b81526004016105439190611abe565b509192915050565b604080518082019091526000808252602082015290565b80356001600160a01b03811681146104dc57600080fd5b6000602082840312156118b7578081fd5b610ba4838361188f565b600080604083850312156118d3578081fd5b6118dd848461188f565b91506118ec846020850161188f565b90509250929050565b600080600060608486031215611909578081fd5b833561191481611f7a565b9250602084013561192481611f7a565b929592945050506040919091013590565b60008060408385031215611947578182fd5b611951848461188f565b946020939093013593505050565b60008060008060008060c08789031215611977578182fd5b611981888861188f565b95506020870135945060408701359350606087013560ff811681146119a4578283fd5b9598949750929560808101359460a0909101359350915050565b600080604083850312156119d0578182fd5b6119da848461188f565b9150602083013563ffffffff811681146119f2578182fd5b809150509250929050565b600060208284031215611a0e578081fd5b5035919050565b61190160f01b81526002810192909252602282015260420190565b6001600160a01b0391909116815260200190565b901515815260200190565b90815260200190565b9384526001600160a01b039290921660208401526040830152606082015260800190565b938452602084019290925260408301526001600160a01b0316606082015260800190565b93845260ff9290921660208401526040830152606082015260800190565b6000602080835283518082850152825b81811015611aea57858101830151858201604001528201611ace565b81811115611afb5783604083870101525b50601f01601f1916929092016040019392505050565b6020808252602d908201527f476f7665726e616e63653a3a6765745072696f72566f7465733a206e6f74207960408201526c195d0819195d195c9b5a5b9959609a1b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526025908201527f4e737572653a205f6164644d696e74657220697320746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f4e737572653a205f64656c4d696e74657220697320746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252602c908201527f476f7665726e616e63653a3a64656c656761746542795369673a20696e76616c60408201526b6964207369676e617475726560a01b606082015260800190565b6020808252601f908201527f4e737572653a2063616c6c6572206973206e6f7420746865206d696e74657200604082015260600190565b60208082526028908201527f476f7665726e616e63653a3a64656c656761746542795369673a20696e76616c6040820152676964206e6f6e636560c01b606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b6020808252602c908201527f476f7665726e616e63653a3a64656c656761746542795369673a207369676e6160408201526b1d1d5c9948195e1c1a5c995960a21b606082015260800190565b918252602082015260400190565b63ffffffff91909116815260200190565b63ffffffff929092168252602082015260400190565b60ff91909116815260200190565b6001600160a01b03811681146106f857600080fdfe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365476f7665726e616e63653a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d6265722065786365656473203332206269747345524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220610002a3925b7ad2327437ef6750b0301586307d618a9c7b0deeab090431af6264736f6c634300060c0033

Deployed Bytecode Sourcemap

47301:1722:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48610:113;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27953:83;;;:::i;:::-;;;;;;;:::i;30059:169::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;29028:100::-;;;:::i;38727:122::-;;;:::i;48368:234::-;;;;;;:::i;:::-;;:::i;30702:321::-;;;;;;:::i;:::-;;:::i;28880:83::-;;;:::i;:::-;;;;;;;:::i;31432:218::-;;;;;;:::i;:::-;;:::i;47888:231::-;;;;;;:::i;:::-;;:::i;39739:202::-;;;;;;:::i;:::-;;:::i;:::-;;40333:104;;;;;;:::i;:::-;;:::i;38605:49::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;29191:119::-;;;;;;:::i;:::-;;:::i;10777:148::-;;;:::i;42954:1259::-;;;;;;:::i;:::-;;:::i;39949:235::-;;;;;;:::i;:::-;;:::i;39141:39::-;;;;;;:::i;:::-;;:::i;10135:79::-;;;:::i;:::-;;;;;;;:::i;28155:87::-;;;:::i;48129:231::-;;;;;;:::i;:::-;;:::i;32153:269::-;;;;;;:::i;:::-;;:::i;29523:175::-;;;;;;:::i;:::-;;:::i;48731:129::-;;;;;;:::i;:::-;;:::i;42268:255::-;;;;;;:::i;:::-;;:::i;40871:1196::-;;;;;;:::i;:::-;;:::i;29761:151::-;;;;;;:::i;:::-;;:::i;38943:117::-;;;:::i;38466:70::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;11080:244::-;;;;;;:::i;:::-;;:::i;48610:113::-;48658:7;48685:30;48706:8;48685:20;:30::i;:::-;48678:37;;48610:113;:::o;27953:83::-;28023:5;28016:12;;;;;;;;-1:-1:-1;;28016:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27990:13;;28016:12;;28023:5;;28016:12;;28023:5;28016:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27953:83;:::o;30059:169::-;30142:4;30159:39;30168:12;:10;:12::i;:::-;30182:7;30191:6;30159:8;:39::i;:::-;-1:-1:-1;30216:4:0;30059:169;;;;;:::o;29028:100::-;29108:12;;29028:100;:::o;38727:122::-;38769:80;38727:122;:::o;48368:234::-;48433:4;10357:12;:10;:12::i;:::-;10347:6;;-1:-1:-1;;;;;10347:6:0;;;:22;;;10339:67;;;;-1:-1:-1;;;10339:67:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;48458:24:0;::::1;48450:74;;;;-1:-1:-1::0;;;48450:74:0::1;;;;;;;:::i;:::-;48552:42;48573:8;48583:10;48552:20;:42::i;30702:321::-:0;30808:4;30825:36;30835:6;30843:9;30854:6;30825:9;:36::i;:::-;30872:121;30881:6;30889:12;:10;:12::i;:::-;30903:89;30941:6;30903:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30903:19:0;;;;;;:11;:19;;;;;;30923:12;:10;:12::i;:::-;-1:-1:-1;;;;;30903:33:0;;;;;;;;;;;;-1:-1:-1;30903:33:0;;;:89;:37;:89::i;:::-;30872:8;:121::i;:::-;-1:-1:-1;31011:4:0;30702:321;;;;;:::o;28880:83::-;28946:9;;;;28880:83;:::o;31432:218::-;31520:4;31537:83;31546:12;:10;:12::i;:::-;31560:7;31569:50;31608:10;31569:11;:25;31581:12;:10;:12::i;:::-;-1:-1:-1;;;;;31569:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;31569:25:0;;;:34;;;;;;;;;;;:38;:50::i;47888:231::-;47959:4;48944:20;48953:10;48944:8;:20::i;:::-;48936:64;;;;-1:-1:-1;;;48936:64:0;;;;;;;:::i;:::-;47472:16:::1;47979:26;47991:13;:11;:13::i;:::-;47979:7:::0;;:11:::1;:26::i;:::-;:38;47976:82;;;-1:-1:-1::0;48041:5:0::1;48034:12;;47976:82;48070:19;48076:3;48081:7;48070:5;:19::i;39739:202::-:0;39804:18;39815:6;39804:10;:18::i;:::-;39873:60;39888:10;:24;39899:12;:10;:12::i;:::-;-1:-1:-1;;;;;39888:24:0;;;;;;;;;;;;;;-1:-1:-1;39888:24:0;;;;;;;;39926:6;39873:14;:60::i;:::-;39739:202;:::o;40333:104::-;40397:32;40407:10;40419:9;40397;:32::i;38605:49::-;;;;;;;;;;;;;;;:::o;29191:119::-;-1:-1:-1;;;;;29284:18:0;29257:7;29284:18;;;;;;;;;;;;29191:119::o;10777:148::-;10357:12;:10;:12::i;:::-;10347:6;;-1:-1:-1;;;;;10347:6:0;;;:22;;;10339:67;;;;-1:-1:-1;;;10339:67:0;;;;;;;:::i;:::-;10868:6:::1;::::0;10847:40:::1;::::0;10884:1:::1;::::0;-1:-1:-1;;;;;10868:6:0::1;::::0;10847:40:::1;::::0;10884:1;;10847:40:::1;10898:6;:19:::0;;-1:-1:-1;;;;;;10898:19:0::1;::::0;;10777:148::o;42954:1259::-;43062:7;43109:12;43095:11;:26;43087:84;;;;-1:-1:-1;;;43087:84:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;43206:23:0;;43184:19;43206:23;;;:14;:23;;;;;;;;43244:17;43240:58;;43285:1;43278:8;;;;;43240:58;-1:-1:-1;;;;;43358:20:0;;;;;;:11;:20;;;;;;;;:38;-1:-1:-1;;43379:16:0;;43358:38;;;;;;;;;:48;;:63;-1:-1:-1;43354:147:0;;-1:-1:-1;;;;;43445:20:0;;;;;;:11;:20;;;;;;;;-1:-1:-1;;43466:16:0;;;;43445:38;;;;;;;;43481:1;43445:44;;;-1:-1:-1;43438:51:0;;43354:147;-1:-1:-1;;;;;43562:20:0;;;;;;:11;:20;;;;;;;;:23;;;;;;;;:33;:23;:33;:47;-1:-1:-1;43558:88:0;;;43633:1;43626:8;;;;;43558:88;43658:12;-1:-1:-1;;43700:16:0;;43727:428;43742:5;43734:13;;:5;:13;;;43727:428;;;43806:1;43789:13;;;43788:19;;;43780:27;;43849:20;;:::i;:::-;-1:-1:-1;;;;;;43872:20:0;;;;;;:11;:20;;;;;;;;:28;;;;;;;;;;;;;43849:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43919:27;;43915:229;;;43974:8;;;;-1:-1:-1;43967:15:0;;-1:-1:-1;;;;43967:15:0;43915:229;44008:12;;:26;;;-1:-1:-1;44004:140:0;;;44063:6;44055:14;;44004:140;;;44127:1;44118:6;:10;44110:18;;44004:140;43727:428;;;;;-1:-1:-1;;;;;;44172:20:0;;;;;;:11;:20;;;;;;;;:27;;;;;;;;;;:33;;;;-1:-1:-1;;42954:1259:0;;;;:::o;39949:235::-;40035:31;40050:7;40059:6;40035:14;:31::i;:::-;-1:-1:-1;;;;;40136:19:0;;;;;;;:10;:19;;;;;;40121:55;;40136:19;;40169:6;40121:14;:55::i;:::-;39949:235;;:::o;39141:39::-;;;;;;;;;;;;;:::o;10135:79::-;10200:6;;-1:-1:-1;;;;;10200:6:0;10135:79;:::o;28155:87::-;28227:7;28220:14;;;;;;;;-1:-1:-1;;28220:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28194:13;;28220:14;;28227:7;;28220:14;;28227:7;28220:14;;;;;;;;;;;;;;;;;;;;;;;;48129:231;48194:4;10357:12;:10;:12::i;:::-;10347:6;;-1:-1:-1;;;;;10347:6:0;;;:22;;;10339:67;;;;-1:-1:-1;;;10339:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;48219:24:0;::::1;48211:74;;;;-1:-1:-1::0;;;48211:74:0::1;;;;;;;:::i;:::-;48313:39;48331:8;48341:10;48313:17;:39::i;32153:269::-:0;32246:4;32263:129;32272:12;:10;:12::i;:::-;32286:7;32295:96;32334:15;32295:96;;;;;;;;;;;;;;;;;:11;:25;32307:12;:10;:12::i;:::-;-1:-1:-1;;;;;32295:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;32295:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;29523:175::-;29609:4;29626:42;29636:12;:10;:12::i;:::-;29650:9;29661:6;29626:9;:42::i;48731:129::-;48787:4;48811:41;48834:8;48844:7;48811:22;:41::i;42268:255::-;-1:-1:-1;;;;;42407:23:0;;42360:7;42407:23;;;:14;:23;;;;;;;;42448:16;:67;;42514:1;42448:67;;;-1:-1:-1;;;;;42467:20:0;;;;;;:11;:20;;;;;;;;:38;-1:-1:-1;;42488:16:0;;42467:38;;;;;;;;42503:1;42467:44;;42448:67;42441:74;42268:255;-1:-1:-1;;;42268:255:0:o;40871:1196::-;41064:23;38769:80;41193:6;:4;:6::i;:::-;41177:24;;;;;;41220:12;:10;:12::i;:::-;41259:4;41114:165;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;41090:200;;;;;;41064:226;;41303:18;38989:71;41415:9;41443:5;41467:6;41348:140;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;41324:175;;;;;;41303:196;;41512:14;41617:15;41651:10;41553:123;;;;;;;;;:::i;:::-;;;;;;;;;;;;;41529:158;;;;;;41512:175;;41700:17;41720:26;41730:6;41738:1;41741;41744;41720:26;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;41720:26:0;;-1:-1:-1;;41720:26:0;;;-1:-1:-1;;;;;;;41765:23:0;;41757:80;;;;-1:-1:-1;;;41757:80:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41865:17:0;;;;;;:6;:17;;;;;:19;;;;;;;;41856:28;;41848:81;;;;-1:-1:-1;;;41848:81:0;;;;;;;:::i;:::-;41955:6;41948:3;:13;;41940:70;;;;-1:-1:-1;;;41940:70:0;;;;;;;:::i;:::-;42028:31;42038:9;42049;42028;:31::i;:::-;42021:38;;;;40871:1196;;;;;;;:::o;29761:151::-;-1:-1:-1;;;;;29877:18:0;;;29850:7;29877:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;29761:151::o;38943:117::-;38989:71;38943:117;:::o;38466:70::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;11080:244::-;10357:12;:10;:12::i;:::-;10347:6;;-1:-1:-1;;;;;10347:6:0;;;:22;;;10339:67;;;;-1:-1:-1;;;10339:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11169:22:0;::::1;11161:73;;;;-1:-1:-1::0;;;11161:73:0::1;;;;;;;:::i;:::-;11271:6;::::0;11250:38:::1;::::0;-1:-1:-1;;;;;11250:38:0;;::::1;::::0;11271:6:::1;::::0;11250:38:::1;::::0;11271:6:::1;::::0;11250:38:::1;11299:6;:17:::0;;-1:-1:-1;;;;;;11299:17:0::1;-1:-1:-1::0;;;;;11299:17:0;;;::::1;::::0;;;::::1;::::0;;11080:244::o;33732:378::-;-1:-1:-1;;;;;33816:21:0;;33808:65;;;;-1:-1:-1;;;33808:65:0;;;;;;;:::i;:::-;33886:49;33915:1;33919:7;33928:6;33886:20;:49::i;:::-;33963:12;;:24;;33980:6;33963:16;:24::i;:::-;33948:12;:39;-1:-1:-1;;;;;34019:18:0;;:9;:18;;;;;;;;;;;:30;;34042:6;34019:22;:30::i;:::-;-1:-1:-1;;;;;33998:18:0;;:9;:18;;;;;;;;;;;:51;;;;34065:37;;33998:18;;:9;34065:37;;;;34095:6;;34065:37;:::i;:::-;;;;;;;;33732:378;;:::o;15059:181::-;15117:7;15149:5;;;15173:6;;;;15165:46;;;;-1:-1:-1;;;15165:46:0;;;;;;;:::i;15523:136::-;15581:7;15608:43;15612:1;15615;15608:43;;;;;;;;;;;;;;;;;:3;:43::i;5837:117::-;5900:7;5927:19;5935:3;5927:7;:19::i;8687:106::-;8775:10;8687:106;:::o;35300:346::-;-1:-1:-1;;;;;35402:19:0;;35394:68;;;;-1:-1:-1;;;35394:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35481:21:0;;35473:68;;;;-1:-1:-1;;;35473:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35554:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;35606:32;;;;;35584:6;;35606:32;:::i;:::-;;;;;;;;35300:346;;;:::o;5358:149::-;5431:4;5455:44;5463:3;-1:-1:-1;;;;;5483:14:0;;5455:7;:44::i;39461:233::-;39568:42;39584:6;39592:9;39603:6;39568:15;:42::i;:::-;-1:-1:-1;;;;;39636:18:0;;;;;;;:10;:18;;;;;;;39656:21;;;;;;;;39621:65;;39636:18;;;;39656:21;39679:6;39621:14;:65::i;:::-;39461:233;;;:::o;15962:192::-;16048:7;16084:12;16076:6;;;;16068:29;;;;-1:-1:-1;;;16068:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;16120:5:0;;;15962:192::o;39222:229::-;39307:28;39319:7;39328:6;39307:11;:28::i;:::-;-1:-1:-1;;;;;39415:19:0;;;39411:1;39415:19;;;:10;:19;;;;;;39388:55;;39415:19;39436:6;39388:14;:55::i;37250:91::-;37306:27;37312:12;:10;:12::i;:::-;37326:6;37306:5;:27::i;44670:947::-;44776:6;-1:-1:-1;;;;;44766:16:0;:6;-1:-1:-1;;;;;44766:16:0;;;:30;;;;;44795:1;44786:6;:10;44766:30;44762:848;;;-1:-1:-1;;;;;44817:20:0;;;44813:385;;-1:-1:-1;;;;;44925:22:0;;44906:16;44925:22;;;:14;:22;;;;;;;;;44986:13;:60;;45045:1;44986:60;;;-1:-1:-1;;;;;45002:19:0;;;;;;:11;:19;;;;;;;;:34;-1:-1:-1;;45022:13:0;;45002:34;;;;;;;;45034:1;45002:40;;44986:60;44966:80;-1:-1:-1;45065:17:0;45085:21;44966:80;45099:6;45085:13;:21::i;:::-;45065:41;;45125:57;45142:6;45150:9;45161;45172;45125:16;:57::i;:::-;44813:385;;;;-1:-1:-1;;;;;45218:20:0;;;45214:385;;-1:-1:-1;;;;;45326:22:0;;45307:16;45326:22;;;:14;:22;;;;;;;;;45387:13;:60;;45446:1;45387:60;;;-1:-1:-1;;;;;45403:19:0;;;;;;:11;:19;;;;;;;;:34;-1:-1:-1;;45423:13:0;;45403:34;;;;;;;;45435:1;45403:40;;45387:60;45367:80;-1:-1:-1;45466:17:0;45486:21;45367:80;45500:6;45486:13;:21::i;:::-;45466:41;;45526:57;45543:6;45551:9;45562;45573;45526:16;:57::i;44221:441::-;-1:-1:-1;;;;;44338:21:0;;;44312:23;44338:21;;;:10;:21;;;;;;;;;;44397:20;44349:9;44397;:20::i;:::-;-1:-1:-1;;;;;44476:21:0;;;;;;;:10;:21;;;;;:33;;-1:-1:-1;;;;;;44476:33:0;;;;;;;;;;44370:47;-1:-1:-1;44522:60:0;44537:15;44476:33;44370:47;44522:14;:60::i;:::-;44644:9;-1:-1:-1;;;;;44600:54:0;44627:15;-1:-1:-1;;;;;44600:54:0;44616:9;-1:-1:-1;;;;;44600:54:0;;;;;;;;;;;44221:441;;;;:::o;37660:295::-;37737:26;37766:84;37803:6;37766:84;;;;;;;;;;;;;;;;;:32;37776:7;37785:12;:10;:12::i;37766:32::-;:36;:84;:36;:84::i;:::-;37737:113;;37863:51;37872:7;37881:12;:10;:12::i;:::-;37895:18;37863:8;:51::i;:::-;37925:22;37931:7;37940:6;37925:5;:22::i;5039:143::-;5109:4;5133:41;5138:3;-1:-1:-1;;;;;5158:14:0;;5133:4;:41::i;5593:158::-;5673:4;5697:46;5707:3;-1:-1:-1;;;;;5727:14:0;;5697:9;:46::i;46512:155::-;46622:9;46512:155;:::o;4128:109::-;4211:18;;4128:109::o;2283:1544::-;2349:4;2488:19;;;:12;;;:19;;;;;;2524:15;;2520:1300;;2959:18;;-1:-1:-1;;2910:14:0;;;;2959:22;;;;2886:21;;2959:3;;:22;;3246;;;;;;;;;;;;;;3226:42;;3392:9;3363:3;:11;;3375:13;3363:26;;;;;;;;;;;;;;;;;;;:38;;;;3469:23;;;3511:1;3469:12;;;:23;;;;;;3495:17;;;3469:43;;3621:17;;3469:3;;3621:17;;;;;;;;;;;;;;;;;;;;;;3716:3;:12;;:19;3729:5;3716:19;;;;;;;;;;;3709:26;;;3759:4;3752:11;;;;;;;;2520:1300;3803:5;3796:12;;;;;32912:539;-1:-1:-1;;;;;33018:20:0;;33010:70;;;;-1:-1:-1;;;33010:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33099:23:0;;33091:71;;;;-1:-1:-1;;;33091:71:0;;;;;;;:::i;:::-;33175:47;33196:6;33204:9;33215:6;33175:20;:47::i;:::-;33255:71;33277:6;33255:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33255:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;33235:17:0;;;:9;:17;;;;;;;;;;;:91;;;;33360:20;;;;;;;:32;;33385:6;33360:24;:32::i;:::-;-1:-1:-1;;;;;33337:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;33408:35;;;;;;;;;;33436:6;;33408:35;:::i;34442:418::-;-1:-1:-1;;;;;34526:21:0;;34518:67;;;;-1:-1:-1;;;34518:67:0;;;;;;;:::i;:::-;34598:49;34619:7;34636:1;34640:6;34598:20;:49::i;:::-;34681:68;34704:6;34681:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34681:18:0;;:9;:18;;;;;;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;34660:18:0;;:9;:18;;;;;;;;;;:89;34775:12;;:24;;34792:6;34775:16;:24::i;:::-;34760:12;:39;34815:37;;34841:1;;-1:-1:-1;;;;;34815:37:0;;;;;;;34845:6;;34815:37;:::i;45625:710::-;45804:18;45825:82;45832:12;45825:82;;;;;;;;;;;;;;;;;:6;:82::i;:::-;45804:103;;45939:1;45924:12;:16;;;:85;;;;-1:-1:-1;;;;;;45944:22:0;;;;;;:11;:22;;;;;;;;:65;-1:-1:-1;;45967:16:0;;45944:40;;;;;;;;;:50;:65;;;:50;;:65;45924:85;45920:339;;;-1:-1:-1;;;;;46026:22:0;;;;;;:11;:22;;;;;;;;:40;-1:-1:-1;;46049:16:0;;46026:40;;;;;;;;46064:1;46026:46;:57;;;45920:339;;;46155:33;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;46116:22:0;;-1:-1:-1;46116:22:0;;;:11;:22;;;;;:36;;;;;;;;;;:72;;;;;;;-1:-1:-1;;46116:72:0;;;;;;;;;;;;;46203:25;;;:14;:25;;;;;;:44;;46231:16;;;46203:44;;;;;;;;;;45920:339;46297:9;-1:-1:-1;;;;;46276:51:0;;46308:8;46318;46276:51;;;;;;;:::i;:::-;;;;;;;;45625:710;;;;;:::o;1693:414::-;1756:4;1778:21;1788:3;1793:5;1778:9;:21::i;:::-;1773:327;;-1:-1:-1;1816:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;1999:18;;1977:19;;;:12;;;:19;;;;;;:40;;;;2032:11;;1773:327;-1:-1:-1;2083:5:0;2076:12;;3913:129;3986:4;4010:19;;;:12;;;;;:19;;;;;;:24;;;3913:129::o;46343:161::-;46418:6;46456:12;46449:5;46445:9;;46437:32;;;;-1:-1:-1;;;46437:32:0;;;;;;;;:::i;:::-;-1:-1:-1;46494:1:0;;46343:161;-1:-1:-1;;46343:161:0:o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;:::o;5:130::-;72:20;;-1:-1;;;;;23502:54;;24352:35;;24342:2;;24401:1;;24391:12;684:241;;788:2;776:9;767:7;763:23;759:32;756:2;;;-1:-1;;794:12;756:2;856:53;901:7;877:22;856:53;:::i;932:366::-;;;1053:2;1041:9;1032:7;1028:23;1024:32;1021:2;;;-1:-1;;1059:12;1021:2;1121:53;1166:7;1142:22;1121:53;:::i;:::-;1111:63;;1229:53;1274:7;1211:2;1254:9;1250:22;1229:53;:::i;:::-;1219:63;;1015:283;;;;;:::o;1305:491::-;;;;1443:2;1431:9;1422:7;1418:23;1414:32;1411:2;;;-1:-1;;1449:12;1411:2;85:6;72:20;97:33;124:5;97:33;:::i;:::-;1501:63;-1:-1;1601:2;1640:22;;72:20;97:33;72:20;97:33;:::i;:::-;1405:391;;1609:63;;-1:-1;;;1709:2;1748:22;;;;346:20;;1405:391::o;1803:366::-;;;1924:2;1912:9;1903:7;1899:23;1895:32;1892:2;;;-1:-1;;1930:12;1892:2;1992:53;2037:7;2013:22;1992:53;:::i;:::-;1982:63;2082:2;2121:22;;;;346:20;;-1:-1;;;1886:283::o;2176:865::-;;;;;;;2363:3;2351:9;2342:7;2338:23;2334:33;2331:2;;;-1:-1;;2370:12;2331:2;2432:53;2477:7;2453:22;2432:53;:::i;:::-;2422:63;;2522:2;2565:9;2561:22;346:20;2530:63;;2630:2;2673:9;2669:22;346:20;2638:63;;2738:2;2779:9;2775:22;616:20;23813:4;24870:5;23802:16;24847:5;24844:33;24834:2;;-1:-1;;24881:12;24834:2;2325:716;;;;-1:-1;2325:716;;2844:3;2884:22;;209:20;;2953:3;2993:22;;;209:20;;-1:-1;2325:716;-1:-1;;2325:716::o;3048:364::-;;;3168:2;3156:9;3147:7;3143:23;3139:32;3136:2;;;-1:-1;;3174:12;3136:2;3236:53;3281:7;3257:22;3236:53;:::i;:::-;3226:63;;3326:2;3368:9;3364:22;482:20;23719:10;24750:5;23708:22;24726:5;24723:34;24713:2;;-1:-1;;24761:12;24713:2;3334:62;;;;3130:282;;;;;:::o;3419:241::-;;3523:2;3511:9;3502:7;3498:23;3494:32;3491:2;;;-1:-1;;3529:12;3491:2;-1:-1;346:20;;3485:175;-1:-1;3485:175::o;11258:659::-;-1:-1;;;6726:87;;6711:1;6832:11;;3969:37;;;;11769:12;;;3969:37;11880:12;;;11503:414::o;11924:222::-;-1:-1;;;;;23502:54;;;;3738:37;;12051:2;12036:18;;12022:124::o;12153:210::-;23335:13;;23328:21;3852:34;;12274:2;12259:18;;12245:118::o;12370:222::-;3969:37;;;12497:2;12482:18;;12468:124::o;12599:556::-;3969:37;;;-1:-1;;;;;23502:54;;;;12975:2;12960:18;;3738:37;13058:2;13043:18;;3969:37;13141:2;13126:18;;3969:37;12810:3;12795:19;;12781:374::o;13162:556::-;3969:37;;;13538:2;13523:18;;3969:37;;;;13621:2;13606:18;;3969:37;-1:-1;;;;;23502:54;13704:2;13689:18;;3738:37;13373:3;13358:19;;13344:374::o;13725:548::-;3969:37;;;23813:4;23802:16;;;;14093:2;14078:18;;11211:35;14176:2;14161:18;;3969:37;14259:2;14244:18;;3969:37;13932:3;13917:19;;13903:370::o;14280:310::-;;14427:2;;14448:17;14441:47;4322:5;22804:12;22961:6;14427:2;14416:9;14412:18;22949:19;-1:-1;23903:101;23917:6;23914:1;23911:13;23903:101;;;23984:11;;;;;23978:18;23965:11;;;22989:14;23965:11;23958:39;23932:10;;23903:101;;;24019:6;24016:1;24013:13;24010:2;;;-1:-1;22989:14;24075:6;14416:9;24066:16;;24059:27;24010:2;-1:-1;24272:7;24256:14;-1:-1;;24252:28;4480:39;;;;22989:14;4480:39;;14398:192;-1:-1;;;14398:192::o;14597:416::-;14797:2;14811:47;;;4756:2;14782:18;;;22949:19;4792:34;22989:14;;;4772:55;-1:-1;;;4847:12;;;4840:37;4896:12;;;14768:245::o;15020:416::-;15220:2;15234:47;;;5147:2;15205:18;;;22949:19;5183:34;22989:14;;;5163:55;-1:-1;;;5238:12;;;5231:27;5277:12;;;15191:245::o;15443:416::-;15643:2;15657:47;;;5528:2;15628:18;;;22949:19;5564:34;22989:14;;;5544:55;-1:-1;;;5619:12;;;5612:29;5660:12;;;15614:245::o;15866:416::-;16066:2;16080:47;;;5911:2;16051:18;;;22949:19;5947:34;22989:14;;;5927:55;-1:-1;;;6002:12;;;5995:30;6044:12;;;16037:245::o;16289:416::-;16489:2;16503:47;;;6295:2;16474:18;;;22949:19;6331:34;22989:14;;;6311:55;-1:-1;;;6386:12;;;6379:26;6424:12;;;16460:245::o;16712:416::-;16912:2;16926:47;;;7082:2;16897:18;;;22949:19;7118:29;22989:14;;;7098:50;7167:12;;;16883:245::o;17135:416::-;17335:2;17349:47;;;17320:18;;;22949:19;7454:34;22989:14;;;7434:55;7508:12;;;17306:245::o;17558:416::-;17758:2;17772:47;;;7759:2;17743:18;;;22949:19;7795:34;22989:14;;;7775:55;-1:-1;;;7850:12;;;7843:25;7887:12;;;17729:245::o;17981:416::-;18181:2;18195:47;;;8138:2;18166:18;;;22949:19;8174:34;22989:14;;;8154:55;-1:-1;;;8229:12;;;8222:29;8270:12;;;18152:245::o;18404:416::-;18604:2;18618:47;;;8521:2;18589:18;;;22949:19;8557:34;22989:14;;;8537:55;-1:-1;;;8612:12;;;8605:28;8652:12;;;18575:245::o;18827:416::-;19027:2;19041:47;;;8903:2;19012:18;;;22949:19;8939:34;22989:14;;;8919:55;-1:-1;;;8994:12;;;8987:29;9035:12;;;18998:245::o;19250:416::-;19450:2;19464:47;;;9286:2;19435:18;;;22949:19;9322:34;22989:14;;;9302:55;-1:-1;;;9377:12;;;9370:36;9425:12;;;19421:245::o;19673:416::-;19873:2;19887:47;;;9676:2;19858:18;;;22949:19;9712:33;22989:14;;;9692:54;9765:12;;;19844:245::o;20096:416::-;20296:2;20310:47;;;10016:2;20281:18;;;22949:19;10052:34;22989:14;;;10032:55;-1:-1;;;10107:12;;;10100:32;10151:12;;;20267:245::o;20519:416::-;20719:2;20733:47;;;10402:2;20704:18;;;22949:19;10438:33;22989:14;;;10418:54;10491:12;;;20690:245::o;20942:416::-;21142:2;21156:47;;;10742:2;21127:18;;;22949:19;10778:34;22989:14;;;10758:55;-1:-1;;;10833:12;;;10826:36;10881:12;;;21113:245::o;21594:333::-;3969:37;;;21913:2;21898:18;;3969:37;21749:2;21734:18;;21720:207::o;21934:218::-;23719:10;23708:22;;;;11096:36;;22059:2;22044:18;;22030:122::o;22159:329::-;23719:10;23708:22;;;;11096:36;;22474:2;22459:18;;3969:37;22312:2;22297:18;;22283:205::o;22495:214::-;23813:4;23802:16;;;;11211:35;;22618:2;22603:18;;22589:120::o;24293:117::-;-1:-1;;;;;23502:54;;24352:35;;24342:2;;24401:1;;24391:12

Swarm Source

ipfs://610002a3925b7ad2327437ef6750b0301586307d618a9c7b0deeab090431af62
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.