MATIC Price: $1.00 (-1.64%)
Gas: 392 GWei
 

Overview

MATIC Balance

Polygon PoS Chain LogoPolygon PoS Chain LogoPolygon PoS Chain Logo0 MATIC

MATIC Value

$0.00

Sponsored

Transaction Hash
Method
Block
From
To
Value
0x61016060259072912022-03-13 19:49:27746 days ago1647200967IN
 Create: StreetCredit
0 MATIC0.1071522131.95346837

Parent Txn Hash Block From To Value
View All Internal Transactions
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
StreetCredit

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at polygonscan.com on 2022-03-13
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/math/SafeCast.sol


// OpenZeppelin Contracts v4.4.1 (utils/math/SafeCast.sol)

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/governance/utils/IVotes.sol


// OpenZeppelin Contracts (last updated v4.5.0) (governance/utils/IVotes.sol)
pragma solidity ^0.8.0;

/**
 * @dev Common interface for {ERC20Votes}, {ERC721Votes}, and other {Votes}-enabled contracts.
 *
 * _Available since v4.5._
 */
interface IVotes {
    /**
     * @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 a delegate's number of votes.
     */
    event DelegateVotesChanged(address indexed delegate, uint256 previousBalance, uint256 newBalance);

    /**
     * @dev Returns the current amount of votes that `account` has.
     */
    function getVotes(address account) external view returns (uint256);

    /**
     * @dev Returns the amount of votes that `account` had at the end of a past block (`blockNumber`).
     */
    function getPastVotes(address account, uint256 blockNumber) external view returns (uint256);

    /**
     * @dev Returns the total supply of votes available at the end of a past block (`blockNumber`).
     *
     * NOTE: This value is the sum of all available votes, which is not necessarily the sum of all delegated votes.
     * Votes that have not been delegated are still part of total supply, even though they would not participate in a
     * vote.
     */
    function getPastTotalSupply(uint256 blockNumber) external view returns (uint256);

    /**
     * @dev Returns the delegate that `account` has chosen.
     */
    function delegates(address account) external view returns (address);

    /**
     * @dev Delegates votes from the sender to `delegatee`.
     */
    function delegate(address delegatee) external;

    /**
     * @dev Delegates votes from signer to `delegatee`.
     */
    function delegateBySig(
        address delegatee,
        uint256 nonce,
        uint256 expiry,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;
}

// File: @openzeppelin/contracts/utils/math/Math.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/math/Math.sol)

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/Counters.sol


// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

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/utils/Strings.sol


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

// File: @openzeppelin/contracts/utils/cryptography/ECDSA.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/ECDSA.sol)

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 = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 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 Message, created from `s`. 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(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @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/draft-EIP712.sol


// OpenZeppelin Contracts v4.4.1 (utils/cryptography/draft-EIP712.sol)

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;
    address private immutable _CACHED_THIS;

    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);
        _CACHED_THIS = address(this);
        _TYPE_HASH = typeHash;
    }

    /**
     * @dev Returns the domain separator for the current chain.
     */
    function _domainSeparatorV4() internal view returns (bytes32) {
        if (address(this) == _CACHED_THIS && 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/token/ERC20/extensions/draft-IERC20Permit.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol)

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/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

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/IERC20.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol)

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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from,
        address to,
        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/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

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/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/ERC20.sol)

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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, 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) {
        address owner = _msgSender();
        _approve(owner, spender, _allowances[owner][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) {
        address owner = _msgSender();
        uint256 currentAllowance = _allowances[owner][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, 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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, 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 Spend `amount` form the allowance of `owner` toward `spender`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - 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/token/ERC20/extensions/draft-ERC20Permit.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-ERC20Permit.sol)

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/token/ERC20/extensions/ERC20Votes.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Votes.sol)

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.
 *
 * _Available since v4.2._
 */
abstract contract ERC20Votes is IVotes, 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 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 override returns (address) {
        return _delegates[account];
    }

    /**
     * @dev Gets the current votes balance for `account`
     */
    function getVotes(address account) public view virtual override 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 virtual override 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 virtual override 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 override {
        _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 override {
        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");
        _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: contracts/StreetCreditDAO-token.sol


pragma solidity ^0.8.4;




/// @custom:security-contact [email protected]
contract StreetCredit is ERC20, ERC20Permit, ERC20Votes {
    constructor() ERC20("Street Credit", "SCRED") ERC20Permit("Street Credit") {
        _mint(msg.sender, 100000000000 * 10 ** decimals());
    }

    // The following functions are overrides required by Solidity.

    function _afterTokenTransfer(address from, address to, uint256 amount)
        internal
        override(ERC20, ERC20Votes)
    {
        super._afterTokenTransfer(from, to, amount);
    }

    function _mint(address to, uint256 amount)
        internal
        override(ERC20, ERC20Votes)
    {
        super._mint(to, amount);
    }

    function _burn(address account, uint256 amount)
        internal
        override(ERC20, ERC20Votes)
    {
        super._burn(account, amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"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":"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":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[{"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":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

6101606040527f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9610140908152503480156200003a57600080fd5b506040518060400160405280600d81526020017f5374726565742043726564697400000000000000000000000000000000000000815250806040518060400160405280600181526020017f31000000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600d81526020017f53747265657420437265646974000000000000000000000000000000000000008152506040518060400160405280600581526020017f534352454400000000000000000000000000000000000000000000000000000081525081600390805190602001906200012c92919062000bb2565b5080600490805190602001906200014592919062000bb2565b50505060008280519060200120905060008280519060200120905060007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f90508260e081815250508161010081815250504660a08181525050620001b18184846200024560201b60201c565b608081815250503073ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff1660601b815250508061012081815250505050505050506200023f33620002136200028160201b60201c565b600a62000221919062000f29565b64174876e80062000233919062001066565b6200028a60201b60201c565b6200133d565b600083838346306040516020016200026295949392919062000d31565b6040516020818303038152906040528051906020012090509392505050565b60006012905090565b620002a18282620002a560201b62000f611760201c565b5050565b620002bc82826200036360201b62000fee1760201c565b620002cc620004dc60201b60201c565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16620002fa6200050060201b60201c565b11156200033e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003359062000d8e565b60405180910390fd5b6200035d60086200050a60201b6200114e17836200052260201b60201c565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620003d6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003cd9062000df4565b60405180910390fd5b620003ea60008383620007d360201b60201c565b8060026000828254620003fe919062000e71565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000455919062000e71565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620004bc919062000e16565b60405180910390a3620004d860008383620007d860201b60201c565b5050565b60007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff905090565b6000600254905090565b600081836200051a919062000e71565b905092915050565b60008060008580549050905060008114620005975785600182620005479190620010c7565b815481106200055b576200055a620011eb565b5b9060005260206000200160000160049054906101000a90047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff166200059a565b60005b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff169250620005c683858760201c565b91506000811180156200061f57504386600183620005e59190620010c7565b81548110620005f957620005f8620011eb565b5b9060005260206000200160000160009054906101000a900463ffffffff1663ffffffff16145b15620006c0576200063b82620007f560201b620011641760201c565b866001836200064b9190620010c7565b815481106200065f576200065e620011eb565b5b9060005260206000200160000160046101000a8154817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff02191690837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff160217905550620007ca565b856040518060400160405280620006e2436200086360201b620011cf1760201c565b63ffffffff1681526020016200070385620007f560201b620011641760201c565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff168152509080600181540180825580915050600190039060005260206000200160009091909190915060008201518160000160006101000a81548163ffffffff021916908363ffffffff16021790555060208201518160000160046101000a8154817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff02191690837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16021790555050505b50935093915050565b505050565b620007f0838383620008b960201b620012221760201c565b505050565b60007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff80168211156200085b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008529062000db0565b60405180910390fd5b819050919050565b600063ffffffff8016821115620008b1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008a89062000dd2565b60405180910390fd5b819050919050565b620008d18383836200090960201b6200124d1760201c565b62000904620008e6846200090e60201b60201c565b620008f7846200090e60201b60201c565b836200097760201b60201c565b505050565b505050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015620009b45750600081115b1562000b9557600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161462000aa75760008062000a4e600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002062000b9a60201b6200125217856200052260201b60201c565b915091508473ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724838360405162000a9c92919062000e33565b60405180910390a250505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000b945760008062000b3b600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206200050a60201b6200114e17856200052260201b60201c565b915091508373ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724838360405162000b8992919062000e33565b60405180910390a250505b5b505050565b6000818362000baa9190620010c7565b905092915050565b82805462000bc09062001157565b90600052602060002090601f01602090048101928262000be4576000855562000c30565b82601f1062000bff57805160ff191683800117855562000c30565b8280016001018555821562000c30579182015b8281111562000c2f57825182559160200191906001019062000c12565b5b50905062000c3f919062000c43565b5090565b5b8082111562000c5e57600081600090555060010162000c44565b5090565b62000c6d8162001102565b82525050565b62000c7e8162001116565b82525050565b600062000c9360308362000e60565b915062000ca08262001227565b604082019050919050565b600062000cba60278362000e60565b915062000cc78262001276565b604082019050919050565b600062000ce160268362000e60565b915062000cee82620012c5565b604082019050919050565b600062000d08601f8362000e60565b915062000d158262001314565b602082019050919050565b62000d2b8162001140565b82525050565b600060a08201905062000d48600083018862000c73565b62000d57602083018762000c73565b62000d66604083018662000c73565b62000d75606083018562000d20565b62000d84608083018462000c62565b9695505050505050565b6000602082019050818103600083015262000da98162000c84565b9050919050565b6000602082019050818103600083015262000dcb8162000cab565b9050919050565b6000602082019050818103600083015262000ded8162000cd2565b9050919050565b6000602082019050818103600083015262000e0f8162000cf9565b9050919050565b600060208201905062000e2d600083018462000d20565b92915050565b600060408201905062000e4a600083018562000d20565b62000e59602083018462000d20565b9392505050565b600082825260208201905092915050565b600062000e7e8262001140565b915062000e8b8362001140565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000ec35762000ec26200118d565b5b828201905092915050565b6000808291508390505b600185111562000f205780860481111562000ef85762000ef76200118d565b5b600185161562000f085780820291505b808102905062000f18856200121a565b945062000ed8565b94509492505050565b600062000f368262001140565b915062000f43836200114a565b925062000f727fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000f7a565b905092915050565b60008262000f8c57600190506200105f565b8162000f9c57600090506200105f565b816001811462000fb5576002811462000fc05762000ff6565b60019150506200105f565b60ff84111562000fd55762000fd46200118d565b5b8360020a91508482111562000fef5762000fee6200118d565b5b506200105f565b5060208310610133831016604e8410600b8410161715620010305782820a9050838111156200102a57620010296200118d565b5b6200105f565b6200103f848484600162000ece565b925090508184048111156200105957620010586200118d565b5b81810290505b9392505050565b6000620010738262001140565b9150620010808362001140565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620010bc57620010bb6200118d565b5b828202905092915050565b6000620010d48262001140565b9150620010e18362001140565b925082821015620010f757620010f66200118d565b5b828203905092915050565b60006200110f8262001120565b9050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b600060028204905060018216806200117057607f821691505b60208210811415620011875762001186620011bc565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008160011c9050919050565b7f4552433230566f7465733a20746f74616c20737570706c79207269736b73206f60008201527f766572666c6f77696e6720766f74657300000000000000000000000000000000602082015250565b7f53616665436173743a2076616c756520646f65736e27742066697420696e203260008201527f3234206269747300000000000000000000000000000000000000000000000000602082015250565b7f53616665436173743a2076616c756520646f65736e27742066697420696e203360008201527f3220626974730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60805160a05160c05160601c60e0516101005161012051610140516138156200139b6000396000610ccf015260006117f601526000611838015260006118170152600061174c015260006117a2015260006117cb01526138156000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c806370a08231116100b8578063a457c2d71161007c578063a457c2d7146103d9578063a9059cbb14610409578063c3cda52014610439578063d505accf14610455578063dd62ed3e14610471578063f1127ed8146104a157610142565b806370a08231146102fb5780637ecebe001461032b5780638e539e8c1461035b57806395d89b411461038b5780639ab24eb0146103a957610142565b80633644e5151161010a5780633644e51514610201578063395093511461021f5780633a46b1a81461024f578063587cde1e1461027f5780635c19a95c146102af5780636fcfff45146102cb57610142565b806306fdde0314610147578063095ea7b31461016557806318160ddd1461019557806323b872dd146101b3578063313ce567146101e3575b600080fd5b61014f6104d1565b60405161015c9190612c4d565b60405180910390f35b61017f600480360381019061017a9190612577565b610563565b60405161018c9190612ad9565b60405180910390f35b61019d610586565b6040516101aa9190612f0a565b60405180910390f35b6101cd60048036038101906101c89190612482565b610590565b6040516101da9190612ad9565b60405180910390f35b6101eb6105bf565b6040516101f89190612f69565b60405180910390f35b6102096105c8565b6040516102169190612af4565b60405180910390f35b61023960048036038101906102349190612577565b6105d7565b6040516102469190612ad9565b60405180910390f35b61026960048036038101906102649190612577565b610681565b6040516102769190612f0a565b60405180910390f35b61029960048036038101906102949190612415565b610715565b6040516102a69190612abe565b60405180910390f35b6102c960048036038101906102c49190612415565b61077e565b005b6102e560048036038101906102e09190612415565b610792565b6040516102f29190612f4e565b60405180910390f35b61031560048036038101906103109190612415565b6107e6565b6040516103229190612f0a565b60405180910390f35b61034560048036038101906103409190612415565b61082e565b6040516103529190612f0a565b60405180910390f35b61037560048036038101906103709190612684565b61087e565b6040516103829190612f0a565b60405180910390f35b6103936108d4565b6040516103a09190612c4d565b60405180910390f35b6103c360048036038101906103be9190612415565b610966565b6040516103d09190612f0a565b60405180910390f35b6103f360048036038101906103ee9190612577565b610a77565b6040516104009190612ad9565b60405180910390f35b610423600480360381019061041e9190612577565b610b61565b6040516104309190612ad9565b60405180910390f35b610453600480360381019061044e91906125b7565b610b84565b005b61046f600480360381019061046a91906124d5565b610c88565b005b61048b60048036038101906104869190612442565b610dca565b6040516104989190612f0a565b60405180910390f35b6104bb60048036038101906104b69190612644565b610e51565b6040516104c89190612eef565b60405180910390f35b6060600380546104e090613130565b80601f016020809104026020016040519081016040528092919081815260200182805461050c90613130565b80156105595780601f1061052e57610100808354040283529160200191610559565b820191906000526020600020905b81548152906001019060200180831161053c57829003601f168201915b5050505050905090565b60008061056e611268565b905061057b818585611270565b600191505092915050565b6000600254905090565b60008061059b611268565b90506105a885828561143b565b6105b38585856114c7565b60019150509392505050565b60006012905090565b60006105d2611748565b905090565b6000806105e2611268565b9050610676818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106719190612fab565b611270565b600191505092915050565b60004382106106c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106bc90612caf565b60405180910390fd5b61070d600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002083611862565b905092915050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b61078f610789611268565b8261196e565b50565b60006107df600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490506111cf565b9050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000610877600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611a88565b9050919050565b60004382106108c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b990612caf565b60405180910390fd5b6108cd600883611862565b9050919050565b6060600480546108e390613130565b80601f016020809104026020016040519081016040528092919081815260200182805461090f90613130565b801561095c5780601f106109315761010080835404028352916020019161095c565b820191906000526020600020905b81548152906001019060200180831161093f57829003601f168201915b5050505050905090565b600080600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080549050905060008114610a4e57600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600182610a029190613032565b81548110610a1357610a12613228565b5b9060005260206000200160000160049054906101000a90047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16610a51565b60005b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16915050919050565b600080610a82611268565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015610b48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3f90612eaf565b60405180910390fd5b610b558286868403611270565b60019250505092915050565b600080610b6c611268565b9050610b798185856114c7565b600191505092915050565b83421115610bc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbe90612ccf565b60405180910390fd5b6000610c29610c217fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf898989604051602001610c069493929190612b70565b60405160208183030381529060405280519060200120611a96565b858585611ab0565b9050610c3481611adb565b8614610c75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6c90612d0f565b60405180910390fd5b610c7f818861196e565b50505050505050565b83421115610ccb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc290612d6f565b60405180910390fd5b60007f0000000000000000000000000000000000000000000000000000000000000000888888610cfa8c611adb565b89604051602001610d1096959493929190612b0f565b6040516020818303038152906040528051906020012090506000610d3382611a96565b90506000610d4382878787611ab0565b90508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610db3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610daa90612def565b60405180910390fd5b610dbe8a8a8a611270565b50505050505050505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610e5961236e565b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208263ffffffff1681548110610eb057610eaf613228565b5b906000526020600020016040518060400160405290816000820160009054906101000a900463ffffffff1663ffffffff1663ffffffff1681526020016000820160049054906101000a90047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1681525050905092915050565b610f6b8282610fee565b610f73611b39565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16610f99610586565b1115610fda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd190612e0f565b60405180910390fd5b610fe8600861114e83611b5d565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561105e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105590612ecf565b60405180910390fd5b61106a60008383611dd5565b806002600082825461107c9190612fab565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110d19190612fab565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516111369190612f0a565b60405180910390a361114a60008383611dda565b5050565b6000818361115c9190612fab565b905092915050565b60007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff80168211156111c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111be90612e2f565b60405180910390fd5b819050919050565b600063ffffffff801682111561121a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121190612e6f565b60405180910390fd5b819050919050565b61122d83838361124d565b61124861123984610715565b61124284610715565b83611dea565b505050565b505050565b600081836112609190613032565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156112e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d790612e8f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611350576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134790612d2f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161142e9190612f0a565b60405180910390a3505050565b60006114478484610dca565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146114c157818110156114b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114aa90612d4f565b60405180910390fd5b6114c08484848403611270565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611537576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152e90612e4f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159e90612c8f565b60405180910390fd5b6115b2838383611dd5565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611638576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162f90612d8f565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116cb9190612fab565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161172f9190612f0a565b60405180910390a3611742848484611dda565b50505050565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff161480156117c457507f000000000000000000000000000000000000000000000000000000000000000046145b156117f1577f0000000000000000000000000000000000000000000000000000000000000000905061185f565b61185c7f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000007f0000000000000000000000000000000000000000000000000000000000000000611fe3565b90505b90565b6000808380549050905060005b818110156118e1576000611883828461201d565b90508486828154811061189957611898613228565b5b9060005260206000200160000160009054906101000a900463ffffffff1663ffffffff1611156118cb578092506118db565b6001816118d89190612fab565b91505b5061186f565b6000821461194357846001836118f79190613032565b8154811061190857611907613228565b5b9060005260206000200160000160049054906101000a90047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16611946565b60005b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff169250505092915050565b600061197983610715565b90506000611986846107e6565b905082600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f60405160405180910390a4611a82828483611dea565b50505050565b600081600001549050919050565b6000611aa9611aa3611748565b83612043565b9050919050565b6000806000611ac187878787612076565b91509150611ace81612183565b8192505050949350505050565b600080600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050611b2881611a88565b9150611b3381612358565b50919050565b60007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff905090565b60008060008580549050905060008114611bcb5785600182611b7f9190613032565b81548110611b9057611b8f613228565b5b9060005260206000200160000160049054906101000a90047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16611bce565b60005b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff169250611bfc83858763ffffffff16565b9150600081118015611c4f57504386600183611c189190613032565b81548110611c2957611c28613228565b5b9060005260206000200160000160009054906101000a900463ffffffff1663ffffffff16145b15611cdc57611c5d82611164565b86600183611c6b9190613032565b81548110611c7c57611c7b613228565b5b9060005260206000200160000160046101000a8154817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff02191690837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff160217905550611dcc565b856040518060400160405280611cf1436111cf565b63ffffffff168152602001611d0585611164565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff168152509080600181540180825580915050600190039060005260206000200160009091909190915060008201518160000160006101000a81548163ffffffff021916908363ffffffff16021790555060208201518160000160046101000a8154817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff02191690837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16021790555050505b50935093915050565b505050565b611de5838383611222565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611e265750600081115b15611fde57600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611f0457600080611ead600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061125285611b5d565b915091508473ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248383604051611ef9929190612f25565b60405180910390a250505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611fdd57600080611f86600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061114e85611b5d565b915091508373ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248383604051611fd2929190612f25565b60405180910390a250505b5b505050565b60008383834630604051602001611ffe959493929190612bb5565b6040516020818303038152906040528051906020012090509392505050565b6000600282841861202e9190613001565b82841661203b9190612fab565b905092915050565b60008282604051602001612058929190612a87565b60405160208183030381529060405280519060200120905092915050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c11156120b157600060039150915061217a565b601b8560ff16141580156120c95750601c8560ff1614155b156120db57600060049150915061217a565b6000600187878787604051600081526020016040526040516121009493929190612c08565b6020604051602081039080840390855afa158015612122573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156121715760006001925092505061217a565b80600092509250505b94509492505050565b60006004811115612197576121966131ca565b5b8160048111156121aa576121a96131ca565b5b14156121b557612355565b600160048111156121c9576121c86131ca565b5b8160048111156121dc576121db6131ca565b5b141561221d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221490612c6f565b60405180910390fd5b60026004811115612231576122306131ca565b5b816004811115612244576122436131ca565b5b1415612285576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227c90612cef565b60405180910390fd5b60036004811115612299576122986131ca565b5b8160048111156122ac576122ab6131ca565b5b14156122ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e490612daf565b60405180910390fd5b600480811115612300576122ff6131ca565b5b816004811115612313576123126131ca565b5b1415612354576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234b90612dcf565b60405180910390fd5b5b50565b6001816000016000828254019250508190555050565b6040518060400160405280600063ffffffff16815260200160007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1681525090565b6000813590506123bb8161376c565b92915050565b6000813590506123d081613783565b92915050565b6000813590506123e58161379a565b92915050565b6000813590506123fa816137b1565b92915050565b60008135905061240f816137c8565b92915050565b60006020828403121561242b5761242a613257565b5b6000612439848285016123ac565b91505092915050565b6000806040838503121561245957612458613257565b5b6000612467858286016123ac565b9250506020612478858286016123ac565b9150509250929050565b60008060006060848603121561249b5761249a613257565b5b60006124a9868287016123ac565b93505060206124ba868287016123ac565b92505060406124cb868287016123d6565b9150509250925092565b600080600080600080600060e0888a0312156124f4576124f3613257565b5b60006125028a828b016123ac565b97505060206125138a828b016123ac565b96505060406125248a828b016123d6565b95505060606125358a828b016123d6565b94505060806125468a828b01612400565b93505060a06125578a828b016123c1565b92505060c06125688a828b016123c1565b91505092959891949750929550565b6000806040838503121561258e5761258d613257565b5b600061259c858286016123ac565b92505060206125ad858286016123d6565b9150509250929050565b60008060008060008060c087890312156125d4576125d3613257565b5b60006125e289828a016123ac565b96505060206125f389828a016123d6565b955050604061260489828a016123d6565b945050606061261589828a01612400565b935050608061262689828a016123c1565b92505060a061263789828a016123c1565b9150509295509295509295565b6000806040838503121561265b5761265a613257565b5b6000612669858286016123ac565b925050602061267a858286016123eb565b9150509250929050565b60006020828403121561269a57612699613257565b5b60006126a8848285016123d6565b91505092915050565b6126ba81613066565b82525050565b6126c981613078565b82525050565b6126d881613084565b82525050565b6126ef6126ea82613084565b613162565b82525050565b600061270082612f84565b61270a8185612f8f565b935061271a8185602086016130fd565b6127238161325c565b840191505092915050565b600061273b601883612f8f565b91506127468261326d565b602082019050919050565b600061275e602383612f8f565b915061276982613296565b604082019050919050565b6000612781601f83612f8f565b915061278c826132e5565b602082019050919050565b60006127a4601d83612f8f565b91506127af8261330e565b602082019050919050565b60006127c7601f83612f8f565b91506127d282613337565b602082019050919050565b60006127ea601983612f8f565b91506127f582613360565b602082019050919050565b600061280d602283612f8f565b915061281882613389565b604082019050919050565b6000612830600283612fa0565b915061283b826133d8565b600282019050919050565b6000612853601d83612f8f565b915061285e82613401565b602082019050919050565b6000612876601d83612f8f565b91506128818261342a565b602082019050919050565b6000612899602683612f8f565b91506128a482613453565b604082019050919050565b60006128bc602283612f8f565b91506128c7826134a2565b604082019050919050565b60006128df602283612f8f565b91506128ea826134f1565b604082019050919050565b6000612902601e83612f8f565b915061290d82613540565b602082019050919050565b6000612925603083612f8f565b915061293082613569565b604082019050919050565b6000612948602783612f8f565b9150612953826135b8565b604082019050919050565b600061296b602583612f8f565b915061297682613607565b604082019050919050565b600061298e602683612f8f565b915061299982613656565b604082019050919050565b60006129b1602483612f8f565b91506129bc826136a5565b604082019050919050565b60006129d4602583612f8f565b91506129df826136f4565b604082019050919050565b60006129f7601f83612f8f565b9150612a0282613743565b602082019050919050565b604082016000820151612a236000850182612a5a565b506020820151612a366020850182612a3c565b50505050565b612a45816130ae565b82525050565b612a54816130d6565b82525050565b612a63816130e0565b82525050565b612a72816130e0565b82525050565b612a81816130f0565b82525050565b6000612a9282612823565b9150612a9e82856126de565b602082019150612aae82846126de565b6020820191508190509392505050565b6000602082019050612ad360008301846126b1565b92915050565b6000602082019050612aee60008301846126c0565b92915050565b6000602082019050612b0960008301846126cf565b92915050565b600060c082019050612b2460008301896126cf565b612b3160208301886126b1565b612b3e60408301876126b1565b612b4b6060830186612a4b565b612b586080830185612a4b565b612b6560a0830184612a4b565b979650505050505050565b6000608082019050612b8560008301876126cf565b612b9260208301866126b1565b612b9f6040830185612a4b565b612bac6060830184612a4b565b95945050505050565b600060a082019050612bca60008301886126cf565b612bd760208301876126cf565b612be460408301866126cf565b612bf16060830185612a4b565b612bfe60808301846126b1565b9695505050505050565b6000608082019050612c1d60008301876126cf565b612c2a6020830186612a78565b612c3760408301856126cf565b612c4460608301846126cf565b95945050505050565b60006020820190508181036000830152612c6781846126f5565b905092915050565b60006020820190508181036000830152612c888161272e565b9050919050565b60006020820190508181036000830152612ca881612751565b9050919050565b60006020820190508181036000830152612cc881612774565b9050919050565b60006020820190508181036000830152612ce881612797565b9050919050565b60006020820190508181036000830152612d08816127ba565b9050919050565b60006020820190508181036000830152612d28816127dd565b9050919050565b60006020820190508181036000830152612d4881612800565b9050919050565b60006020820190508181036000830152612d6881612846565b9050919050565b60006020820190508181036000830152612d8881612869565b9050919050565b60006020820190508181036000830152612da88161288c565b9050919050565b60006020820190508181036000830152612dc8816128af565b9050919050565b60006020820190508181036000830152612de8816128d2565b9050919050565b60006020820190508181036000830152612e08816128f5565b9050919050565b60006020820190508181036000830152612e2881612918565b9050919050565b60006020820190508181036000830152612e488161293b565b9050919050565b60006020820190508181036000830152612e688161295e565b9050919050565b60006020820190508181036000830152612e8881612981565b9050919050565b60006020820190508181036000830152612ea8816129a4565b9050919050565b60006020820190508181036000830152612ec8816129c7565b9050919050565b60006020820190508181036000830152612ee8816129ea565b9050919050565b6000604082019050612f046000830184612a0d565b92915050565b6000602082019050612f1f6000830184612a4b565b92915050565b6000604082019050612f3a6000830185612a4b565b612f476020830184612a4b565b9392505050565b6000602082019050612f636000830184612a69565b92915050565b6000602082019050612f7e6000830184612a78565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b6000612fb6826130d6565b9150612fc1836130d6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612ff657612ff561316c565b5b828201905092915050565b600061300c826130d6565b9150613017836130d6565b9250826130275761302661319b565b5b828204905092915050565b600061303d826130d6565b9150613048836130d6565b92508282101561305b5761305a61316c565b5b828203905092915050565b60006130718261308e565b9050919050565b60008115159050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b600060ff82169050919050565b60005b8381101561311b578082015181840152602081019050613100565b8381111561312a576000848401525b50505050565b6000600282049050600182168061314857607f821691505b6020821081141561315c5761315b6131f9565b5b50919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433230566f7465733a20626c6f636b206e6f7420796574206d696e656400600082015250565b7f4552433230566f7465733a207369676e61747572652065787069726564000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f4552433230566f7465733a20696e76616c6964206e6f6e636500000000000000600082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332305065726d69743a206578706972656420646561646c696e65000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332305065726d69743a20696e76616c6964207369676e61747572650000600082015250565b7f4552433230566f7465733a20746f74616c20737570706c79207269736b73206f60008201527f766572666c6f77696e6720766f74657300000000000000000000000000000000602082015250565b7f53616665436173743a2076616c756520646f65736e27742066697420696e203260008201527f3234206269747300000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f53616665436173743a2076616c756520646f65736e27742066697420696e203360008201527f3220626974730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b61377581613066565b811461378057600080fd5b50565b61378c81613084565b811461379757600080fd5b50565b6137a3816130d6565b81146137ae57600080fd5b50565b6137ba816130e0565b81146137c557600080fd5b50565b6137d1816130f0565b81146137dc57600080fd5b5056fea26469706673582212208222f04fcb71ed2f8e1e216612e4d194517412ef16d8a95c90c24bacd2a51b1664736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c806370a08231116100b8578063a457c2d71161007c578063a457c2d7146103d9578063a9059cbb14610409578063c3cda52014610439578063d505accf14610455578063dd62ed3e14610471578063f1127ed8146104a157610142565b806370a08231146102fb5780637ecebe001461032b5780638e539e8c1461035b57806395d89b411461038b5780639ab24eb0146103a957610142565b80633644e5151161010a5780633644e51514610201578063395093511461021f5780633a46b1a81461024f578063587cde1e1461027f5780635c19a95c146102af5780636fcfff45146102cb57610142565b806306fdde0314610147578063095ea7b31461016557806318160ddd1461019557806323b872dd146101b3578063313ce567146101e3575b600080fd5b61014f6104d1565b60405161015c9190612c4d565b60405180910390f35b61017f600480360381019061017a9190612577565b610563565b60405161018c9190612ad9565b60405180910390f35b61019d610586565b6040516101aa9190612f0a565b60405180910390f35b6101cd60048036038101906101c89190612482565b610590565b6040516101da9190612ad9565b60405180910390f35b6101eb6105bf565b6040516101f89190612f69565b60405180910390f35b6102096105c8565b6040516102169190612af4565b60405180910390f35b61023960048036038101906102349190612577565b6105d7565b6040516102469190612ad9565b60405180910390f35b61026960048036038101906102649190612577565b610681565b6040516102769190612f0a565b60405180910390f35b61029960048036038101906102949190612415565b610715565b6040516102a69190612abe565b60405180910390f35b6102c960048036038101906102c49190612415565b61077e565b005b6102e560048036038101906102e09190612415565b610792565b6040516102f29190612f4e565b60405180910390f35b61031560048036038101906103109190612415565b6107e6565b6040516103229190612f0a565b60405180910390f35b61034560048036038101906103409190612415565b61082e565b6040516103529190612f0a565b60405180910390f35b61037560048036038101906103709190612684565b61087e565b6040516103829190612f0a565b60405180910390f35b6103936108d4565b6040516103a09190612c4d565b60405180910390f35b6103c360048036038101906103be9190612415565b610966565b6040516103d09190612f0a565b60405180910390f35b6103f360048036038101906103ee9190612577565b610a77565b6040516104009190612ad9565b60405180910390f35b610423600480360381019061041e9190612577565b610b61565b6040516104309190612ad9565b60405180910390f35b610453600480360381019061044e91906125b7565b610b84565b005b61046f600480360381019061046a91906124d5565b610c88565b005b61048b60048036038101906104869190612442565b610dca565b6040516104989190612f0a565b60405180910390f35b6104bb60048036038101906104b69190612644565b610e51565b6040516104c89190612eef565b60405180910390f35b6060600380546104e090613130565b80601f016020809104026020016040519081016040528092919081815260200182805461050c90613130565b80156105595780601f1061052e57610100808354040283529160200191610559565b820191906000526020600020905b81548152906001019060200180831161053c57829003601f168201915b5050505050905090565b60008061056e611268565b905061057b818585611270565b600191505092915050565b6000600254905090565b60008061059b611268565b90506105a885828561143b565b6105b38585856114c7565b60019150509392505050565b60006012905090565b60006105d2611748565b905090565b6000806105e2611268565b9050610676818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106719190612fab565b611270565b600191505092915050565b60004382106106c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106bc90612caf565b60405180910390fd5b61070d600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002083611862565b905092915050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b61078f610789611268565b8261196e565b50565b60006107df600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490506111cf565b9050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000610877600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611a88565b9050919050565b60004382106108c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b990612caf565b60405180910390fd5b6108cd600883611862565b9050919050565b6060600480546108e390613130565b80601f016020809104026020016040519081016040528092919081815260200182805461090f90613130565b801561095c5780601f106109315761010080835404028352916020019161095c565b820191906000526020600020905b81548152906001019060200180831161093f57829003601f168201915b5050505050905090565b600080600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080549050905060008114610a4e57600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600182610a029190613032565b81548110610a1357610a12613228565b5b9060005260206000200160000160049054906101000a90047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16610a51565b60005b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16915050919050565b600080610a82611268565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015610b48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3f90612eaf565b60405180910390fd5b610b558286868403611270565b60019250505092915050565b600080610b6c611268565b9050610b798185856114c7565b600191505092915050565b83421115610bc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbe90612ccf565b60405180910390fd5b6000610c29610c217fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf898989604051602001610c069493929190612b70565b60405160208183030381529060405280519060200120611a96565b858585611ab0565b9050610c3481611adb565b8614610c75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6c90612d0f565b60405180910390fd5b610c7f818861196e565b50505050505050565b83421115610ccb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc290612d6f565b60405180910390fd5b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9888888610cfa8c611adb565b89604051602001610d1096959493929190612b0f565b6040516020818303038152906040528051906020012090506000610d3382611a96565b90506000610d4382878787611ab0565b90508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610db3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610daa90612def565b60405180910390fd5b610dbe8a8a8a611270565b50505050505050505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610e5961236e565b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208263ffffffff1681548110610eb057610eaf613228565b5b906000526020600020016040518060400160405290816000820160009054906101000a900463ffffffff1663ffffffff1663ffffffff1681526020016000820160049054906101000a90047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1681525050905092915050565b610f6b8282610fee565b610f73611b39565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16610f99610586565b1115610fda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd190612e0f565b60405180910390fd5b610fe8600861114e83611b5d565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561105e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105590612ecf565b60405180910390fd5b61106a60008383611dd5565b806002600082825461107c9190612fab565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110d19190612fab565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516111369190612f0a565b60405180910390a361114a60008383611dda565b5050565b6000818361115c9190612fab565b905092915050565b60007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff80168211156111c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111be90612e2f565b60405180910390fd5b819050919050565b600063ffffffff801682111561121a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121190612e6f565b60405180910390fd5b819050919050565b61122d83838361124d565b61124861123984610715565b61124284610715565b83611dea565b505050565b505050565b600081836112609190613032565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156112e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d790612e8f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611350576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134790612d2f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161142e9190612f0a565b60405180910390a3505050565b60006114478484610dca565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146114c157818110156114b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114aa90612d4f565b60405180910390fd5b6114c08484848403611270565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611537576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152e90612e4f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159e90612c8f565b60405180910390fd5b6115b2838383611dd5565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611638576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162f90612d8f565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116cb9190612fab565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161172f9190612f0a565b60405180910390a3611742848484611dda565b50505050565b60007f000000000000000000000000d74f2cb05eedefcc09175fc3fb7ea152ebe2519673ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff161480156117c457507f000000000000000000000000000000000000000000000000000000000000008946145b156117f1577fcc3f6a62bbb5c3f48be12b2f99501f83bee50766ff0f184eee5e35eba53689a1905061185f565b61185c7f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f7f4916f8d8f6fc13117e3dbfec002988cde4211e71bf30c58309cd7fdda4b67ad37fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6611fe3565b90505b90565b6000808380549050905060005b818110156118e1576000611883828461201d565b90508486828154811061189957611898613228565b5b9060005260206000200160000160009054906101000a900463ffffffff1663ffffffff1611156118cb578092506118db565b6001816118d89190612fab565b91505b5061186f565b6000821461194357846001836118f79190613032565b8154811061190857611907613228565b5b9060005260206000200160000160049054906101000a90047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16611946565b60005b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff169250505092915050565b600061197983610715565b90506000611986846107e6565b905082600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f60405160405180910390a4611a82828483611dea565b50505050565b600081600001549050919050565b6000611aa9611aa3611748565b83612043565b9050919050565b6000806000611ac187878787612076565b91509150611ace81612183565b8192505050949350505050565b600080600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050611b2881611a88565b9150611b3381612358565b50919050565b60007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff905090565b60008060008580549050905060008114611bcb5785600182611b7f9190613032565b81548110611b9057611b8f613228565b5b9060005260206000200160000160049054906101000a90047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16611bce565b60005b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff169250611bfc83858763ffffffff16565b9150600081118015611c4f57504386600183611c189190613032565b81548110611c2957611c28613228565b5b9060005260206000200160000160009054906101000a900463ffffffff1663ffffffff16145b15611cdc57611c5d82611164565b86600183611c6b9190613032565b81548110611c7c57611c7b613228565b5b9060005260206000200160000160046101000a8154817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff02191690837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff160217905550611dcc565b856040518060400160405280611cf1436111cf565b63ffffffff168152602001611d0585611164565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff168152509080600181540180825580915050600190039060005260206000200160009091909190915060008201518160000160006101000a81548163ffffffff021916908363ffffffff16021790555060208201518160000160046101000a8154817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff02191690837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16021790555050505b50935093915050565b505050565b611de5838383611222565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611e265750600081115b15611fde57600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611f0457600080611ead600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061125285611b5d565b915091508473ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248383604051611ef9929190612f25565b60405180910390a250505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611fdd57600080611f86600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061114e85611b5d565b915091508373ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248383604051611fd2929190612f25565b60405180910390a250505b5b505050565b60008383834630604051602001611ffe959493929190612bb5565b6040516020818303038152906040528051906020012090509392505050565b6000600282841861202e9190613001565b82841661203b9190612fab565b905092915050565b60008282604051602001612058929190612a87565b60405160208183030381529060405280519060200120905092915050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c11156120b157600060039150915061217a565b601b8560ff16141580156120c95750601c8560ff1614155b156120db57600060049150915061217a565b6000600187878787604051600081526020016040526040516121009493929190612c08565b6020604051602081039080840390855afa158015612122573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156121715760006001925092505061217a565b80600092509250505b94509492505050565b60006004811115612197576121966131ca565b5b8160048111156121aa576121a96131ca565b5b14156121b557612355565b600160048111156121c9576121c86131ca565b5b8160048111156121dc576121db6131ca565b5b141561221d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221490612c6f565b60405180910390fd5b60026004811115612231576122306131ca565b5b816004811115612244576122436131ca565b5b1415612285576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227c90612cef565b60405180910390fd5b60036004811115612299576122986131ca565b5b8160048111156122ac576122ab6131ca565b5b14156122ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e490612daf565b60405180910390fd5b600480811115612300576122ff6131ca565b5b816004811115612313576123126131ca565b5b1415612354576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234b90612dcf565b60405180910390fd5b5b50565b6001816000016000828254019250508190555050565b6040518060400160405280600063ffffffff16815260200160007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1681525090565b6000813590506123bb8161376c565b92915050565b6000813590506123d081613783565b92915050565b6000813590506123e58161379a565b92915050565b6000813590506123fa816137b1565b92915050565b60008135905061240f816137c8565b92915050565b60006020828403121561242b5761242a613257565b5b6000612439848285016123ac565b91505092915050565b6000806040838503121561245957612458613257565b5b6000612467858286016123ac565b9250506020612478858286016123ac565b9150509250929050565b60008060006060848603121561249b5761249a613257565b5b60006124a9868287016123ac565b93505060206124ba868287016123ac565b92505060406124cb868287016123d6565b9150509250925092565b600080600080600080600060e0888a0312156124f4576124f3613257565b5b60006125028a828b016123ac565b97505060206125138a828b016123ac565b96505060406125248a828b016123d6565b95505060606125358a828b016123d6565b94505060806125468a828b01612400565b93505060a06125578a828b016123c1565b92505060c06125688a828b016123c1565b91505092959891949750929550565b6000806040838503121561258e5761258d613257565b5b600061259c858286016123ac565b92505060206125ad858286016123d6565b9150509250929050565b60008060008060008060c087890312156125d4576125d3613257565b5b60006125e289828a016123ac565b96505060206125f389828a016123d6565b955050604061260489828a016123d6565b945050606061261589828a01612400565b935050608061262689828a016123c1565b92505060a061263789828a016123c1565b9150509295509295509295565b6000806040838503121561265b5761265a613257565b5b6000612669858286016123ac565b925050602061267a858286016123eb565b9150509250929050565b60006020828403121561269a57612699613257565b5b60006126a8848285016123d6565b91505092915050565b6126ba81613066565b82525050565b6126c981613078565b82525050565b6126d881613084565b82525050565b6126ef6126ea82613084565b613162565b82525050565b600061270082612f84565b61270a8185612f8f565b935061271a8185602086016130fd565b6127238161325c565b840191505092915050565b600061273b601883612f8f565b91506127468261326d565b602082019050919050565b600061275e602383612f8f565b915061276982613296565b604082019050919050565b6000612781601f83612f8f565b915061278c826132e5565b602082019050919050565b60006127a4601d83612f8f565b91506127af8261330e565b602082019050919050565b60006127c7601f83612f8f565b91506127d282613337565b602082019050919050565b60006127ea601983612f8f565b91506127f582613360565b602082019050919050565b600061280d602283612f8f565b915061281882613389565b604082019050919050565b6000612830600283612fa0565b915061283b826133d8565b600282019050919050565b6000612853601d83612f8f565b915061285e82613401565b602082019050919050565b6000612876601d83612f8f565b91506128818261342a565b602082019050919050565b6000612899602683612f8f565b91506128a482613453565b604082019050919050565b60006128bc602283612f8f565b91506128c7826134a2565b604082019050919050565b60006128df602283612f8f565b91506128ea826134f1565b604082019050919050565b6000612902601e83612f8f565b915061290d82613540565b602082019050919050565b6000612925603083612f8f565b915061293082613569565b604082019050919050565b6000612948602783612f8f565b9150612953826135b8565b604082019050919050565b600061296b602583612f8f565b915061297682613607565b604082019050919050565b600061298e602683612f8f565b915061299982613656565b604082019050919050565b60006129b1602483612f8f565b91506129bc826136a5565b604082019050919050565b60006129d4602583612f8f565b91506129df826136f4565b604082019050919050565b60006129f7601f83612f8f565b9150612a0282613743565b602082019050919050565b604082016000820151612a236000850182612a5a565b506020820151612a366020850182612a3c565b50505050565b612a45816130ae565b82525050565b612a54816130d6565b82525050565b612a63816130e0565b82525050565b612a72816130e0565b82525050565b612a81816130f0565b82525050565b6000612a9282612823565b9150612a9e82856126de565b602082019150612aae82846126de565b6020820191508190509392505050565b6000602082019050612ad360008301846126b1565b92915050565b6000602082019050612aee60008301846126c0565b92915050565b6000602082019050612b0960008301846126cf565b92915050565b600060c082019050612b2460008301896126cf565b612b3160208301886126b1565b612b3e60408301876126b1565b612b4b6060830186612a4b565b612b586080830185612a4b565b612b6560a0830184612a4b565b979650505050505050565b6000608082019050612b8560008301876126cf565b612b9260208301866126b1565b612b9f6040830185612a4b565b612bac6060830184612a4b565b95945050505050565b600060a082019050612bca60008301886126cf565b612bd760208301876126cf565b612be460408301866126cf565b612bf16060830185612a4b565b612bfe60808301846126b1565b9695505050505050565b6000608082019050612c1d60008301876126cf565b612c2a6020830186612a78565b612c3760408301856126cf565b612c4460608301846126cf565b95945050505050565b60006020820190508181036000830152612c6781846126f5565b905092915050565b60006020820190508181036000830152612c888161272e565b9050919050565b60006020820190508181036000830152612ca881612751565b9050919050565b60006020820190508181036000830152612cc881612774565b9050919050565b60006020820190508181036000830152612ce881612797565b9050919050565b60006020820190508181036000830152612d08816127ba565b9050919050565b60006020820190508181036000830152612d28816127dd565b9050919050565b60006020820190508181036000830152612d4881612800565b9050919050565b60006020820190508181036000830152612d6881612846565b9050919050565b60006020820190508181036000830152612d8881612869565b9050919050565b60006020820190508181036000830152612da88161288c565b9050919050565b60006020820190508181036000830152612dc8816128af565b9050919050565b60006020820190508181036000830152612de8816128d2565b9050919050565b60006020820190508181036000830152612e08816128f5565b9050919050565b60006020820190508181036000830152612e2881612918565b9050919050565b60006020820190508181036000830152612e488161293b565b9050919050565b60006020820190508181036000830152612e688161295e565b9050919050565b60006020820190508181036000830152612e8881612981565b9050919050565b60006020820190508181036000830152612ea8816129a4565b9050919050565b60006020820190508181036000830152612ec8816129c7565b9050919050565b60006020820190508181036000830152612ee8816129ea565b9050919050565b6000604082019050612f046000830184612a0d565b92915050565b6000602082019050612f1f6000830184612a4b565b92915050565b6000604082019050612f3a6000830185612a4b565b612f476020830184612a4b565b9392505050565b6000602082019050612f636000830184612a69565b92915050565b6000602082019050612f7e6000830184612a78565b92915050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b6000612fb6826130d6565b9150612fc1836130d6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612ff657612ff561316c565b5b828201905092915050565b600061300c826130d6565b9150613017836130d6565b9250826130275761302661319b565b5b828204905092915050565b600061303d826130d6565b9150613048836130d6565b92508282101561305b5761305a61316c565b5b828203905092915050565b60006130718261308e565b9050919050565b60008115159050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b600060ff82169050919050565b60005b8381101561311b578082015181840152602081019050613100565b8381111561312a576000848401525b50505050565b6000600282049050600182168061314857607f821691505b6020821081141561315c5761315b6131f9565b5b50919050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433230566f7465733a20626c6f636b206e6f7420796574206d696e656400600082015250565b7f4552433230566f7465733a207369676e61747572652065787069726564000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f4552433230566f7465733a20696e76616c6964206e6f6e636500000000000000600082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332305065726d69743a206578706972656420646561646c696e65000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332305065726d69743a20696e76616c6964207369676e61747572650000600082015250565b7f4552433230566f7465733a20746f74616c20737570706c79207269736b73206f60008201527f766572666c6f77696e6720766f74657300000000000000000000000000000000602082015250565b7f53616665436173743a2076616c756520646f65736e27742066697420696e203260008201527f3234206269747300000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f53616665436173743a2076616c756520646f65736e27742066697420696e203360008201527f3220626974730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b61377581613066565b811461378057600080fd5b50565b61378c81613084565b811461379757600080fd5b50565b6137a3816130d6565b81146137ae57600080fd5b50565b6137ba816130e0565b81146137c557600080fd5b50565b6137d1816130f0565b81146137dc57600080fd5b5056fea26469706673582212208222f04fcb71ed2f8e1e216612e4d194517412ef16d8a95c90c24bacd2a51b1664736f6c63430008070033

Deployed Bytecode Sourcemap

61543:797:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38352:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40703:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39472:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41484:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39314:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51579:115;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42188:240;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54781:268;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54155:128;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57254:114;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53911:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39643:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51321:128;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55338:259;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38571:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54367:212;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42931:438;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39976:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57450:591;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50610:645;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40232:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53681:150;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38352:100;38406:13;38439:5;38432:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38352:100;:::o;40703:201::-;40786:4;40803:13;40819:12;:10;:12::i;:::-;40803:28;;40842:32;40851:5;40858:7;40867:6;40842:8;:32::i;:::-;40892:4;40885:11;;;40703:201;;;;:::o;39472:108::-;39533:7;39560:12;;39553:19;;39472:108;:::o;41484:295::-;41615:4;41632:15;41650:12;:10;:12::i;:::-;41632:30;;41673:38;41689:4;41695:7;41704:6;41673:15;:38::i;:::-;41722:27;41732:4;41738:2;41742:6;41722:9;:27::i;:::-;41767:4;41760:11;;;41484:295;;;;;:::o;39314:93::-;39372:5;39397:2;39390:9;;39314:93;:::o;51579:115::-;51639:7;51666:20;:18;:20::i;:::-;51659:27;;51579:115;:::o;42188:240::-;42276:4;42293:13;42309:12;:10;:12::i;:::-;42293:28;;42332:66;42341:5;42348:7;42387:10;42357:11;:18;42369:5;42357:18;;;;;;;;;;;;;;;:27;42376:7;42357:27;;;;;;;;;;;;;;;;:40;;;;:::i;:::-;42332:8;:66::i;:::-;42416:4;42409:11;;;42188:240;;;;:::o;54781:268::-;54879:7;54921:12;54907:11;:26;54899:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;54987:54;55006:12;:21;55019:7;55006:21;;;;;;;;;;;;;;;55029:11;54987:18;:54::i;:::-;54980:61;;54781:268;;;;:::o;54155:128::-;54229:7;54256:10;:19;54267:7;54256:19;;;;;;;;;;;;;;;;;;;;;;;;;54249:26;;54155:128;;;:::o;57254:114::-;57326:34;57336:12;:10;:12::i;:::-;57350:9;57326;:34::i;:::-;57254:114;:::o;53911:151::-;53981:6;54007:47;54025:12;:21;54038:7;54025:21;;;;;;;;;;;;;;;:28;;;;54007:17;:47::i;:::-;54000:54;;53911:151;;;:::o;39643:127::-;39717:7;39744:9;:18;39754:7;39744:18;;;;;;;;;;;;;;;;39737:25;;39643:127;;;:::o;51321:128::-;51390:7;51417:24;:7;:14;51425:5;51417:14;;;;;;;;;;;;;;;:22;:24::i;:::-;51410:31;;51321:128;;;:::o;55338:259::-;55425:7;55467:12;55453:11;:26;55445:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;55533:56;55552:23;55577:11;55533:18;:56::i;:::-;55526:63;;55338:259;;;:::o;38571:104::-;38627:13;38660:7;38653:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38571:104;:::o;54367:212::-;54440:7;54460:11;54474:12;:21;54487:7;54474:21;;;;;;;;;;;;;;;:28;;;;54460:42;;54527:1;54520:3;:8;:51;;54535:12;:21;54548:7;54535:21;;;;;;;;;;;;;;;54563:1;54557:3;:7;;;;:::i;:::-;54535:30;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;;;;;;;;;54520:51;;;54531:1;54520:51;54513:58;;;;;54367:212;;;:::o;42931:438::-;43024:4;43041:13;43057:12;:10;:12::i;:::-;43041:28;;43080:24;43107:11;:18;43119:5;43107:18;;;;;;;;;;;;;;;:27;43126:7;43107:27;;;;;;;;;;;;;;;;43080:54;;43173:15;43153:16;:35;;43145:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;43266:60;43275:5;43282:7;43310:15;43291:16;:34;43266:8;:60::i;:::-;43357:4;43350:11;;;;42931:438;;;;:::o;39976:193::-;40055:4;40072:13;40088:12;:10;:12::i;:::-;40072:28;;40111;40121:5;40128:2;40132:6;40111:9;:28::i;:::-;40157:4;40150:11;;;39976:193;;;;:::o;57450:591::-;57677:6;57658:15;:25;;57650:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;57728:14;57745:174;57773:87;53361:71;57833:9;57844:5;57851:6;57800:58;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;57790:69;;;;;;57773:16;:87::i;:::-;57875:1;57891;57907;57745:13;:174::i;:::-;57728:191;;57947:17;57957:6;57947:9;:17::i;:::-;57938:5;:26;57930:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;58005:28;58015:6;58023:9;58005;:28::i;:::-;57639:402;57450:591;;;;;;:::o;50610:645::-;50854:8;50835:15;:27;;50827:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;50909:18;50951:16;50969:5;50976:7;50985:5;50992:16;51002:5;50992:9;:16::i;:::-;51010:8;50940:79;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50930:90;;;;;;50909:111;;51033:12;51048:28;51065:10;51048:16;:28::i;:::-;51033:43;;51089:14;51106:28;51120:4;51126:1;51129;51132;51106:13;:28::i;:::-;51089:45;;51163:5;51153:15;;:6;:15;;;51145:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;51216:31;51225:5;51232:7;51241:5;51216:8;:31::i;:::-;50816:439;;;50610:645;;;;;;;:::o;40232:151::-;40321:7;40348:11;:18;40360:5;40348:18;;;;;;;;;;;;;;;:27;40367:7;40348:27;;;;;;;;;;;;;;;;40341:34;;40232:151;;;;:::o;53681:150::-;53760:17;;:::i;:::-;53797:12;:21;53810:7;53797:21;;;;;;;;;;;;;;;53819:3;53797:26;;;;;;;;;;:::i;:::-;;;;;;;;;53790:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53681:150;;;;:::o;58347:290::-;58432:28;58444:7;58453:6;58432:11;:28::i;:::-;58496:12;:10;:12::i;:::-;58479:29;;:13;:11;:13::i;:::-;:29;;58471:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;58574:55;58591:23;58616:4;58622:6;58574:16;:55::i;:::-;;;58347:290;;:::o;44806:399::-;44909:1;44890:21;;:7;:21;;;;44882:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;44960:49;44989:1;44993:7;45002:6;44960:20;:49::i;:::-;45038:6;45022:12;;:22;;;;;;;:::i;:::-;;;;;;;;45077:6;45055:9;:18;45065:7;45055:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;45120:7;45099:37;;45116:1;45099:37;;;45129:6;45099:37;;;;;;:::i;:::-;;;;;;;;45149:48;45177:1;45181:7;45190:6;45149:19;:48::i;:::-;44806:399;;:::o;61191:98::-;61249:7;61280:1;61276;:5;;;;:::i;:::-;61269:12;;61191:98;;;;:::o;1228:195::-;1285:7;1322:17;1313:26;;:5;:26;;1305:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;1409:5;1394:21;;1228:195;;;:::o;3198:190::-;3254:6;3290:16;3281:25;;:5;:25;;3273:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;3374:5;3360:20;;3198:190;;;:::o;59065:262::-;59207:43;59233:4;59239:2;59243:6;59207:25;:43::i;:::-;59263:56;59280:15;59290:4;59280:9;:15::i;:::-;59297:13;59307:2;59297:9;:13::i;:::-;59312:6;59263:16;:56::i;:::-;59065:262;;;:::o;49016:124::-;;;;:::o;61297:103::-;61360:7;61391:1;61387;:5;;;;:::i;:::-;61380:12;;61297:103;;;;:::o;32378:98::-;32431:7;32458:10;32451:17;;32378:98;:::o;46567:380::-;46720:1;46703:19;;:5;:19;;;;46695:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46801:1;46782:21;;:7;:21;;;;46774:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46885:6;46855:11;:18;46867:5;46855:18;;;;;;;;;;;;;;;:27;46874:7;46855:27;;;;;;;;;;;;;;;:36;;;;46923:7;46907:32;;46916:5;46907:32;;;46932:6;46907:32;;;;;;:::i;:::-;;;;;;;;46567:380;;;:::o;47234:453::-;47369:24;47396:25;47406:5;47413:7;47396:9;:25::i;:::-;47369:52;;47456:17;47436:16;:37;47432:248;;47518:6;47498:16;:26;;47490:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47602:51;47611:5;47618:7;47646:6;47627:16;:25;47602:8;:51::i;:::-;47432:248;47358:329;47234:453;;;:::o;43848:671::-;43995:1;43979:18;;:4;:18;;;;43971:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44072:1;44058:16;;:2;:16;;;;44050:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;44127:38;44148:4;44154:2;44158:6;44127:20;:38::i;:::-;44178:19;44200:9;:15;44210:4;44200:15;;;;;;;;;;;;;;;;44178:37;;44249:6;44234:11;:21;;44226:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;44366:6;44352:11;:20;44334:9;:15;44344:4;44334:15;;;;;;;;;;;;;;;:38;;;;44411:6;44394:9;:13;44404:2;44394:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;44450:2;44435:26;;44444:4;44435:26;;;44454:6;44435:26;;;;;;:::i;:::-;;;;;;;;44474:37;44494:4;44500:2;44504:6;44474:19;:37::i;:::-;43960:559;43848:671;;;:::o;27933:314::-;27986:7;28027:12;28010:29;;28018:4;28010:29;;;:66;;;;;28060:16;28043:13;:33;28010:66;28006:234;;;28100:24;28093:31;;;;28006:234;28164:64;28186:10;28198:12;28212:15;28164:21;:64::i;:::-;28157:71;;27933:314;;:::o;55686:1482::-;55785:7;56804:12;56819:5;:12;;;;56804:27;;56842:11;56868:236;56881:4;56875:3;:10;56868:236;;;56902:11;56916:23;56929:3;56934:4;56916:12;:23::i;:::-;56902:37;;56981:11;56958:5;56964:3;56958:10;;;;;;;;:::i;:::-;;;;;;;;;:20;;;;;;;;;;;;:34;;;56954:139;;;57020:3;57013:10;;56954:139;;;57076:1;57070:3;:7;;;;:::i;:::-;57064:13;;56954:139;56887:217;56868:236;;;57131:1;57123:4;:9;:37;;57139:5;57152:1;57145:4;:8;;;;:::i;:::-;57139:15;;;;;;;;:::i;:::-;;;;;;;;;:21;;;;;;;;;;;;57123:37;;;57135:1;57123:37;57116:44;;;;;;55686:1482;;;;:::o;59491:388::-;59576:23;59602:20;59612:9;59602;:20::i;:::-;59576:46;;59633:24;59660:20;59670:9;59660;:20::i;:::-;59633:47;;59715:9;59691:10;:21;59702:9;59691:21;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;59786:9;59742:54;;59769:15;59742:54;;59758:9;59742:54;;;;;;;;;;;;59809:62;59826:15;59843:9;59854:16;59809;:62::i;:::-;59565:314;;59491:388;;:::o;12452:114::-;12517:7;12544;:14;;;12537:21;;12452:114;;;:::o;29160:167::-;29237:7;29264:55;29286:20;:18;:20::i;:::-;29308:10;29264:21;:55::i;:::-;29257:62;;29160:167;;;:::o;22809:279::-;22937:7;22958:17;22977:18;22999:25;23010:4;23016:1;23019;23022;22999:10;:25::i;:::-;22957:67;;;;23035:18;23047:5;23035:11;:18::i;:::-;23071:9;23064:16;;;;22809:279;;;;;;:::o;51832:207::-;51892:15;51920:30;51953:7;:14;51961:5;51953:14;;;;;;;;;;;;;;;51920:47;;51988:15;:5;:13;:15::i;:::-;51978:25;;52014:17;:5;:15;:17::i;:::-;51909:130;51832:207;;;:::o;58148:105::-;58201:7;58228:17;58221:24;;58148:105;:::o;60538:645::-;60712:17;60731;60761:11;60775:5;:12;;;;60761:26;;60817:1;60810:3;:8;:35;;60825:5;60837:1;60831:3;:7;;;;:::i;:::-;60825:14;;;;;;;;:::i;:::-;;;;;;;;;:20;;;;;;;;;;;;60810:35;;;60821:1;60810:35;60798:47;;;;60868:20;60871:9;60882:5;60868:2;:20;;:::i;:::-;60856:32;;60911:1;60905:3;:7;:51;;;;;60944:12;60916:5;60928:1;60922:3;:7;;;;:::i;:::-;60916:14;;;;;;;;:::i;:::-;;;;;;;;;:24;;;;;;;;;;;;:40;;;60905:51;60901:275;;;60996:29;61015:9;60996:18;:29::i;:::-;60973:5;60985:1;60979:3;:7;;;;:::i;:::-;60973:14;;;;;;;;:::i;:::-;;;;;;;;;:20;;;:52;;;;;;;;;;;;;;;;;;60901:275;;;61058:5;61069:94;;;;;;;;61092:31;61110:12;61092:17;:31::i;:::-;61069:94;;;;;;61132:29;61151:9;61132:18;:29::i;:::-;61069:94;;;;;61058:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60901:275;60750:433;60538:645;;;;;;:::o;48287:125::-;;;;:::o;61828:193::-;61970:43;61996:4;62002:2;62006:6;61970:25;:43::i;:::-;61828:193;;;:::o;59887:643::-;60019:3;60012:10;;:3;:10;;;;:24;;;;;60035:1;60026:6;:10;60012:24;60008:515;;;60072:1;60057:17;;:3;:17;;;60053:224;;60096:17;60115;60136:54;60153:12;:17;60166:3;60153:17;;;;;;;;;;;;;;;60172:9;60183:6;60136:16;:54::i;:::-;60095:95;;;;60235:3;60214:47;;;60240:9;60251;60214:47;;;;;;;:::i;:::-;;;;;;;;60076:201;;60053:224;60312:1;60297:17;;:3;:17;;;60293:219;;60336:17;60355;60376:49;60393:12;:17;60406:3;60393:17;;;;;;;;;;;;;;;60412:4;60418:6;60376:16;:49::i;:::-;60335:90;;;;60470:3;60449:47;;;60475:9;60486;60449:47;;;;;;;:::i;:::-;;;;;;;;60316:196;;60293:219;60008:515;59887:643;;;:::o;28255:263::-;28399:7;28447:8;28457;28467:11;28480:13;28503:4;28436:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;28426:84;;;;;;28419:91;;28255:263;;;;;:::o;11013:156::-;11075:7;11160:1;11155;11151;:5;11150:11;;;;:::i;:::-;11145:1;11141;:5;11140:21;;;;:::i;:::-;11133:28;;11013:156;;;;:::o;24500:196::-;24593:7;24659:15;24676:10;24630:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;24620:68;;;;;;24613:75;;24500:196;;;;:::o;21038:1632::-;21169:7;21178:12;22103:66;22098:1;22090:10;;:79;22086:163;;;22202:1;22206:30;22186:51;;;;;;22086:163;22268:2;22263:1;:7;;;;:18;;;;;22279:2;22274:1;:7;;;;22263:18;22259:102;;;22314:1;22318:30;22298:51;;;;;;22259:102;22458:14;22475:24;22485:4;22491:1;22494;22497;22475:24;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22458:41;;22532:1;22514:20;;:6;:20;;;22510:103;;;22567:1;22571:29;22551:50;;;;;;;22510:103;22633:6;22641:20;22625:37;;;;;21038:1632;;;;;;;;:::o;15747:643::-;15825:20;15816:29;;;;;;;;:::i;:::-;;:5;:29;;;;;;;;:::i;:::-;;;15812:571;;;15862:7;;15812:571;15923:29;15914:38;;;;;;;;:::i;:::-;;:5;:38;;;;;;;;:::i;:::-;;;15910:473;;;15969:34;;;;;;;;;;:::i;:::-;;;;;;;;15910:473;16034:35;16025:44;;;;;;;;:::i;:::-;;:5;:44;;;;;;;;:::i;:::-;;;16021:362;;;16086:41;;;;;;;;;;:::i;:::-;;;;;;;;16021:362;16158:30;16149:39;;;;;;;;:::i;:::-;;:5;:39;;;;;;;;:::i;:::-;;;16145:238;;;16205:44;;;;;;;;;;:::i;:::-;;;;;;;;16145:238;16280:30;16271:39;;;;;;;;:::i;:::-;;:5;:39;;;;;;;;:::i;:::-;;;16267:116;;;16327:44;;;;;;;;;;:::i;:::-;;;;;;;;16267:116;15747:643;;:::o;12574:127::-;12681:1;12663:7;:14;;;:19;;;;;;;;;;;12574:127;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;7:139;;;;:::o;152:::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;152:139;;;;:::o;297:::-;343:5;381:6;368:20;359:29;;397:33;424:5;397:33;:::i;:::-;297:139;;;;:::o;442:137::-;487:5;525:6;512:20;503:29;;541:32;567:5;541:32;:::i;:::-;442:137;;;;:::o;585:135::-;629:5;667:6;654:20;645:29;;683:31;708:5;683:31;:::i;:::-;585:135;;;;:::o;726:329::-;785:6;834:2;822:9;813:7;809:23;805:32;802:119;;;840:79;;:::i;:::-;802:119;960:1;985:53;1030:7;1021:6;1010:9;1006:22;985:53;:::i;:::-;975:63;;931:117;726:329;;;;:::o;1061:474::-;1129:6;1137;1186:2;1174:9;1165:7;1161:23;1157:32;1154:119;;;1192:79;;:::i;:::-;1154:119;1312:1;1337:53;1382:7;1373:6;1362:9;1358:22;1337:53;:::i;:::-;1327:63;;1283:117;1439:2;1465:53;1510:7;1501:6;1490:9;1486:22;1465:53;:::i;:::-;1455:63;;1410:118;1061:474;;;;;:::o;1541:619::-;1618:6;1626;1634;1683:2;1671:9;1662:7;1658:23;1654:32;1651:119;;;1689:79;;:::i;:::-;1651:119;1809:1;1834:53;1879:7;1870:6;1859:9;1855:22;1834:53;:::i;:::-;1824:63;;1780:117;1936:2;1962:53;2007:7;1998:6;1987:9;1983:22;1962:53;:::i;:::-;1952:63;;1907:118;2064:2;2090:53;2135:7;2126:6;2115:9;2111:22;2090:53;:::i;:::-;2080:63;;2035:118;1541:619;;;;;:::o;2166:1199::-;2277:6;2285;2293;2301;2309;2317;2325;2374:3;2362:9;2353:7;2349:23;2345:33;2342:120;;;2381:79;;:::i;:::-;2342:120;2501:1;2526:53;2571:7;2562:6;2551:9;2547:22;2526:53;:::i;:::-;2516:63;;2472:117;2628:2;2654:53;2699:7;2690:6;2679:9;2675:22;2654:53;:::i;:::-;2644:63;;2599:118;2756:2;2782:53;2827:7;2818:6;2807:9;2803:22;2782:53;:::i;:::-;2772:63;;2727:118;2884:2;2910:53;2955:7;2946:6;2935:9;2931:22;2910:53;:::i;:::-;2900:63;;2855:118;3012:3;3039:51;3082:7;3073:6;3062:9;3058:22;3039:51;:::i;:::-;3029:61;;2983:117;3139:3;3166:53;3211:7;3202:6;3191:9;3187:22;3166:53;:::i;:::-;3156:63;;3110:119;3268:3;3295:53;3340:7;3331:6;3320:9;3316:22;3295:53;:::i;:::-;3285:63;;3239:119;2166:1199;;;;;;;;;;:::o;3371:474::-;3439:6;3447;3496:2;3484:9;3475:7;3471:23;3467:32;3464:119;;;3502:79;;:::i;:::-;3464:119;3622:1;3647:53;3692:7;3683:6;3672:9;3668:22;3647:53;:::i;:::-;3637:63;;3593:117;3749:2;3775:53;3820:7;3811:6;3800:9;3796:22;3775:53;:::i;:::-;3765:63;;3720:118;3371:474;;;;;:::o;3851:1053::-;3953:6;3961;3969;3977;3985;3993;4042:3;4030:9;4021:7;4017:23;4013:33;4010:120;;;4049:79;;:::i;:::-;4010:120;4169:1;4194:53;4239:7;4230:6;4219:9;4215:22;4194:53;:::i;:::-;4184:63;;4140:117;4296:2;4322:53;4367:7;4358:6;4347:9;4343:22;4322:53;:::i;:::-;4312:63;;4267:118;4424:2;4450:53;4495:7;4486:6;4475:9;4471:22;4450:53;:::i;:::-;4440:63;;4395:118;4552:2;4578:51;4621:7;4612:6;4601:9;4597:22;4578:51;:::i;:::-;4568:61;;4523:116;4678:3;4705:53;4750:7;4741:6;4730:9;4726:22;4705:53;:::i;:::-;4695:63;;4649:119;4807:3;4834:53;4879:7;4870:6;4859:9;4855:22;4834:53;:::i;:::-;4824:63;;4778:119;3851:1053;;;;;;;;:::o;4910:472::-;4977:6;4985;5034:2;5022:9;5013:7;5009:23;5005:32;5002:119;;;5040:79;;:::i;:::-;5002:119;5160:1;5185:53;5230:7;5221:6;5210:9;5206:22;5185:53;:::i;:::-;5175:63;;5131:117;5287:2;5313:52;5357:7;5348:6;5337:9;5333:22;5313:52;:::i;:::-;5303:62;;5258:117;4910:472;;;;;:::o;5388:329::-;5447:6;5496:2;5484:9;5475:7;5471:23;5467:32;5464:119;;;5502:79;;:::i;:::-;5464:119;5622:1;5647:53;5692:7;5683:6;5672:9;5668:22;5647:53;:::i;:::-;5637:63;;5593:117;5388:329;;;;:::o;5723:118::-;5810:24;5828:5;5810:24;:::i;:::-;5805:3;5798:37;5723:118;;:::o;5847:109::-;5928:21;5943:5;5928:21;:::i;:::-;5923:3;5916:34;5847:109;;:::o;5962:118::-;6049:24;6067:5;6049:24;:::i;:::-;6044:3;6037:37;5962:118;;:::o;6086:157::-;6191:45;6211:24;6229:5;6211:24;:::i;:::-;6191:45;:::i;:::-;6186:3;6179:58;6086:157;;:::o;6249:364::-;6337:3;6365:39;6398:5;6365:39;:::i;:::-;6420:71;6484:6;6479:3;6420:71;:::i;:::-;6413:78;;6500:52;6545:6;6540:3;6533:4;6526:5;6522:16;6500:52;:::i;:::-;6577:29;6599:6;6577:29;:::i;:::-;6572:3;6568:39;6561:46;;6341:272;6249:364;;;;:::o;6619:366::-;6761:3;6782:67;6846:2;6841:3;6782:67;:::i;:::-;6775:74;;6858:93;6947:3;6858:93;:::i;:::-;6976:2;6971:3;6967:12;6960:19;;6619:366;;;:::o;6991:::-;7133:3;7154:67;7218:2;7213:3;7154:67;:::i;:::-;7147:74;;7230:93;7319:3;7230:93;:::i;:::-;7348:2;7343:3;7339:12;7332:19;;6991:366;;;:::o;7363:::-;7505:3;7526:67;7590:2;7585:3;7526:67;:::i;:::-;7519:74;;7602:93;7691:3;7602:93;:::i;:::-;7720:2;7715:3;7711:12;7704:19;;7363:366;;;:::o;7735:::-;7877:3;7898:67;7962:2;7957:3;7898:67;:::i;:::-;7891:74;;7974:93;8063:3;7974:93;:::i;:::-;8092:2;8087:3;8083:12;8076:19;;7735:366;;;:::o;8107:::-;8249:3;8270:67;8334:2;8329:3;8270:67;:::i;:::-;8263:74;;8346:93;8435:3;8346:93;:::i;:::-;8464:2;8459:3;8455:12;8448:19;;8107:366;;;:::o;8479:::-;8621:3;8642:67;8706:2;8701:3;8642:67;:::i;:::-;8635:74;;8718:93;8807:3;8718:93;:::i;:::-;8836:2;8831:3;8827:12;8820:19;;8479:366;;;:::o;8851:::-;8993:3;9014:67;9078:2;9073:3;9014:67;:::i;:::-;9007:74;;9090:93;9179:3;9090:93;:::i;:::-;9208:2;9203:3;9199:12;9192:19;;8851:366;;;:::o;9223:400::-;9383:3;9404:84;9486:1;9481:3;9404:84;:::i;:::-;9397:91;;9497:93;9586:3;9497:93;:::i;:::-;9615:1;9610:3;9606:11;9599:18;;9223:400;;;:::o;9629:366::-;9771:3;9792:67;9856:2;9851:3;9792:67;:::i;:::-;9785:74;;9868:93;9957:3;9868:93;:::i;:::-;9986:2;9981:3;9977:12;9970:19;;9629:366;;;:::o;10001:::-;10143:3;10164:67;10228:2;10223:3;10164:67;:::i;:::-;10157:74;;10240:93;10329:3;10240:93;:::i;:::-;10358:2;10353:3;10349:12;10342:19;;10001:366;;;:::o;10373:::-;10515:3;10536:67;10600:2;10595:3;10536:67;:::i;:::-;10529:74;;10612:93;10701:3;10612:93;:::i;:::-;10730:2;10725:3;10721:12;10714:19;;10373:366;;;:::o;10745:::-;10887:3;10908:67;10972:2;10967:3;10908:67;:::i;:::-;10901:74;;10984:93;11073:3;10984:93;:::i;:::-;11102:2;11097:3;11093:12;11086:19;;10745:366;;;:::o;11117:::-;11259:3;11280:67;11344:2;11339:3;11280:67;:::i;:::-;11273:74;;11356:93;11445:3;11356:93;:::i;:::-;11474:2;11469:3;11465:12;11458:19;;11117:366;;;:::o;11489:::-;11631:3;11652:67;11716:2;11711:3;11652:67;:::i;:::-;11645:74;;11728:93;11817:3;11728:93;:::i;:::-;11846:2;11841:3;11837:12;11830:19;;11489:366;;;:::o;11861:::-;12003:3;12024:67;12088:2;12083:3;12024:67;:::i;:::-;12017:74;;12100:93;12189:3;12100:93;:::i;:::-;12218:2;12213:3;12209:12;12202:19;;11861:366;;;:::o;12233:::-;12375:3;12396:67;12460:2;12455:3;12396:67;:::i;:::-;12389:74;;12472:93;12561:3;12472:93;:::i;:::-;12590:2;12585:3;12581:12;12574:19;;12233:366;;;:::o;12605:::-;12747:3;12768:67;12832:2;12827:3;12768:67;:::i;:::-;12761:74;;12844:93;12933:3;12844:93;:::i;:::-;12962:2;12957:3;12953:12;12946:19;;12605:366;;;:::o;12977:::-;13119:3;13140:67;13204:2;13199:3;13140:67;:::i;:::-;13133:74;;13216:93;13305:3;13216:93;:::i;:::-;13334:2;13329:3;13325:12;13318:19;;12977:366;;;:::o;13349:::-;13491:3;13512:67;13576:2;13571:3;13512:67;:::i;:::-;13505:74;;13588:93;13677:3;13588:93;:::i;:::-;13706:2;13701:3;13697:12;13690:19;;13349:366;;;:::o;13721:::-;13863:3;13884:67;13948:2;13943:3;13884:67;:::i;:::-;13877:74;;13960:93;14049:3;13960:93;:::i;:::-;14078:2;14073:3;14069:12;14062:19;;13721:366;;;:::o;14093:::-;14235:3;14256:67;14320:2;14315:3;14256:67;:::i;:::-;14249:74;;14332:93;14421:3;14332:93;:::i;:::-;14450:2;14445:3;14441:12;14434:19;;14093:366;;;:::o;14533:517::-;14686:4;14681:3;14677:14;14778:4;14771:5;14767:16;14761:23;14797:61;14852:4;14847:3;14843:14;14829:12;14797:61;:::i;:::-;14701:167;14951:4;14944:5;14940:16;14934:23;14970:63;15027:4;15022:3;15018:14;15004:12;14970:63;:::i;:::-;14878:165;14655:395;14533:517;;:::o;15056:108::-;15133:24;15151:5;15133:24;:::i;:::-;15128:3;15121:37;15056:108;;:::o;15170:118::-;15257:24;15275:5;15257:24;:::i;:::-;15252:3;15245:37;15170:118;;:::o;15294:105::-;15369:23;15386:5;15369:23;:::i;:::-;15364:3;15357:36;15294:105;;:::o;15405:115::-;15490:23;15507:5;15490:23;:::i;:::-;15485:3;15478:36;15405:115;;:::o;15526:112::-;15609:22;15625:5;15609:22;:::i;:::-;15604:3;15597:35;15526:112;;:::o;15644:663::-;15885:3;15907:148;16051:3;15907:148;:::i;:::-;15900:155;;16065:75;16136:3;16127:6;16065:75;:::i;:::-;16165:2;16160:3;16156:12;16149:19;;16178:75;16249:3;16240:6;16178:75;:::i;:::-;16278:2;16273:3;16269:12;16262:19;;16298:3;16291:10;;15644:663;;;;;:::o;16313:222::-;16406:4;16444:2;16433:9;16429:18;16421:26;;16457:71;16525:1;16514:9;16510:17;16501:6;16457:71;:::i;:::-;16313:222;;;;:::o;16541:210::-;16628:4;16666:2;16655:9;16651:18;16643:26;;16679:65;16741:1;16730:9;16726:17;16717:6;16679:65;:::i;:::-;16541:210;;;;:::o;16757:222::-;16850:4;16888:2;16877:9;16873:18;16865:26;;16901:71;16969:1;16958:9;16954:17;16945:6;16901:71;:::i;:::-;16757:222;;;;:::o;16985:775::-;17218:4;17256:3;17245:9;17241:19;17233:27;;17270:71;17338:1;17327:9;17323:17;17314:6;17270:71;:::i;:::-;17351:72;17419:2;17408:9;17404:18;17395:6;17351:72;:::i;:::-;17433;17501:2;17490:9;17486:18;17477:6;17433:72;:::i;:::-;17515;17583:2;17572:9;17568:18;17559:6;17515:72;:::i;:::-;17597:73;17665:3;17654:9;17650:19;17641:6;17597:73;:::i;:::-;17680;17748:3;17737:9;17733:19;17724:6;17680:73;:::i;:::-;16985:775;;;;;;;;;:::o;17766:553::-;17943:4;17981:3;17970:9;17966:19;17958:27;;17995:71;18063:1;18052:9;18048:17;18039:6;17995:71;:::i;:::-;18076:72;18144:2;18133:9;18129:18;18120:6;18076:72;:::i;:::-;18158;18226:2;18215:9;18211:18;18202:6;18158:72;:::i;:::-;18240;18308:2;18297:9;18293:18;18284:6;18240:72;:::i;:::-;17766:553;;;;;;;:::o;18325:664::-;18530:4;18568:3;18557:9;18553:19;18545:27;;18582:71;18650:1;18639:9;18635:17;18626:6;18582:71;:::i;:::-;18663:72;18731:2;18720:9;18716:18;18707:6;18663:72;:::i;:::-;18745;18813:2;18802:9;18798:18;18789:6;18745:72;:::i;:::-;18827;18895:2;18884:9;18880:18;18871:6;18827:72;:::i;:::-;18909:73;18977:3;18966:9;18962:19;18953:6;18909:73;:::i;:::-;18325:664;;;;;;;;:::o;18995:545::-;19168:4;19206:3;19195:9;19191:19;19183:27;;19220:71;19288:1;19277:9;19273:17;19264:6;19220:71;:::i;:::-;19301:68;19365:2;19354:9;19350:18;19341:6;19301:68;:::i;:::-;19379:72;19447:2;19436:9;19432:18;19423:6;19379:72;:::i;:::-;19461;19529:2;19518:9;19514:18;19505:6;19461:72;:::i;:::-;18995:545;;;;;;;:::o;19546:313::-;19659:4;19697:2;19686:9;19682:18;19674:26;;19746:9;19740:4;19736:20;19732:1;19721:9;19717:17;19710:47;19774:78;19847:4;19838:6;19774:78;:::i;:::-;19766:86;;19546:313;;;;:::o;19865:419::-;20031:4;20069:2;20058:9;20054:18;20046:26;;20118:9;20112:4;20108:20;20104:1;20093:9;20089:17;20082:47;20146:131;20272:4;20146:131;:::i;:::-;20138:139;;19865:419;;;:::o;20290:::-;20456:4;20494:2;20483:9;20479:18;20471:26;;20543:9;20537:4;20533:20;20529:1;20518:9;20514:17;20507:47;20571:131;20697:4;20571:131;:::i;:::-;20563:139;;20290:419;;;:::o;20715:::-;20881:4;20919:2;20908:9;20904:18;20896:26;;20968:9;20962:4;20958:20;20954:1;20943:9;20939:17;20932:47;20996:131;21122:4;20996:131;:::i;:::-;20988:139;;20715:419;;;:::o;21140:::-;21306:4;21344:2;21333:9;21329:18;21321:26;;21393:9;21387:4;21383:20;21379:1;21368:9;21364:17;21357:47;21421:131;21547:4;21421:131;:::i;:::-;21413:139;;21140:419;;;:::o;21565:::-;21731:4;21769:2;21758:9;21754:18;21746:26;;21818:9;21812:4;21808:20;21804:1;21793:9;21789:17;21782:47;21846:131;21972:4;21846:131;:::i;:::-;21838:139;;21565:419;;;:::o;21990:::-;22156:4;22194:2;22183:9;22179:18;22171:26;;22243:9;22237:4;22233:20;22229:1;22218:9;22214:17;22207:47;22271:131;22397:4;22271:131;:::i;:::-;22263:139;;21990:419;;;:::o;22415:::-;22581:4;22619:2;22608:9;22604:18;22596:26;;22668:9;22662:4;22658:20;22654:1;22643:9;22639:17;22632:47;22696:131;22822:4;22696:131;:::i;:::-;22688:139;;22415:419;;;:::o;22840:::-;23006:4;23044:2;23033:9;23029:18;23021:26;;23093:9;23087:4;23083:20;23079:1;23068:9;23064:17;23057:47;23121:131;23247:4;23121:131;:::i;:::-;23113:139;;22840:419;;;:::o;23265:::-;23431:4;23469:2;23458:9;23454:18;23446:26;;23518:9;23512:4;23508:20;23504:1;23493:9;23489:17;23482:47;23546:131;23672:4;23546:131;:::i;:::-;23538:139;;23265:419;;;:::o;23690:::-;23856:4;23894:2;23883:9;23879:18;23871:26;;23943:9;23937:4;23933:20;23929:1;23918:9;23914:17;23907:47;23971:131;24097:4;23971:131;:::i;:::-;23963:139;;23690:419;;;:::o;24115:::-;24281:4;24319:2;24308:9;24304:18;24296:26;;24368:9;24362:4;24358:20;24354:1;24343:9;24339:17;24332:47;24396:131;24522:4;24396:131;:::i;:::-;24388:139;;24115:419;;;:::o;24540:::-;24706:4;24744:2;24733:9;24729:18;24721:26;;24793:9;24787:4;24783:20;24779:1;24768:9;24764:17;24757:47;24821:131;24947:4;24821:131;:::i;:::-;24813:139;;24540:419;;;:::o;24965:::-;25131:4;25169:2;25158:9;25154:18;25146:26;;25218:9;25212:4;25208:20;25204:1;25193:9;25189:17;25182:47;25246:131;25372:4;25246:131;:::i;:::-;25238:139;;24965:419;;;:::o;25390:::-;25556:4;25594:2;25583:9;25579:18;25571:26;;25643:9;25637:4;25633:20;25629:1;25618:9;25614:17;25607:47;25671:131;25797:4;25671:131;:::i;:::-;25663:139;;25390:419;;;:::o;25815:::-;25981:4;26019:2;26008:9;26004:18;25996:26;;26068:9;26062:4;26058:20;26054:1;26043:9;26039:17;26032:47;26096:131;26222:4;26096:131;:::i;:::-;26088:139;;25815:419;;;:::o;26240:::-;26406:4;26444:2;26433:9;26429:18;26421:26;;26493:9;26487:4;26483:20;26479:1;26468:9;26464:17;26457:47;26521:131;26647:4;26521:131;:::i;:::-;26513:139;;26240:419;;;:::o;26665:::-;26831:4;26869:2;26858:9;26854:18;26846:26;;26918:9;26912:4;26908:20;26904:1;26893:9;26889:17;26882:47;26946:131;27072:4;26946:131;:::i;:::-;26938:139;;26665:419;;;:::o;27090:::-;27256:4;27294:2;27283:9;27279:18;27271:26;;27343:9;27337:4;27333:20;27329:1;27318:9;27314:17;27307:47;27371:131;27497:4;27371:131;:::i;:::-;27363:139;;27090:419;;;:::o;27515:::-;27681:4;27719:2;27708:9;27704:18;27696:26;;27768:9;27762:4;27758:20;27754:1;27743:9;27739:17;27732:47;27796:131;27922:4;27796:131;:::i;:::-;27788:139;;27515:419;;;:::o;27940:::-;28106:4;28144:2;28133:9;28129:18;28121:26;;28193:9;28187:4;28183:20;28179:1;28168:9;28164:17;28157:47;28221:131;28347:4;28221:131;:::i;:::-;28213:139;;27940:419;;;:::o;28365:334::-;28514:4;28552:2;28541:9;28537:18;28529:26;;28565:127;28689:1;28678:9;28674:17;28665:6;28565:127;:::i;:::-;28365:334;;;;:::o;28705:222::-;28798:4;28836:2;28825:9;28821:18;28813:26;;28849:71;28917:1;28906:9;28902:17;28893:6;28849:71;:::i;:::-;28705:222;;;;:::o;28933:332::-;29054:4;29092:2;29081:9;29077:18;29069:26;;29105:71;29173:1;29162:9;29158:17;29149:6;29105:71;:::i;:::-;29186:72;29254:2;29243:9;29239:18;29230:6;29186:72;:::i;:::-;28933:332;;;;;:::o;29271:218::-;29362:4;29400:2;29389:9;29385:18;29377:26;;29413:69;29479:1;29468:9;29464:17;29455:6;29413:69;:::i;:::-;29271:218;;;;:::o;29495:214::-;29584:4;29622:2;29611:9;29607:18;29599:26;;29635:67;29699:1;29688:9;29684:17;29675:6;29635:67;:::i;:::-;29495:214;;;;:::o;29796:99::-;29848:6;29882:5;29876:12;29866:22;;29796:99;;;:::o;29901:169::-;29985:11;30019:6;30014:3;30007:19;30059:4;30054:3;30050:14;30035:29;;29901:169;;;;:::o;30076:148::-;30178:11;30215:3;30200:18;;30076:148;;;;:::o;30230:305::-;30270:3;30289:20;30307:1;30289:20;:::i;:::-;30284:25;;30323:20;30341:1;30323:20;:::i;:::-;30318:25;;30477:1;30409:66;30405:74;30402:1;30399:81;30396:107;;;30483:18;;:::i;:::-;30396:107;30527:1;30524;30520:9;30513:16;;30230:305;;;;:::o;30541:185::-;30581:1;30598:20;30616:1;30598:20;:::i;:::-;30593:25;;30632:20;30650:1;30632:20;:::i;:::-;30627:25;;30671:1;30661:35;;30676:18;;:::i;:::-;30661:35;30718:1;30715;30711:9;30706:14;;30541:185;;;;:::o;30732:191::-;30772:4;30792:20;30810:1;30792:20;:::i;:::-;30787:25;;30826:20;30844:1;30826:20;:::i;:::-;30821:25;;30865:1;30862;30859:8;30856:34;;;30870:18;;:::i;:::-;30856:34;30915:1;30912;30908:9;30900:17;;30732:191;;;;:::o;30929:96::-;30966:7;30995:24;31013:5;30995:24;:::i;:::-;30984:35;;30929:96;;;:::o;31031:90::-;31065:7;31108:5;31101:13;31094:21;31083:32;;31031:90;;;:::o;31127:77::-;31164:7;31193:5;31182:16;;31127:77;;;:::o;31210:126::-;31247:7;31287:42;31280:5;31276:54;31265:65;;31210:126;;;:::o;31342:142::-;31379:7;31419:58;31412:5;31408:70;31397:81;;31342:142;;;:::o;31490:77::-;31527:7;31556:5;31545:16;;31490:77;;;:::o;31573:93::-;31609:7;31649:10;31642:5;31638:22;31627:33;;31573:93;;;:::o;31672:86::-;31707:7;31747:4;31740:5;31736:16;31725:27;;31672:86;;;:::o;31764:307::-;31832:1;31842:113;31856:6;31853:1;31850:13;31842:113;;;31941:1;31936:3;31932:11;31926:18;31922:1;31917:3;31913:11;31906:39;31878:2;31875:1;31871:10;31866:15;;31842:113;;;31973:6;31970:1;31967:13;31964:101;;;32053:1;32044:6;32039:3;32035:16;32028:27;31964:101;31813:258;31764:307;;;:::o;32077:320::-;32121:6;32158:1;32152:4;32148:12;32138:22;;32205:1;32199:4;32195:12;32226:18;32216:81;;32282:4;32274:6;32270:17;32260:27;;32216:81;32344:2;32336:6;32333:14;32313:18;32310:38;32307:84;;;32363:18;;:::i;:::-;32307:84;32128:269;32077:320;;;:::o;32403:79::-;32442:7;32471:5;32460:16;;32403:79;;;:::o;32488:180::-;32536:77;32533:1;32526:88;32633:4;32630:1;32623:15;32657:4;32654:1;32647:15;32674:180;32722:77;32719:1;32712:88;32819:4;32816:1;32809:15;32843:4;32840:1;32833:15;32860:180;32908:77;32905:1;32898:88;33005:4;33002:1;32995:15;33029:4;33026:1;33019:15;33046:180;33094:77;33091:1;33084:88;33191:4;33188:1;33181:15;33215:4;33212:1;33205:15;33232:180;33280:77;33277:1;33270:88;33377:4;33374:1;33367:15;33401:4;33398:1;33391:15;33541:117;33650:1;33647;33640:12;33664:102;33705:6;33756:2;33752:7;33747:2;33740:5;33736:14;33732:28;33722:38;;33664:102;;;:::o;33772:174::-;33912:26;33908:1;33900:6;33896:14;33889:50;33772:174;:::o;33952:222::-;34092:34;34088:1;34080:6;34076:14;34069:58;34161:5;34156:2;34148:6;34144:15;34137:30;33952:222;:::o;34180:181::-;34320:33;34316:1;34308:6;34304:14;34297:57;34180:181;:::o;34367:179::-;34507:31;34503:1;34495:6;34491:14;34484:55;34367:179;:::o;34552:181::-;34692:33;34688:1;34680:6;34676:14;34669:57;34552:181;:::o;34739:175::-;34879:27;34875:1;34867:6;34863:14;34856:51;34739:175;:::o;34920:221::-;35060:34;35056:1;35048:6;35044:14;35037:58;35129:4;35124:2;35116:6;35112:15;35105:29;34920:221;:::o;35147:214::-;35287:66;35283:1;35275:6;35271:14;35264:90;35147:214;:::o;35367:179::-;35507:31;35503:1;35495:6;35491:14;35484:55;35367:179;:::o;35552:::-;35692:31;35688:1;35680:6;35676:14;35669:55;35552:179;:::o;35737:225::-;35877:34;35873:1;35865:6;35861:14;35854:58;35946:8;35941:2;35933:6;35929:15;35922:33;35737:225;:::o;35968:221::-;36108:34;36104:1;36096:6;36092:14;36085:58;36177:4;36172:2;36164:6;36160:15;36153:29;35968:221;:::o;36195:::-;36335:34;36331:1;36323:6;36319:14;36312:58;36404:4;36399:2;36391:6;36387:15;36380:29;36195:221;:::o;36422:180::-;36562:32;36558:1;36550:6;36546:14;36539:56;36422:180;:::o;36608:235::-;36748:34;36744:1;36736:6;36732:14;36725:58;36817:18;36812:2;36804:6;36800:15;36793:43;36608:235;:::o;36849:226::-;36989:34;36985:1;36977:6;36973:14;36966:58;37058:9;37053:2;37045:6;37041:15;37034:34;36849:226;:::o;37081:224::-;37221:34;37217:1;37209:6;37205:14;37198:58;37290:7;37285:2;37277:6;37273:15;37266:32;37081:224;:::o;37311:225::-;37451:34;37447:1;37439:6;37435:14;37428:58;37520:8;37515:2;37507:6;37503:15;37496:33;37311:225;:::o;37542:223::-;37682:34;37678:1;37670:6;37666:14;37659:58;37751:6;37746:2;37738:6;37734:15;37727:31;37542:223;:::o;37771:224::-;37911:34;37907:1;37899:6;37895:14;37888:58;37980:7;37975:2;37967:6;37963:15;37956:32;37771:224;:::o;38001:181::-;38141:33;38137:1;38129:6;38125:14;38118:57;38001:181;:::o;38188:122::-;38261:24;38279:5;38261:24;:::i;:::-;38254:5;38251:35;38241:63;;38300:1;38297;38290:12;38241:63;38188:122;:::o;38316:::-;38389:24;38407:5;38389:24;:::i;:::-;38382:5;38379:35;38369:63;;38428:1;38425;38418:12;38369:63;38316:122;:::o;38444:::-;38517:24;38535:5;38517:24;:::i;:::-;38510:5;38507:35;38497:63;;38556:1;38553;38546:12;38497:63;38444:122;:::o;38572:120::-;38644:23;38661:5;38644:23;:::i;:::-;38637:5;38634:34;38624:62;;38682:1;38679;38672:12;38624:62;38572:120;:::o;38698:118::-;38769:22;38785:5;38769:22;:::i;:::-;38762:5;38759:33;38749:61;;38806:1;38803;38796:12;38749:61;38698:118;:::o

Swarm Source

ipfs://8222f04fcb71ed2f8e1e216612e4d194517412ef16d8a95c90c24bacd2a51b16

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

OVERVIEW

Street Credit is a cryptocurrency project based on the Ethereum blockchain to facilitate peer to peer exchange, allowing holders to pay for products or to be paid for services in a secure and anonymous way without the need for a third party.

Validator Index Block Amount
View All Withdrawals

Txn Hash Block Value Eth2 PubKey Valid
View All Deposits
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.