ETH Price: $3,330.51 (-9.32%)
 

Overview

Max Total Supply

3,064,367.309469341180295884 sREL

Holders

32

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Contract Source Code Verified (Exact Match)

Contract Name:
sRel

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

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


pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 */
interface IERC20Permit {
    /**
     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
     * given ``owner``'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    /**
     * @dev Returns the current nonce for `owner`. This value must be
     * included whenever a signature is generated for {permit}.
     *
     * Every successful call to {permit} increases ``owner``'s nonce by one. This
     * prevents a signature from being used multiple times.
     */
    function nonces(address owner) external view returns (uint256);

    /**
     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}


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

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


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


pragma solidity ^0.8.0;

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

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

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


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


pragma solidity ^0.8.0;

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

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


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


pragma solidity ^0.8.0;



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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

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

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

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

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

        _afterTokenTransfer(account, address(0), amount);
    }

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

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

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

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


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


pragma solidity ^0.8.0;

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s;
        uint8 v;
        assembly {
            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
            v := add(shr(255, vs), 27)
        }
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}


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


pragma solidity ^0.8.0;

/**
 * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.
 *
 * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible,
 * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding
 * they need in their contracts using a combination of `abi.encode` and `keccak256`.
 *
 * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding
 * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA
 * ({_hashTypedDataV4}).
 *
 * The implementation of the domain separator was designed to be as efficient as possible while still properly updating
 * the chain id to protect against replay attacks on an eventual fork of the chain.
 *
 * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method
 * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].
 *
 * _Available since v3.4._
 */
abstract contract EIP712 {
    /* solhint-disable var-name-mixedcase */
    // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to
    // invalidate the cached domain separator if the chain id changes.
    bytes32 private immutable _CACHED_DOMAIN_SEPARATOR;
    uint256 private immutable _CACHED_CHAIN_ID;

    bytes32 private immutable _HASHED_NAME;
    bytes32 private immutable _HASHED_VERSION;
    bytes32 private immutable _TYPE_HASH;

    /* solhint-enable var-name-mixedcase */

    /**
     * @dev Initializes the domain separator and parameter caches.
     *
     * The meaning of `name` and `version` is specified in
     * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]:
     *
     * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.
     * - `version`: the current major version of the signing domain.
     *
     * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart
     * contract upgrade].
     */
    constructor(string memory name, string memory version) {
        bytes32 hashedName = keccak256(bytes(name));
        bytes32 hashedVersion = keccak256(bytes(version));
        bytes32 typeHash = keccak256(
            "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"
        );
        _HASHED_NAME = hashedName;
        _HASHED_VERSION = hashedVersion;
        _CACHED_CHAIN_ID = block.chainid;
        _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion);
        _TYPE_HASH = typeHash;
    }

    /**
     * @dev Returns the domain separator for the current chain.
     */
    function _domainSeparatorV4() internal view returns (bytes32) {
        if (block.chainid == _CACHED_CHAIN_ID) {
            return _CACHED_DOMAIN_SEPARATOR;
        } else {
            return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION);
        }
    }

    function _buildDomainSeparator(
        bytes32 typeHash,
        bytes32 nameHash,
        bytes32 versionHash
    ) private view returns (bytes32) {
        return keccak256(abi.encode(typeHash, nameHash, versionHash, block.chainid, address(this)));
    }

    /**
     * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this
     * function returns the hash of the fully encoded EIP712 message for this domain.
     *
     * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:
     *
     * ```solidity
     * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(
     *     keccak256("Mail(address to,string contents)"),
     *     mailTo,
     *     keccak256(bytes(mailContents))
     * )));
     * address signer = ECDSA.recover(digest, signature);
     * ```
     */
    function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) {
        return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash);
    }
}


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


pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}


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


pragma solidity ^0.8.0;





/**
 * @dev Implementation of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 *
 * _Available since v3.4._
 */
abstract contract ERC20Permit is ERC20, IERC20Permit, EIP712 {
    using Counters for Counters.Counter;

    mapping(address => Counters.Counter) private _nonces;

    // solhint-disable-next-line var-name-mixedcase
    bytes32 private immutable _PERMIT_TYPEHASH =
        keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");

    /**
     * @dev Initializes the {EIP712} domain separator using the `name` parameter, and setting `version` to `"1"`.
     *
     * It's a good idea to use the same `name` that is defined as the ERC20 token name.
     */
    constructor(string memory name) EIP712(name, "1") {}

    /**
     * @dev See {IERC20Permit-permit}.
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) public virtual override {
        require(block.timestamp <= deadline, "ERC20Permit: expired deadline");

        bytes32 structHash = keccak256(abi.encode(_PERMIT_TYPEHASH, owner, spender, value, _useNonce(owner), deadline));

        bytes32 hash = _hashTypedDataV4(structHash);

        address signer = ECDSA.recover(hash, v, r, s);
        require(signer == owner, "ERC20Permit: invalid signature");

        _approve(owner, spender, value);
    }

    /**
     * @dev See {IERC20Permit-nonces}.
     */
    function nonces(address owner) public view virtual override returns (uint256) {
        return _nonces[owner].current();
    }

    /**
     * @dev See {IERC20Permit-DOMAIN_SEPARATOR}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view override returns (bytes32) {
        return _domainSeparatorV4();
    }

    /**
     * @dev "Consume a nonce": return the current value and increment.
     *
     * _Available since v4.1._
     */
    function _useNonce(address owner) internal virtual returns (uint256 current) {
        Counters.Counter storage nonce = _nonces[owner];
        current = nonce.current();
        nonce.increment();
    }
}


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


pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a >= b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a / b + (a % b == 0 ? 0 : 1);
    }
}


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


pragma solidity ^0.8.0;

/**
 * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow
 * checks.
 *
 * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can
 * easily result in undesired exploitation or bugs, since developers usually
 * assume that overflows raise errors. `SafeCast` restores this intuition by
 * reverting the transaction when such 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.
 *
 * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing
 * all math on `uint256` and `int256` and then downcasting.
 */
library SafeCast {
    /**
     * @dev Returns the downcasted uint224 from uint256, reverting on
     * overflow (when the input is greater than largest uint224).
     *
     * Counterpart to Solidity's `uint224` operator.
     *
     * Requirements:
     *
     * - input must fit into 224 bits
     */
    function toUint224(uint256 value) internal pure returns (uint224) {
        require(value <= type(uint224).max, "SafeCast: value doesn't fit in 224 bits");
        return uint224(value);
    }

    /**
     * @dev Returns the downcasted uint128 from uint256, reverting on
     * overflow (when the input is greater than largest uint128).
     *
     * Counterpart to Solidity's `uint128` operator.
     *
     * Requirements:
     *
     * - input must fit into 128 bits
     */
    function toUint128(uint256 value) internal pure returns (uint128) {
        require(value <= type(uint128).max, "SafeCast: value doesn't fit in 128 bits");
        return uint128(value);
    }

    /**
     * @dev Returns the downcasted uint96 from uint256, reverting on
     * overflow (when the input is greater than largest uint96).
     *
     * Counterpart to Solidity's `uint96` operator.
     *
     * Requirements:
     *
     * - input must fit into 96 bits
     */
    function toUint96(uint256 value) internal pure returns (uint96) {
        require(value <= type(uint96).max, "SafeCast: value doesn't fit in 96 bits");
        return uint96(value);
    }

    /**
     * @dev Returns the downcasted uint64 from uint256, reverting on
     * overflow (when the input is greater than largest uint64).
     *
     * Counterpart to Solidity's `uint64` operator.
     *
     * Requirements:
     *
     * - input must fit into 64 bits
     */
    function toUint64(uint256 value) internal pure returns (uint64) {
        require(value <= type(uint64).max, "SafeCast: value doesn't fit in 64 bits");
        return uint64(value);
    }

    /**
     * @dev Returns the downcasted uint32 from uint256, reverting on
     * overflow (when the input is greater than largest uint32).
     *
     * Counterpart to Solidity's `uint32` operator.
     *
     * Requirements:
     *
     * - input must fit into 32 bits
     */
    function toUint32(uint256 value) internal pure returns (uint32) {
        require(value <= type(uint32).max, "SafeCast: value doesn't fit in 32 bits");
        return uint32(value);
    }

    /**
     * @dev Returns the downcasted uint16 from uint256, reverting on
     * overflow (when the input is greater than largest uint16).
     *
     * Counterpart to Solidity's `uint16` operator.
     *
     * Requirements:
     *
     * - input must fit into 16 bits
     */
    function toUint16(uint256 value) internal pure returns (uint16) {
        require(value <= type(uint16).max, "SafeCast: value doesn't fit in 16 bits");
        return uint16(value);
    }

    /**
     * @dev Returns the downcasted uint8 from uint256, reverting on
     * overflow (when the input is greater than largest uint8).
     *
     * Counterpart to Solidity's `uint8` operator.
     *
     * Requirements:
     *
     * - input must fit into 8 bits.
     */
    function toUint8(uint256 value) internal pure returns (uint8) {
        require(value <= type(uint8).max, "SafeCast: value doesn't fit in 8 bits");
        return uint8(value);
    }

    /**
     * @dev Converts a signed int256 into an unsigned uint256.
     *
     * Requirements:
     *
     * - input must be greater than or equal to 0.
     */
    function toUint256(int256 value) internal pure returns (uint256) {
        require(value >= 0, "SafeCast: value must be positive");
        return uint256(value);
    }

    /**
     * @dev Returns the downcasted int128 from int256, reverting on
     * overflow (when the input is less than smallest int128 or
     * greater than largest int128).
     *
     * Counterpart to Solidity's `int128` operator.
     *
     * Requirements:
     *
     * - input must fit into 128 bits
     *
     * _Available since v3.1._
     */
    function toInt128(int256 value) internal pure returns (int128) {
        require(value >= type(int128).min && value <= type(int128).max, "SafeCast: value doesn't fit in 128 bits");
        return int128(value);
    }

    /**
     * @dev Returns the downcasted int64 from int256, reverting on
     * overflow (when the input is less than smallest int64 or
     * greater than largest int64).
     *
     * Counterpart to Solidity's `int64` operator.
     *
     * Requirements:
     *
     * - input must fit into 64 bits
     *
     * _Available since v3.1._
     */
    function toInt64(int256 value) internal pure returns (int64) {
        require(value >= type(int64).min && value <= type(int64).max, "SafeCast: value doesn't fit in 64 bits");
        return int64(value);
    }

    /**
     * @dev Returns the downcasted int32 from int256, reverting on
     * overflow (when the input is less than smallest int32 or
     * greater than largest int32).
     *
     * Counterpart to Solidity's `int32` operator.
     *
     * Requirements:
     *
     * - input must fit into 32 bits
     *
     * _Available since v3.1._
     */
    function toInt32(int256 value) internal pure returns (int32) {
        require(value >= type(int32).min && value <= type(int32).max, "SafeCast: value doesn't fit in 32 bits");
        return int32(value);
    }

    /**
     * @dev Returns the downcasted int16 from int256, reverting on
     * overflow (when the input is less than smallest int16 or
     * greater than largest int16).
     *
     * Counterpart to Solidity's `int16` operator.
     *
     * Requirements:
     *
     * - input must fit into 16 bits
     *
     * _Available since v3.1._
     */
    function toInt16(int256 value) internal pure returns (int16) {
        require(value >= type(int16).min && value <= type(int16).max, "SafeCast: value doesn't fit in 16 bits");
        return int16(value);
    }

    /**
     * @dev Returns the downcasted int8 from int256, reverting on
     * overflow (when the input is less than smallest int8 or
     * greater than largest int8).
     *
     * Counterpart to Solidity's `int8` operator.
     *
     * Requirements:
     *
     * - input must fit into 8 bits.
     *
     * _Available since v3.1._
     */
    function toInt8(int256 value) internal pure returns (int8) {
        require(value >= type(int8).min && value <= type(int8).max, "SafeCast: value doesn't fit in 8 bits");
        return int8(value);
    }

    /**
     * @dev Converts an unsigned uint256 into a signed int256.
     *
     * Requirements:
     *
     * - input must be less than or equal to maxInt256.
     */
    function toInt256(uint256 value) internal pure returns (int256) {
        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive
        require(value <= uint256(type(int256).max), "SafeCast: value doesn't fit in an int256");
        return int256(value);
    }
}


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


pragma solidity ^0.8.0;




/**
 * @dev Extension of ERC20 to support Compound-like voting and delegation. This version is more generic than Compound's,
 * and supports token supply up to 2^224^ - 1, while COMP is limited to 2^96^ - 1.
 *
 * NOTE: If exact COMP compatibility is required, use the {ERC20VotesComp} variant of this module.
 *
 * This extension keeps a history (checkpoints) of each account's vote power. Vote power can be delegated either
 * by calling the {delegate} function directly, or by providing a signature to be used with {delegateBySig}. Voting
 * power can be queried through the public accessors {getVotes} and {getPastVotes}.
 *
 * By default, token balance does not account for voting power. This makes transfers cheaper. The downside is that it
 * requires users to delegate to themselves in order to activate checkpoints and have their voting power tracked.
 * Enabling self-delegation can easily be done by overriding the {delegates} function. Keep in mind however that this
 * will significantly increase the base gas cost of transfers.
 *
 * _Available since v4.2._
 */
abstract contract ERC20Votes is ERC20Permit {
    struct Checkpoint {
        uint32 fromBlock;
        uint224 votes;
    }

    bytes32 private constant _DELEGATION_TYPEHASH =
        keccak256("Delegation(address delegatee,uint256 nonce,uint256 expiry)");

    mapping(address => address) private _delegates;
    mapping(address => Checkpoint[]) private _checkpoints;
    Checkpoint[] private _totalSupplyCheckpoints;

    /**
     * @dev Emitted when an account changes their delegate.
     */
    event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate);

    /**
     * @dev Emitted when a token transfer or delegate change results in changes to an account's voting power.
     */
    event DelegateVotesChanged(address indexed delegate, uint256 previousBalance, uint256 newBalance);

    /**
     * @dev Get the `pos`-th checkpoint for `account`.
     */
    function checkpoints(address account, uint32 pos) public view virtual returns (Checkpoint memory) {
        return _checkpoints[account][pos];
    }

    /**
     * @dev Get number of checkpoints for `account`.
     */
    function numCheckpoints(address account) public view virtual returns (uint32) {
        return SafeCast.toUint32(_checkpoints[account].length);
    }

    /**
     * @dev Get the address `account` is currently delegating to.
     */
    function delegates(address account) public view virtual returns (address) {
        return _delegates[account];
    }

    /**
     * @dev Gets the current votes balance for `account`
     */
    function getVotes(address account) public view returns (uint256) {
        uint256 pos = _checkpoints[account].length;
        return pos == 0 ? 0 : _checkpoints[account][pos - 1].votes;
    }

    /**
     * @dev Retrieve the number of votes for `account` at the end of `blockNumber`.
     *
     * Requirements:
     *
     * - `blockNumber` must have been already mined
     */
    function getPastVotes(address account, uint256 blockNumber) public view returns (uint256) {
        require(blockNumber < block.number, "ERC20Votes: block not yet mined");
        return _checkpointsLookup(_checkpoints[account], blockNumber);
    }

    /**
     * @dev Retrieve the `totalSupply` at the end of `blockNumber`. Note, this value is the sum of all balances.
     * It is but NOT the sum of all the delegated votes!
     *
     * Requirements:
     *
     * - `blockNumber` must have been already mined
     */
    function getPastTotalSupply(uint256 blockNumber) public view returns (uint256) {
        require(blockNumber < block.number, "ERC20Votes: block not yet mined");
        return _checkpointsLookup(_totalSupplyCheckpoints, blockNumber);
    }

    /**
     * @dev Lookup a value in a list of (sorted) checkpoints.
     */
    function _checkpointsLookup(Checkpoint[] storage ckpts, uint256 blockNumber) private view returns (uint256) {
        // We run a binary search to look for the earliest checkpoint taken after `blockNumber`.
        //
        // During the loop, the index of the wanted checkpoint remains in the range [low-1, high).
        // With each iteration, either `low` or `high` is moved towards the middle of the range to maintain the invariant.
        // - If the middle checkpoint is after `blockNumber`, we look in [low, mid)
        // - If the middle checkpoint is before or equal to `blockNumber`, we look in [mid+1, high)
        // Once we reach a single value (when low == high), we've found the right checkpoint at the index high-1, if not
        // out of bounds (in which case we're looking too far in the past and the result is 0).
        // Note that if the latest checkpoint available is exactly for `blockNumber`, we end up with an index that is
        // past the end of the array, so we technically don't find a checkpoint after `blockNumber`, but it works out
        // the same.
        uint256 high = ckpts.length;
        uint256 low = 0;
        while (low < high) {
            uint256 mid = Math.average(low, high);
            if (ckpts[mid].fromBlock > blockNumber) {
                high = mid;
            } else {
                low = mid + 1;
            }
        }

        return high == 0 ? 0 : ckpts[high - 1].votes;
    }

    /**
     * @dev Delegate votes from the sender to `delegatee`.
     */
    function delegate(address delegatee) public virtual {
        return _delegate(_msgSender(), delegatee);
    }

    /**
     * @dev Delegates votes from signer to `delegatee`
     */
    function delegateBySig(
        address delegatee,
        uint256 nonce,
        uint256 expiry,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) public virtual {
        require(block.timestamp <= expiry, "ERC20Votes: signature expired");
        address signer = ECDSA.recover(
            _hashTypedDataV4(keccak256(abi.encode(_DELEGATION_TYPEHASH, delegatee, nonce, expiry))),
            v,
            r,
            s
        );
        require(nonce == _useNonce(signer), "ERC20Votes: invalid nonce");
        return _delegate(signer, delegatee);
    }

    /**
     * @dev Maximum token supply. Defaults to `type(uint224).max` (2^224^ - 1).
     */
    function _maxSupply() internal view virtual returns (uint224) {
        return type(uint224).max;
    }

    /**
     * @dev Snapshots the totalSupply after it has been increased.
     */
    function _mint(address account, uint256 amount) internal virtual override {
        super._mint(account, amount);
        require(totalSupply() <= _maxSupply(), "ERC20Votes: total supply risks overflowing votes");

        _writeCheckpoint(_totalSupplyCheckpoints, _add, amount);
    }

    /**
     * @dev Snapshots the totalSupply after it has been decreased.
     */
    function _burn(address account, uint256 amount) internal virtual override {
        super._burn(account, amount);

        _writeCheckpoint(_totalSupplyCheckpoints, _subtract, amount);
    }

    /**
     * @dev Move voting power when tokens are transferred.
     *
     * Emits a {DelegateVotesChanged} event.
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {
        super._afterTokenTransfer(from, to, amount);

        _moveVotingPower(delegates(from), delegates(to), amount);
    }

    /**
     * @dev Change delegation for `delegator` to `delegatee`.
     *
     * Emits events {DelegateChanged} and {DelegateVotesChanged}.
     */
    function _delegate(address delegator, address delegatee) internal virtual {
        address currentDelegate = delegates(delegator);
        uint256 delegatorBalance = balanceOf(delegator);
        _delegates[delegator] = delegatee;

        emit DelegateChanged(delegator, currentDelegate, delegatee);

        _moveVotingPower(currentDelegate, delegatee, delegatorBalance);
    }

    function _moveVotingPower(
        address src,
        address dst,
        uint256 amount
    ) private {
        if (src != dst && amount > 0) {
            if (src != address(0)) {
                (uint256 oldWeight, uint256 newWeight) = _writeCheckpoint(_checkpoints[src], _subtract, amount);
                emit DelegateVotesChanged(src, oldWeight, newWeight);
            }

            if (dst != address(0)) {
                (uint256 oldWeight, uint256 newWeight) = _writeCheckpoint(_checkpoints[dst], _add, amount);
                emit DelegateVotesChanged(dst, oldWeight, newWeight);
            }
        }
    }

    function _writeCheckpoint(
        Checkpoint[] storage ckpts,
        function(uint256, uint256) view returns (uint256) op,
        uint256 delta
    ) private returns (uint256 oldWeight, uint256 newWeight) {
        uint256 pos = ckpts.length;
        oldWeight = pos == 0 ? 0 : ckpts[pos - 1].votes;
        newWeight = op(oldWeight, delta);

        if (pos > 0 && ckpts[pos - 1].fromBlock == block.number) {
            ckpts[pos - 1].votes = SafeCast.toUint224(newWeight);
        } else {
            ckpts.push(Checkpoint({fromBlock: SafeCast.toUint32(block.number), votes: SafeCast.toUint224(newWeight)}));
        }
    }

    function _add(uint256 a, uint256 b) private pure returns (uint256) {
        return a + b;
    }

    function _subtract(uint256 a, uint256 b) private pure returns (uint256) {
        return a - b;
    }
}


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


pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_msgSender());
    }

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

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

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

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

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


// File contracts/libraries/Utils.sol

pragma solidity ^0.8.0;

library Utils {
  using Utils for Unlock;
  using Utils for Vest;

  struct Vest {
    uint256 shortAmnt;
    uint256 longAmnt;
    uint256 lastUpdate;
  }

  struct Unlock {
    uint256 unlockAmnt;
    uint256 unlockTime;
  }

  // note: we should be able to unlock all tokens (including vested tokens)
  function unlock(
    Unlock storage self,
    uint256 amount,
    uint256 lockTime
  ) internal {
    self.unlockAmnt = amount;
    self.unlockTime = block.timestamp + lockTime;
  }

  function useUnlocked(Unlock storage self, uint256 amount) internal {
    require(self.unlockTime <= block.timestamp, "sRelU: tokens are not unlocked yet");
    require(self.unlockAmnt >= amount, "sRelU: tokens should be unlocked before transfer");

    self.unlockAmnt -= amount; // update locked amount;
  }

  function resetLock(Unlock storage self) internal {
    self.unlockAmnt = 0;
    self.unlockTime = 0;
  }

  function transferUnvestedTokens(Vest storage self, Vest storage vestTo) internal {
    require(self.shortAmnt | self.longAmnt != 0, "sRelU: nothing to transfer");

    require(
      vestTo.shortAmnt | vestTo.longAmnt == 0,
      "sRelU: cannot transfer to account with unvested tokens"
    );

    vestTo.shortAmnt = self.shortAmnt;
    vestTo.longAmnt = self.longAmnt;
    vestTo.lastUpdate = self.lastUpdate;

    // reset initial vest
    self.shortAmnt = 0;
    self.longAmnt = 0;
    self.lastUpdate = 0;
  }

  function setUnvestedAmount(
    Vest storage self,
    uint256 shortAmnt,
    uint256 longAmnt
  ) public {
    require(self.shortAmnt + self.longAmnt == 0, "sRelU: account has unvested tokens");
    if (shortAmnt > 0) self.shortAmnt = shortAmnt;

    if (longAmnt > 0) self.longAmnt = longAmnt;

    self.lastUpdate = 0;
  }

  function unvested(Vest storage self) internal view returns (uint256) {
    return self.shortAmnt + self.longAmnt;
  }

  // this method updates long and short unvested amounts and returns vested amount
  function updateUnvestedAmount(
    Vest storage self,
    uint256 vestShort,
    uint256 vestLong,
    uint256 vestBegin
  ) public returns (uint256 amount) {
    if (block.timestamp <= vestBegin) return 0;
    uint256 shortAmnt = self.shortAmnt;
    uint256 longAmnt = self.longAmnt;
    uint256 last = self.lastUpdate < vestBegin ? vestBegin : self.lastUpdate;

    if (shortAmnt > 0 && last < vestShort) {
      uint256 sAmnt = block.timestamp < vestShort
        ? (shortAmnt * (block.timestamp - last)) / (vestShort - last)
        : shortAmnt;
      self.shortAmnt = shortAmnt - sAmnt;
      amount += sAmnt;
    }

    if (longAmnt > 0 && last < vestLong) {
      uint256 lAmnt = block.timestamp < vestLong
        ? (longAmnt * (block.timestamp - last)) / (vestLong - last)
        : longAmnt;
      self.longAmnt = longAmnt - lAmnt;
      amount += lAmnt;
    }

    self.lastUpdate = block.timestamp;
    return amount;
  }
}


// File contracts/interfaces/IsRel.sol

pragma solidity ^0.8.0;

// Relevant Governance Token
interface IsRel {
  event lockUpdated(address indexed account, Utils.Unlock unlockData); // staking events
  event vestUpdated(address indexed account, address sender, Utils.Vest vestData); // vesting events

  // governance events
  event lockPeriodUpdated(uint256 newLockPeriod);
  event vestAdminUpdated(address newVestAdmin);

  // staking
  function unlock(uint256 amount) external;

  function resetLock() external;

  function stakeRel(uint256 amount) external;

  function withdrawRel(uint256 amount) external;

  // vesting
  function setUnvestedAmount(
    address account,
    uint256 amountShort,
    uint256 amountLong
  ) external;

  function initVesting(
    uint256 _shortAmount,
    uint256 _longAmount,
    bytes memory _sig
  ) external;

  function claimVestedRel() external;

  function transferUnvestedTokens(address to) external;

  // governance
  function updateLockPeriod(uint256 newLockPeriod) external;

  function setVestAdmin(address newAdmin) external;

  // view
  function nonceOf(address account) external view returns (uint256);

  function unstaked(address account) external view returns (uint256);

  function staked(address account) external view returns (uint256);

  function unlockTime(address account) external view returns (uint256);

  function unvested(address account) external view returns (uint256);

  function vestData(address account) external view returns (Utils.Vest memory);
}


// File contracts/sRel.sol

pragma solidity ^0.8.0;





contract sRel is IsRel, ERC20Votes, Ownable {
  using Utils for Utils.Vest;
  using Utils for Utils.Unlock;

  IERC20 public immutable r3l; // RELEVANT TOKEN

  address public vestAdmin; // role is responsible for sending tokens to vesting contract

  uint256 public lockPeriod = 4 days; // how long it takes for staked tokens to become unlocked

  uint256 public immutable vestBegin; // start of all vesting periods
  uint256 public immutable vestShort; // short vesting end date
  uint256 public immutable vestLong; // long vesting end date

  uint256 public totalUnvested;
  mapping(address => uint256) private vestNonce;
  mapping(address => Utils.Unlock) private unlocks;
  mapping(address => Utils.Vest) private vest;

  // keccak256("InitVesting(address account,uint256 shortAmnt,uint256 longAmnt,uint256 nonce)")
  bytes32 public constant CLAIM_HASH =
    0xaa930e3affe03e95a7e73cc03af79eab35ac3f46fe4ae69839f76986ecaa957d;

  constructor(
    IERC20 _r3l,
    address _vestAdmin,
    uint256 _vestBegin,
    uint256 _vestShort,
    uint256 _vestLong
  ) ERC20("Staked REL", "sREL") ERC20Permit("Staked REL") {
    require(
      _vestBegin <= _vestShort && _vestShort <= _vestLong,
      "sRel: incorrect vesting timestamps"
    );
    r3l = _r3l;
    vestBegin = _vestBegin;
    vestShort = _vestShort;
    vestLong = _vestLong;
    vestAdmin = _vestAdmin;
  }

  // only unlocked & unvested tokens can be transferred
  function _beforeTokenTransfer(
    address from,
    address to,
    uint256 amount
  ) internal virtual override(ERC20) {
    super._beforeTokenTransfer(from, to, amount);

    // minting and transfers from contract are not subject to unlocks
    if (from == address(0) || from == address(this)) return;

    uint256 vestedBalance = balanceOf(from) - vest[from].unvested();
    require(amount <= vestedBalance, "sRel: you cannot transfer unvested tokens");

    Utils.Unlock storage lock = unlocks[from];
    lock.useUnlocked(amount); // only unlocked tokens can be transferred
    emit lockUpdated(from, lock);
  }

  // ---- STAKING METHODS ----

  // unlock sRel - after lockPeriod tokens can be transferred or withdrawn
  function unlock(uint256 amount) external override(IsRel) {
    Utils.Unlock storage lock = unlocks[msg.sender];
    lock.unlock(amount, lockPeriod);
    emit lockUpdated(msg.sender, lock);
  }

  // re-lock tokens
  function resetLock() external override(IsRel) {
    Utils.Unlock storage lock = unlocks[msg.sender];
    lock.resetLock();
    emit lockUpdated(msg.sender, lock);
  }

  // deposit REL in exchange for sREL
  function stakeRel(uint256 amount) external override(IsRel) {
    require(r3l.transferFrom(msg.sender, address(this), amount), "sRel: transfer failed");
    _mint(msg.sender, amount);
  }

  // withdraws all unlocked tokens
  function withdrawRel(uint256 amount) external override(IsRel) {
    _burn(msg.sender, amount);
    require(r3l.transfer(msg.sender, amount), "sRel: transfer failed");
  }

  // ---- VESTING METHODS ----

  // onwer can set amount of unvested tokens manually
  // NOTE: REL must be sent to this contract before this method is called
  function setUnvestedAmount(
    address account,
    uint256 shortAmnt,
    uint256 longAmnt
  ) external override(IsRel) onlyOwner {
    _setUnvestedAmount(account, shortAmnt, longAmnt);
  }

  // Claim curation reward tokens (to be called by user from an app)
  function initVesting(
    uint256 _shortAmount,
    uint256 _longAmount,
    bytes memory _sig
  ) external override(IsRel) {
    uint256 nonce = vestNonce[msg.sender];

    bytes32 structHash = keccak256(
      abi.encode(CLAIM_HASH, msg.sender, _shortAmount, _longAmount, nonce)
    );

    // _domainSeparatorV4 is from EIP712 which is a base contract of ERC20Votes
    bytes32 digest = ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash);
    address signer = ECDSA.recover(digest, _sig);

    // check that the message was signed by a vest admin
    require(signer == vestAdmin, "sRel: Claim not authorized");

    vestNonce[msg.sender] = nonce + 1;
    _setUnvestedAmount(msg.sender, _shortAmount, _longAmount);
  }

  // helper function that initializes unvested amounts
  // NOTE: REL must be sent to this contract *before* this method is called
  function _setUnvestedAmount(
    address account,
    uint256 shortAmnt,
    uint256 longAmnt
  ) internal {
    Utils.Vest storage vesting = vest[account];
    vesting.setUnvestedAmount(shortAmnt, longAmnt);
    uint256 totalUnvestedAmnt = shortAmnt + longAmnt;
    require(
      totalSupply() + totalUnvestedAmnt <= r3l.balanceOf(address(this)),
      "sRel: Not enought REL in contract"
    );
    _mint(account, totalUnvestedAmnt);
    totalUnvested += totalUnvestedAmnt;
    emit vestUpdated(account, msg.sender, vesting);
  }

  // unvest and unlock tokens
  function claimVestedRel() external override(IsRel) {
    Utils.Vest storage vesting = vest[msg.sender];
    uint256 amount = vesting.updateUnvestedAmount(vestShort, vestLong, vestBegin);
    require(amount > 0, "sRel: no unvested tokens to claim");
    totalUnvested -= amount;
    unlocks[msg.sender].unlock(amount, lockPeriod);
    emit vestUpdated(msg.sender, msg.sender, vesting);
  }

  // transfer all unvested tokens to a new address
  function transferUnvestedTokens(address to) external override(IsRel) {
    Utils.Vest storage senderVest = vest[msg.sender];
    Utils.Vest storage toVest = vest[to];
    uint256 amount = senderVest.unvested();
    senderVest.transferUnvestedTokens(toVest);
    transfer(to, amount);
    emit vestUpdated(msg.sender, msg.sender, senderVest);
    emit vestUpdated(to, msg.sender, toVest);
  }

  // ---- GOVERNANCE ----

  function updateLockPeriod(uint256 newLockPeriod) external override(IsRel) onlyOwner {
    require(lockPeriod != newLockPeriod, "sRel: nothing to update");
    lockPeriod = newLockPeriod;
    emit lockPeriodUpdated(lockPeriod);
  }

  function setVestAdmin(address newAdmin) external override(IsRel) {
    require(msg.sender == owner() || msg.sender == vestAdmin, "sRel: not authorized");
    require(vestAdmin != newAdmin, "sRel: nothing to update");
    vestAdmin = newAdmin;
    emit vestAdminUpdated(vestAdmin);
  }

  // ---- VIEW --------
  function nonceOf(address account) external view override(IsRel) returns (uint256) {
    return vestNonce[account];
  }

  function staked(address account) external view override(IsRel) returns (uint256) {
    return balanceOf(account) - unlocks[account].unlockAmnt;
  }

  function unstaked(address account) external view override(IsRel) returns (uint256) {
    return unlocks[account].unlockAmnt;
  }

  function unlockTime(address account) external view override(IsRel) returns (uint256) {
    return unlocks[account].unlockTime;
  }

  function unvested(address account) external view override(IsRel) returns (uint256) {
    return vest[account].unvested();
  }

  function vestData(address account) external view override(IsRel) returns (Utils.Vest memory) {
    return vest[account];
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"contract IERC20","name":"_r3l","type":"address"},{"internalType":"address","name":"_vestAdmin","type":"address"},{"internalType":"uint256","name":"_vestBegin","type":"uint256"},{"internalType":"uint256","name":"_vestShort","type":"uint256"},{"internalType":"uint256","name":"_vestLong","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"DelegateVotesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newLockPeriod","type":"uint256"}],"name":"lockPeriodUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"components":[{"internalType":"uint256","name":"unlockAmnt","type":"uint256"},{"internalType":"uint256","name":"unlockTime","type":"uint256"}],"indexed":false,"internalType":"struct Utils.Unlock","name":"unlockData","type":"tuple"}],"name":"lockUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newVestAdmin","type":"address"}],"name":"vestAdminUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"address","name":"sender","type":"address"},{"components":[{"internalType":"uint256","name":"shortAmnt","type":"uint256"},{"internalType":"uint256","name":"longAmnt","type":"uint256"},{"internalType":"uint256","name":"lastUpdate","type":"uint256"}],"indexed":false,"internalType":"struct Utils.Vest","name":"vestData","type":"tuple"}],"name":"vestUpdated","type":"event"},{"inputs":[],"name":"CLAIM_HASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint32","name":"pos","type":"uint32"}],"name":"checkpoints","outputs":[{"components":[{"internalType":"uint32","name":"fromBlock","type":"uint32"},{"internalType":"uint224","name":"votes","type":"uint224"}],"internalType":"struct ERC20Votes.Checkpoint","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimVestedRel","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":[{"internalType":"address","name":"delegatee","type":"address"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPastTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPastVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_shortAmount","type":"uint256"},{"internalType":"uint256","name":"_longAmount","type":"uint256"},{"internalType":"bytes","name":"_sig","type":"bytes"}],"name":"initVesting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lockPeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"nonceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"r3l","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"resetLock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"shortAmnt","type":"uint256"},{"internalType":"uint256","name":"longAmnt","type":"uint256"}],"name":"setUnvestedAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAdmin","type":"address"}],"name":"setVestAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"stakeRel","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"staked","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalUnvested","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"transferUnvestedTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"unlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"unstaked","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"unvested","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLockPeriod","type":"uint256"}],"name":"updateLockPeriod","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"vestAdmin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"vestBegin","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"vestData","outputs":[{"components":[{"internalType":"uint256","name":"shortAmnt","type":"uint256"},{"internalType":"uint256","name":"longAmnt","type":"uint256"},{"internalType":"uint256","name":"lastUpdate","type":"uint256"}],"internalType":"struct Utils.Vest","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"vestLong","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"vestShort","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawRel","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6101c06040527f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c96101205262054600600b553480156200003e57600080fd5b50604051620037cd380380620037cd833981016040819052620000619162000356565b6040518060400160405280600a81526020016914dd185ad9590814915360b21b81525080604051806040016040528060018152602001603160f81b8152506040518060400160405280600a81526020016914dd185ad9590814915360b21b815250604051806040016040528060048152602001631cd4915360e21b8152508160039080519060200190620000f7929190620002b0565b5080516200010d906004906020840190620002b0565b5050825160209384012082519284019290922060c083815260e08290524660a0818152604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f818a018190528183019890985260608101959095526080808601939093523085830152805180860390920182529390920190925280519401939093209092526101005250620001a69050336200025e565b818311158015620001b75750808211155b620002135760405162461bcd60e51b815260206004820152602260248201527f7352656c3a20696e636f72726563742076657374696e672074696d657374616d604482015261707360f01b606482015260840160405180910390fd5b60609490941b6001600160601b0319166101405261016091909152610180526101a091909152600a80546001600160a01b0319166001600160a01b0390921691909117905562000404565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620002be90620003ae565b90600052602060002090601f016020900481019282620002e257600085556200032d565b82601f10620002fd57805160ff19168380011785556200032d565b828001600101855582156200032d579182015b828111156200032d57825182559160200191906001019062000310565b506200033b9291506200033f565b5090565b5b808211156200033b576000815560010162000340565b600080600080600060a086880312156200036f57600080fd5b85516200037c81620003eb565b60208701519095506200038f81620003eb565b6040870151606088015160809098015196999198509695945092505050565b600181811c90821680620003c357607f821691505b60208210811415620003e557634e487b7160e01b600052602260045260246000fd5b50919050565b6001600160a01b03811681146200040157600080fd5b50565b60805160a05160c05160e05161010051610120516101405160601c61016051610180516101a051613320620004ad600039600081816104d60152610d7d0152600081816105b40152610d570152600081816106af0152610da30152600081816103060152818161092d015281816116c90152611f6a0152600061148401526000611c0c01526000611c5b01526000611c3601526000611bba01526000611be301526133206000f3fe608060405234801561001057600080fd5b50600436106102bb5760003560e01c806376b467b711610182578063b1f7996e116100e9578063e02c8fc5116100a2578063ed2a2d641161007c578063ed2a2d6414610719578063f034333f14610742578063f1127ed814610755578063f2fde38b1461079257600080fd5b8063e02c8fc5146106aa578063ea8809a6146106d1578063ebcb27801461070657600080fd5b8063b1f7996e146105fc578063c3cda5201461060f578063c50ef91e14610622578063c7c90bfb14610635578063d505accf1461065e578063dd62ed3e1461067157600080fd5b806395d89b411161013b57806395d89b411461058157806398807d84146105895780639ab24eb01461059c578063a0940960146105af578063a457c2d7146105d6578063a9059cbb146105e957600080fd5b806376b467b7146104f85780637ecebe00146105245780638adaaa84146105375780638da5cb5b1461054a5780638e539e8c1461055b57806391db7b0d1461056e57600080fd5b80633a46b1a8116102265780636cc5f01a116101df5780636cc5f01a1461045d5780636fcfff451461047057806370a082311461049857806371074519146104c1578063715018a6146104c957806376831ae5146104d157600080fd5b80633a46b1a8146103e75780633fd8b02f146103fa57806345459bcf14610403578063587cde1e1461040b5780635c19a95c146104375780636198e3391461044a57600080fd5b8063313ce56711610278578063313ce5671461036e57806333a6cc581461037d5780633644e515146103a45780633664bf2d146103ac57806336a94a57146103c157806339509351146103d457600080fd5b806306fdde03146102c0578063095ea7b3146102de578063122873281461030157806318160ddd146103405780631a7aa4f41461035257806323b872dd1461035b575b600080fd5b6102c86107a5565b6040516102d59190613162565b60405180910390f35b6102f16102ec366004612f27565b610837565b60405190151581526020016102d5565b6103287f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016102d5565b6002545b6040519081526020016102d5565b610344600c5481565b6102f1610369366004612e81565b61084d565b604051601281526020016102d5565b6103447faa930e3affe03e95a7e73cc03af79eab35ac3f46fe4ae69839f76986ecaa957d81565b6103446108fc565b6103bf6103ba36600461303e565b61090b565b005b6103446103cf366004612e33565b610a02565b6102f16103e2366004612f27565b610a29565b6103446103f5366004612f27565b610a65565b610344600b5481565b6103bf610adf565b610328610419366004612e33565b6001600160a01b039081166000908152600660205260409020541690565b6103bf610445366004612e33565b610b41565b6103bf61045836600461303e565b610b4b565b6103bf61046b366004613070565b610bae565b61048361047e366004612e33565b610d10565b60405163ffffffff90911681526020016102d5565b6103446104a6366004612e33565b6001600160a01b031660009081526020819052604090205490565b6103bf610d32565b6103bf610ef2565b6103447f000000000000000000000000000000000000000000000000000000000000000081565b610344610506366004612e33565b6001600160a01b03166000908152600e602052604090206001015490565b610344610532366004612e33565b610f28565b6103bf610545366004612e33565b610f46565b6009546001600160a01b0316610328565b61034461056936600461303e565b611059565b6103bf61057c36600461303e565b6110b5565b6102c8611160565b610344610597366004612e33565b61116f565b6103446105aa366004612e33565b61119c565b6103447f000000000000000000000000000000000000000000000000000000000000000081565b6102f16105e4366004612f27565b611223565b6102f16105f7366004612f27565b6112bc565b6103bf61060a366004612f51565b6112c9565b6103bf61061d366004612f84565b611303565b600a54610328906001600160a01b031681565b610344610643366004612e33565b6001600160a01b03166000908152600e602052604090205490565b6103bf61066c366004612ebd565b611430565b61034461067f366004612e4e565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6103447f000000000000000000000000000000000000000000000000000000000000000081565b6106e46106df366004612e33565b611594565b60408051825181526020808401519082015291810151908201526060016102d5565b6103bf610714366004612e33565b6115fa565b610344610727366004612e33565b6001600160a01b03166000908152600d602052604090205490565b6103bf61075036600461303e565b6116a3565b610768610763366004612fdc565b611791565b60408051825163ffffffff1681526020928301516001600160e01b031692810192909252016102d5565b6103bf6107a0366004612e33565b611815565b6060600380546107b49061323d565b80601f01602080910402602001604051908101604052809291908181526020018280546107e09061323d565b801561082d5780601f106108025761010080835404028352916020019161082d565b820191906000526020600020905b81548152906001019060200180831161081057829003601f168201915b5050505050905090565b60006108443384846118ad565b50600192915050565b600061085a8484846119d1565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156108e45760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6108f185338584036118ad565b506001949350505050565b6000610906611bb6565b905090565b6040516323b872dd60e01b8152336004820152306024820152604481018290527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906323b872dd90606401602060405180830381600087803b15801561097957600080fd5b505af115801561098d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109b1919061301c565b6109f55760405162461bcd60e51b81526020600482015260156024820152741cd4995b0e881d1c985b9cd9995c8819985a5b1959605a1b60448201526064016108db565b6109ff3382611ca9565b50565b6001600160a01b0381166000908152600f60205260408120610a2390611d33565b92915050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610844918590610a609086906131ec565b6118ad565b6000438210610ab65760405162461bcd60e51b815260206004820152601f60248201527f4552433230566f7465733a20626c6f636b206e6f7420796574206d696e65640060448201526064016108db565b6001600160a01b0383166000908152600760205260409020610ad89083611d46565b9392505050565b336000908152600e60205260409020610aff816000808255600190910155565b60408051825481526001830154602082015233917f53a06858e4b0bb751491f078084a1a381e3fb6d6e9dd983c266e2d68e33bd79a910160405180910390a250565b6109ff3382611e03565b336000908152600e60205260409020600b54610b6a9082908490611e7c565b60408051825481526001830154602082015233917f53a06858e4b0bb751491f078084a1a381e3fb6d6e9dd983c266e2d68e33bd79a91015b60405180910390a25050565b336000818152600d602090815260408083205481517faa930e3affe03e95a7e73cc03af79eab35ac3f46fe4ae69839f76986ecaa957d9381019390935290820193909352606081018690526080810185905260a0810183905260c0016040516020818303038152906040528051906020012090506000610c70610c2f611bb6565b8360405161190160f01b6020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b90506000610c7e8286611e96565b600a549091506001600160a01b03808316911614610cde5760405162461bcd60e51b815260206004820152601a60248201527f7352656c3a20436c61696d206e6f7420617574686f72697a656400000000000060448201526064016108db565b610ce98460016131ec565b336000818152600d6020526040902091909155610d07908888611eba565b50505050505050565b6001600160a01b038116600090815260076020526040812054610a23906120b3565b336000908152600f60205260408082209051631e9442d560e31b8152600481018290527f000000000000000000000000000000000000000000000000000000000000000060248201527f000000000000000000000000000000000000000000000000000000000000000060448201527f000000000000000000000000000000000000000000000000000000000000000060648201529091907339181a4b8337893b69658a21572f40ca975bdd9a9063f4a216a89060840160206040518083038186803b158015610e0157600080fd5b505af4158015610e15573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e399190613057565b905060008111610e955760405162461bcd60e51b815260206004820152602160248201527f7352656c3a206e6f20756e76657374656420746f6b656e7320746f20636c61696044820152606d60f81b60648201526084016108db565b80600c6000828254610ea79190613226565b9091555050600b54336000908152600e60205260409020610ec9918390611e7c565b336001600160a01b03166000805160206132cb8339815191523384604051610ba2929190613134565b6009546001600160a01b03163314610f1c5760405162461bcd60e51b81526004016108db906131b7565b610f26600061211c565b565b6001600160a01b038116600090815260056020526040812054610a23565b6009546001600160a01b0316331480610f695750600a546001600160a01b031633145b610fac5760405162461bcd60e51b81526020600482015260146024820152731cd4995b0e881b9bdd08185d5d1a1bdc9a5e995960621b60448201526064016108db565b600a546001600160a01b03828116911614156110045760405162461bcd60e51b81526020600482015260176024820152767352656c3a206e6f7468696e6720746f2075706461746560481b60448201526064016108db565b600a80546001600160a01b0319166001600160a01b0383169081179091556040519081527f8961078521e826adb5caac59fa1f47e24f2059266ab5fe7c7fbf9b2ccd5a21e3906020015b60405180910390a150565b60004382106110aa5760405162461bcd60e51b815260206004820152601f60248201527f4552433230566f7465733a20626c6f636b206e6f7420796574206d696e65640060448201526064016108db565b610a23600883611d46565b6009546001600160a01b031633146110df5760405162461bcd60e51b81526004016108db906131b7565b80600b54141561112b5760405162461bcd60e51b81526020600482015260176024820152767352656c3a206e6f7468696e6720746f2075706461746560481b60448201526064016108db565b600b8190556040518181527fe8bf8dfb4abe1420b183a0e83ced724064b765215e282a7a58dff3c1fef5e3f19060200161104e565b6060600480546107b49061323d565b6001600160a01b0381166000908152600e602090815260408083205491839052822054610a239190613226565b6001600160a01b0381166000908152600760205260408120548015611210576001600160a01b03831660009081526007602052604090206111de600183613226565b815481106111ee576111ee61329e565b60009182526020909120015464010000000090046001600160e01b0316611213565b60005b6001600160e01b03169392505050565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156112a55760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016108db565b6112b233858584036118ad565b5060019392505050565b60006108443384846119d1565b6009546001600160a01b031633146112f35760405162461bcd60e51b81526004016108db906131b7565b6112fe838383611eba565b505050565b834211156113535760405162461bcd60e51b815260206004820152601d60248201527f4552433230566f7465733a207369676e6174757265206578706972656400000060448201526064016108db565b604080517fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf60208201526001600160a01b0388169181019190915260608101869052608081018590526000906113cd906113c59060a0016040516020818303038152906040528051906020012061216e565b85858561217b565b90506113d8816121a3565b86146114265760405162461bcd60e51b815260206004820152601960248201527f4552433230566f7465733a20696e76616c6964206e6f6e63650000000000000060448201526064016108db565b610d078188611e03565b834211156114805760405162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e6500000060448201526064016108db565b60007f00000000000000000000000000000000000000000000000000000000000000008888886114af8c6121a3565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e001604051602081830303815290604052805190602001209050600061150a8261216e565b9050600061151a8287878761217b565b9050896001600160a01b0316816001600160a01b03161461157d5760405162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e6174757265000060448201526064016108db565b6115888a8a8a6118ad565b50505050505050505050565b6115b860405180606001604052806000815260200160008152602001600081525090565b506001600160a01b03166000908152600f6020908152604091829020825160608101845281548152600182015492810192909252600201549181019190915290565b336000908152600f60205260408082206001600160a01b0384168352908220909161162483611d33565b905061163083836121cb565b61163a84826112bc565b50336001600160a01b03166000805160206132cb8339815191523385604051611664929190613134565b60405180910390a2836001600160a01b03166000805160206132cb8339815191523384604051611695929190613134565b60405180910390a250505050565b6116ad33826122bd565b60405163a9059cbb60e01b8152336004820152602481018290527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063a9059cbb90604401602060405180830381600087803b15801561171557600080fd5b505af1158015611729573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061174d919061301c565b6109ff5760405162461bcd60e51b81526020600482015260156024820152741cd4995b0e881d1c985b9cd9995c8819985a5b1959605a1b60448201526064016108db565b60408051808201909152600080825260208201526001600160a01b0383166000908152600760205260409020805463ffffffff84169081106117d5576117d561329e565b60009182526020918290206040805180820190915291015463ffffffff8116825264010000000090046001600160e01b0316918101919091529392505050565b6009546001600160a01b0316331461183f5760405162461bcd60e51b81526004016108db906131b7565b6001600160a01b0381166118a45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108db565b6109ff8161211c565b6001600160a01b03831661190f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016108db565b6001600160a01b0382166119705760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016108db565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611a355760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016108db565b6001600160a01b038216611a975760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016108db565b611aa28383836122d5565b6001600160a01b03831660009081526020819052604090205481811015611b1a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016108db565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611b519084906131ec565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611b9d91815260200190565b60405180910390a3611bb084848461240c565b50505050565b60007f0000000000000000000000000000000000000000000000000000000000000000461415611c0557507f000000000000000000000000000000000000000000000000000000000000000090565b50604080517f00000000000000000000000000000000000000000000000000000000000000006020808301919091527f0000000000000000000000000000000000000000000000000000000000000000828401527f000000000000000000000000000000000000000000000000000000000000000060608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b611cb3828261243e565b6002546001600160e01b031015611d255760405162461bcd60e51b815260206004820152603060248201527f4552433230566f7465733a20746f74616c20737570706c79207269736b73206f60448201526f766572666c6f77696e6720766f74657360801b60648201526084016108db565b611bb0600861253583612541565b60018101548154600091610a23916131ec565b8154600090815b81811015611daa576000611d6182846126ba565b905084868281548110611d7657611d7661329e565b60009182526020909120015463ffffffff161115611d9657809250611da4565b611da18160016131ec565b91505b50611d4d565b8115611dee5784611dbc600184613226565b81548110611dcc57611dcc61329e565b60009182526020909120015464010000000090046001600160e01b0316611df1565b60005b6001600160e01b031695945050505050565b6001600160a01b038281166000818152600660208181526040808420805485845282862054949093528787166001600160a01b03198416811790915590519190951694919391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a4611bb08284836126d5565b818355611e8981426131ec565b8360010181905550505050565b6000806000611ea58585612803565b91509150611eb281612873565b509392505050565b6001600160a01b0383166000908152600f6020526040908190209051631992dfb560e21b81526004810182905260248101849052604481018390527339181a4b8337893b69658a21572f40ca975bdd9a9063664b7ed49060640160006040518083038186803b158015611f2c57600080fd5b505af4158015611f40573d6000803e3d6000fd5b5050505060008284611f5291906131ec565b6040516370a0823160e01b81523060048201529091507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a082319060240160206040518083038186803b158015611fb457600080fd5b505afa158015611fc8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fec9190613057565b81611ff660025490565b61200091906131ec565b11156120585760405162461bcd60e51b815260206004820152602160248201527f7352656c3a204e6f7420656e6f756768742052454c20696e20636f6e747261636044820152601d60fa1b60648201526084016108db565b6120628582611ca9565b80600c600082825461207491906131ec565b92505081905550846001600160a01b03166000805160206132cb83398151915233846040516120a4929190613134565b60405180910390a25050505050565b600063ffffffff8211156121185760405162461bcd60e51b815260206004820152602660248201527f53616665436173743a2076616c756520646f65736e27742066697420696e203360448201526532206269747360d01b60648201526084016108db565b5090565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000610a23610c2f611bb6565b600080600061218c87878787612a2e565b9150915061219981612873565b5095945050505050565b6001600160a01b03811660009081526005602052604090208054600181018255905b50919050565b600182015482541761221f5760405162461bcd60e51b815260206004820152601a60248201527f7352656c553a206e6f7468696e6720746f207472616e7366657200000000000060448201526064016108db565b6001810154815417156122935760405162461bcd60e51b815260206004820152603660248201527f7352656c553a2063616e6e6f74207472616e7366657220746f206163636f756e60448201527574207769746820756e76657374656420746f6b656e7360501b60648201526084016108db565b81548155600180830180549183019190915560028084018054919093015560009283905582905555565b6122c78282612b1b565b611bb06008612c7c83612541565b6001600160a01b03831615806122f357506001600160a01b03831630145b156122fd57505050565b6001600160a01b0383166000908152600f6020526040812061231e90611d33565b6001600160a01b0385166000908152602081905260409020546123419190613226565b9050808211156123a55760405162461bcd60e51b815260206004820152602960248201527f7352656c3a20796f752063616e6e6f74207472616e7366657220756e76657374604482015268656420746f6b656e7360b81b60648201526084016108db565b6001600160a01b0384166000908152600e602052604090206123c78184612c88565b6040805182548152600183015460208201526001600160a01b038716917f53a06858e4b0bb751491f078084a1a381e3fb6d6e9dd983c266e2d68e33bd79a91016120a4565b6001600160a01b038381166000908152600660205260408082205485841683529120546112fe929182169116836126d5565b6001600160a01b0382166124945760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016108db565b6124a0600083836122d5565b80600260008282546124b291906131ec565b90915550506001600160a01b038216600090815260208190526040812080548392906124df9084906131ec565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a36125316000838361240c565b5050565b6000610ad882846131ec565b82546000908190801561258c578561255a600183613226565b8154811061256a5761256a61329e565b60009182526020909120015464010000000090046001600160e01b031661258f565b60005b6001600160e01b031692506125a883858763ffffffff16565b91506000811180156125e6575043866125c2600184613226565b815481106125d2576125d261329e565b60009182526020909120015463ffffffff16145b15612646576125f482612d6e565b86612600600184613226565b815481106126105761261061329e565b9060005260206000200160000160046101000a8154816001600160e01b0302191690836001600160e01b031602179055506126b1565b85604051806040016040528061265b436120b3565b63ffffffff16815260200161266f85612d6e565b6001600160e01b0390811690915282546001810184556000938452602093849020835194909301519091166401000000000263ffffffff909316929092179101555b50935093915050565b60006126c96002848418613204565b610ad8908484166131ec565b816001600160a01b0316836001600160a01b0316141580156126f75750600081115b156112fe576001600160a01b03831615612785576001600160a01b0383166000908152600760205260408120819061273290612c7c85612541565b91509150846001600160a01b03167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724838360405161277a929190918252602082015260400190565b60405180910390a250505b6001600160a01b038216156112fe576001600160a01b038216600090815260076020526040812081906127bb9061253585612541565b91509150836001600160a01b03167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a72483836040516120a4929190918252602082015260400190565b60008082516041141561283a5760208301516040840151606085015160001a61282e87828585612a2e565b9450945050505061286c565b8251604014156128645760208301516040840151612859868383612dd7565b93509350505061286c565b506000905060025b9250929050565b600081600481111561288757612887613288565b14156128905750565b60018160048111156128a4576128a4613288565b14156128f25760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016108db565b600281600481111561290657612906613288565b14156129545760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016108db565b600381600481111561296857612968613288565b14156129c15760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016108db565b60048160048111156129d5576129d5613288565b14156109ff5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b60648201526084016108db565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115612a655750600090506003612b12565b8460ff16601b14158015612a7d57508460ff16601c14155b15612a8e5750600090506004612b12565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612ae2573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116612b0b57600060019250925050612b12565b9150600090505b94509492505050565b6001600160a01b038216612b7b5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016108db565b612b87826000836122d5565b6001600160a01b03821660009081526020819052604090205481811015612bfb5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016108db565b6001600160a01b0383166000908152602081905260408120838303905560028054849290612c2a908490613226565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a36112fe8360008461240c565b6000610ad88284613226565b4282600101541115612ce75760405162461bcd60e51b815260206004820152602260248201527f7352656c553a20746f6b656e7320617265206e6f7420756e6c6f636b65642079604482015261195d60f21b60648201526084016108db565b8154811115612d515760405162461bcd60e51b815260206004820152603060248201527f7352656c553a20746f6b656e732073686f756c6420626520756e6c6f636b656460448201526f103132b337b932903a3930b739b332b960811b60648201526084016108db565b80826000016000828254612d659190613226565b90915550505050565b60006001600160e01b038211156121185760405162461bcd60e51b815260206004820152602760248201527f53616665436173743a2076616c756520646f65736e27742066697420696e20326044820152663234206269747360c81b60648201526084016108db565b6000806001600160ff1b03831660ff84901c601b01612df887828885612a2e565b935093505050935093915050565b80356001600160a01b0381168114612e1d57600080fd5b919050565b803560ff81168114612e1d57600080fd5b600060208284031215612e4557600080fd5b610ad882612e06565b60008060408385031215612e6157600080fd5b612e6a83612e06565b9150612e7860208401612e06565b90509250929050565b600080600060608486031215612e9657600080fd5b612e9f84612e06565b9250612ead60208501612e06565b9150604084013590509250925092565b600080600080600080600060e0888a031215612ed857600080fd5b612ee188612e06565b9650612eef60208901612e06565b95506040880135945060608801359350612f0b60808901612e22565b925060a0880135915060c0880135905092959891949750929550565b60008060408385031215612f3a57600080fd5b612f4383612e06565b946020939093013593505050565b600080600060608486031215612f6657600080fd5b612f6f84612e06565b95602085013595506040909401359392505050565b60008060008060008060c08789031215612f9d57600080fd5b612fa687612e06565b95506020870135945060408701359350612fc260608801612e22565b92506080870135915060a087013590509295509295509295565b60008060408385031215612fef57600080fd5b612ff883612e06565b9150602083013563ffffffff8116811461301157600080fd5b809150509250929050565b60006020828403121561302e57600080fd5b81518015158114610ad857600080fd5b60006020828403121561305057600080fd5b5035919050565b60006020828403121561306957600080fd5b5051919050565b60008060006060848603121561308557600080fd5b8335925060208401359150604084013567ffffffffffffffff808211156130ab57600080fd5b818601915086601f8301126130bf57600080fd5b8135818111156130d1576130d16132b4565b604051601f8201601f19908116603f011681019083821181831017156130f9576130f96132b4565b8160405282815289602084870101111561311257600080fd5b8260208601602083013760006020848301015280955050505050509250925092565b6001600160a01b03929092168252805460208301526001810154604083015260020154606082015260800190565b600060208083528351808285015260005b8181101561318f57858101830151858201604001528201613173565b818111156131a1576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156131ff576131ff613272565b500190565b60008261322157634e487b7160e01b600052601260045260246000fd5b500490565b60008282101561323857613238613272565b500390565b600181811c9082168061325157607f821691505b602082108114156121c557634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fdfe52cd33bfcaef1b1998163985f60162407a7ba572f611529d9730d1f7c3825176a26469706673582212209b85661760c2818a8d23a7d886ba658114508266d04e7634fe764d7f68ce279864736f6c63430008060033000000000000000000000000b6c4267c4877bb0d6b1685cfd85b0fbe82f105ec000000000000000000000000649d39c228b4708473220cf2a5e19f82bc35fb5100000000000000000000000000000000000000000000000000000000613d7b400000000000000000000000000000000000000000000000000000000068c39ac0000000000000000000000000000000000000000000000000000000007f55f940

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102bb5760003560e01c806376b467b711610182578063b1f7996e116100e9578063e02c8fc5116100a2578063ed2a2d641161007c578063ed2a2d6414610719578063f034333f14610742578063f1127ed814610755578063f2fde38b1461079257600080fd5b8063e02c8fc5146106aa578063ea8809a6146106d1578063ebcb27801461070657600080fd5b8063b1f7996e146105fc578063c3cda5201461060f578063c50ef91e14610622578063c7c90bfb14610635578063d505accf1461065e578063dd62ed3e1461067157600080fd5b806395d89b411161013b57806395d89b411461058157806398807d84146105895780639ab24eb01461059c578063a0940960146105af578063a457c2d7146105d6578063a9059cbb146105e957600080fd5b806376b467b7146104f85780637ecebe00146105245780638adaaa84146105375780638da5cb5b1461054a5780638e539e8c1461055b57806391db7b0d1461056e57600080fd5b80633a46b1a8116102265780636cc5f01a116101df5780636cc5f01a1461045d5780636fcfff451461047057806370a082311461049857806371074519146104c1578063715018a6146104c957806376831ae5146104d157600080fd5b80633a46b1a8146103e75780633fd8b02f146103fa57806345459bcf14610403578063587cde1e1461040b5780635c19a95c146104375780636198e3391461044a57600080fd5b8063313ce56711610278578063313ce5671461036e57806333a6cc581461037d5780633644e515146103a45780633664bf2d146103ac57806336a94a57146103c157806339509351146103d457600080fd5b806306fdde03146102c0578063095ea7b3146102de578063122873281461030157806318160ddd146103405780631a7aa4f41461035257806323b872dd1461035b575b600080fd5b6102c86107a5565b6040516102d59190613162565b60405180910390f35b6102f16102ec366004612f27565b610837565b60405190151581526020016102d5565b6103287f000000000000000000000000b6c4267c4877bb0d6b1685cfd85b0fbe82f105ec81565b6040516001600160a01b0390911681526020016102d5565b6002545b6040519081526020016102d5565b610344600c5481565b6102f1610369366004612e81565b61084d565b604051601281526020016102d5565b6103447faa930e3affe03e95a7e73cc03af79eab35ac3f46fe4ae69839f76986ecaa957d81565b6103446108fc565b6103bf6103ba36600461303e565b61090b565b005b6103446103cf366004612e33565b610a02565b6102f16103e2366004612f27565b610a29565b6103446103f5366004612f27565b610a65565b610344600b5481565b6103bf610adf565b610328610419366004612e33565b6001600160a01b039081166000908152600660205260409020541690565b6103bf610445366004612e33565b610b41565b6103bf61045836600461303e565b610b4b565b6103bf61046b366004613070565b610bae565b61048361047e366004612e33565b610d10565b60405163ffffffff90911681526020016102d5565b6103446104a6366004612e33565b6001600160a01b031660009081526020819052604090205490565b6103bf610d32565b6103bf610ef2565b6103447f000000000000000000000000000000000000000000000000000000007f55f94081565b610344610506366004612e33565b6001600160a01b03166000908152600e602052604090206001015490565b610344610532366004612e33565b610f28565b6103bf610545366004612e33565b610f46565b6009546001600160a01b0316610328565b61034461056936600461303e565b611059565b6103bf61057c36600461303e565b6110b5565b6102c8611160565b610344610597366004612e33565b61116f565b6103446105aa366004612e33565b61119c565b6103447f0000000000000000000000000000000000000000000000000000000068c39ac081565b6102f16105e4366004612f27565b611223565b6102f16105f7366004612f27565b6112bc565b6103bf61060a366004612f51565b6112c9565b6103bf61061d366004612f84565b611303565b600a54610328906001600160a01b031681565b610344610643366004612e33565b6001600160a01b03166000908152600e602052604090205490565b6103bf61066c366004612ebd565b611430565b61034461067f366004612e4e565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6103447f00000000000000000000000000000000000000000000000000000000613d7b4081565b6106e46106df366004612e33565b611594565b60408051825181526020808401519082015291810151908201526060016102d5565b6103bf610714366004612e33565b6115fa565b610344610727366004612e33565b6001600160a01b03166000908152600d602052604090205490565b6103bf61075036600461303e565b6116a3565b610768610763366004612fdc565b611791565b60408051825163ffffffff1681526020928301516001600160e01b031692810192909252016102d5565b6103bf6107a0366004612e33565b611815565b6060600380546107b49061323d565b80601f01602080910402602001604051908101604052809291908181526020018280546107e09061323d565b801561082d5780601f106108025761010080835404028352916020019161082d565b820191906000526020600020905b81548152906001019060200180831161081057829003601f168201915b5050505050905090565b60006108443384846118ad565b50600192915050565b600061085a8484846119d1565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156108e45760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6108f185338584036118ad565b506001949350505050565b6000610906611bb6565b905090565b6040516323b872dd60e01b8152336004820152306024820152604481018290527f000000000000000000000000b6c4267c4877bb0d6b1685cfd85b0fbe82f105ec6001600160a01b0316906323b872dd90606401602060405180830381600087803b15801561097957600080fd5b505af115801561098d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109b1919061301c565b6109f55760405162461bcd60e51b81526020600482015260156024820152741cd4995b0e881d1c985b9cd9995c8819985a5b1959605a1b60448201526064016108db565b6109ff3382611ca9565b50565b6001600160a01b0381166000908152600f60205260408120610a2390611d33565b92915050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610844918590610a609086906131ec565b6118ad565b6000438210610ab65760405162461bcd60e51b815260206004820152601f60248201527f4552433230566f7465733a20626c6f636b206e6f7420796574206d696e65640060448201526064016108db565b6001600160a01b0383166000908152600760205260409020610ad89083611d46565b9392505050565b336000908152600e60205260409020610aff816000808255600190910155565b60408051825481526001830154602082015233917f53a06858e4b0bb751491f078084a1a381e3fb6d6e9dd983c266e2d68e33bd79a910160405180910390a250565b6109ff3382611e03565b336000908152600e60205260409020600b54610b6a9082908490611e7c565b60408051825481526001830154602082015233917f53a06858e4b0bb751491f078084a1a381e3fb6d6e9dd983c266e2d68e33bd79a91015b60405180910390a25050565b336000818152600d602090815260408083205481517faa930e3affe03e95a7e73cc03af79eab35ac3f46fe4ae69839f76986ecaa957d9381019390935290820193909352606081018690526080810185905260a0810183905260c0016040516020818303038152906040528051906020012090506000610c70610c2f611bb6565b8360405161190160f01b6020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b90506000610c7e8286611e96565b600a549091506001600160a01b03808316911614610cde5760405162461bcd60e51b815260206004820152601a60248201527f7352656c3a20436c61696d206e6f7420617574686f72697a656400000000000060448201526064016108db565b610ce98460016131ec565b336000818152600d6020526040902091909155610d07908888611eba565b50505050505050565b6001600160a01b038116600090815260076020526040812054610a23906120b3565b336000908152600f60205260408082209051631e9442d560e31b8152600481018290527f0000000000000000000000000000000000000000000000000000000068c39ac060248201527f000000000000000000000000000000000000000000000000000000007f55f94060448201527f00000000000000000000000000000000000000000000000000000000613d7b4060648201529091907339181a4b8337893b69658a21572f40ca975bdd9a9063f4a216a89060840160206040518083038186803b158015610e0157600080fd5b505af4158015610e15573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e399190613057565b905060008111610e955760405162461bcd60e51b815260206004820152602160248201527f7352656c3a206e6f20756e76657374656420746f6b656e7320746f20636c61696044820152606d60f81b60648201526084016108db565b80600c6000828254610ea79190613226565b9091555050600b54336000908152600e60205260409020610ec9918390611e7c565b336001600160a01b03166000805160206132cb8339815191523384604051610ba2929190613134565b6009546001600160a01b03163314610f1c5760405162461bcd60e51b81526004016108db906131b7565b610f26600061211c565b565b6001600160a01b038116600090815260056020526040812054610a23565b6009546001600160a01b0316331480610f695750600a546001600160a01b031633145b610fac5760405162461bcd60e51b81526020600482015260146024820152731cd4995b0e881b9bdd08185d5d1a1bdc9a5e995960621b60448201526064016108db565b600a546001600160a01b03828116911614156110045760405162461bcd60e51b81526020600482015260176024820152767352656c3a206e6f7468696e6720746f2075706461746560481b60448201526064016108db565b600a80546001600160a01b0319166001600160a01b0383169081179091556040519081527f8961078521e826adb5caac59fa1f47e24f2059266ab5fe7c7fbf9b2ccd5a21e3906020015b60405180910390a150565b60004382106110aa5760405162461bcd60e51b815260206004820152601f60248201527f4552433230566f7465733a20626c6f636b206e6f7420796574206d696e65640060448201526064016108db565b610a23600883611d46565b6009546001600160a01b031633146110df5760405162461bcd60e51b81526004016108db906131b7565b80600b54141561112b5760405162461bcd60e51b81526020600482015260176024820152767352656c3a206e6f7468696e6720746f2075706461746560481b60448201526064016108db565b600b8190556040518181527fe8bf8dfb4abe1420b183a0e83ced724064b765215e282a7a58dff3c1fef5e3f19060200161104e565b6060600480546107b49061323d565b6001600160a01b0381166000908152600e602090815260408083205491839052822054610a239190613226565b6001600160a01b0381166000908152600760205260408120548015611210576001600160a01b03831660009081526007602052604090206111de600183613226565b815481106111ee576111ee61329e565b60009182526020909120015464010000000090046001600160e01b0316611213565b60005b6001600160e01b03169392505050565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156112a55760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016108db565b6112b233858584036118ad565b5060019392505050565b60006108443384846119d1565b6009546001600160a01b031633146112f35760405162461bcd60e51b81526004016108db906131b7565b6112fe838383611eba565b505050565b834211156113535760405162461bcd60e51b815260206004820152601d60248201527f4552433230566f7465733a207369676e6174757265206578706972656400000060448201526064016108db565b604080517fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf60208201526001600160a01b0388169181019190915260608101869052608081018590526000906113cd906113c59060a0016040516020818303038152906040528051906020012061216e565b85858561217b565b90506113d8816121a3565b86146114265760405162461bcd60e51b815260206004820152601960248201527f4552433230566f7465733a20696e76616c6964206e6f6e63650000000000000060448201526064016108db565b610d078188611e03565b834211156114805760405162461bcd60e51b815260206004820152601d60248201527f45524332305065726d69743a206578706972656420646561646c696e6500000060448201526064016108db565b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98888886114af8c6121a3565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e001604051602081830303815290604052805190602001209050600061150a8261216e565b9050600061151a8287878761217b565b9050896001600160a01b0316816001600160a01b03161461157d5760405162461bcd60e51b815260206004820152601e60248201527f45524332305065726d69743a20696e76616c6964207369676e6174757265000060448201526064016108db565b6115888a8a8a6118ad565b50505050505050505050565b6115b860405180606001604052806000815260200160008152602001600081525090565b506001600160a01b03166000908152600f6020908152604091829020825160608101845281548152600182015492810192909252600201549181019190915290565b336000908152600f60205260408082206001600160a01b0384168352908220909161162483611d33565b905061163083836121cb565b61163a84826112bc565b50336001600160a01b03166000805160206132cb8339815191523385604051611664929190613134565b60405180910390a2836001600160a01b03166000805160206132cb8339815191523384604051611695929190613134565b60405180910390a250505050565b6116ad33826122bd565b60405163a9059cbb60e01b8152336004820152602481018290527f000000000000000000000000b6c4267c4877bb0d6b1685cfd85b0fbe82f105ec6001600160a01b03169063a9059cbb90604401602060405180830381600087803b15801561171557600080fd5b505af1158015611729573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061174d919061301c565b6109ff5760405162461bcd60e51b81526020600482015260156024820152741cd4995b0e881d1c985b9cd9995c8819985a5b1959605a1b60448201526064016108db565b60408051808201909152600080825260208201526001600160a01b0383166000908152600760205260409020805463ffffffff84169081106117d5576117d561329e565b60009182526020918290206040805180820190915291015463ffffffff8116825264010000000090046001600160e01b0316918101919091529392505050565b6009546001600160a01b0316331461183f5760405162461bcd60e51b81526004016108db906131b7565b6001600160a01b0381166118a45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108db565b6109ff8161211c565b6001600160a01b03831661190f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016108db565b6001600160a01b0382166119705760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016108db565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316611a355760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016108db565b6001600160a01b038216611a975760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016108db565b611aa28383836122d5565b6001600160a01b03831660009081526020819052604090205481811015611b1a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016108db565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611b519084906131ec565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611b9d91815260200190565b60405180910390a3611bb084848461240c565b50505050565b60007f0000000000000000000000000000000000000000000000000000000000000001461415611c0557507f76c68a45a520a99868be993b393b9b18e912adac35f3d5cf037b8ed47f8ff75490565b50604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6020808301919091527ff88ac913e77a085a61073b876034e1e57d88e375d5cc8ad27e53bca5d24edc71828401527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608301524660808301523060a0808401919091528351808403909101815260c0909201909252805191012090565b611cb3828261243e565b6002546001600160e01b031015611d255760405162461bcd60e51b815260206004820152603060248201527f4552433230566f7465733a20746f74616c20737570706c79207269736b73206f60448201526f766572666c6f77696e6720766f74657360801b60648201526084016108db565b611bb0600861253583612541565b60018101548154600091610a23916131ec565b8154600090815b81811015611daa576000611d6182846126ba565b905084868281548110611d7657611d7661329e565b60009182526020909120015463ffffffff161115611d9657809250611da4565b611da18160016131ec565b91505b50611d4d565b8115611dee5784611dbc600184613226565b81548110611dcc57611dcc61329e565b60009182526020909120015464010000000090046001600160e01b0316611df1565b60005b6001600160e01b031695945050505050565b6001600160a01b038281166000818152600660208181526040808420805485845282862054949093528787166001600160a01b03198416811790915590519190951694919391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a4611bb08284836126d5565b818355611e8981426131ec565b8360010181905550505050565b6000806000611ea58585612803565b91509150611eb281612873565b509392505050565b6001600160a01b0383166000908152600f6020526040908190209051631992dfb560e21b81526004810182905260248101849052604481018390527339181a4b8337893b69658a21572f40ca975bdd9a9063664b7ed49060640160006040518083038186803b158015611f2c57600080fd5b505af4158015611f40573d6000803e3d6000fd5b5050505060008284611f5291906131ec565b6040516370a0823160e01b81523060048201529091507f000000000000000000000000b6c4267c4877bb0d6b1685cfd85b0fbe82f105ec6001600160a01b0316906370a082319060240160206040518083038186803b158015611fb457600080fd5b505afa158015611fc8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fec9190613057565b81611ff660025490565b61200091906131ec565b11156120585760405162461bcd60e51b815260206004820152602160248201527f7352656c3a204e6f7420656e6f756768742052454c20696e20636f6e747261636044820152601d60fa1b60648201526084016108db565b6120628582611ca9565b80600c600082825461207491906131ec565b92505081905550846001600160a01b03166000805160206132cb83398151915233846040516120a4929190613134565b60405180910390a25050505050565b600063ffffffff8211156121185760405162461bcd60e51b815260206004820152602660248201527f53616665436173743a2076616c756520646f65736e27742066697420696e203360448201526532206269747360d01b60648201526084016108db565b5090565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000610a23610c2f611bb6565b600080600061218c87878787612a2e565b9150915061219981612873565b5095945050505050565b6001600160a01b03811660009081526005602052604090208054600181018255905b50919050565b600182015482541761221f5760405162461bcd60e51b815260206004820152601a60248201527f7352656c553a206e6f7468696e6720746f207472616e7366657200000000000060448201526064016108db565b6001810154815417156122935760405162461bcd60e51b815260206004820152603660248201527f7352656c553a2063616e6e6f74207472616e7366657220746f206163636f756e60448201527574207769746820756e76657374656420746f6b656e7360501b60648201526084016108db565b81548155600180830180549183019190915560028084018054919093015560009283905582905555565b6122c78282612b1b565b611bb06008612c7c83612541565b6001600160a01b03831615806122f357506001600160a01b03831630145b156122fd57505050565b6001600160a01b0383166000908152600f6020526040812061231e90611d33565b6001600160a01b0385166000908152602081905260409020546123419190613226565b9050808211156123a55760405162461bcd60e51b815260206004820152602960248201527f7352656c3a20796f752063616e6e6f74207472616e7366657220756e76657374604482015268656420746f6b656e7360b81b60648201526084016108db565b6001600160a01b0384166000908152600e602052604090206123c78184612c88565b6040805182548152600183015460208201526001600160a01b038716917f53a06858e4b0bb751491f078084a1a381e3fb6d6e9dd983c266e2d68e33bd79a91016120a4565b6001600160a01b038381166000908152600660205260408082205485841683529120546112fe929182169116836126d5565b6001600160a01b0382166124945760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016108db565b6124a0600083836122d5565b80600260008282546124b291906131ec565b90915550506001600160a01b038216600090815260208190526040812080548392906124df9084906131ec565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a36125316000838361240c565b5050565b6000610ad882846131ec565b82546000908190801561258c578561255a600183613226565b8154811061256a5761256a61329e565b60009182526020909120015464010000000090046001600160e01b031661258f565b60005b6001600160e01b031692506125a883858763ffffffff16565b91506000811180156125e6575043866125c2600184613226565b815481106125d2576125d261329e565b60009182526020909120015463ffffffff16145b15612646576125f482612d6e565b86612600600184613226565b815481106126105761261061329e565b9060005260206000200160000160046101000a8154816001600160e01b0302191690836001600160e01b031602179055506126b1565b85604051806040016040528061265b436120b3565b63ffffffff16815260200161266f85612d6e565b6001600160e01b0390811690915282546001810184556000938452602093849020835194909301519091166401000000000263ffffffff909316929092179101555b50935093915050565b60006126c96002848418613204565b610ad8908484166131ec565b816001600160a01b0316836001600160a01b0316141580156126f75750600081115b156112fe576001600160a01b03831615612785576001600160a01b0383166000908152600760205260408120819061273290612c7c85612541565b91509150846001600160a01b03167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724838360405161277a929190918252602082015260400190565b60405180910390a250505b6001600160a01b038216156112fe576001600160a01b038216600090815260076020526040812081906127bb9061253585612541565b91509150836001600160a01b03167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a72483836040516120a4929190918252602082015260400190565b60008082516041141561283a5760208301516040840151606085015160001a61282e87828585612a2e565b9450945050505061286c565b8251604014156128645760208301516040840151612859868383612dd7565b93509350505061286c565b506000905060025b9250929050565b600081600481111561288757612887613288565b14156128905750565b60018160048111156128a4576128a4613288565b14156128f25760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016108db565b600281600481111561290657612906613288565b14156129545760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016108db565b600381600481111561296857612968613288565b14156129c15760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016108db565b60048160048111156129d5576129d5613288565b14156109ff5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b60648201526084016108db565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115612a655750600090506003612b12565b8460ff16601b14158015612a7d57508460ff16601c14155b15612a8e5750600090506004612b12565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612ae2573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116612b0b57600060019250925050612b12565b9150600090505b94509492505050565b6001600160a01b038216612b7b5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016108db565b612b87826000836122d5565b6001600160a01b03821660009081526020819052604090205481811015612bfb5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016108db565b6001600160a01b0383166000908152602081905260408120838303905560028054849290612c2a908490613226565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a36112fe8360008461240c565b6000610ad88284613226565b4282600101541115612ce75760405162461bcd60e51b815260206004820152602260248201527f7352656c553a20746f6b656e7320617265206e6f7420756e6c6f636b65642079604482015261195d60f21b60648201526084016108db565b8154811115612d515760405162461bcd60e51b815260206004820152603060248201527f7352656c553a20746f6b656e732073686f756c6420626520756e6c6f636b656460448201526f103132b337b932903a3930b739b332b960811b60648201526084016108db565b80826000016000828254612d659190613226565b90915550505050565b60006001600160e01b038211156121185760405162461bcd60e51b815260206004820152602760248201527f53616665436173743a2076616c756520646f65736e27742066697420696e20326044820152663234206269747360c81b60648201526084016108db565b6000806001600160ff1b03831660ff84901c601b01612df887828885612a2e565b935093505050935093915050565b80356001600160a01b0381168114612e1d57600080fd5b919050565b803560ff81168114612e1d57600080fd5b600060208284031215612e4557600080fd5b610ad882612e06565b60008060408385031215612e6157600080fd5b612e6a83612e06565b9150612e7860208401612e06565b90509250929050565b600080600060608486031215612e9657600080fd5b612e9f84612e06565b9250612ead60208501612e06565b9150604084013590509250925092565b600080600080600080600060e0888a031215612ed857600080fd5b612ee188612e06565b9650612eef60208901612e06565b95506040880135945060608801359350612f0b60808901612e22565b925060a0880135915060c0880135905092959891949750929550565b60008060408385031215612f3a57600080fd5b612f4383612e06565b946020939093013593505050565b600080600060608486031215612f6657600080fd5b612f6f84612e06565b95602085013595506040909401359392505050565b60008060008060008060c08789031215612f9d57600080fd5b612fa687612e06565b95506020870135945060408701359350612fc260608801612e22565b92506080870135915060a087013590509295509295509295565b60008060408385031215612fef57600080fd5b612ff883612e06565b9150602083013563ffffffff8116811461301157600080fd5b809150509250929050565b60006020828403121561302e57600080fd5b81518015158114610ad857600080fd5b60006020828403121561305057600080fd5b5035919050565b60006020828403121561306957600080fd5b5051919050565b60008060006060848603121561308557600080fd5b8335925060208401359150604084013567ffffffffffffffff808211156130ab57600080fd5b818601915086601f8301126130bf57600080fd5b8135818111156130d1576130d16132b4565b604051601f8201601f19908116603f011681019083821181831017156130f9576130f96132b4565b8160405282815289602084870101111561311257600080fd5b8260208601602083013760006020848301015280955050505050509250925092565b6001600160a01b03929092168252805460208301526001810154604083015260020154606082015260800190565b600060208083528351808285015260005b8181101561318f57858101830151858201604001528201613173565b818111156131a1576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156131ff576131ff613272565b500190565b60008261322157634e487b7160e01b600052601260045260246000fd5b500490565b60008282101561323857613238613272565b500390565b600181811c9082168061325157607f821691505b602082108114156121c557634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fdfe52cd33bfcaef1b1998163985f60162407a7ba572f611529d9730d1f7c3825176a26469706673582212209b85661760c2818a8d23a7d886ba658114508266d04e7634fe764d7f68ce279864736f6c63430008060033

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

000000000000000000000000b6c4267c4877bb0d6b1685cfd85b0fbe82f105ec000000000000000000000000649d39c228b4708473220cf2a5e19f82bc35fb5100000000000000000000000000000000000000000000000000000000613d7b400000000000000000000000000000000000000000000000000000000068c39ac0000000000000000000000000000000000000000000000000000000007f55f940

-----Decoded View---------------
Arg [0] : _r3l (address): 0xb6c4267C4877BB0D6b1685Cfd85b0FBe82F105ec
Arg [1] : _vestAdmin (address): 0x649d39c228B4708473220cF2A5e19F82Bc35FB51
Arg [2] : _vestBegin (uint256): 1631419200
Arg [3] : _vestShort (uint256): 1757649600
Arg [4] : _vestLong (uint256): 2136340800

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 000000000000000000000000b6c4267c4877bb0d6b1685cfd85b0fbe82f105ec
Arg [1] : 000000000000000000000000649d39c228b4708473220cf2a5e19f82bc35fb51
Arg [2] : 00000000000000000000000000000000000000000000000000000000613d7b40
Arg [3] : 0000000000000000000000000000000000000000000000000000000068c39ac0
Arg [4] : 000000000000000000000000000000000000000000000000000000007f55f940


Deployed Bytecode Sourcemap

62559:7237:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8810:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10977:169;;;;;;:::i;:::-;;:::i;:::-;;;6831:14:1;;6824:22;6806:41;;6794:2;6779:18;10977:169:0;6761:92:1;62674:27:0;;;;;;;;-1:-1:-1;;;;;5509:32:1;;;5491:51;;5479:2;5464:18;62674:27:0;5446:102:1;9930:108:0;10018:12;;9930:108;;;7004:25:1;;;6992:2;6977:18;9930:108:0;6959:76:1;63119:28:0;;;;;;11628:492;;;;;;:::i;:::-;;:::i;9772:93::-;;;9855:2;26371:36:1;;26359:2;26344:18;9772:93:0;26326:87:1;63402:108:0;;63444:66;63402:108;;36000:115;;;:::i;65217:189::-;;;;;;:::i;:::-;;:::i;:::-;;69534:127;;;;;;:::i;:::-;;:::i;12529:215::-;;;;;;:::i;:::-;;:::i;48961:251::-;;;;;;:::i;:::-;;:::i;62819:34::-;;;;;;65002:170;;;:::i;48361:119::-;;;;;;:::i;:::-;-1:-1:-1;;;;;48453:19:0;;;48426:7;48453:19;;;:10;:19;;;;;;;;48361:119;51400:112;;;;;;:::i;:::-;;:::i;64779:196::-;;;;;;:::i;:::-;;:::i;66064:745::-;;;;;;:::i;:::-;;:::i;48117:151::-;;;;;;:::i;:::-;;:::i;:::-;;;26206:10:1;26194:23;;;26176:42;;26164:2;26149:18;48117:151:0;26131:93:1;10101:127:0;;;;;;:::i;:::-;-1:-1:-1;;;;;10202:18:0;10175:7;10202:18;;;;;;;;;;;;10101:127;67532:395;;;:::i;57202:94::-;;;:::i;63054:33::-;;;;;69396:132;;;;;;:::i;:::-;-1:-1:-1;;;;;69495:16:0;69472:7;69495:16;;;:7;:16;;;;;:27;;;;69396:132;35742:128;;;;;;:::i;:::-;;:::i;68659:289::-;;;;;;:::i;:::-;;:::i;56551:87::-;56624:6;;-1:-1:-1;;;;;56624:6:0;56551:87;;49501:242;;;;;;:::i;:::-;;:::i;68419:234::-;;;;;;:::i;:::-;;:::i;9029:104::-;;;:::i;69105:149::-;;;;;;:::i;:::-;;:::i;48564:195::-;;;;;;:::i;:::-;;:::i;62989:34::-;;;;;13247:413;;;;;;:::i;:::-;;:::i;10441:175::-;;;;;;:::i;:::-;;:::i;65791:197::-;;;;;;:::i;:::-;;:::i;51594:589::-;;;;;;:::i;:::-;;:::i;62726:24::-;;;;;-1:-1:-1;;;;;62726:24:0;;;69260:130;;;;;;:::i;:::-;-1:-1:-1;;;;;69357:16:0;69334:7;69357:16;;;:7;:16;;;;;:27;;69260:130;35031:645;;;;;;:::i;:::-;;:::i;10679:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;10795:18:0;;;10768:7;10795:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10679:151;62918:34;;;;;69667:126;;;;;;:::i;:::-;;:::i;:::-;;;;24664:13:1;;24646:32;;24734:4;24722:17;;;24716:24;24694:20;;;24687:54;24785:17;;;24779:24;24757:20;;;24750:54;24634:2;24619:18;69667:126:0;24601:209:1;67985:399:0;;;;;;:::i;:::-;;:::i;68979:120::-;;;;;;:::i;:::-;-1:-1:-1;;;;;69075:18:0;69052:7;69075:18;;;:9;:18;;;;;;;68979:120;65448:173;;;;;;:::i;:::-;;:::i;47887:150::-;;;;;;:::i;:::-;;:::i;:::-;;;;24028:13:1;;24043:10;24024:30;24006:49;;24115:4;24103:17;;;24097:24;-1:-1:-1;;;;;24093:50:1;24071:20;;;24064:80;;;;23979:18;47887:150:0;23961:189:1;57451:192:0;;;;;;:::i;:::-;;:::i;8810:100::-;8864:13;8897:5;8890:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8810:100;:::o;10977:169::-;11060:4;11077:39;6599:10;11100:7;11109:6;11077:8;:39::i;:::-;-1:-1:-1;11134:4:0;10977:169;;;;:::o;11628:492::-;11768:4;11785:36;11795:6;11803:9;11814:6;11785:9;:36::i;:::-;-1:-1:-1;;;;;11861:19:0;;11834:24;11861:19;;;:11;:19;;;;;;;;6599:10;11861:33;;;;;;;;11913:26;;;;11905:79;;;;-1:-1:-1;;;11905:79:0;;18494:2:1;11905:79:0;;;18476:21:1;18533:2;18513:18;;;18506:30;18572:34;18552:18;;;18545:62;-1:-1:-1;;;18623:18:1;;;18616:38;18671:19;;11905:79:0;;;;;;;;;12020:57;12029:6;6599:10;12070:6;12051:16;:25;12020:8;:57::i;:::-;-1:-1:-1;12108:4:0;;11628:492;-1:-1:-1;;;;11628:492:0:o;36000:115::-;36060:7;36087:20;:18;:20::i;:::-;36080:27;;36000:115;:::o;65217:189::-;65291:51;;-1:-1:-1;;;65291:51:0;;65308:10;65291:51;;;5793:34:1;65328:4:0;5843:18:1;;;5836:43;5895:18;;;5888:34;;;65291:3:0;-1:-1:-1;;;;;65291:16:0;;;;5728:18:1;;65291:51:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;65283:85;;;;-1:-1:-1;;;65283:85:0;;11232:2:1;65283:85:0;;;11214:21:1;11271:2;11251:18;;;11244:30;-1:-1:-1;;;11290:18:1;;;11283:51;11351:18;;65283:85:0;11204:171:1;65283:85:0;65375:25;65381:10;65393:6;65375:5;:25::i;:::-;65217:189;:::o;69534:127::-;-1:-1:-1;;;;;69631:13:0;;69608:7;69631:13;;;:4;:13;;;;;:24;;:22;:24::i;:::-;69624:31;69534:127;-1:-1:-1;;69534:127:0:o;12529:215::-;6599:10;12617:4;12666:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12666:34:0;;;;;;;;;;12617:4;;12634:80;;12657:7;;12666:47;;12703:10;;12666:47;:::i;:::-;12634:8;:80::i;48961:251::-;49042:7;49084:12;49070:11;:26;49062:70;;;;-1:-1:-1;;;49062:70:0;;11582:2:1;49062:70:0;;;11564:21:1;11621:2;11601:18;;;11594:30;11660:33;11640:18;;;11633:61;11711:18;;49062:70:0;11554:181:1;49062:70:0;-1:-1:-1;;;;;49169:21:0;;;;;;:12;:21;;;;;49150:54;;49192:11;49150:18;:54::i;:::-;49143:61;48961:251;-1:-1:-1;;;48961:251:0:o;65002:170::-;65091:10;65055:25;65083:19;;;:7;:19;;;;;65109:16;65083:19;58810:1;58792:19;;;58818:15;;;;:19;58736:107;65109:16;65137:29;;;24368:13:1;;24350:32;;24438:4;24426:17;;24420:24;24413:4;24398:20;;24391:54;65149:10:0;;65137:29;;24323:18:1;65137:29:0;;;;;;;65048:124;65002:170::o;51400:112::-;51470:34;6599:10;51494:9;51470;:34::i;64779:196::-;64879:10;64843:25;64871:19;;;:7;:19;;;;;64917:10;;64897:31;;64871:19;;64909:6;;64897:11;:31::i;:::-;64940:29;;;24368:13:1;;24350:32;;24438:4;24426:17;;24420:24;24413:4;24398:20;;24391:54;64952:10:0;;64940:29;;24323:18:1;64940:29:0;;;;;;;;64836:139;64779:196;:::o;66064:745::-;66225:10;66199:13;66215:21;;;:9;:21;;;;;;;;;66284:68;;63444:66;66284:68;;;8317:25:1;;;;8358:18;;;8351:60;;;;8427:18;;;8420:34;;;8470:18;;;8463:34;;;8513:19;;;8506:35;;;8289:19;;66284:68:0;;;;;;;;;;;;66266:93;;;;;;66245:114;;66449:14;66466:55;66488:20;:18;:20::i;:::-;66510:10;27710:57;;-1:-1:-1;;;27710:57:0;;;5206:27:1;5249:11;;;5242:27;;;5285:12;;;5278:28;;;27673:7:0;;5322:12:1;;27710:57:0;;;;;;;;;;;;27700:68;;;;;;27693:75;;27580:196;;;;;66466:55;66449:72;;66528:14;66545:27;66559:6;66567:4;66545:13;:27::i;:::-;66657:9;;66528:44;;-1:-1:-1;;;;;;66647:19:0;;;66657:9;;66647:19;66639:58;;;;-1:-1:-1;;;66639:58:0;;22475:2:1;66639:58:0;;;22457:21:1;22514:2;22494:18;;;22487:30;22553:28;22533:18;;;22526:56;22599:18;;66639:58:0;22447:176:1;66639:58:0;66730:9;:5;66738:1;66730:9;:::i;:::-;66716:10;66706:21;;;;:9;:21;;;;;:33;;;;66746:57;;66777:12;66791:11;66746:18;:57::i;:::-;66192:617;;;;66064:745;;;:::o;48117:151::-;-1:-1:-1;;;;;48231:21:0;;48187:6;48231:21;;;:12;:21;;;;;:28;48213:47;;:17;:47::i;67532:395::-;67624:10;67590:26;67619:16;;;:4;:16;;;;;;67659:60;;-1:-1:-1;;;67659:60:0;;;;;25432:25:1;;;67688:9:0;25473:18:1;;;25466:34;67699:8:0;25516:18:1;;;25509:34;67709:9:0;25559:18:1;;;25552:34;67619:16:0;;67590:26;67659:28;;;;25404:19:1;;67659:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;67642:77;;67743:1;67734:6;:10;67726:56;;;;-1:-1:-1;;;67726:56:0;;16573:2:1;67726:56:0;;;16555:21:1;16612:2;16592:18;;;16585:30;16651:34;16631:18;;;16624:62;-1:-1:-1;;;16702:18:1;;;16695:31;16743:19;;67726:56:0;16545:223:1;67726:56:0;67806:6;67789:13;;:23;;;;;;;:::i;:::-;;;;-1:-1:-1;;67854:10:0;;67827;67819:19;;;;:7;:19;;;;;:46;;67846:6;;67819:26;:46::i;:::-;67889:10;-1:-1:-1;;;;;67877:44:0;-1:-1:-1;;;;;;;;;;;67901:10:0;67913:7;67877:44;;;;;;;:::i;57202:94::-;56624:6;;-1:-1:-1;;;;;56624:6:0;6599:10;56771:23;56763:68;;;;-1:-1:-1;;;56763:68:0;;;;;;;:::i;:::-;57267:21:::1;57285:1;57267:9;:21::i;:::-;57202:94::o:0;35742:128::-;-1:-1:-1;;;;;35838:14:0;;35811:7;35838:14;;;:7;:14;;;;;33144;35838:24;33052:114;68659:289;56624:6;;-1:-1:-1;;;;;56624:6:0;68739:10;:21;;:48;;-1:-1:-1;68778:9:0;;-1:-1:-1;;;;;68778:9:0;68764:10;:23;68739:48;68731:81;;;;-1:-1:-1;;;68731:81:0;;19681:2:1;68731:81:0;;;19663:21:1;19720:2;19700:18;;;19693:30;-1:-1:-1;;;19739:18:1;;;19732:50;19799:18;;68731:81:0;19653:170:1;68731:81:0;68827:9;;-1:-1:-1;;;;;68827:21:0;;;:9;;:21;;68819:57;;;;-1:-1:-1;;;68819:57:0;;16221:2:1;68819:57:0;;;16203:21:1;16260:2;16240:18;;;16233:30;-1:-1:-1;;;16279:18:1;;;16272:53;16342:18;;68819:57:0;16193:173:1;68819:57:0;68883:9;:20;;-1:-1:-1;;;;;;68883:20:0;-1:-1:-1;;;;;68883:20:0;;;;;;;;68915:27;;5491:51:1;;;68915:27:0;;5479:2:1;5464:18;68915:27:0;;;;;;;;68659:289;:::o;49501:242::-;49571:7;49613:12;49599:11;:26;49591:70;;;;-1:-1:-1;;;49591:70:0;;11582:2:1;49591:70:0;;;11564:21:1;11621:2;11601:18;;;11594:30;11660:33;11640:18;;;11633:61;11711:18;;49591:70:0;11554:181:1;49591:70:0;49679:56;49698:23;49723:11;49679:18;:56::i;68419:234::-;56624:6;;-1:-1:-1;;;;;56624:6:0;6599:10;56771:23;56763:68;;;;-1:-1:-1;;;56763:68:0;;;;;;;:::i;:::-;68532:13:::1;68518:10;;:27;;68510:63;;;::::0;-1:-1:-1;;;68510:63:0;;16221:2:1;68510:63:0::1;::::0;::::1;16203:21:1::0;16260:2;16240:18;;;16233:30;-1:-1:-1;;;16279:18:1;;;16272:53;16342:18;;68510:63:0::1;16193:173:1::0;68510:63:0::1;68580:10;:26:::0;;;68618:29:::1;::::0;7004:25:1;;;68618:29:0::1;::::0;6992:2:1;6977:18;68618:29:0::1;6959:76:1::0;9029:104:0;9085:13;9118:7;9111:14;;;;;:::i;69105:149::-;-1:-1:-1;;;;;69221:16:0;;69177:7;69221:16;;;:7;:16;;;;;;;;:27;10202:18;;;;;;;69200:48;;;;:::i;48564:195::-;-1:-1:-1;;;;;48654:21:0;;48620:7;48654:21;;;:12;:21;;;;;:28;48700:8;;:51;;-1:-1:-1;;;;;48715:21:0;;;;;;:12;:21;;;;;48737:7;48743:1;48737:3;:7;:::i;:::-;48715:30;;;;;;;;:::i;:::-;;;;;;;;;;:36;;;;-1:-1:-1;;;;;48715:36:0;48700:51;;;48711:1;48700:51;-1:-1:-1;;;;;48693:58:0;;48564:195;-1:-1:-1;;;48564:195:0:o;13247:413::-;6599:10;13340:4;13384:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13384:34:0;;;;;;;;;;13437:35;;;;13429:85;;;;-1:-1:-1;;;13429:85:0;;23240:2:1;13429:85:0;;;23222:21:1;23279:2;23259:18;;;23252:30;23318:34;23298:18;;;23291:62;-1:-1:-1;;;23369:18:1;;;23362:35;23414:19;;13429:85:0;23212:227:1;13429:85:0;13550:67;6599:10;13573:7;13601:15;13582:16;:34;13550:8;:67::i;:::-;-1:-1:-1;13648:4:0;;13247:413;-1:-1:-1;;;13247:413:0:o;10441:175::-;10527:4;10544:42;6599:10;10568:9;10579:6;10544:9;:42::i;65791:197::-;56624:6;;-1:-1:-1;;;;;56624:6:0;6599:10;56771:23;56763:68;;;;-1:-1:-1;;;56763:68:0;;;;;;;:::i;:::-;65934:48:::1;65953:7;65962:9;65973:8;65934:18;:48::i;:::-;65791:197:::0;;;:::o;51594:589::-;51812:6;51793:15;:25;;51785:67;;;;-1:-1:-1;;;51785:67:0;;11942:2:1;51785:67:0;;;11924:21:1;11981:2;11961:18;;;11954:30;12020:31;12000:18;;;11993:59;12069:18;;51785:67:0;11914:179:1;51785:67:0;51935:58;;;47138:71;51935:58;;;7867:25:1;-1:-1:-1;;;;;7928:32:1;;7908:18;;;7901:60;;;;7977:18;;;7970:34;;;8020:18;;;8013:34;;;51863:14:0;;51880:174;;51908:87;;7839:19:1;;51935:58:0;;;;;;;;;;;;51925:69;;;;;;51908:16;:87::i;:::-;52010:1;52026;52042;51880:13;:174::i;:::-;51863:191;;52082:17;52092:6;52082:9;:17::i;:::-;52073:5;:26;52065:64;;;;-1:-1:-1;;;52065:64:0;;13466:2:1;52065:64:0;;;13448:21:1;13505:2;13485:18;;;13478:30;13544:27;13524:18;;;13517:55;13589:18;;52065:64:0;13438:175:1;52065:64:0;52147:28;52157:6;52165:9;52147;:28::i;35031:645::-;35275:8;35256:15;:27;;35248:69;;;;-1:-1:-1;;;35248:69:0;;15053:2:1;35248:69:0;;;15035:21:1;15092:2;15072:18;;;15065:30;15131:31;15111:18;;;15104:59;15180:18;;35248:69:0;15025:179:1;35248:69:0;35330:18;35372:16;35390:5;35397:7;35406:5;35413:16;35423:5;35413:9;:16::i;:::-;35361:79;;;;;;7327:25:1;;;;-1:-1:-1;;;;;7426:15:1;;;7406:18;;;7399:43;7478:15;;;;7458:18;;;7451:43;7510:18;;;7503:34;7553:19;;;7546:35;7597:19;;;7590:35;;;7299:19;;35361:79:0;;;;;;;;;;;;35351:90;;;;;;35330:111;;35454:12;35469:28;35486:10;35469:16;:28::i;:::-;35454:43;;35510:14;35527:28;35541:4;35547:1;35550;35553;35527:13;:28::i;:::-;35510:45;;35584:5;-1:-1:-1;;;;;35574:15:0;:6;-1:-1:-1;;;;;35574:15:0;;35566:58;;;;-1:-1:-1;;;35566:58:0;;18135:2:1;35566:58:0;;;18117:21:1;18174:2;18154:18;;;18147:30;18213:32;18193:18;;;18186:60;18263:18;;35566:58:0;18107:180:1;35566:58:0;35637:31;35646:5;35653:7;35662:5;35637:8;:31::i;:::-;35237:439;;;35031:645;;;;;;;:::o;69667:126::-;69741:17;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;69741:17:0;-1:-1:-1;;;;;;69774:13:0;;;;;:4;:13;;;;;;;;;69767:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69667:126::o;67985:399::-;68098:10;68061:29;68093:16;;;:4;:16;;;;;;-1:-1:-1;;;;;68144:8:0;;;;;;;68093:16;;68176:21;68093:16;68176:19;:21::i;:::-;68159:38;-1:-1:-1;68204:41:0;:10;68238:6;68204:33;:41::i;:::-;68252:20;68261:2;68265:6;68252:8;:20::i;:::-;;68296:10;-1:-1:-1;;;;;68284:47:0;-1:-1:-1;;;;;;;;;;;68308:10:0;68320;68284:47;;;;;;;:::i;:::-;;;;;;;;68355:2;-1:-1:-1;;;;;68343:35:0;-1:-1:-1;;;;;;;;;;;68359:10:0;68371:6;68343:35;;;;;;;:::i;:::-;;;;;;;;68054:330;;;67985:399;:::o;65448:173::-;65517:25;65523:10;65535:6;65517:5;:25::i;:::-;65557:32;;-1:-1:-1;;;65557:32:0;;65570:10;65557:32;;;6561:51:1;6628:18;;;6621:34;;;65557:3:0;-1:-1:-1;;;;;65557:12:0;;;;6534:18:1;;65557:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;65549:66;;;;-1:-1:-1;;;65549:66:0;;11232:2:1;65549:66:0;;;11214:21:1;11271:2;11251:18;;;11244:30;-1:-1:-1;;;11290:18:1;;;11283:51;11351:18;;65549:66:0;11204:171:1;47887:150:0;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;48003:21:0;;;;;;:12;:21;;;;;:26;;;;;;;;;;;;:::i;:::-;;;;;;;;;;47996:33;;;;;;;;;48003:26;;47996:33;;;;;;;;;-1:-1:-1;;;;;47996:33:0;;;;;;;;;47887:150;-1:-1:-1;;;47887:150:0:o;57451:192::-;56624:6;;-1:-1:-1;;;;;56624:6:0;6599:10;56771:23;56763:68;;;;-1:-1:-1;;;56763:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;57540:22:0;::::1;57532:73;;;::::0;-1:-1:-1;;;57532:73:0;;13820:2:1;57532:73:0::1;::::0;::::1;13802:21:1::0;13859:2;13839:18;;;13832:30;13898:34;13878:18;;;13871:62;-1:-1:-1;;;13949:18:1;;;13942:36;13995:19;;57532:73:0::1;13792:228:1::0;57532:73:0::1;57616:19;57626:8;57616:9;:19::i;16931:380::-:0;-1:-1:-1;;;;;17067:19:0;;17059:68;;;;-1:-1:-1;;;17059:68:0;;21653:2:1;17059:68:0;;;21635:21:1;21692:2;21672:18;;;21665:30;21731:34;21711:18;;;21704:62;-1:-1:-1;;;21782:18:1;;;21775:34;21826:19;;17059:68:0;21625:226:1;17059:68:0;-1:-1:-1;;;;;17146:21:0;;17138:68;;;;-1:-1:-1;;;17138:68:0;;14227:2:1;17138:68:0;;;14209:21:1;14266:2;14246:18;;;14239:30;14305:34;14285:18;;;14278:62;-1:-1:-1;;;14356:18:1;;;14349:32;14398:19;;17138:68:0;14199:224:1;17138:68:0;-1:-1:-1;;;;;17219:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17271:32;;7004:25:1;;;17271:32:0;;6977:18:1;17271:32:0;;;;;;;16931:380;;;:::o;14150:733::-;-1:-1:-1;;;;;14290:20:0;;14282:70;;;;-1:-1:-1;;;14282:70:0;;20840:2:1;14282:70:0;;;20822:21:1;20879:2;20859:18;;;20852:30;20918:34;20898:18;;;20891:62;-1:-1:-1;;;20969:18:1;;;20962:35;21014:19;;14282:70:0;20812:227:1;14282:70:0;-1:-1:-1;;;;;14371:23:0;;14363:71;;;;-1:-1:-1;;;14363:71:0;;10828:2:1;14363:71:0;;;10810:21:1;10867:2;10847:18;;;10840:30;10906:34;10886:18;;;10879:62;-1:-1:-1;;;10957:18:1;;;10950:33;11000:19;;14363:71:0;10800:225:1;14363:71:0;14447:47;14468:6;14476:9;14487:6;14447:20;:47::i;:::-;-1:-1:-1;;;;;14531:17:0;;14507:21;14531:17;;;;;;;;;;;14567:23;;;;14559:74;;;;-1:-1:-1;;;14559:74:0;;15411:2:1;14559:74:0;;;15393:21:1;15450:2;15430:18;;;15423:30;15489:34;15469:18;;;15462:62;-1:-1:-1;;;15540:18:1;;;15533:36;15586:19;;14559:74:0;15383:228:1;14559:74:0;-1:-1:-1;;;;;14669:17:0;;;:9;:17;;;;;;;;;;;14689:22;;;14669:42;;14733:20;;;;;;;;:30;;14705:6;;14669:9;14733:30;;14705:6;;14733:30;:::i;:::-;;;;;;;;14798:9;-1:-1:-1;;;;;14781:35:0;14790:6;-1:-1:-1;;;;;14781:35:0;;14809:6;14781:35;;;;7004:25:1;;6992:2;6977:18;;6959:76;14781:35:0;;;;;;;;14829:46;14849:6;14857:9;14868:6;14829:19;:46::i;:::-;14271:612;14150:733;;;:::o;30861:281::-;30914:7;30955:16;30938:13;:33;30934:201;;;-1:-1:-1;30995:24:0;;30861:281::o;30934:201::-;-1:-1:-1;31331:73:0;;;31081:10;31331:73;;;;8811:25:1;;;;31093:12:0;8852:18:1;;;8845:34;31107:15:0;8895:18:1;;;8888:34;31375:13:0;8938:18:1;;;8931:34;31398:4:0;8981:19:1;;;;8974:61;;;;31331:73:0;;;;;;;;;;8783:19:1;;;;31331:73:0;;;31321:84;;;;;;36000:115::o;52489:290::-;52574:28;52586:7;52595:6;52574:11;:28::i;:::-;10018:12;;-1:-1:-1;;;;;;52621:29:0;52613:90;;;;-1:-1:-1;;;52613:90:0;;18903:2:1;52613:90:0;;;18885:21:1;18942:2;18922:18;;;18915:30;18981:34;18961:18;;;18954:62;-1:-1:-1;;;19032:18:1;;;19025:46;19088:19;;52613:90:0;18875:238:1;52613:90:0;52716:55;52733:23;52758:4;52764:6;52716:16;:55::i;59727:119::-;59827:13;;;;59810:14;;59787:7;;59810:30;;;:::i;49832:1482::-;50965:12;;49931:7;;;51014:236;51027:4;51021:3;:10;51014:236;;;51048:11;51062:23;51075:3;51080:4;51062:12;:23::i;:::-;51048:37;;51127:11;51104:5;51110:3;51104:10;;;;;;;;:::i;:::-;;;;;;;;;;:20;;;:34;51100:139;;;51166:3;51159:10;;51100:139;;;51216:7;:3;51222:1;51216:7;:::i;:::-;51210:13;;51100:139;51033:217;51014:236;;;51269:9;;:37;;51285:5;51291:8;51298:1;51291:4;:8;:::i;:::-;51285:15;;;;;;;;:::i;:::-;;;;;;;;;;:21;;;;-1:-1:-1;;;;;51285:21:0;51269:37;;;51281:1;51269:37;-1:-1:-1;;;;;51262:44:0;;49832:1482;-1:-1:-1;;;;;49832:1482:0:o;53633:388::-;-1:-1:-1;;;;;48453:19:0;;;53718:23;48453:19;;;:10;:19;;;;;;;;;;10202:18;;;;;;;53833:21;;;;:33;;;-1:-1:-1;;;;;;53833:33:0;;;;;;;53884:54;;48453:19;;;;;10202:18;;53833:33;;48453:19;;;53884:54;;53718:23;53884:54;53951:62;53968:15;53985:9;53996:16;53951;:62::i;58223:188::-;58330:24;;;58379:26;58397:8;58379:15;:26;:::i;:::-;58361:4;:15;;:44;;;;58223:188;;;:::o;23112:231::-;23190:7;23211:17;23230:18;23252:27;23263:4;23269:9;23252:10;:27::i;:::-;23210:69;;;;23290:18;23302:5;23290:11;:18::i;:::-;-1:-1:-1;23326:9:0;23112:231;-1:-1:-1;;;23112:231:0:o;66948:547::-;-1:-1:-1;;;;;67095:13:0;;67066:26;67095:13;;;:4;:13;;;;;;;67115:46;;-1:-1:-1;;;67115:46:0;;;;;25048:25:1;;;25089:18;;;25082:34;;;25132:18;;;25125:34;;;67115:25:0;;;;25021:18:1;;67115:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67168:25;67208:8;67196:9;:20;;;;:::i;:::-;67276:28;;-1:-1:-1;;;67276:28:0;;67298:4;67276:28;;;5491:51:1;67168:48:0;;-1:-1:-1;67276:3:0;-1:-1:-1;;;;;67276:13:0;;;;5464:18:1;;67276:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;67255:17;67239:13;10018:12;;;9930:108;67239:13;:33;;;;:::i;:::-;:65;;67223:132;;;;-1:-1:-1;;;67223:132:0;;17733:2:1;67223:132:0;;;17715:21:1;17772:2;17752:18;;;17745:30;17811:34;17791:18;;;17784:62;-1:-1:-1;;;17862:18:1;;;17855:31;17903:19;;67223:132:0;17705:223:1;67223:132:0;67362:33;67368:7;67377:17;67362:5;:33::i;:::-;67419:17;67402:13;;:34;;;;;;;:::i;:::-;;;;;;;;67460:7;-1:-1:-1;;;;;67448:41:0;-1:-1:-1;;;;;;;;;;;67469:10:0;67481:7;67448:41;;;;;;;:::i;:::-;;;;;;;;67059:436;;66948:547;;;:::o;40810:190::-;40866:6;40902:16;40893:25;;;40885:76;;;;-1:-1:-1;;;40885:76:0;;21246:2:1;40885:76:0;;;21228:21:1;21285:2;21265:18;;;21258:30;21324:34;21304:18;;;21297:62;-1:-1:-1;;;21375:18:1;;;21368:36;21421:19;;40885:76:0;21218:228:1;40885:76:0;-1:-1:-1;40986:5:0;40810:190::o;57651:173::-;57726:6;;;-1:-1:-1;;;;;57743:17:0;;;-1:-1:-1;;;;;;57743:17:0;;;;;;;57776:40;;57726:6;;;57743:17;57726:6;;57776:40;;57707:16;;57776:40;57696:128;57651:173;:::o;32055:167::-;32132:7;32159:55;32181:20;:18;:20::i;26382:279::-;26510:7;26531:17;26550:18;26572:25;26583:4;26589:1;26592;26595;26572:10;:25::i;:::-;26530:67;;;;26608:18;26620:5;26608:11;:18::i;:::-;-1:-1:-1;26644:9:0;26382:279;-1:-1:-1;;;;;26382:279:0:o;36253:207::-;-1:-1:-1;;;;;36374:14:0;;36313:15;36374:14;;;:7;:14;;;;;33144;;33281:1;33263:19;;;;33144:14;36435:17;36330:130;36253:207;;;:::o;58849:530::-;58962:13;;;;58945:14;;:30;58937:74;;;;-1:-1:-1;;;58937:74:0;;16975:2:1;58937:74:0;;;16957:21:1;17014:2;16994:18;;;16987:30;17053:28;17033:18;;;17026:56;17099:18;;58937:74:0;16947:176:1;58937:74:0;59055:15;;;;59036:16;;:34;:39;59020:127;;;;-1:-1:-1;;;59020:127:0;;14630:2:1;59020:127:0;;;14612:21:1;14669:2;14649:18;;;14642:30;14708:34;14688:18;;;14681:62;-1:-1:-1;;;14759:18:1;;;14752:52;14821:19;;59020:127:0;14602:244:1;59020:127:0;59175:14;;59156:33;;59214:13;;;;;;59196:15;;;:31;;;;59254:15;;;;;;59234:17;;;;:35;59175:14;59305:18;;;;59330:17;;;59354:19;58849:530::o;52873:194::-;52958:28;52970:7;52979:6;52958:11;:28::i;:::-;52999:60;53016:23;53041:9;53052:6;52999:16;:60::i;64031:632::-;-1:-1:-1;;;;;64291:18:0;;;;:43;;-1:-1:-1;;;;;;64313:21:0;;64329:4;64313:21;64291:43;64287:56;;;64031:632;;;:::o;64287:56::-;-1:-1:-1;;;;;64393:10:0;;64351:21;64393:10;;;:4;:10;;;;;:21;;:19;:21::i;:::-;-1:-1:-1;;;;;10202:18:0;;10175:7;10202:18;;;;;;;;;;;64375:39;;;;:::i;:::-;64351:63;;64439:13;64429:6;:23;;64421:77;;;;-1:-1:-1;;;64421:77:0;;22830:2:1;64421:77:0;;;22812:21:1;22869:2;22849:18;;;22842:30;22908:34;22888:18;;;22881:62;-1:-1:-1;;;22959:18:1;;;22952:39;23008:19;;64421:77:0;22802:231:1;64421:77:0;-1:-1:-1;;;;;64535:13:0;;64507:25;64535:13;;;:7;:13;;;;;64555:24;64535:13;64572:6;64555:16;:24::i;:::-;64634:23;;;24368:13:1;;24350:32;;24438:4;24426:17;;24420:24;24413:4;24398:20;;24391:54;-1:-1:-1;;;;;64634:23:0;;;;;24323:18:1;64634:23:0;24305:146:1;53207:262:0;-1:-1:-1;;;;;48453:19:0;;;48426:7;48453:19;;;:10;:19;;;;;;;;;;;;;;;53405:56;;48453:19;;;;;53454:6;53405:16;:56::i;15170:399::-;-1:-1:-1;;;;;15254:21:0;;15246:65;;;;-1:-1:-1;;;15246:65:0;;23646:2:1;15246:65:0;;;23628:21:1;23685:2;23665:18;;;23658:30;23724:33;23704:18;;;23697:61;23775:18;;15246:65:0;23618:181:1;15246:65:0;15324:49;15353:1;15357:7;15366:6;15324:20;:49::i;:::-;15402:6;15386:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;15419:18:0;;:9;:18;;;;;;;;;;:28;;15441:6;;15419:9;:28;;15441:6;;15419:28;:::i;:::-;;;;-1:-1:-1;;15463:37:0;;7004:25:1;;;-1:-1:-1;;;;;15463:37:0;;;15480:1;;15463:37;;6992:2:1;6977:18;15463:37:0;;;;;;;15513:48;15541:1;15545:7;15554:6;15513:19;:48::i;:::-;15170:399;;:::o;55333:98::-;55391:7;55418:5;55422:1;55418;:5;:::i;54680:645::-;54917:12;;54854:17;;;;54952:8;;:35;;54967:5;54973:7;54979:1;54973:3;:7;:::i;:::-;54967:14;;;;;;;;:::i;:::-;;;;;;;;;;:20;;;;-1:-1:-1;;;;;54967:20:0;54952:35;;;54963:1;54952:35;-1:-1:-1;;;;;54940:47:0;;;55010:20;55013:9;55024:5;55010:2;:20;;:::i;:::-;54998:32;;55053:1;55047:3;:7;:51;;;;-1:-1:-1;55086:12:0;55058:5;55064:7;55070:1;55064:3;:7;:::i;:::-;55058:14;;;;;;;;:::i;:::-;;;;;;;;;;:24;;;:40;55047:51;55043:275;;;55138:29;55157:9;55138:18;:29::i;:::-;55115:5;55121:7;55127:1;55121:3;:7;:::i;:::-;55115:14;;;;;;;;:::i;:::-;;;;;;;;:20;;;:52;;;;;-1:-1:-1;;;;;55115:52:0;;;;;-1:-1:-1;;;;;55115:52:0;;;;;;55043:275;;;55200:5;55211:94;;;;;;;;55234:31;55252:12;55234:17;:31::i;:::-;55211:94;;;;;;55274:29;55293:9;55274:18;:29::i;:::-;-1:-1:-1;;;;;55211:94:0;;;;;;55200:106;;;;;;;-1:-1:-1;55200:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55043:275;54892:433;54680:645;;;;;;:::o;37132:156::-;37194:7;37269:11;37279:1;37270:5;;;37269:11;:::i;:::-;37259:21;;37260:5;;;37259:21;:::i;54029:643::-;54161:3;-1:-1:-1;;;;;54154:10:0;:3;-1:-1:-1;;;;;54154:10:0;;;:24;;;;;54177:1;54168:6;:10;54154:24;54150:515;;;-1:-1:-1;;;;;54199:17:0;;;54195:224;;-1:-1:-1;;;;;54295:17:0;;54238;54295;;;:12;:17;;;;;54238;;54278:54;;54314:9;54325:6;54278:16;:54::i;:::-;54237:95;;;;54377:3;-1:-1:-1;;;;;54356:47:0;;54382:9;54393;54356:47;;;;;;25953:25:1;;;26009:2;25994:18;;25987:34;25941:2;25926:18;;25908:119;54356:47:0;;;;;;;;54218:201;;54195:224;-1:-1:-1;;;;;54439:17:0;;;54435:219;;-1:-1:-1;;;;;54535:17:0;;54478;54535;;;:12;:17;;;;;54478;;54518:49;;54554:4;54560:6;54518:16;:49::i;:::-;54477:90;;;;54612:3;-1:-1:-1;;;;;54591:47:0;;54617:9;54628;54591:47;;;;;;25953:25:1;;;26009:2;25994:18;;25987:34;25941:2;25926:18;;25908:119;21002:1308:0;21083:7;21092:12;21317:9;:16;21337:2;21317:22;21313:990;;;21613:4;21598:20;;21592:27;21663:4;21648:20;;21642:27;21721:4;21706:20;;21700:27;21356:9;21692:36;21764:25;21775:4;21692:36;21592:27;21642;21764:10;:25::i;:::-;21757:32;;;;;;;;;21313:990;21811:9;:16;21831:2;21811:22;21807:496;;;22086:4;22071:20;;22065:27;22137:4;22122:20;;22116:27;22179:23;22190:4;22065:27;22116;22179:10;:23::i;:::-;22172:30;;;;;;;;21807:496;-1:-1:-1;22251:1:0;;-1:-1:-1;22255:35:0;21807:496;21002:1308;;;;;:::o;19273:643::-;19351:20;19342:5;:29;;;;;;;;:::i;:::-;;19338:571;;;19273:643;:::o;19338:571::-;19449:29;19440:5;:38;;;;;;;;:::i;:::-;;19436:473;;;19495:34;;-1:-1:-1;;;19495:34:0;;10475:2:1;19495:34:0;;;10457:21:1;10514:2;10494:18;;;10487:30;10553:26;10533:18;;;10526:54;10597:18;;19495:34:0;10447:174:1;19436:473:0;19560:35;19551:5;:44;;;;;;;;:::i;:::-;;19547:362;;;19612:41;;-1:-1:-1;;;19612:41:0;;12703:2:1;19612:41:0;;;12685:21:1;12742:2;12722:18;;;12715:30;12781:33;12761:18;;;12754:61;12832:18;;19612:41:0;12675:181:1;19547:362:0;19684:30;19675:5;:39;;;;;;;;:::i;:::-;;19671:238;;;19731:44;;-1:-1:-1;;;19731:44:0;;15818:2:1;19731:44:0;;;15800:21:1;15857:2;15837:18;;;15830:30;15896:34;15876:18;;;15869:62;-1:-1:-1;;;15947:18:1;;;15940:32;15989:19;;19731:44:0;15790:224:1;19671:238:0;19806:30;19797:5;:39;;;;;;;;:::i;:::-;;19793:116;;;19853:44;;-1:-1:-1;;;19853:44:0;;17330:2:1;19853:44:0;;;17312:21:1;17369:2;17349:18;;;17342:30;17408:34;17388:18;;;17381:62;-1:-1:-1;;;17459:18:1;;;17452:32;17501:19;;19853:44:0;17302:224:1;24611:1632:0;24742:7;;25676:66;25663:79;;25659:163;;;-1:-1:-1;25775:1:0;;-1:-1:-1;25779:30:0;25759:51;;25659:163;25836:1;:7;;25841:2;25836:7;;:18;;;;;25847:1;:7;;25852:2;25847:7;;25836:18;25832:102;;;-1:-1:-1;25887:1:0;;-1:-1:-1;25891:30:0;25871:51;;25832:102;26048:24;;;26031:14;26048:24;;;;;;;;;9273:25:1;;;9346:4;9334:17;;9314:18;;;9307:45;;;;9368:18;;;9361:34;;;9411:18;;;9404:34;;;26048:24:0;;9245:19:1;;26048:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;26048:24:0;;-1:-1:-1;;26048:24:0;;;-1:-1:-1;;;;;;;26087:20:0;;26083:103;;26140:1;26144:29;26124:50;;;;;;;26083:103;26206:6;-1:-1:-1;26214:20:0;;-1:-1:-1;24611:1632:0;;;;;;;;:::o;15902:591::-;-1:-1:-1;;;;;15986:21:0;;15978:67;;;;-1:-1:-1;;;15978:67:0;;20438:2:1;15978:67:0;;;20420:21:1;20477:2;20457:18;;;20450:30;20516:34;20496:18;;;20489:62;-1:-1:-1;;;20567:18:1;;;20560:31;20608:19;;15978:67:0;20410:223:1;15978:67:0;16058:49;16079:7;16096:1;16100:6;16058:20;:49::i;:::-;-1:-1:-1;;;;;16145:18:0;;16120:22;16145:18;;;;;;;;;;;16182:24;;;;16174:71;;;;-1:-1:-1;;;16174:71:0;;12300:2:1;16174:71:0;;;12282:21:1;12339:2;12319:18;;;12312:30;12378:34;12358:18;;;12351:62;-1:-1:-1;;;12429:18:1;;;12422:32;12471:19;;16174:71:0;12272:224:1;16174:71:0;-1:-1:-1;;;;;16281:18:0;;:9;:18;;;;;;;;;;16302:23;;;16281:44;;16347:12;:22;;16319:6;;16281:9;16347:22;;16319:6;;16347:22;:::i;:::-;;;;-1:-1:-1;;16387:37:0;;7004:25:1;;;16413:1:0;;-1:-1:-1;;;;;16387:37:0;;;;;6992:2:1;6977:18;16387:37:0;;;;;;;16437:48;16457:7;16474:1;16478:6;16437:19;:48::i;55439:103::-;55502:7;55529:5;55533:1;55529;:5;:::i;58417:313::-;58518:15;58499:4;:15;;;:34;;58491:81;;;;-1:-1:-1;;;58491:81:0;;13063:2:1;58491:81:0;;;13045:21:1;13102:2;13082:18;;;13075:30;13141:34;13121:18;;;13114:62;-1:-1:-1;;;13192:18:1;;;13185:32;13234:19;;58491:81:0;13035:224:1;58491:81:0;58587:15;;:25;-1:-1:-1;58587:25:0;58579:86;;;;-1:-1:-1;;;58579:86:0;;22058:2:1;58579:86:0;;;22040:21:1;22097:2;22077:18;;;22070:30;22136:34;22116:18;;;22109:62;-1:-1:-1;;;22187:18:1;;;22180:46;22243:19;;58579:86:0;22030:238:1;58579:86:0;58693:6;58674:4;:15;;;:25;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;58417:313:0:o;38840:195::-;38897:7;-1:-1:-1;;;;;38925:26:0;;;38917:78;;;;-1:-1:-1;;;38917:78:0;;20030:2:1;38917:78:0;;;20012:21:1;20069:2;20049:18;;;20042:30;20108:34;20088:18;;;20081:62;-1:-1:-1;;;20159:18:1;;;20152:37;20206:19;;38917:78:0;20002:229:1;23606:391:0;23720:7;;-1:-1:-1;;;;;23821:75:0;;23923:3;23919:12;;;23933:2;23915:21;23964:25;23975:4;23915:21;23984:1;23821:75;23964:10;:25::i;:::-;23957:32;;;;;;23606:391;;;;;;:::o;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:156::-;258:20;;318:4;307:16;;297:27;;287:2;;338:1;335;328:12;353:186;412:6;465:2;453:9;444:7;440:23;436:32;433:2;;;481:1;478;471:12;433:2;504:29;523:9;504:29;:::i;544:260::-;612:6;620;673:2;661:9;652:7;648:23;644:32;641:2;;;689:1;686;679:12;641:2;712:29;731:9;712:29;:::i;:::-;702:39;;760:38;794:2;783:9;779:18;760:38;:::i;:::-;750:48;;631:173;;;;;:::o;809:328::-;886:6;894;902;955:2;943:9;934:7;930:23;926:32;923:2;;;971:1;968;961:12;923:2;994:29;1013:9;994:29;:::i;:::-;984:39;;1042:38;1076:2;1065:9;1061:18;1042:38;:::i;:::-;1032:48;;1127:2;1116:9;1112:18;1099:32;1089:42;;913:224;;;;;:::o;1142:606::-;1253:6;1261;1269;1277;1285;1293;1301;1354:3;1342:9;1333:7;1329:23;1325:33;1322:2;;;1371:1;1368;1361:12;1322:2;1394:29;1413:9;1394:29;:::i;:::-;1384:39;;1442:38;1476:2;1465:9;1461:18;1442:38;:::i;:::-;1432:48;;1527:2;1516:9;1512:18;1499:32;1489:42;;1578:2;1567:9;1563:18;1550:32;1540:42;;1601:37;1633:3;1622:9;1618:19;1601:37;:::i;:::-;1591:47;;1685:3;1674:9;1670:19;1657:33;1647:43;;1737:3;1726:9;1722:19;1709:33;1699:43;;1312:436;;;;;;;;;;:::o;1753:254::-;1821:6;1829;1882:2;1870:9;1861:7;1857:23;1853:32;1850:2;;;1898:1;1895;1888:12;1850:2;1921:29;1940:9;1921:29;:::i;:::-;1911:39;1997:2;1982:18;;;;1969:32;;-1:-1:-1;;;1840:167:1:o;2012:322::-;2089:6;2097;2105;2158:2;2146:9;2137:7;2133:23;2129:32;2126:2;;;2174:1;2171;2164:12;2126:2;2197:29;2216:9;2197:29;:::i;:::-;2187:39;2273:2;2258:18;;2245:32;;-1:-1:-1;2324:2:1;2309:18;;;2296:32;;2116:218;-1:-1:-1;;;2116:218:1:o;2339:531::-;2441:6;2449;2457;2465;2473;2481;2534:3;2522:9;2513:7;2509:23;2505:33;2502:2;;;2551:1;2548;2541:12;2502:2;2574:29;2593:9;2574:29;:::i;:::-;2564:39;;2650:2;2639:9;2635:18;2622:32;2612:42;;2701:2;2690:9;2686:18;2673:32;2663:42;;2724:36;2756:2;2745:9;2741:18;2724:36;:::i;:::-;2714:46;;2807:3;2796:9;2792:19;2779:33;2769:43;;2859:3;2848:9;2844:19;2831:33;2821:43;;2492:378;;;;;;;;:::o;2875:350::-;2942:6;2950;3003:2;2991:9;2982:7;2978:23;2974:32;2971:2;;;3019:1;3016;3009:12;2971:2;3042:29;3061:9;3042:29;:::i;:::-;3032:39;;3121:2;3110:9;3106:18;3093:32;3165:10;3158:5;3154:22;3147:5;3144:33;3134:2;;3191:1;3188;3181:12;3134:2;3214:5;3204:15;;;2961:264;;;;;:::o;3230:277::-;3297:6;3350:2;3338:9;3329:7;3325:23;3321:32;3318:2;;;3366:1;3363;3356:12;3318:2;3398:9;3392:16;3451:5;3444:13;3437:21;3430:5;3427:32;3417:2;;3473:1;3470;3463:12;3512:180;3571:6;3624:2;3612:9;3603:7;3599:23;3595:32;3592:2;;;3640:1;3637;3630:12;3592:2;-1:-1:-1;3663:23:1;;3582:110;-1:-1:-1;3582:110:1:o;3697:184::-;3767:6;3820:2;3808:9;3799:7;3795:23;3791:32;3788:2;;;3836:1;3833;3826:12;3788:2;-1:-1:-1;3859:16:1;;3778:103;-1:-1:-1;3778:103:1:o;3886:1057::-;3972:6;3980;3988;4041:2;4029:9;4020:7;4016:23;4012:32;4009:2;;;4057:1;4054;4047:12;4009:2;4093:9;4080:23;4070:33;;4150:2;4139:9;4135:18;4122:32;4112:42;;4205:2;4194:9;4190:18;4177:32;4228:18;4269:2;4261:6;4258:14;4255:2;;;4285:1;4282;4275:12;4255:2;4323:6;4312:9;4308:22;4298:32;;4368:7;4361:4;4357:2;4353:13;4349:27;4339:2;;4390:1;4387;4380:12;4339:2;4426;4413:16;4448:2;4444;4441:10;4438:2;;;4454:18;;:::i;:::-;4529:2;4523:9;4497:2;4583:13;;-1:-1:-1;;4579:22:1;;;4603:2;4575:31;4571:40;4559:53;;;4627:18;;;4647:22;;;4624:46;4621:2;;;4673:18;;:::i;:::-;4713:10;4709:2;4702:22;4748:2;4740:6;4733:18;4788:7;4783:2;4778;4774;4770:11;4766:20;4763:33;4760:2;;;4809:1;4806;4799:12;4760:2;4865;4860;4856;4852:11;4847:2;4839:6;4835:15;4822:46;4910:1;4905:2;4900;4892:6;4888:15;4884:24;4877:35;4931:6;4921:16;;;;;;;3999:944;;;;;:::o;5933:449::-;-1:-1:-1;;;;;6171:32:1;;;;6153:51;;6240:13;;6235:2;6220:18;;6213:41;6200:1;6296:17;;6290:24;6285:2;6270:18;;6263:52;6369:4;6357:17;6351:24;6346:2;6331:18;;6324:52;6140:3;6125:19;;6107:275::o;9671:597::-;9783:4;9812:2;9841;9830:9;9823:21;9873:6;9867:13;9916:6;9911:2;9900:9;9896:18;9889:34;9941:1;9951:140;9965:6;9962:1;9959:13;9951:140;;;10060:14;;;10056:23;;10050:30;10026:17;;;10045:2;10022:26;10015:66;9980:10;;9951:140;;;10109:6;10106:1;10103:13;10100:2;;;10179:1;10174:2;10165:6;10154:9;10150:22;10146:31;10139:42;10100:2;-1:-1:-1;10252:2:1;10231:15;-1:-1:-1;;10227:29:1;10212:45;;;;10259:2;10208:54;;9792:476;-1:-1:-1;;;9792:476:1:o;19118:356::-;19320:2;19302:21;;;19339:18;;;19332:30;19398:34;19393:2;19378:18;;19371:62;19465:2;19450:18;;19292:182::o;26418:128::-;26458:3;26489:1;26485:6;26482:1;26479:13;26476:2;;;26495:18;;:::i;:::-;-1:-1:-1;26531:9:1;;26466:80::o;26551:217::-;26591:1;26617;26607:2;;26661:10;26656:3;26652:20;26649:1;26642:31;26696:4;26693:1;26686:15;26724:4;26721:1;26714:15;26607:2;-1:-1:-1;26753:9:1;;26597:171::o;26773:125::-;26813:4;26841:1;26838;26835:8;26832:2;;;26846:18;;:::i;:::-;-1:-1:-1;26883:9:1;;26822:76::o;26903:380::-;26982:1;26978:12;;;;27025;;;27046:2;;27100:4;27092:6;27088:17;27078:27;;27046:2;27153;27145:6;27142:14;27122:18;27119:38;27116:2;;;27199:10;27194:3;27190:20;27187:1;27180:31;27234:4;27231:1;27224:15;27262:4;27259:1;27252:15;27288:127;27349:10;27344:3;27340:20;27337:1;27330:31;27380:4;27377:1;27370:15;27404:4;27401:1;27394:15;27420:127;27481:10;27476:3;27472:20;27469:1;27462:31;27512:4;27509:1;27502:15;27536:4;27533:1;27526:15;27552:127;27613:10;27608:3;27604:20;27601:1;27594:31;27644:4;27641:1;27634:15;27668:4;27665:1;27658:15;27684:127;27745:10;27740:3;27736:20;27733:1;27726:31;27776:4;27773:1;27766:15;27800:4;27797:1;27790:15

Swarm Source

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