ETH Price: $3,491.10 (+2.48%)
Gas: 2 Gwei

Token

Covesting (COV)
 

Overview

Max Total Supply

18,725,534.211526125166467259 COV

Holders

7,406 (0.00%)

Total Transfers

-

Market

Price

$0.05 @ 0.000013 ETH

Onchain Market Cap

$862,981.41

Circulating Supply Market Cap

$862,981.00

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Covesting is a fully licensed distributed ledger technology (DLT) services provider incorporated under the laws of Gibraltar. We develop innovative trading tools to service both retail and institutional customers in the cryptocurrency space.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
COVToken

Compiler Version
v0.6.2+commit.bacdbe57

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

pragma solidity ^0.6.2;

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


/**
 * @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) {
        // This method relies in extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

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


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




/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context {
    using EnumerableSet for EnumerableSet.AddressSet;
    using Address for address;

    struct RoleData {
        EnumerableSet.AddressSet members;
        bytes32 adminRole;
    }

    mapping (bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view returns (bool) {
        return _roles[role].members.contains(account);
    }

    /**
     * @dev Returns the number of accounts that have `role`. Can be used
     * together with {getRoleMember} to enumerate all bearers of a role.
     */
    function getRoleMemberCount(bytes32 role) public view returns (uint256) {
        return _roles[role].members.length();
    }

    /**
     * @dev Returns one of the accounts that have `role`. `index` must be a
     * value between 0 and {getRoleMemberCount}, non-inclusive.
     *
     * Role bearers are not sorted in any particular way, and their ordering may
     * change at any point.
     *
     * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
     * you perform all queries on the same block. See the following
     * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
     * for more information.
     */
    function getRoleMember(bytes32 role, uint256 index) public view returns (address) {
        return _roles[role].members.at(index);
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) public virtual {
        require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to grant");

        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) public virtual {
        require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to revoke");

        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) public virtual {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        emit RoleAdminChanged(role, _roles[role].adminRole, adminRole);
        _roles[role].adminRole = adminRole;
    }

    function _grantRole(bytes32 role, address account) private {
        if (_roles[role].members.add(account)) {
            emit RoleGranted(role, account, _msgSender());
        }
    }

    function _revokeRole(bytes32 role, address account) private {
        if (_roles[role].members.remove(account)) {
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

interface IOldCOVToken {

  function lock(address addr, uint periodInDays) external;

}

interface IERC20Cutted {

    function balanceOf(address who) external view returns (uint256);

    // Some old tokens implemented without retrun parameter (It happanes before ERC20 chnaged as standart)
    function transfer(address to, uint256 value) external;

}

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

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




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

    mapping (address => uint256) internal _balances;

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

    uint256 internal _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");

        _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");

        _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");

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

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

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

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

}


interface ITransferContarctCallback {

  function tokenFallback(address _from, address _to,  uint _value) external;

}


contract COVToken is ERC20, AccessControl {

    IOldCOVToken public oldCOVToken = IOldCOVToken(0xE2FB6529EF566a080e6d23dE0bd351311087D567);

    uint256 public constant MAX_INT = uint256(-1);

    bytes32 public constant ROLE_ADMIN = 0x00;
    bytes32 public constant ROLE_MINTER = bytes32(uint256(1));
    bytes32 public constant ROLE_BURNER = bytes32(uint256(2));
    bytes32 public constant ROLE_TRANSFER = bytes32(uint256(3));
    bytes32 public constant ROLE_ALIEN_TOKEN_SENDER = bytes32(uint256(4));

    bytes32 public constant LOCK_BURN = 0x00;
    bytes32 public constant LOCK_TRANSFER = bytes32(uint256(1));
    bytes32 public constant LOCK_MINT = bytes32(uint256(2));
    bytes32 public constant LOCK_ADDR_TIME_LOCK = bytes32(uint256(3));

    mapping(bytes32 => bool) public tempFuncLocks;
    mapping(bytes32 => bool) public finalFuncLocks;

    mapping(address => uint256) public locks;

    address public registeredCallback = address(0x0);

    constructor () public ERC20("Covesting", "COV") {
        _setRoleAdmin(ROLE_ADMIN, ROLE_ADMIN);
        _setRoleAdmin(ROLE_MINTER, ROLE_ADMIN);
        _setRoleAdmin(ROLE_BURNER, ROLE_ADMIN);
        _setRoleAdmin(ROLE_TRANSFER, ROLE_ADMIN);
        _setRoleAdmin(ROLE_ALIEN_TOKEN_SENDER, ROLE_ADMIN);

        _setupRole(ROLE_ADMIN, _msgSender());
        _setupRole(ROLE_MINTER, _msgSender());
        _setupRole(ROLE_BURNER, _msgSender());
        _setupRole(ROLE_TRANSFER, _msgSender());
        _setupRole(ROLE_ALIEN_TOKEN_SENDER, _msgSender());

        _setupRole(ROLE_ADMIN, address(this));
        _setupRole(ROLE_MINTER, address(this));
        _setupRole(ROLE_BURNER, address(this));
        _setupRole(ROLE_TRANSFER, address(this));
        _setupRole(ROLE_ALIEN_TOKEN_SENDER, address(this));
    }

    modifier onlyRole(bytes32 role) {
        require(hasRole(role, _msgSender()), "Sender requires permission");
        _;
    }

    modifier notFinalFuncLocked(bytes32 lock) {
        require(!finalFuncLocks[lock], "Locked");
        _;
    }

    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), 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);
    }

    function setTempFuncLock(bytes32 lock, bool status) public onlyRole(ROLE_ADMIN) {
        tempFuncLocks[lock] = status;
    }

    function setOldCOVToken(address oldCOVTokenAddress) public onlyRole(ROLE_ADMIN) {
        oldCOVToken = IOldCOVToken(oldCOVTokenAddress);
    }

    function finalFuncLock(bytes32 lock) public onlyRole(ROLE_ADMIN) {
        finalFuncLocks[lock] = true;
    }

    function adminMint(address account, uint256 amount) public onlyRole(ROLE_MINTER) notFinalFuncLocked(LOCK_MINT) {
        _mint(account, amount);
    }

    function adminBurn(address account, uint256 amount) public onlyRole(ROLE_BURNER) notFinalFuncLocked(LOCK_BURN) {
        _burn(account, amount);
    }

    function adminTimelockTransfer(address account, uint256 periodInDays) public onlyRole(ROLE_ADMIN) notFinalFuncLocked(LOCK_ADDR_TIME_LOCK) {
        locks[account] = now + periodInDays * 1 days;
    }

    function retrieveTokens(address to, address anotherToken) public onlyRole(ROLE_ALIEN_TOKEN_SENDER) {
        IERC20Cutted alienToken = IERC20Cutted(anotherToken);
        alienToken.transfer(to, alienToken.balanceOf(address(this)));
    }

    function distributeMint(address[] memory receivers, uint[] memory balances) public onlyRole(ROLE_MINTER) notFinalFuncLocked(LOCK_MINT) {
        for (uint i = 0; i < receivers.length; i++) {
            _totalSupply = _totalSupply.add(balances[i]);
            _balances[receivers[i]] = _balances[receivers[i]].add(balances[i]);
            emit Transfer(address(0), receivers[i], balances[i]);
        }
    }

    function distributeLockOldToken(address[] memory receivers) public onlyRole(ROLE_ADMIN) {
        for(uint i = 0; i < receivers.length; i++) {
           oldCOVToken.lock(receivers[i], MAX_INT.div(1 days));
        }
    }

    function registerCallback(address callback) public onlyRole(ROLE_ADMIN) {
        registeredCallback = callback;
    }

    function deregisterCallback() public onlyRole(ROLE_ADMIN) {
        registeredCallback = address(0x0);
    }

    function _burn(address account, uint256 amount) internal virtual override {
        require(!tempFuncLocks[LOCK_BURN] || hasRole(ROLE_BURNER, _msgSender()), "Token burn locked");
        super._burn(account, amount);
    }

    function _transfer(address sender, address recipient, uint256 amount) internal virtual override {
        require((!tempFuncLocks[LOCK_TRANSFER] && locks[sender] < now) || hasRole(ROLE_TRANSFER, _msgSender()), "Token transfer locked");
        super._transfer(sender, recipient, amount);
        if (registeredCallback != address(0x0)) {
            ITransferContarctCallback targetCallback = ITransferContarctCallback(registeredCallback);
            targetCallback.tokenFallback(sender, recipient, amount);
        }
    }

}

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":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","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":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LOCK_ADDR_TIME_LOCK","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LOCK_BURN","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LOCK_MINT","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LOCK_TRANSFER","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_INT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ROLE_ADMIN","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ROLE_ALIEN_TOKEN_SENDER","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ROLE_BURNER","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ROLE_MINTER","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ROLE_TRANSFER","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"adminBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"adminMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"periodInDays","type":"uint256"}],"name":"adminTimelockTransfer","outputs":[],"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":[],"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":[],"name":"deregisterCallback","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"receivers","type":"address[]"}],"name":"distributeLockOldToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"receivers","type":"address[]"},{"internalType":"uint256[]","name":"balances","type":"uint256[]"}],"name":"distributeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"lock","type":"bytes32"}],"name":"finalFuncLock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"finalFuncLocks","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"","type":"address"}],"name":"locks","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"oldCOVToken","outputs":[{"internalType":"contract IOldCOVToken","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"callback","type":"address"}],"name":"registerCallback","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"registeredCallback","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"address","name":"anotherToken","type":"address"}],"name":"retrieveTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"oldCOVTokenAddress","type":"address"}],"name":"setOldCOVToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"lock","type":"bytes32"},{"internalType":"bool","name":"status","type":"bool"}],"name":"setTempFuncLock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"tempFuncLocks","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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"}]

6080604052600780546001600160a01b031990811673e2fb6529ef566a080e6d23de0bd351311087d56717909155600b805490911690553480156200004357600080fd5b5060405180604001604052806009815260200168436f76657374696e6760b81b8152506040518060400160405280600381526020016221a7ab60e91b81525081600390805190602001906200009a929190620003bf565b508051620000b0906004906020840190620003bf565b50506005805460ff1916601217905550620000d66000806001600160e01b036200023216565b620000ed600160006001600160e01b036200023216565b62000104600260006001600160e01b036200023216565b6200011b600360006001600160e01b036200023216565b62000132600460006001600160e01b036200023216565b6200015a60006200014b6001600160e01b036200028416565b6001600160e01b036200028916565b6200017360016200014b6001600160e01b036200028416565b6200018c60026200014b6001600160e01b036200028416565b620001a560036200014b6001600160e01b036200028416565b620001be60046200014b6001600160e01b036200028416565b620001d46000306001600160e01b036200028916565b620001ea6001306001600160e01b036200028916565b620002006002306001600160e01b036200028916565b620002166003306001600160e01b036200028916565b6200022c6004306001600160e01b036200028916565b62000461565b600082815260066020526040808220600201549051839285917fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff9190a460009182526006602052604090912060020155565b335b90565b6200029e82826001600160e01b03620002a216565b5050565b6000828152600660209081526040909120620002c99183906200203d62000326821b17901c565b156200029e57620002e26001600160e01b036200028416565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b600062000346836001600160a01b0384166001600160e01b036200034f16565b90505b92915050565b60006200036683836001600160e01b03620003a716565b6200039e5750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915562000349565b50600062000349565b60009081526001919091016020526040902054151590565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200040257805160ff191683800117855562000432565b8280016001018555821562000432579182015b828111156200043257825182559160200191906001019062000415565b506200044092915062000444565b5090565b6200028691905b808211156200044057600081556001016200044b565b6124c780620004716000396000f3fe608060405234801561001057600080fd5b50600436106102955760003560e01c8063806521ad11610167578063a6e31ecc116100ce578063d391014b11610087578063d391014b14610773578063d547741f14610945578063dd62ed3e14610971578063e58306f91461099f578063ebd4372c14610581578063f7a1a4dd146106c357610295565b8063a6e31ecc146108ce578063a9059cbb146108d6578063c0e9050a14610773578063ca15c87314610902578063ca45c4a01461071a578063cf1b037c1461091f57610295565b806395d89b411161012057806395d89b4114610722578063a0e8ae1f1461072a578063a15fc7dc14610747578063a217fddf14610773578063a3e489091461077b578063a457c2d7146108a257610295565b8063806521ad146106975780638597c3d5146106bb57806389b1fa0a146106c35780639010d07c146106cb57806391d14854146106ee57806392afc33a1461071a57610295565b806336568abe1161020b5780635c00861f116101c45780635c00861f146105ae5780635de9a137146105d45780636341ca0b146105fa57806370a0823114610628578063757275c41461064e57806379cc67901461066b57610295565b806336568abe146104ef578063395093511461051b57806342966c6814610547578063460c26e61461056457806354ff02d81461058157806358eb44e11461058957610295565b80631162db981161025d5780631162db98146103a757806318160ddd1461044a57806323b872dd14610452578063248a9ca3146104885780632f2ff15d146104a5578063313ce567146104d157610295565b806306dd04191461029a57806306fdde03146102c8578063095ea7b314610345578063098d3228146103855780630ed166961461039f575b600080fd5b6102c6600480360360408110156102b057600080fd5b506001600160a01b0381351690602001356109cb565b005b6102d0610a97565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561030a5781810151838201526020016102f2565b50505050905090810190601f1680156103375780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103716004803603604081101561035b57600080fd5b506001600160a01b038135169060200135610b2d565b604080519115158252519081900360200190f35b61038d610b4b565b60408051918252519081900360200190f35b61038d610b51565b6102c6600480360360208110156103bd57600080fd5b8101906020810181356401000000008111156103d857600080fd5b8201836020820111156103ea57600080fd5b8035906020019184602083028401116401000000008311171561040c57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550610b56945050505050565b61038d610c6a565b6103716004803603606081101561046857600080fd5b506001600160a01b03813581169160208101359091169060400135610c70565b61038d6004803603602081101561049e57600080fd5b5035610cfd565b6102c6600480360360408110156104bb57600080fd5b50803590602001356001600160a01b0316610d12565b6104d9610d79565b6040805160ff9092168252519081900360200190f35b6102c66004803603604081101561050557600080fd5b50803590602001356001600160a01b0316610d82565b6103716004803603604081101561053157600080fd5b506001600160a01b038135169060200135610de3565b6102c66004803603602081101561055d57600080fd5b5035610e37565b6103716004803603602081101561057a57600080fd5b5035610e4b565b61038d610e60565b6102c66004803603604081101561059f57600080fd5b50803590602001351515610e65565b6102c6600480360360208110156105c457600080fd5b50356001600160a01b0316610ed3565b61038d600480360360208110156105ea57600080fd5b50356001600160a01b0316610f43565b6102c66004803603604081101561061057600080fd5b506001600160a01b0381358116916020013516610f55565b61038d6004803603602081101561063e57600080fd5b50356001600160a01b031661108c565b6102c66004803603602081101561066457600080fd5b50356110a7565b6102c66004803603604081101561068157600080fd5b506001600160a01b038135169060200135611110565b61069f61116b565b604080516001600160a01b039092168252519081900360200190f35b61069f61117a565b61038d611189565b61069f600480360360408110156106e157600080fd5b508035906020013561118e565b6103716004803603604081101561070457600080fd5b50803590602001356001600160a01b03166111b3565b61038d6111d1565b6102d06111d6565b6103716004803603602081101561074057600080fd5b5035611237565b6102c66004803603604081101561075d57600080fd5b506001600160a01b03813516906020013561124c565b61038d61132e565b6102c66004803603604081101561079157600080fd5b8101906020810181356401000000008111156107ac57600080fd5b8201836020820111156107be57600080fd5b803590602001918460208302840111640100000000831117156107e057600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929594936020810193503591505064010000000081111561083057600080fd5b82018360208201111561084257600080fd5b8035906020019184602083028401116401000000008311171561086457600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550611333945050505050565b610371600480360360408110156108b857600080fd5b506001600160a01b03813516906020013561152d565b6102c661159b565b610371600480360360408110156108ec57600080fd5b506001600160a01b0381351690602001356115fb565b61038d6004803603602081101561091857600080fd5b503561160f565b6102c66004803603602081101561093557600080fd5b50356001600160a01b0316611626565b6102c66004803603604081101561095b57600080fd5b50803590602001356001600160a01b0316611696565b61038d6004803603604081101561098757600080fd5b506001600160a01b03813581169160200135166116ef565b6102c6600480360360408110156109b557600080fd5b506001600160a01b03813516906020013561171a565b60026109de816109d96117dd565b6111b3565b610a1d576040805162461bcd60e51b815260206004820152601a6024820152600080516020612318833981519152604482015290519081900360640190fd5b600080805260096020527fec8156718a8372b1db44bb411437d0870f3e3790d4a08526d024ce1b0b668f6b5460ff1615610a87576040805162461bcd60e51b8152602060048201526006602482015265131bd8dad95960d21b604482015290519081900360640190fd5b610a9184846117e1565b50505050565b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610b235780601f10610af857610100808354040283529160200191610b23565b820191906000526020600020905b815481529060010190602001808311610b0657829003601f168201915b5050505050905090565b6000610b41610b3a6117dd565b8484611872565b5060015b92915050565b60001981565b600481565b6000610b64816109d96117dd565b610ba3576040805162461bcd60e51b815260206004820152601a6024820152600080516020612318833981519152604482015290519081900360640190fd5b60005b8251811015610c655760075483516001600160a01b039091169063282d3fdf90859084908110610bd257fe5b6020026020010151610bf26201518060001961195e90919063ffffffff16565b6040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b0316815260200182815260200192505050600060405180830381600087803b158015610c4157600080fd5b505af1158015610c55573d6000803e3d6000fd5b505060019092019150610ba69050565b505050565b60025490565b6000610c7d8484846119a0565b610cf384610c896117dd565b610cee85604051806060016040528060288152602001612368602891396001600160a01b038a16600090815260016020526040812090610cc76117dd565b6001600160a01b03168152602081019190915260400160002054919063ffffffff611acb16565b611872565b5060019392505050565b60009081526006602052604090206002015490565b600082815260066020526040902060020154610d30906109d96117dd565b610d6b5760405162461bcd60e51b815260040180806020018281038252602f81526020018061227f602f913960400191505060405180910390fd5b610d758282611b62565b5050565b60055460ff1690565b610d8a6117dd565b6001600160a01b0316816001600160a01b031614610dd95760405162461bcd60e51b815260040180806020018281038252602f815260200180612463602f913960400191505060405180910390fd5b610d758282611bd1565b6000610b41610df06117dd565b84610cee8560016000610e016117dd565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff611c4016565b610e48610e426117dd565b826117e1565b50565b60096020526000908152604090205460ff1681565b600281565b6000610e73816109d96117dd565b610eb2576040805162461bcd60e51b815260206004820152601a6024820152600080516020612318833981519152604482015290519081900360640190fd5b50600091825260086020526040909120805460ff1916911515919091179055565b6000610ee1816109d96117dd565b610f20576040805162461bcd60e51b815260206004820152601a6024820152600080516020612318833981519152604482015290519081900360640190fd5b50600780546001600160a01b0319166001600160a01b0392909216919091179055565b600a6020526000908152604090205481565b6004610f63816109d96117dd565b610fa2576040805162461bcd60e51b815260206004820152601a6024820152600080516020612318833981519152604482015290519081900360640190fd5b604080516370a0823160e01b8152306004820152905183916001600160a01b0383169163a9059cbb91879184916370a08231916024808301926020929190829003018186803b158015610ff457600080fd5b505afa158015611008573d6000803e3d6000fd5b505050506040513d602081101561101e57600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b039093166004840152602483019190915251604480830192600092919082900301818387803b15801561106e57600080fd5b505af1158015611082573d6000803e3d6000fd5b5050505050505050565b6001600160a01b031660009081526020819052604090205490565b60006110b5816109d96117dd565b6110f4576040805162461bcd60e51b815260206004820152601a6024820152600080516020612318833981519152604482015290519081900360640190fd5b506000908152600960205260409020805460ff19166001179055565b600061114d82604051806060016040528060248152602001612390602491396111408661113b6117dd565b6116ef565b919063ffffffff611acb16565b90506111618361115b6117dd565b83611872565b610c6583836117e1565b600b546001600160a01b031681565b6007546001600160a01b031681565b600381565b60008281526006602052604081206111ac908363ffffffff611c9a16565b9392505050565b60008281526006602052604081206111ac908363ffffffff611ca616565b600181565b60048054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610b235780601f10610af857610100808354040283529160200191610b23565b60086020526000908152604090205460ff1681565b600061125a816109d96117dd565b611299576040805162461bcd60e51b815260206004820152601a6024820152600080516020612318833981519152604482015290519081900360640190fd5b6003600081905260096020527fc575c31fea594a6eb97c8e9d3f9caee4c16218c6ef37e923234c0fe9014a61e75460ff1615611305576040805162461bcd60e51b8152602060048201526006602482015265131bd8dad95960d21b604482015290519081900360640190fd5b50506001600160a01b03919091166000908152600a602052604090206201518090910242019055565b600081565b6001611341816109d96117dd565b611380576040805162461bcd60e51b815260206004820152601a6024820152600080516020612318833981519152604482015290519081900360640190fd5b6002600081905260096020527f6cde3cea4b3a3fb2488b2808bae7556f4a405e50f65e1794383bc026131b13c35460ff16156113ec576040805162461bcd60e51b8152602060048201526006602482015265131bd8dad95960d21b604482015290519081900360640190fd5b60005b84518110156115265761142084828151811061140757fe5b6020026020010151600254611c4090919063ffffffff16565b60028190555061148384828151811061143557fe5b602002602001015160008088858151811061144c57fe5b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002054611c4090919063ffffffff16565b60008087848151811061149257fe5b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055508481815181106114ca57fe5b60200260200101516001600160a01b031660006001600160a01b03166000805160206123b483398151915286848151811061150157fe5b60200260200101516040518082815260200191505060405180910390a36001016113ef565b5050505050565b6000610b4161153a6117dd565b84610cee8560405180606001604052806025815260200161243e60259139600160006115646117dd565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff611acb16565b60006115a9816109d96117dd565b6115e8576040805162461bcd60e51b815260206004820152601a6024820152600080516020612318833981519152604482015290519081900360640190fd5b50600b80546001600160a01b0319169055565b6000610b416116086117dd565b84846119a0565b6000818152600660205260408120610b4590611cbb565b6000611634816109d96117dd565b611673576040805162461bcd60e51b815260206004820152601a6024820152600080516020612318833981519152604482015290519081900360640190fd5b50600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6000828152600660205260409020600201546116b4906109d96117dd565b610dd95760405162461bcd60e51b81526004018080602001828103825260308152602001806123386030913960400191505060405180910390fd5b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001611728816109d96117dd565b611767576040805162461bcd60e51b815260206004820152601a6024820152600080516020612318833981519152604482015290519081900360640190fd5b6002600081905260096020527f6cde3cea4b3a3fb2488b2808bae7556f4a405e50f65e1794383bc026131b13c35460ff16156117d3576040805162461bcd60e51b8152602060048201526006602482015265131bd8dad95960d21b604482015290519081900360640190fd5b610a918484611cc6565b3390565b6000805260086020527f5eff886ea0ce6ca488a3d6e336d6c0f75f46d19b42c06ce5ee98e42c96d256c75460ff161580611823575061182360026109d96117dd565b611868576040805162461bcd60e51b8152602060048201526011602482015270151bdad95b88189d5c9b881b1bd8dad959607a1b604482015290519081900360640190fd5b610d758282611da4565b6001600160a01b0383166118b75760405162461bcd60e51b815260040180806020018281038252602481526020018061241a6024913960400191505060405180910390fd5b6001600160a01b0382166118fc5760405162461bcd60e51b81526004018080602001828103825260228152602001806122d06022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60006111ac83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611e8e565b600160005260086020527fad67d757c34507f157cacfa2e3153e9f260a2244f30428821be7be64587ac55f5460ff161580156119f357506001600160a01b0383166000908152600a602052604090205442115b80611a065750611a0660036109d96117dd565b611a4f576040805162461bcd60e51b8152602060048201526015602482015274151bdad95b881d1c985b9cd9995c881b1bd8dad959605a1b604482015290519081900360640190fd5b611a5a838383611ef3565b600b546001600160a01b031615610c6557600b546040805163d5356fe160e01b81526001600160a01b03868116600483015285811660248301526044820185905291519190921691829163d5356fe19160648082019260009290919082900301818387803b15801561106e57600080fd5b60008184841115611b5a5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611b1f578181015183820152602001611b07565b50505050905090810190601f168015611b4c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000828152600660205260409020611b80908263ffffffff61203d16565b15610d7557611b8d6117dd565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000828152600660205260409020611bef908263ffffffff61205216565b15610d7557611bfc6117dd565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b6000828201838110156111ac576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60006111ac8383612067565b60006111ac836001600160a01b0384166120cb565b6000610b45826120e3565b6001600160a01b038216611d21576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600254611d34908263ffffffff611c4016565b6002556001600160a01b038216600090815260208190526040902054611d60908263ffffffff611c4016565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391926000805160206123b48339815191529281900390910190a35050565b6001600160a01b038216611de95760405162461bcd60e51b81526004018080602001828103825260218152602001806123d46021913960400191505060405180910390fd5b611e2c816040518060600160405280602281526020016122ae602291396001600160a01b038516600090815260208190526040902054919063ffffffff611acb16565b6001600160a01b038316600090815260208190526040902055600254611e58908263ffffffff6120e716565b6002556040805182815290516000916001600160a01b038516916000805160206123b48339815191529181900360200190a35050565b60008183611edd5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611b1f578181015183820152602001611b07565b506000838581611ee957fe5b0495945050505050565b6001600160a01b038316611f385760405162461bcd60e51b81526004018080602001828103825260258152602001806123f56025913960400191505060405180910390fd5b6001600160a01b038216611f7d5760405162461bcd60e51b815260040180806020018281038252602381526020018061225c6023913960400191505060405180910390fd5b611fc0816040518060600160405280602681526020016122f2602691396001600160a01b038616600090815260208190526040902054919063ffffffff611acb16565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611ff5908263ffffffff611c4016565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716926000805160206123b483398151915292918290030190a3505050565b60006111ac836001600160a01b038416612129565b60006111ac836001600160a01b038416612173565b815460009082106120a95760405162461bcd60e51b815260040180806020018281038252602281526020018061223a6022913960400191505060405180910390fd5b8260000182815481106120b857fe5b9060005260206000200154905092915050565b60009081526001919091016020526040902054151590565b5490565b60006111ac83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611acb565b600061213583836120cb565b61216b57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610b45565b506000610b45565b6000818152600183016020526040812054801561222f57835460001980830191908101906000908790839081106121a657fe5b90600052602060002001549050808760000184815481106121c357fe5b6000918252602080832090910192909255828152600189810190925260409020908401905586548790806121f357fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610b45565b6000915050610b4556fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e647345524332303a207472616e7366657220746f20746865207a65726f2061646472657373416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e7445524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636553656e646572207265717569726573207065726d697373696f6e000000000000416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b6545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e6365ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef45524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c66a26469706673582212209ddb38d3a0ee57bf6b0c79ae0626b3726ab0d2bedc9915a833e80233aec8a1d964736f6c63430006020033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102955760003560e01c8063806521ad11610167578063a6e31ecc116100ce578063d391014b11610087578063d391014b14610773578063d547741f14610945578063dd62ed3e14610971578063e58306f91461099f578063ebd4372c14610581578063f7a1a4dd146106c357610295565b8063a6e31ecc146108ce578063a9059cbb146108d6578063c0e9050a14610773578063ca15c87314610902578063ca45c4a01461071a578063cf1b037c1461091f57610295565b806395d89b411161012057806395d89b4114610722578063a0e8ae1f1461072a578063a15fc7dc14610747578063a217fddf14610773578063a3e489091461077b578063a457c2d7146108a257610295565b8063806521ad146106975780638597c3d5146106bb57806389b1fa0a146106c35780639010d07c146106cb57806391d14854146106ee57806392afc33a1461071a57610295565b806336568abe1161020b5780635c00861f116101c45780635c00861f146105ae5780635de9a137146105d45780636341ca0b146105fa57806370a0823114610628578063757275c41461064e57806379cc67901461066b57610295565b806336568abe146104ef578063395093511461051b57806342966c6814610547578063460c26e61461056457806354ff02d81461058157806358eb44e11461058957610295565b80631162db981161025d5780631162db98146103a757806318160ddd1461044a57806323b872dd14610452578063248a9ca3146104885780632f2ff15d146104a5578063313ce567146104d157610295565b806306dd04191461029a57806306fdde03146102c8578063095ea7b314610345578063098d3228146103855780630ed166961461039f575b600080fd5b6102c6600480360360408110156102b057600080fd5b506001600160a01b0381351690602001356109cb565b005b6102d0610a97565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561030a5781810151838201526020016102f2565b50505050905090810190601f1680156103375780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103716004803603604081101561035b57600080fd5b506001600160a01b038135169060200135610b2d565b604080519115158252519081900360200190f35b61038d610b4b565b60408051918252519081900360200190f35b61038d610b51565b6102c6600480360360208110156103bd57600080fd5b8101906020810181356401000000008111156103d857600080fd5b8201836020820111156103ea57600080fd5b8035906020019184602083028401116401000000008311171561040c57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550610b56945050505050565b61038d610c6a565b6103716004803603606081101561046857600080fd5b506001600160a01b03813581169160208101359091169060400135610c70565b61038d6004803603602081101561049e57600080fd5b5035610cfd565b6102c6600480360360408110156104bb57600080fd5b50803590602001356001600160a01b0316610d12565b6104d9610d79565b6040805160ff9092168252519081900360200190f35b6102c66004803603604081101561050557600080fd5b50803590602001356001600160a01b0316610d82565b6103716004803603604081101561053157600080fd5b506001600160a01b038135169060200135610de3565b6102c66004803603602081101561055d57600080fd5b5035610e37565b6103716004803603602081101561057a57600080fd5b5035610e4b565b61038d610e60565b6102c66004803603604081101561059f57600080fd5b50803590602001351515610e65565b6102c6600480360360208110156105c457600080fd5b50356001600160a01b0316610ed3565b61038d600480360360208110156105ea57600080fd5b50356001600160a01b0316610f43565b6102c66004803603604081101561061057600080fd5b506001600160a01b0381358116916020013516610f55565b61038d6004803603602081101561063e57600080fd5b50356001600160a01b031661108c565b6102c66004803603602081101561066457600080fd5b50356110a7565b6102c66004803603604081101561068157600080fd5b506001600160a01b038135169060200135611110565b61069f61116b565b604080516001600160a01b039092168252519081900360200190f35b61069f61117a565b61038d611189565b61069f600480360360408110156106e157600080fd5b508035906020013561118e565b6103716004803603604081101561070457600080fd5b50803590602001356001600160a01b03166111b3565b61038d6111d1565b6102d06111d6565b6103716004803603602081101561074057600080fd5b5035611237565b6102c66004803603604081101561075d57600080fd5b506001600160a01b03813516906020013561124c565b61038d61132e565b6102c66004803603604081101561079157600080fd5b8101906020810181356401000000008111156107ac57600080fd5b8201836020820111156107be57600080fd5b803590602001918460208302840111640100000000831117156107e057600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929594936020810193503591505064010000000081111561083057600080fd5b82018360208201111561084257600080fd5b8035906020019184602083028401116401000000008311171561086457600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550611333945050505050565b610371600480360360408110156108b857600080fd5b506001600160a01b03813516906020013561152d565b6102c661159b565b610371600480360360408110156108ec57600080fd5b506001600160a01b0381351690602001356115fb565b61038d6004803603602081101561091857600080fd5b503561160f565b6102c66004803603602081101561093557600080fd5b50356001600160a01b0316611626565b6102c66004803603604081101561095b57600080fd5b50803590602001356001600160a01b0316611696565b61038d6004803603604081101561098757600080fd5b506001600160a01b03813581169160200135166116ef565b6102c6600480360360408110156109b557600080fd5b506001600160a01b03813516906020013561171a565b60026109de816109d96117dd565b6111b3565b610a1d576040805162461bcd60e51b815260206004820152601a6024820152600080516020612318833981519152604482015290519081900360640190fd5b600080805260096020527fec8156718a8372b1db44bb411437d0870f3e3790d4a08526d024ce1b0b668f6b5460ff1615610a87576040805162461bcd60e51b8152602060048201526006602482015265131bd8dad95960d21b604482015290519081900360640190fd5b610a9184846117e1565b50505050565b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610b235780601f10610af857610100808354040283529160200191610b23565b820191906000526020600020905b815481529060010190602001808311610b0657829003601f168201915b5050505050905090565b6000610b41610b3a6117dd565b8484611872565b5060015b92915050565b60001981565b600481565b6000610b64816109d96117dd565b610ba3576040805162461bcd60e51b815260206004820152601a6024820152600080516020612318833981519152604482015290519081900360640190fd5b60005b8251811015610c655760075483516001600160a01b039091169063282d3fdf90859084908110610bd257fe5b6020026020010151610bf26201518060001961195e90919063ffffffff16565b6040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b0316815260200182815260200192505050600060405180830381600087803b158015610c4157600080fd5b505af1158015610c55573d6000803e3d6000fd5b505060019092019150610ba69050565b505050565b60025490565b6000610c7d8484846119a0565b610cf384610c896117dd565b610cee85604051806060016040528060288152602001612368602891396001600160a01b038a16600090815260016020526040812090610cc76117dd565b6001600160a01b03168152602081019190915260400160002054919063ffffffff611acb16565b611872565b5060019392505050565b60009081526006602052604090206002015490565b600082815260066020526040902060020154610d30906109d96117dd565b610d6b5760405162461bcd60e51b815260040180806020018281038252602f81526020018061227f602f913960400191505060405180910390fd5b610d758282611b62565b5050565b60055460ff1690565b610d8a6117dd565b6001600160a01b0316816001600160a01b031614610dd95760405162461bcd60e51b815260040180806020018281038252602f815260200180612463602f913960400191505060405180910390fd5b610d758282611bd1565b6000610b41610df06117dd565b84610cee8560016000610e016117dd565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff611c4016565b610e48610e426117dd565b826117e1565b50565b60096020526000908152604090205460ff1681565b600281565b6000610e73816109d96117dd565b610eb2576040805162461bcd60e51b815260206004820152601a6024820152600080516020612318833981519152604482015290519081900360640190fd5b50600091825260086020526040909120805460ff1916911515919091179055565b6000610ee1816109d96117dd565b610f20576040805162461bcd60e51b815260206004820152601a6024820152600080516020612318833981519152604482015290519081900360640190fd5b50600780546001600160a01b0319166001600160a01b0392909216919091179055565b600a6020526000908152604090205481565b6004610f63816109d96117dd565b610fa2576040805162461bcd60e51b815260206004820152601a6024820152600080516020612318833981519152604482015290519081900360640190fd5b604080516370a0823160e01b8152306004820152905183916001600160a01b0383169163a9059cbb91879184916370a08231916024808301926020929190829003018186803b158015610ff457600080fd5b505afa158015611008573d6000803e3d6000fd5b505050506040513d602081101561101e57600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b039093166004840152602483019190915251604480830192600092919082900301818387803b15801561106e57600080fd5b505af1158015611082573d6000803e3d6000fd5b5050505050505050565b6001600160a01b031660009081526020819052604090205490565b60006110b5816109d96117dd565b6110f4576040805162461bcd60e51b815260206004820152601a6024820152600080516020612318833981519152604482015290519081900360640190fd5b506000908152600960205260409020805460ff19166001179055565b600061114d82604051806060016040528060248152602001612390602491396111408661113b6117dd565b6116ef565b919063ffffffff611acb16565b90506111618361115b6117dd565b83611872565b610c6583836117e1565b600b546001600160a01b031681565b6007546001600160a01b031681565b600381565b60008281526006602052604081206111ac908363ffffffff611c9a16565b9392505050565b60008281526006602052604081206111ac908363ffffffff611ca616565b600181565b60048054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610b235780601f10610af857610100808354040283529160200191610b23565b60086020526000908152604090205460ff1681565b600061125a816109d96117dd565b611299576040805162461bcd60e51b815260206004820152601a6024820152600080516020612318833981519152604482015290519081900360640190fd5b6003600081905260096020527fc575c31fea594a6eb97c8e9d3f9caee4c16218c6ef37e923234c0fe9014a61e75460ff1615611305576040805162461bcd60e51b8152602060048201526006602482015265131bd8dad95960d21b604482015290519081900360640190fd5b50506001600160a01b03919091166000908152600a602052604090206201518090910242019055565b600081565b6001611341816109d96117dd565b611380576040805162461bcd60e51b815260206004820152601a6024820152600080516020612318833981519152604482015290519081900360640190fd5b6002600081905260096020527f6cde3cea4b3a3fb2488b2808bae7556f4a405e50f65e1794383bc026131b13c35460ff16156113ec576040805162461bcd60e51b8152602060048201526006602482015265131bd8dad95960d21b604482015290519081900360640190fd5b60005b84518110156115265761142084828151811061140757fe5b6020026020010151600254611c4090919063ffffffff16565b60028190555061148384828151811061143557fe5b602002602001015160008088858151811061144c57fe5b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002054611c4090919063ffffffff16565b60008087848151811061149257fe5b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055508481815181106114ca57fe5b60200260200101516001600160a01b031660006001600160a01b03166000805160206123b483398151915286848151811061150157fe5b60200260200101516040518082815260200191505060405180910390a36001016113ef565b5050505050565b6000610b4161153a6117dd565b84610cee8560405180606001604052806025815260200161243e60259139600160006115646117dd565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff611acb16565b60006115a9816109d96117dd565b6115e8576040805162461bcd60e51b815260206004820152601a6024820152600080516020612318833981519152604482015290519081900360640190fd5b50600b80546001600160a01b0319169055565b6000610b416116086117dd565b84846119a0565b6000818152600660205260408120610b4590611cbb565b6000611634816109d96117dd565b611673576040805162461bcd60e51b815260206004820152601a6024820152600080516020612318833981519152604482015290519081900360640190fd5b50600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6000828152600660205260409020600201546116b4906109d96117dd565b610dd95760405162461bcd60e51b81526004018080602001828103825260308152602001806123386030913960400191505060405180910390fd5b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001611728816109d96117dd565b611767576040805162461bcd60e51b815260206004820152601a6024820152600080516020612318833981519152604482015290519081900360640190fd5b6002600081905260096020527f6cde3cea4b3a3fb2488b2808bae7556f4a405e50f65e1794383bc026131b13c35460ff16156117d3576040805162461bcd60e51b8152602060048201526006602482015265131bd8dad95960d21b604482015290519081900360640190fd5b610a918484611cc6565b3390565b6000805260086020527f5eff886ea0ce6ca488a3d6e336d6c0f75f46d19b42c06ce5ee98e42c96d256c75460ff161580611823575061182360026109d96117dd565b611868576040805162461bcd60e51b8152602060048201526011602482015270151bdad95b88189d5c9b881b1bd8dad959607a1b604482015290519081900360640190fd5b610d758282611da4565b6001600160a01b0383166118b75760405162461bcd60e51b815260040180806020018281038252602481526020018061241a6024913960400191505060405180910390fd5b6001600160a01b0382166118fc5760405162461bcd60e51b81526004018080602001828103825260228152602001806122d06022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60006111ac83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611e8e565b600160005260086020527fad67d757c34507f157cacfa2e3153e9f260a2244f30428821be7be64587ac55f5460ff161580156119f357506001600160a01b0383166000908152600a602052604090205442115b80611a065750611a0660036109d96117dd565b611a4f576040805162461bcd60e51b8152602060048201526015602482015274151bdad95b881d1c985b9cd9995c881b1bd8dad959605a1b604482015290519081900360640190fd5b611a5a838383611ef3565b600b546001600160a01b031615610c6557600b546040805163d5356fe160e01b81526001600160a01b03868116600483015285811660248301526044820185905291519190921691829163d5356fe19160648082019260009290919082900301818387803b15801561106e57600080fd5b60008184841115611b5a5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611b1f578181015183820152602001611b07565b50505050905090810190601f168015611b4c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000828152600660205260409020611b80908263ffffffff61203d16565b15610d7557611b8d6117dd565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000828152600660205260409020611bef908263ffffffff61205216565b15610d7557611bfc6117dd565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b6000828201838110156111ac576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60006111ac8383612067565b60006111ac836001600160a01b0384166120cb565b6000610b45826120e3565b6001600160a01b038216611d21576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600254611d34908263ffffffff611c4016565b6002556001600160a01b038216600090815260208190526040902054611d60908263ffffffff611c4016565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391926000805160206123b48339815191529281900390910190a35050565b6001600160a01b038216611de95760405162461bcd60e51b81526004018080602001828103825260218152602001806123d46021913960400191505060405180910390fd5b611e2c816040518060600160405280602281526020016122ae602291396001600160a01b038516600090815260208190526040902054919063ffffffff611acb16565b6001600160a01b038316600090815260208190526040902055600254611e58908263ffffffff6120e716565b6002556040805182815290516000916001600160a01b038516916000805160206123b48339815191529181900360200190a35050565b60008183611edd5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611b1f578181015183820152602001611b07565b506000838581611ee957fe5b0495945050505050565b6001600160a01b038316611f385760405162461bcd60e51b81526004018080602001828103825260258152602001806123f56025913960400191505060405180910390fd5b6001600160a01b038216611f7d5760405162461bcd60e51b815260040180806020018281038252602381526020018061225c6023913960400191505060405180910390fd5b611fc0816040518060600160405280602681526020016122f2602691396001600160a01b038616600090815260208190526040902054919063ffffffff611acb16565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611ff5908263ffffffff611c4016565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716926000805160206123b483398151915292918290030190a3505050565b60006111ac836001600160a01b038416612129565b60006111ac836001600160a01b038416612173565b815460009082106120a95760405162461bcd60e51b815260040180806020018281038252602281526020018061223a6022913960400191505060405180910390fd5b8260000182815481106120b857fe5b9060005260206000200154905092915050565b60009081526001919091016020526040902054151590565b5490565b60006111ac83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611acb565b600061213583836120cb565b61216b57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610b45565b506000610b45565b6000818152600183016020526040812054801561222f57835460001980830191908101906000908790839081106121a657fe5b90600052602060002001549050808760000184815481106121c357fe5b6000918252602080832090910192909255828152600189810190925260409020908401905586548790806121f357fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610b45565b6000915050610b4556fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e647345524332303a207472616e7366657220746f20746865207a65726f2061646472657373416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e7445524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636553656e646572207265717569726573207065726d697373696f6e000000000000416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b6545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e6365ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef45524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c66a26469706673582212209ddb38d3a0ee57bf6b0c79ae0626b3726ab0d2bedc9915a833e80233aec8a1d964736f6c63430006020033

Deployed Bytecode Sourcemap

40847:5339:0:-:0;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;40847:5339:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43895:152;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;43895:152:0;;;;;;;;:::i;:::-;;32769:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;32769:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34875:169;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;34875:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;40997:45;;;:::i;:::-;;;;;;;;;;;;;;;;41293:69;;;:::i;44937:226::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;44937:226:0;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;44937:226:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;44937:226:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;44937:226:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;44937:226:0;;-1:-1:-1;44937:226:0;;-1:-1:-1;;;;;44937:226:0:i;33844:100::-;;;:::i;35526:321::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;35526:321:0;;;;;;;;;;;;;;;;;:::i;19094:114::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;19094:114:0;;:::i;19470:227::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;19470:227:0;;;;;;-1:-1:-1;;;;;19470:227:0;;:::i;33696:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;20679:209;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;20679:209:0;;;;;;-1:-1:-1;;;;;20679:209:0;;:::i;36256:218::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;36256:218:0;;;;;;;;:::i;42928:91::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;42928:91:0;;:::i;41672:46::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;41672:46:0;;:::i;41163:57::-;;;:::i;43328:127::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;43328:127:0;;;;;;;;;:::i;43463:145::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;43463:145:0;-1:-1:-1;;;;;43463:145:0;;:::i;41727:40::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;41727:40:0;-1:-1:-1;;;;;41727:40:0;;:::i;44264:241::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;44264:241:0;;;;;;;;;;:::i;34007:119::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;34007:119:0;-1:-1:-1;;;;;34007:119:0;;:::i;43616:111::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;43616:111:0;;:::i;43027:293::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;43027:293:0;;;;;;;;:::i;41776:48::-;;;:::i;:::-;;;;-1:-1:-1;;;;;41776:48:0;;;;;;;;;;;;;;40898:90;;;:::i;41227:59::-;;;:::i;18767:138::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;18767:138:0;;;;;;;:::i;17728:139::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;17728:139:0;;;;;;-1:-1:-1;;;;;17728:139:0;;:::i;41099:57::-;;;:::i;32971:87::-;;;:::i;41620:45::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;41620:45:0;;:::i;44055:201::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;44055:201:0;;;;;;;;:::i;16473:49::-;;;:::i;44513:416::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;44513:416:0;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;44513:416:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;44513:416:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;44513:416:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;44513:416:0;;;;;;;;-1:-1:-1;44513:416:0;;-1:-1:-1;;21:11;5:28;;2:2;;;46:1;43;36:12;2:2;44513:416:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;44513:416:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;44513:416:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;44513:416:0;;-1:-1:-1;44513:416:0;;-1:-1:-1;;;;;44513:416:0:i;36977:269::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;36977:269:0;;;;;;;;:::i;45299:110::-;;;:::i;34339:175::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;34339:175:0;;;;;;;;:::i;18041:127::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;18041:127:0;;:::i;45171:120::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;45171:120:0;-1:-1:-1;;;;;45171:120:0;;:::i;19942:230::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;19942:230:0;;;;;;-1:-1:-1;;;;;19942:230:0;;:::i;34577:151::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;34577:151:0;;;;;;;;;;:::i;43735:152::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;43735:152:0;;;;;;;;:::i;43895:::-;41217:1;42721:27;41217:1;42735:12;:10;:12::i;:::-;42721:7;:27::i;:::-;42713:66;;;;;-1:-1:-1;;;42713:66:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;42713:66:0;;;;;;;;;;;;;;;41407:4:::1;42869:20:::0;;;:14:::1;:20;::::0;;;::::1;;42868:21;42860:40;;;::::0;;-1:-1:-1;;;42860:40:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;42860:40:0;;;;;;;;;;;;;::::1;;44017:22:::2;44023:7;44032:6;44017:5;:22::i;:::-;42790:1:::1;43895:152:::0;;;:::o;32769:83::-;32839:5;32832:12;;;;;;;;-1:-1:-1;;32832:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32806:13;;32832:12;;32839:5;;32832:12;;32839:5;32832:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32769:83;:::o;34875:169::-;34958:4;34975:39;34984:12;:10;:12::i;:::-;34998:7;35007:6;34975:8;:39::i;:::-;-1:-1:-1;35032:4:0;34875:169;;;;;:::o;40997:45::-;-1:-1:-1;;40997:45:0;:::o;41293:69::-;41359:1;41293:69;:::o;44937:226::-;41088:4;42721:27;41088:4;42735:12;:10;:12::i;42721:27::-;42713:66;;;;;-1:-1:-1;;;42713:66:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;42713:66:0;;;;;;;;;;;;;;;45040:6:::1;45036:120;45056:9;:16;45052:1;:20;45036:120;;;45093:11;::::0;45110:12;;-1:-1:-1;;;;;45093:11:0;;::::1;::::0;:16:::1;::::0;45110:9;;45120:1;;45110:12;::::1;;;;;;;;;;;45124:19;45136:6;-1:-1:-1::0;;45124:11:0::1;;:19;;;;:::i;:::-;45093:51;;;;;;;;;;;;;-1:-1:-1::0;;;;;45093:51:0::1;-1:-1:-1::0;;;;;45093:51:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27::::0;20:12:::1;5:2;45093:51:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;-1:-1:::0;;45074:3:0::1;::::0;;::::1;::::0;-1:-1:-1;45036:120:0::1;::::0;-1:-1:-1;45036:120:0::1;;;44937:226:::0;;:::o;33844:100::-;33924:12;;33844:100;:::o;35526:321::-;35632:4;35649:36;35659:6;35667:9;35678:6;35649:9;:36::i;:::-;35696:121;35705:6;35713:12;:10;:12::i;:::-;35727:89;35765:6;35727:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35727:19:0;;;;;;:11;:19;;;;;;35747:12;:10;:12::i;:::-;-1:-1:-1;;;;;35727:33:0;;;;;;;;;;;;-1:-1:-1;35727:33:0;;;:89;;:37;:89;:::i;:::-;35696:8;:121::i;:::-;-1:-1:-1;35835:4:0;35526:321;;;;;:::o;19094:114::-;19151:7;19178:12;;;:6;:12;;;;;:22;;;;19094:114::o;19470:227::-;19562:12;;;;:6;:12;;;;;:22;;;19554:45;;19586:12;:10;:12::i;19554:45::-;19546:105;;;;-1:-1:-1;;;19546:105:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19664:25;19675:4;19681:7;19664:10;:25::i;:::-;19470:227;;:::o;33696:83::-;33762:9;;;;33696:83;:::o;20679:209::-;20777:12;:10;:12::i;:::-;-1:-1:-1;;;;;20766:23:0;:7;-1:-1:-1;;;;;20766:23:0;;20758:83;;;;-1:-1:-1;;;20758:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20854:26;20866:4;20872:7;20854:11;:26::i;36256:218::-;36344:4;36361:83;36370:12;:10;:12::i;:::-;36384:7;36393:50;36432:10;36393:11;:25;36405:12;:10;:12::i;:::-;-1:-1:-1;;;;;36393:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;36393:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;42928:91::-;42984:27;42990:12;:10;:12::i;:::-;43004:6;42984:5;:27::i;:::-;42928:91;:::o;41672:46::-;;;;;;;;;;;;;;;:::o;41163:57::-;41217:1;41163:57;:::o;43328:127::-;41088:4;42721:27;41088:4;42735:12;:10;:12::i;42721:27::-;42713:66;;;;;-1:-1:-1;;;42713:66:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;42713:66:0;;;;;;;;;;;;;;;-1:-1:-1;43419:19:0::1;::::0;;;:13:::1;:19;::::0;;;;;:28;;-1:-1:-1;;43419:28:0::1;::::0;::::1;;::::0;;;::::1;::::0;;43328:127::o;43463:145::-;41088:4;42721:27;41088:4;42735:12;:10;:12::i;42721:27::-;42713:66;;;;;-1:-1:-1;;;42713:66:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;42713:66:0;;;;;;;;;;;;;;;-1:-1:-1;43554:11:0::1;:46:::0;;-1:-1:-1;;;;;;43554:46:0::1;-1:-1:-1::0;;;;;43554:46:0;;;::::1;::::0;;;::::1;::::0;;43463:145::o;41727:40::-;;;;;;;;;;;;;:::o;44264:241::-;41359:1;42721:27;41359:1;42735:12;:10;:12::i;42721:27::-;42713:66;;;;;-1:-1:-1;;;42713:66:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;42713:66:0;;;;;;;;;;;;;;;44461:35:::1;::::0;;-1:-1:-1;;;44461:35:0;;44490:4:::1;44461:35;::::0;::::1;::::0;;;44413:12;;-1:-1:-1;;;;;44437:19:0;::::1;::::0;::::1;::::0;44457:2;;44437:19;;44461:20:::1;::::0;:35;;;;;::::1;::::0;;;;;;;;44437:19;44461:35;::::1;;5:2:-1::0;::::1;;;30:1;27::::0;20:12:::1;5:2;44461:35:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;44461:35:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26::::0;19:12:::1;2:2;-1:-1:::0;44461:35:0;44437:60:::1;::::0;;-1:-1:-1;;;;;;44437:60:0::1;::::0;;;;;;-1:-1:-1;;;;;44437:60:0;;::::1;;::::0;::::1;::::0;;;;;;;;;;;;;;-1:-1:-1;;44437:60:0;;;;;;;-1:-1:-1;44437:60:0;;::::1;;5:2:-1::0;::::1;;;30:1;27::::0;20:12:::1;5:2;44437:60:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;44437:60:0;;;;42790:1;44264:241:::0;;;:::o;34007:119::-;-1:-1:-1;;;;;34100:18:0;34073:7;34100:18;;;;;;;;;;;;34007:119::o;43616:111::-;41088:4;42721:27;41088:4;42735:12;:10;:12::i;42721:27::-;42713:66;;;;;-1:-1:-1;;;42713:66:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;42713:66:0;;;;;;;;;;;;;;;-1:-1:-1;43692:20:0::1;::::0;;;:14:::1;:20;::::0;;;;:27;;-1:-1:-1;;43692:27:0::1;43715:4;43692:27;::::0;;43616:111::o;43027:293::-;43104:26;43133:84;43170:6;43133:84;;;;;;;;;;;;;;;;;:32;43143:7;43152:12;:10;:12::i;:::-;43133:9;:32::i;:::-;:36;:84;;:36;:84;:::i;:::-;43104:113;;43228:51;43237:7;43246:12;:10;:12::i;:::-;43260:18;43228:8;:51::i;:::-;43290:22;43296:7;43305:6;43290:5;:22::i;41776:48::-;;;-1:-1:-1;;;;;41776:48:0;;:::o;40898:90::-;;;-1:-1:-1;;;;;40898:90:0;;:::o;41227:59::-;41283:1;41227:59;:::o;18767:138::-;18840:7;18867:12;;;:6;:12;;;;;:30;;18891:5;18867:30;:23;:30;:::i;:::-;18860:37;18767:138;-1:-1:-1;;;18767:138:0:o;17728:139::-;17797:4;17821:12;;;:6;:12;;;;;:38;;17851:7;17821:38;:29;:38;:::i;41099:57::-;41153:1;41099:57;:::o;32971:87::-;33043:7;33036:14;;;;;;;;-1:-1:-1;;33036:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33010:13;;33036:14;;33043:7;;33036:14;;33043:7;33036:14;;;;;;;;;;;;;;;;;;;;;;;;41620:45;;;;;;;;;;;;;;;:::o;44055:201::-;41088:4;42721:27;41088:4;42735:12;:10;:12::i;42721:27::-;42713:66;;;;;-1:-1:-1;;;42713:66:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;42713:66:0;;;;;;;;;;;;;;;41608:1:::1;41592:19;42869:20:::0;;;:14:::1;:20;::::0;;;::::1;;42868:21;42860:40;;;::::0;;-1:-1:-1;;;42860:40:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;42860:40:0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;;;44204:14:0;;;::::2;;::::0;;;:5:::2;:14;::::0;;;;44242:6:::2;44227:21:::0;;::::2;44221:3;:27;44204:44:::0;;44055:201::o;16473:49::-;16518:4;16473:49;:::o;44513:416::-;41153:1;42721:27;41153:1;42735:12;:10;:12::i;42721:27::-;42713:66;;;;;-1:-1:-1;;;42713:66:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;42713:66:0;;;;;;;;;;;;;;;41536:1:::1;41520:19;42869:20:::0;;;:14:::1;:20;::::0;;;::::1;;42868:21;42860:40;;;::::0;;-1:-1:-1;;;42860:40:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;42860:40:0;;;;;;;;;;;;;::::1;;44664:6:::2;44659:263;44680:9;:16;44676:1;:20;44659:263;;;44733:29;44750:8;44759:1;44750:11;;;;;;;;;;;;;;44733:12;;:16;;:29;;;;:::i;:::-;44718:12;:44;;;;44803:40;44831:8;44840:1;44831:11;;;;;;;;;;;;;;44803:9;:23:::0;44813:9:::2;44823:1;44813:12;;;;;;;;;;;;;;-1:-1:-1::0;;;;;44803:23:0::2;-1:-1:-1::0;;;;;44803:23:0::2;;;;;;;;;;;;;:27;;:40;;;;:::i;:::-;44777:9;:23:::0;44787:9:::2;44797:1;44787:12;;;;;;;;;;;;;;-1:-1:-1::0;;;;;44777:23:0::2;-1:-1:-1::0;;;;;44777:23:0::2;;;;;;;;;;;;:66;;;;44884:9;44894:1;44884:12;;;;;;;;;;;;;;-1:-1:-1::0;;;;;44863:47:0::2;44880:1;-1:-1:-1::0;;;;;44863:47:0::2;-1:-1:-1::0;;;;;;;;;;;44898:8:0::2;44907:1;44898:11;;;;;;;;;;;;;;44863:47;;;;;;;;;;;;;;;;;;44698:3;;44659:263;;;;42790:1:::1;44513:416:::0;;;:::o;36977:269::-;37070:4;37087:129;37096:12;:10;:12::i;:::-;37110:7;37119:96;37158:15;37119:96;;;;;;;;;;;;;;;;;:11;:25;37131:12;:10;:12::i;:::-;-1:-1:-1;;;;;37119:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;37119:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;45299:110::-;41088:4;42721:27;41088:4;42735:12;:10;:12::i;42721:27::-;42713:66;;;;;-1:-1:-1;;;42713:66:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;42713:66:0;;;;;;;;;;;;;;;-1:-1:-1;45368:18:0::1;:33:::0;;-1:-1:-1;;;;;;45368:33:0::1;::::0;;45299:110::o;34339:175::-;34425:4;34442:42;34452:12;:10;:12::i;:::-;34466:9;34477:6;34442:9;:42::i;18041:127::-;18104:7;18131:12;;;:6;:12;;;;;:29;;:27;:29::i;45171:120::-;41088:4;42721:27;41088:4;42735:12;:10;:12::i;42721:27::-;42713:66;;;;;-1:-1:-1;;;42713:66:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;42713:66:0;;;;;;;;;;;;;;;-1:-1:-1;45254:18:0::1;:29:::0;;-1:-1:-1;;;;;;45254:29:0::1;-1:-1:-1::0;;;;;45254:29:0;;;::::1;::::0;;;::::1;::::0;;45171:120::o;19942:230::-;20035:12;;;;:6;:12;;;;;:22;;;20027:45;;20059:12;:10;:12::i;20027:45::-;20019:106;;;;-1:-1:-1;;;20019:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34577:151;-1:-1:-1;;;;;34693:18:0;;;34666:7;34693:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;34577:151::o;43735:152::-;41153:1;42721:27;41153:1;42735:12;:10;:12::i;42721:27::-;42713:66;;;;;-1:-1:-1;;;42713:66:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;42713:66:0;;;;;;;;;;;;;;;41536:1:::1;41520:19;42869:20:::0;;;:14:::1;:20;::::0;;;::::1;;42868:21;42860:40;;;::::0;;-1:-1:-1;;;42860:40:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;42860:40:0;;;;;;;;;;;;;::::1;;43857:22:::2;43863:7;43872:6;43857:5;:22::i;14506:106::-:0;14594:10;14506:106;:::o;45417:225::-;45511:24;;;:13;:24;;;;;;45510:25;;:63;;-1:-1:-1;45539:34:0;41217:1;45560:12;:10;:12::i;45539:34::-;45502:93;;;;;-1:-1:-1;;;45502:93:0;;;;;;;;;;;;-1:-1:-1;;;45502:93:0;;;;;;;;;;;;;;;45606:28;45618:7;45627:6;45606:11;:28::i;39940:346::-;-1:-1:-1;;;;;40042:19:0;;40034:68;;;;-1:-1:-1;;;40034:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;40121:21:0;;40113:68;;;;-1:-1:-1;;;40113:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;40194:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;40246:32;;;;;;;;;;;;;;;;;39940:346;;;:::o;28541:132::-;28599:7;28626:39;28630:1;28633;28626:39;;;;;;;;;;;;;;;;;:3;:39::i;45650:531::-;41474:1;45767:28;;:13;:28;;;;;;45766:29;:52;;;;-1:-1:-1;;;;;;45799:13:0;;;;;;:5;:13;;;;;;45815:3;-1:-1:-1;45766:52:0;45765:94;;;-1:-1:-1;45823:36:0;41283:1;45846:12;:10;:12::i;45823:36::-;45757:128;;;;;-1:-1:-1;;;45757:128:0;;;;;;;;;;;;-1:-1:-1;;;45757:128:0;;;;;;;;;;;;;;;45896:42;45912:6;45920:9;45931:6;45896:15;:42::i;:::-;45953:18;;-1:-1:-1;;;;;45953:18:0;:34;45949:225;;46073:18;;46107:55;;;-1:-1:-1;;;46107:55:0;;-1:-1:-1;;;;;46107:55:0;;;;;;;;;;;;;;;;;;;;;;46073:18;;;;;;;46107:28;;:55;;;;;46004:40;;46107:55;;;;;;;;46004:40;46073:18;46107:55;;;5:2:-1;;;;30:1;27;20:12;27143:192:0;27229:7;27265:12;27257:6;;;;27249:29;;;;-1:-1:-1;;;27249:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;27249:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;27301:5:0;;;27143:192::o;21922:188::-;21996:12;;;;:6;:12;;;;;:33;;22021:7;21996:33;:24;:33;:::i;:::-;21992:111;;;22078:12;:10;:12::i;:::-;-1:-1:-1;;;;;22051:40:0;22069:7;-1:-1:-1;;;;;22051:40:0;22063:4;22051:40;;;;;;;;;;21922:188;;:::o;22118:192::-;22193:12;;;;:6;:12;;;;;:36;;22221:7;22193:36;:27;:36;:::i;:::-;22189:114;;;22278:12;:10;:12::i;:::-;-1:-1:-1;;;;;22251:40:0;22269:7;-1:-1:-1;;;;;22251:40:0;22263:4;22251:40;;;;;;;;;;22118:192;;:::o;26240:181::-;26298:7;26330:5;;;26354:6;;;;26346:46;;;;;-1:-1:-1;;;26346:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;6234:149;6308:7;6351:22;6355:3;6367:5;6351:3;:22::i;5529:158::-;5609:4;5633:46;5643:3;-1:-1:-1;;;;;5663:14:0;;5633:9;:46::i;5773:117::-;5836:7;5863:19;5871:3;5863:7;:19::i;38497:316::-;-1:-1:-1;;;;;38581:21:0;;38573:65;;;;;-1:-1:-1;;;38573:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;38666:12;;:24;;38683:6;38666:24;:16;:24;:::i;:::-;38651:12;:39;-1:-1:-1;;;;;38722:18:0;;:9;:18;;;;;;;;;;;:30;;38745:6;38722:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;38701:18:0;;:9;:18;;;;;;;;;;;:51;;;;38768:37;;;;;;;38701:18;;:9;;-1:-1:-1;;;;;;;;;;;38768:37:0;;;;;;;;;38497:316;;:::o;39146:356::-;-1:-1:-1;;;;;39230:21:0;;39222:67;;;;-1:-1:-1;;;39222:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39323:68;39346:6;39323:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39323:18:0;;:9;:18;;;;;;;;;;;;:68;;:22;:68;:::i;:::-;-1:-1:-1;;;;;39302:18:0;;:9;:18;;;;;;;;;;:89;39417:12;;:24;;39434:6;39417:24;:16;:24;:::i;:::-;39402:12;:39;39457:37;;;;;;;;39483:1;;-1:-1:-1;;;;;39457:37:0;;;-1:-1:-1;;;;;;;;;;;39457:37:0;;;;;;;;39146:356;;:::o;29169:278::-;29255:7;29290:12;29283:5;29275:28;;;;-1:-1:-1;;;29275:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;29275:28:0;;29314:9;29330:1;29326;:5;;;;;;;29169:278;-1:-1:-1;;;;;29169:278:0:o;37736:479::-;-1:-1:-1;;;;;37842:20:0;;37834:70;;;;-1:-1:-1;;;37834:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;37923:23:0;;37915:71;;;;-1:-1:-1;;;37915:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38019;38041:6;38019:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38019:17:0;;:9;:17;;;;;;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;37999:17:0;;;:9;:17;;;;;;;;;;;:91;;;;38124:20;;;;;;;:32;;38149:6;38124:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;38101:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;38172:35;;;;;;;38101:20;;38172:35;;;;-1:-1:-1;;;;;;;;;;;38172:35:0;;;;;;;;37736:479;;;:::o;4975:143::-;5045:4;5069:41;5074:3;-1:-1:-1;;;;;5094:14:0;;5069:4;:41::i;5294:149::-;5367:4;5391:44;5399:3;-1:-1:-1;;;;;5419:14:0;;5391:7;:44::i;4517:204::-;4612:18;;4584:7;;4612:26;-1:-1:-1;4604:73:0;;;;-1:-1:-1;;;4604:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4695:3;:11;;4707:5;4695:18;;;;;;;;;;;;;;;;4688:25;;4517:204;;;;:::o;3849:129::-;3922:4;3946:19;;;:12;;;;;:19;;;;;;:24;;;3849:129::o;4064:109::-;4147:18;;4064:109::o;26704:136::-;26762:7;26789:43;26793:1;26796;26789:43;;;;;;;;;;;;;;;;;:3;:43::i;1629:414::-;1692:4;1714:21;1724:3;1729:5;1714:9;:21::i;:::-;1709:327;;-1:-1:-1;27:10;;39:1;23:18;;;45:23;;1752:11:0;:23;;;;;;;;;;;;;1935:18;;1913:19;;;:12;;;:19;;;;;;:40;;;;1968:11;;1709:327;-1:-1:-1;2019:5:0;2012:12;;2219:1544;2285:4;2424:19;;;:12;;;:19;;;;;;2460:15;;2456:1300;;2895:18;;-1:-1:-1;;2846:14:0;;;;2895:22;;;;2822:21;;2895:3;;:22;;3182;;;;;;;;;;;;;;3162:42;;3328:9;3299:3;:11;;3311:13;3299:26;;;;;;;;;;;;;;;;;;;:38;;;;3405:23;;;3447:1;3405:12;;;:23;;;;;;3431:17;;;3405:43;;3557:17;;3405:3;;3557:17;;;;;;;;;;;;;;;;;;;;;;3652:3;:12;;:19;3665:5;3652:19;;;;;;;;;;;3645:26;;;3695:4;3688:11;;;;;;;;2456:1300;3739:5;3732:12;;;;

Swarm Source

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