ERC-20
Overview
Max Total Supply
10,000,000,000 PEPE
Holders
93
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
27,268,412.064579716865077834 PEPEValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
PEPEGOLD
Compiler Version
v0.8.16+commit.07a7930e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-08-10 */ // File: @openzeppelin/contracts/utils/math/SafeCast.sol // OpenZeppelin Contracts (last updated v4.7.0) (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 uint248 from uint256, reverting on * overflow (when the input is greater than largest uint248). * * Counterpart to Solidity's `uint248` operator. * * Requirements: * * - input must fit into 248 bits * * _Available since v4.7._ */ function toUint248(uint256 value) internal pure returns (uint248) { require(value <= type(uint248).max, "SafeCast: value doesn't fit in 248 bits"); return uint248(value); } /** * @dev Returns the downcasted uint240 from uint256, reverting on * overflow (when the input is greater than largest uint240). * * Counterpart to Solidity's `uint240` operator. * * Requirements: * * - input must fit into 240 bits * * _Available since v4.7._ */ function toUint240(uint256 value) internal pure returns (uint240) { require(value <= type(uint240).max, "SafeCast: value doesn't fit in 240 bits"); return uint240(value); } /** * @dev Returns the downcasted uint232 from uint256, reverting on * overflow (when the input is greater than largest uint232). * * Counterpart to Solidity's `uint232` operator. * * Requirements: * * - input must fit into 232 bits * * _Available since v4.7._ */ function toUint232(uint256 value) internal pure returns (uint232) { require(value <= type(uint232).max, "SafeCast: value doesn't fit in 232 bits"); return uint232(value); } /** * @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 * * _Available since v4.2._ */ 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 uint216 from uint256, reverting on * overflow (when the input is greater than largest uint216). * * Counterpart to Solidity's `uint216` operator. * * Requirements: * * - input must fit into 216 bits * * _Available since v4.7._ */ function toUint216(uint256 value) internal pure returns (uint216) { require(value <= type(uint216).max, "SafeCast: value doesn't fit in 216 bits"); return uint216(value); } /** * @dev Returns the downcasted uint208 from uint256, reverting on * overflow (when the input is greater than largest uint208). * * Counterpart to Solidity's `uint208` operator. * * Requirements: * * - input must fit into 208 bits * * _Available since v4.7._ */ function toUint208(uint256 value) internal pure returns (uint208) { require(value <= type(uint208).max, "SafeCast: value doesn't fit in 208 bits"); return uint208(value); } /** * @dev Returns the downcasted uint200 from uint256, reverting on * overflow (when the input is greater than largest uint200). * * Counterpart to Solidity's `uint200` operator. * * Requirements: * * - input must fit into 200 bits * * _Available since v4.7._ */ function toUint200(uint256 value) internal pure returns (uint200) { require(value <= type(uint200).max, "SafeCast: value doesn't fit in 200 bits"); return uint200(value); } /** * @dev Returns the downcasted uint192 from uint256, reverting on * overflow (when the input is greater than largest uint192). * * Counterpart to Solidity's `uint192` operator. * * Requirements: * * - input must fit into 192 bits * * _Available since v4.7._ */ function toUint192(uint256 value) internal pure returns (uint192) { require(value <= type(uint192).max, "SafeCast: value doesn't fit in 192 bits"); return uint192(value); } /** * @dev Returns the downcasted uint184 from uint256, reverting on * overflow (when the input is greater than largest uint184). * * Counterpart to Solidity's `uint184` operator. * * Requirements: * * - input must fit into 184 bits * * _Available since v4.7._ */ function toUint184(uint256 value) internal pure returns (uint184) { require(value <= type(uint184).max, "SafeCast: value doesn't fit in 184 bits"); return uint184(value); } /** * @dev Returns the downcasted uint176 from uint256, reverting on * overflow (when the input is greater than largest uint176). * * Counterpart to Solidity's `uint176` operator. * * Requirements: * * - input must fit into 176 bits * * _Available since v4.7._ */ function toUint176(uint256 value) internal pure returns (uint176) { require(value <= type(uint176).max, "SafeCast: value doesn't fit in 176 bits"); return uint176(value); } /** * @dev Returns the downcasted uint168 from uint256, reverting on * overflow (when the input is greater than largest uint168). * * Counterpart to Solidity's `uint168` operator. * * Requirements: * * - input must fit into 168 bits * * _Available since v4.7._ */ function toUint168(uint256 value) internal pure returns (uint168) { require(value <= type(uint168).max, "SafeCast: value doesn't fit in 168 bits"); return uint168(value); } /** * @dev Returns the downcasted uint160 from uint256, reverting on * overflow (when the input is greater than largest uint160). * * Counterpart to Solidity's `uint160` operator. * * Requirements: * * - input must fit into 160 bits * * _Available since v4.7._ */ function toUint160(uint256 value) internal pure returns (uint160) { require(value <= type(uint160).max, "SafeCast: value doesn't fit in 160 bits"); return uint160(value); } /** * @dev Returns the downcasted uint152 from uint256, reverting on * overflow (when the input is greater than largest uint152). * * Counterpart to Solidity's `uint152` operator. * * Requirements: * * - input must fit into 152 bits * * _Available since v4.7._ */ function toUint152(uint256 value) internal pure returns (uint152) { require(value <= type(uint152).max, "SafeCast: value doesn't fit in 152 bits"); return uint152(value); } /** * @dev Returns the downcasted uint144 from uint256, reverting on * overflow (when the input is greater than largest uint144). * * Counterpart to Solidity's `uint144` operator. * * Requirements: * * - input must fit into 144 bits * * _Available since v4.7._ */ function toUint144(uint256 value) internal pure returns (uint144) { require(value <= type(uint144).max, "SafeCast: value doesn't fit in 144 bits"); return uint144(value); } /** * @dev Returns the downcasted uint136 from uint256, reverting on * overflow (when the input is greater than largest uint136). * * Counterpart to Solidity's `uint136` operator. * * Requirements: * * - input must fit into 136 bits * * _Available since v4.7._ */ function toUint136(uint256 value) internal pure returns (uint136) { require(value <= type(uint136).max, "SafeCast: value doesn't fit in 136 bits"); return uint136(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 * * _Available since v2.5._ */ 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 uint120 from uint256, reverting on * overflow (when the input is greater than largest uint120). * * Counterpart to Solidity's `uint120` operator. * * Requirements: * * - input must fit into 120 bits * * _Available since v4.7._ */ function toUint120(uint256 value) internal pure returns (uint120) { require(value <= type(uint120).max, "SafeCast: value doesn't fit in 120 bits"); return uint120(value); } /** * @dev Returns the downcasted uint112 from uint256, reverting on * overflow (when the input is greater than largest uint112). * * Counterpart to Solidity's `uint112` operator. * * Requirements: * * - input must fit into 112 bits * * _Available since v4.7._ */ function toUint112(uint256 value) internal pure returns (uint112) { require(value <= type(uint112).max, "SafeCast: value doesn't fit in 112 bits"); return uint112(value); } /** * @dev Returns the downcasted uint104 from uint256, reverting on * overflow (when the input is greater than largest uint104). * * Counterpart to Solidity's `uint104` operator. * * Requirements: * * - input must fit into 104 bits * * _Available since v4.7._ */ function toUint104(uint256 value) internal pure returns (uint104) { require(value <= type(uint104).max, "SafeCast: value doesn't fit in 104 bits"); return uint104(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 * * _Available since v4.2._ */ 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 uint88 from uint256, reverting on * overflow (when the input is greater than largest uint88). * * Counterpart to Solidity's `uint88` operator. * * Requirements: * * - input must fit into 88 bits * * _Available since v4.7._ */ function toUint88(uint256 value) internal pure returns (uint88) { require(value <= type(uint88).max, "SafeCast: value doesn't fit in 88 bits"); return uint88(value); } /** * @dev Returns the downcasted uint80 from uint256, reverting on * overflow (when the input is greater than largest uint80). * * Counterpart to Solidity's `uint80` operator. * * Requirements: * * - input must fit into 80 bits * * _Available since v4.7._ */ function toUint80(uint256 value) internal pure returns (uint80) { require(value <= type(uint80).max, "SafeCast: value doesn't fit in 80 bits"); return uint80(value); } /** * @dev Returns the downcasted uint72 from uint256, reverting on * overflow (when the input is greater than largest uint72). * * Counterpart to Solidity's `uint72` operator. * * Requirements: * * - input must fit into 72 bits * * _Available since v4.7._ */ function toUint72(uint256 value) internal pure returns (uint72) { require(value <= type(uint72).max, "SafeCast: value doesn't fit in 72 bits"); return uint72(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 * * _Available since v2.5._ */ 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 uint56 from uint256, reverting on * overflow (when the input is greater than largest uint56). * * Counterpart to Solidity's `uint56` operator. * * Requirements: * * - input must fit into 56 bits * * _Available since v4.7._ */ function toUint56(uint256 value) internal pure returns (uint56) { require(value <= type(uint56).max, "SafeCast: value doesn't fit in 56 bits"); return uint56(value); } /** * @dev Returns the downcasted uint48 from uint256, reverting on * overflow (when the input is greater than largest uint48). * * Counterpart to Solidity's `uint48` operator. * * Requirements: * * - input must fit into 48 bits * * _Available since v4.7._ */ function toUint48(uint256 value) internal pure returns (uint48) { require(value <= type(uint48).max, "SafeCast: value doesn't fit in 48 bits"); return uint48(value); } /** * @dev Returns the downcasted uint40 from uint256, reverting on * overflow (when the input is greater than largest uint40). * * Counterpart to Solidity's `uint40` operator. * * Requirements: * * - input must fit into 40 bits * * _Available since v4.7._ */ function toUint40(uint256 value) internal pure returns (uint40) { require(value <= type(uint40).max, "SafeCast: value doesn't fit in 40 bits"); return uint40(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 * * _Available since v2.5._ */ 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 uint24 from uint256, reverting on * overflow (when the input is greater than largest uint24). * * Counterpart to Solidity's `uint24` operator. * * Requirements: * * - input must fit into 24 bits * * _Available since v4.7._ */ function toUint24(uint256 value) internal pure returns (uint24) { require(value <= type(uint24).max, "SafeCast: value doesn't fit in 24 bits"); return uint24(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 * * _Available since v2.5._ */ 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 * * _Available since v2.5._ */ 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. * * _Available since v3.0._ */ function toUint256(int256 value) internal pure returns (uint256) { require(value >= 0, "SafeCast: value must be positive"); return uint256(value); } /** * @dev Returns the downcasted int248 from int256, reverting on * overflow (when the input is less than smallest int248 or * greater than largest int248). * * Counterpart to Solidity's `int248` operator. * * Requirements: * * - input must fit into 248 bits * * _Available since v4.7._ */ function toInt248(int256 value) internal pure returns (int248) { require(value >= type(int248).min && value <= type(int248).max, "SafeCast: value doesn't fit in 248 bits"); return int248(value); } /** * @dev Returns the downcasted int240 from int256, reverting on * overflow (when the input is less than smallest int240 or * greater than largest int240). * * Counterpart to Solidity's `int240` operator. * * Requirements: * * - input must fit into 240 bits * * _Available since v4.7._ */ function toInt240(int256 value) internal pure returns (int240) { require(value >= type(int240).min && value <= type(int240).max, "SafeCast: value doesn't fit in 240 bits"); return int240(value); } /** * @dev Returns the downcasted int232 from int256, reverting on * overflow (when the input is less than smallest int232 or * greater than largest int232). * * Counterpart to Solidity's `int232` operator. * * Requirements: * * - input must fit into 232 bits * * _Available since v4.7._ */ function toInt232(int256 value) internal pure returns (int232) { require(value >= type(int232).min && value <= type(int232).max, "SafeCast: value doesn't fit in 232 bits"); return int232(value); } /** * @dev Returns the downcasted int224 from int256, reverting on * overflow (when the input is less than smallest int224 or * greater than largest int224). * * Counterpart to Solidity's `int224` operator. * * Requirements: * * - input must fit into 224 bits * * _Available since v4.7._ */ function toInt224(int256 value) internal pure returns (int224) { require(value >= type(int224).min && value <= type(int224).max, "SafeCast: value doesn't fit in 224 bits"); return int224(value); } /** * @dev Returns the downcasted int216 from int256, reverting on * overflow (when the input is less than smallest int216 or * greater than largest int216). * * Counterpart to Solidity's `int216` operator. * * Requirements: * * - input must fit into 216 bits * * _Available since v4.7._ */ function toInt216(int256 value) internal pure returns (int216) { require(value >= type(int216).min && value <= type(int216).max, "SafeCast: value doesn't fit in 216 bits"); return int216(value); } /** * @dev Returns the downcasted int208 from int256, reverting on * overflow (when the input is less than smallest int208 or * greater than largest int208). * * Counterpart to Solidity's `int208` operator. * * Requirements: * * - input must fit into 208 bits * * _Available since v4.7._ */ function toInt208(int256 value) internal pure returns (int208) { require(value >= type(int208).min && value <= type(int208).max, "SafeCast: value doesn't fit in 208 bits"); return int208(value); } /** * @dev Returns the downcasted int200 from int256, reverting on * overflow (when the input is less than smallest int200 or * greater than largest int200). * * Counterpart to Solidity's `int200` operator. * * Requirements: * * - input must fit into 200 bits * * _Available since v4.7._ */ function toInt200(int256 value) internal pure returns (int200) { require(value >= type(int200).min && value <= type(int200).max, "SafeCast: value doesn't fit in 200 bits"); return int200(value); } /** * @dev Returns the downcasted int192 from int256, reverting on * overflow (when the input is less than smallest int192 or * greater than largest int192). * * Counterpart to Solidity's `int192` operator. * * Requirements: * * - input must fit into 192 bits * * _Available since v4.7._ */ function toInt192(int256 value) internal pure returns (int192) { require(value >= type(int192).min && value <= type(int192).max, "SafeCast: value doesn't fit in 192 bits"); return int192(value); } /** * @dev Returns the downcasted int184 from int256, reverting on * overflow (when the input is less than smallest int184 or * greater than largest int184). * * Counterpart to Solidity's `int184` operator. * * Requirements: * * - input must fit into 184 bits * * _Available since v4.7._ */ function toInt184(int256 value) internal pure returns (int184) { require(value >= type(int184).min && value <= type(int184).max, "SafeCast: value doesn't fit in 184 bits"); return int184(value); } /** * @dev Returns the downcasted int176 from int256, reverting on * overflow (when the input is less than smallest int176 or * greater than largest int176). * * Counterpart to Solidity's `int176` operator. * * Requirements: * * - input must fit into 176 bits * * _Available since v4.7._ */ function toInt176(int256 value) internal pure returns (int176) { require(value >= type(int176).min && value <= type(int176).max, "SafeCast: value doesn't fit in 176 bits"); return int176(value); } /** * @dev Returns the downcasted int168 from int256, reverting on * overflow (when the input is less than smallest int168 or * greater than largest int168). * * Counterpart to Solidity's `int168` operator. * * Requirements: * * - input must fit into 168 bits * * _Available since v4.7._ */ function toInt168(int256 value) internal pure returns (int168) { require(value >= type(int168).min && value <= type(int168).max, "SafeCast: value doesn't fit in 168 bits"); return int168(value); } /** * @dev Returns the downcasted int160 from int256, reverting on * overflow (when the input is less than smallest int160 or * greater than largest int160). * * Counterpart to Solidity's `int160` operator. * * Requirements: * * - input must fit into 160 bits * * _Available since v4.7._ */ function toInt160(int256 value) internal pure returns (int160) { require(value >= type(int160).min && value <= type(int160).max, "SafeCast: value doesn't fit in 160 bits"); return int160(value); } /** * @dev Returns the downcasted int152 from int256, reverting on * overflow (when the input is less than smallest int152 or * greater than largest int152). * * Counterpart to Solidity's `int152` operator. * * Requirements: * * - input must fit into 152 bits * * _Available since v4.7._ */ function toInt152(int256 value) internal pure returns (int152) { require(value >= type(int152).min && value <= type(int152).max, "SafeCast: value doesn't fit in 152 bits"); return int152(value); } /** * @dev Returns the downcasted int144 from int256, reverting on * overflow (when the input is less than smallest int144 or * greater than largest int144). * * Counterpart to Solidity's `int144` operator. * * Requirements: * * - input must fit into 144 bits * * _Available since v4.7._ */ function toInt144(int256 value) internal pure returns (int144) { require(value >= type(int144).min && value <= type(int144).max, "SafeCast: value doesn't fit in 144 bits"); return int144(value); } /** * @dev Returns the downcasted int136 from int256, reverting on * overflow (when the input is less than smallest int136 or * greater than largest int136). * * Counterpart to Solidity's `int136` operator. * * Requirements: * * - input must fit into 136 bits * * _Available since v4.7._ */ function toInt136(int256 value) internal pure returns (int136) { require(value >= type(int136).min && value <= type(int136).max, "SafeCast: value doesn't fit in 136 bits"); return int136(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 int120 from int256, reverting on * overflow (when the input is less than smallest int120 or * greater than largest int120). * * Counterpart to Solidity's `int120` operator. * * Requirements: * * - input must fit into 120 bits * * _Available since v4.7._ */ function toInt120(int256 value) internal pure returns (int120) { require(value >= type(int120).min && value <= type(int120).max, "SafeCast: value doesn't fit in 120 bits"); return int120(value); } /** * @dev Returns the downcasted int112 from int256, reverting on * overflow (when the input is less than smallest int112 or * greater than largest int112). * * Counterpart to Solidity's `int112` operator. * * Requirements: * * - input must fit into 112 bits * * _Available since v4.7._ */ function toInt112(int256 value) internal pure returns (int112) { require(value >= type(int112).min && value <= type(int112).max, "SafeCast: value doesn't fit in 112 bits"); return int112(value); } /** * @dev Returns the downcasted int104 from int256, reverting on * overflow (when the input is less than smallest int104 or * greater than largest int104). * * Counterpart to Solidity's `int104` operator. * * Requirements: * * - input must fit into 104 bits * * _Available since v4.7._ */ function toInt104(int256 value) internal pure returns (int104) { require(value >= type(int104).min && value <= type(int104).max, "SafeCast: value doesn't fit in 104 bits"); return int104(value); } /** * @dev Returns the downcasted int96 from int256, reverting on * overflow (when the input is less than smallest int96 or * greater than largest int96). * * Counterpart to Solidity's `int96` operator. * * Requirements: * * - input must fit into 96 bits * * _Available since v4.7._ */ function toInt96(int256 value) internal pure returns (int96) { require(value >= type(int96).min && value <= type(int96).max, "SafeCast: value doesn't fit in 96 bits"); return int96(value); } /** * @dev Returns the downcasted int88 from int256, reverting on * overflow (when the input is less than smallest int88 or * greater than largest int88). * * Counterpart to Solidity's `int88` operator. * * Requirements: * * - input must fit into 88 bits * * _Available since v4.7._ */ function toInt88(int256 value) internal pure returns (int88) { require(value >= type(int88).min && value <= type(int88).max, "SafeCast: value doesn't fit in 88 bits"); return int88(value); } /** * @dev Returns the downcasted int80 from int256, reverting on * overflow (when the input is less than smallest int80 or * greater than largest int80). * * Counterpart to Solidity's `int80` operator. * * Requirements: * * - input must fit into 80 bits * * _Available since v4.7._ */ function toInt80(int256 value) internal pure returns (int80) { require(value >= type(int80).min && value <= type(int80).max, "SafeCast: value doesn't fit in 80 bits"); return int80(value); } /** * @dev Returns the downcasted int72 from int256, reverting on * overflow (when the input is less than smallest int72 or * greater than largest int72). * * Counterpart to Solidity's `int72` operator. * * Requirements: * * - input must fit into 72 bits * * _Available since v4.7._ */ function toInt72(int256 value) internal pure returns (int72) { require(value >= type(int72).min && value <= type(int72).max, "SafeCast: value doesn't fit in 72 bits"); return int72(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 int56 from int256, reverting on * overflow (when the input is less than smallest int56 or * greater than largest int56). * * Counterpart to Solidity's `int56` operator. * * Requirements: * * - input must fit into 56 bits * * _Available since v4.7._ */ function toInt56(int256 value) internal pure returns (int56) { require(value >= type(int56).min && value <= type(int56).max, "SafeCast: value doesn't fit in 56 bits"); return int56(value); } /** * @dev Returns the downcasted int48 from int256, reverting on * overflow (when the input is less than smallest int48 or * greater than largest int48). * * Counterpart to Solidity's `int48` operator. * * Requirements: * * - input must fit into 48 bits * * _Available since v4.7._ */ function toInt48(int256 value) internal pure returns (int48) { require(value >= type(int48).min && value <= type(int48).max, "SafeCast: value doesn't fit in 48 bits"); return int48(value); } /** * @dev Returns the downcasted int40 from int256, reverting on * overflow (when the input is less than smallest int40 or * greater than largest int40). * * Counterpart to Solidity's `int40` operator. * * Requirements: * * - input must fit into 40 bits * * _Available since v4.7._ */ function toInt40(int256 value) internal pure returns (int40) { require(value >= type(int40).min && value <= type(int40).max, "SafeCast: value doesn't fit in 40 bits"); return int40(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 int24 from int256, reverting on * overflow (when the input is less than smallest int24 or * greater than largest int24). * * Counterpart to Solidity's `int24` operator. * * Requirements: * * - input must fit into 24 bits * * _Available since v4.7._ */ function toInt24(int256 value) internal pure returns (int24) { require(value >= type(int24).min && value <= type(int24).max, "SafeCast: value doesn't fit in 24 bits"); return int24(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. * * _Available since v3.0._ */ 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.7.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @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 == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. It the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. // We also know that `k`, the position of the most significant bit, is such that `msb(a) = 2**k`. // This gives `2**k < a <= 2**(k+1)` → `2**(k/2) <= sqrt(a) < 2 ** (k/2+1)`. // Using an algorithm similar to the msb conmputation, we are able to compute `result = 2**(k/2)` which is a // good first aproximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1; uint256 x = a; if (x >> 128 > 0) { x >>= 128; result <<= 64; } if (x >> 64 > 0) { x >>= 64; result <<= 32; } if (x >> 32 > 0) { x >>= 32; result <<= 16; } if (x >> 16 > 0) { x >>= 16; result <<= 8; } if (x >> 8 > 0) { x >>= 8; result <<= 4; } if (x >> 4 > 0) { x >>= 4; result <<= 2; } if (x >> 2 > 0) { result <<= 1; } // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { uint256 result = sqrt(a); if (rounding == Rounding.Up && result * result < a) { result += 1; } return result; } } // 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 (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @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); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin/contracts/utils/cryptography/ECDSA.sol // OpenZeppelin Contracts (last updated v4.7.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. /// @solidity memory-safe-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. /// @solidity memory-safe-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.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev 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); } // 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.7.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, allowance(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 = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * 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 Updates `owner` s allowance for `spender` based on spent `amount`. * * 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 (last updated v4.6.0) (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 constant _PERMIT_TYPEHASH = keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)"); /** * @dev In previous versions `_PERMIT_TYPEHASH` was declared as `immutable`. * However, to ensure consistency with the upgradeable transpiler, we will continue * to reserve a slot. * @custom:oz-renamed-from _PERMIT_TYPEHASH */ // solhint-disable-next-line var-name-mixedcase bytes32 private _PERMIT_TYPEHASH_DEPRECATED_SLOT; /** * @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: pepe.sol pragma solidity ^0.8.4; contract PEPEGOLD is ERC20, ERC20Permit, ERC20Votes { constructor() ERC20("PepeGold", "PEPE") ERC20Permit("PG") { _mint(msg.sender, 10000000000 * 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
- No Contract Security Audit Submitted- Submit Audit Here
[{"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"}]
Contract Creation Code
6101406040523480156200001257600080fd5b506040518060400160405280600281526020017f5047000000000000000000000000000000000000000000000000000000000000815250806040518060400160405280600181526020017f31000000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f50657065476f6c640000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f50455045000000000000000000000000000000000000000000000000000000008152508160039081620000fd919062000df2565b5080600490816200010f919062000df2565b50505060008280519060200120905060008280519060200120905060007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f90508260e081815250508161010081815250504660a081815250506200017b8184846200020c60201b60201c565b608081815250503073ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff16815250508061012081815250505050505050506200020633620001da6200024860201b60201c565b600a620001e8919062001069565b6402540be400620001fa9190620010ba565b6200025160201b60201c565b62001523565b60008383834630604051602001620002299594939291906200118c565b6040516020818303038152906040528051906020012090509392505050565b60006012905090565b6200026882826200026c60201b62000e7b1760201c565b5050565b6200028382826200032a60201b62000f081760201c565b62000293620004a260201b60201c565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16620002c1620004c660201b60201c565b111562000305576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002fc9062001270565b60405180910390fd5b620003246009620004d060201b620010671783620004e860201b60201c565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200039c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200039390620012e2565b60405180910390fd5b620003b0600083836200079960201b60201c565b8060026000828254620003c4919062001304565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200041b919062001304565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200048291906200133f565b60405180910390a36200049e600083836200079e60201b60201c565b5050565b60007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff905090565b6000600254905090565b60008183620004e0919062001304565b905092915050565b600080600085805490509050600081146200055d57856001826200050d91906200135c565b8154811062000521576200052062001397565b5b9060005260206000200160000160049054906101000a90047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1662000560565b60005b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1692506200058c83858760201c565b9150600081118015620005e557504386600183620005ab91906200135c565b81548110620005bf57620005be62001397565b5b9060005260206000200160000160009054906101000a900463ffffffff1663ffffffff16145b1562000686576200060182620007bb60201b6200107d1760201c565b866001836200061191906200135c565b8154811062000625576200062462001397565b5b9060005260206000200160000160046101000a8154817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff02191690837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16021790555062000790565b856040518060400160405280620006a8436200082960201b620010e81760201c565b63ffffffff168152602001620006c985620007bb60201b6200107d1760201c565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff168152509080600181540180825580915050600190039060005260206000200160009091909190915060008201518160000160006101000a81548163ffffffff021916908363ffffffff16021790555060208201518160000160046101000a8154817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff02191690837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16021790555050505b50935093915050565b505050565b620007b68383836200087f60201b6200113b1760201c565b505050565b60007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff801682111562000821576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000818906200143c565b60405180910390fd5b819050919050565b600063ffffffff801682111562000877576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200086e90620014d4565b60405180910390fd5b819050919050565b62000897838383620008cf60201b620011661760201c565b620008ca620008ac84620008d460201b60201c565b620008bd84620008d460201b60201c565b836200093d60201b60201c565b505050565b505050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156200097a5750600081115b1562000b5b57600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161462000a6d5760008062000a14600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002062000b6060201b6200116b1785620004e860201b60201c565b915091508473ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724838360405162000a62929190620014f6565b60405180910390a250505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000b5a5760008062000b01600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020620004d060201b620010671785620004e860201b60201c565b915091508373ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724838360405162000b4f929190620014f6565b60405180910390a250505b5b505050565b6000818362000b7091906200135c565b905092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000bfa57607f821691505b60208210810362000c105762000c0f62000bb2565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000c7a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000c3b565b62000c86868362000c3b565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000cd362000ccd62000cc78462000c9e565b62000ca8565b62000c9e565b9050919050565b6000819050919050565b62000cef8362000cb2565b62000d0762000cfe8262000cda565b84845462000c48565b825550505050565b600090565b62000d1e62000d0f565b62000d2b81848462000ce4565b505050565b5b8181101562000d535762000d4760008262000d14565b60018101905062000d31565b5050565b601f82111562000da25762000d6c8162000c16565b62000d778462000c2b565b8101602085101562000d87578190505b62000d9f62000d968562000c2b565b83018262000d30565b50505b505050565b600082821c905092915050565b600062000dc76000198460080262000da7565b1980831691505092915050565b600062000de2838362000db4565b9150826002028217905092915050565b62000dfd8262000b78565b67ffffffffffffffff81111562000e195762000e1862000b83565b5b62000e25825462000be1565b62000e3282828562000d57565b600060209050601f83116001811462000e6a576000841562000e55578287015190505b62000e61858262000dd4565b86555062000ed1565b601f19841662000e7a8662000c16565b60005b8281101562000ea45784890151825560018201915060208501945060208101905062000e7d565b8683101562000ec4578489015162000ec0601f89168262000db4565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000f675780860481111562000f3f5762000f3e62000ed9565b5b600185161562000f4f5780820291505b808102905062000f5f8562000f08565b945062000f1f565b94509492505050565b60008262000f82576001905062001055565b8162000f92576000905062001055565b816001811462000fab576002811462000fb65762000fec565b600191505062001055565b60ff84111562000fcb5762000fca62000ed9565b5b8360020a91508482111562000fe55762000fe462000ed9565b5b5062001055565b5060208310610133831016604e8410600b8410161715620010265782820a90508381111562001020576200101f62000ed9565b5b62001055565b62001035848484600162000f15565b925090508184048111156200104f576200104e62000ed9565b5b81810290505b9392505050565b600060ff82169050919050565b6000620010768262000c9e565b915062001083836200105c565b9250620010b27fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000f70565b905092915050565b6000620010c78262000c9e565b9150620010d48362000c9e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562001110576200110f62000ed9565b5b828202905092915050565b6000819050919050565b62001130816200111b565b82525050565b620011418162000c9e565b82525050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620011748262001147565b9050919050565b620011868162001167565b82525050565b600060a082019050620011a3600083018862001125565b620011b2602083018762001125565b620011c1604083018662001125565b620011d0606083018562001136565b620011df60808301846200117b565b9695505050505050565b600082825260208201905092915050565b7f4552433230566f7465733a20746f74616c20737570706c79207269736b73206f60008201527f766572666c6f77696e6720766f74657300000000000000000000000000000000602082015250565b600062001258603083620011e9565b91506200126582620011fa565b604082019050919050565b600060208201905081810360008301526200128b8162001249565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620012ca601f83620011e9565b9150620012d78262001292565b602082019050919050565b60006020820190508181036000830152620012fd81620012bb565b9050919050565b6000620013118262000c9e565b91506200131e8362000c9e565b925082820190508082111562001339576200133862000ed9565b5b92915050565b600060208201905062001356600083018462001136565b92915050565b6000620013698262000c9e565b9150620013768362000c9e565b925082820390508181111562001391576200139062000ed9565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f53616665436173743a2076616c756520646f65736e27742066697420696e203260008201527f3234206269747300000000000000000000000000000000000000000000000000602082015250565b600062001424602783620011e9565b91506200143182620013c6565b604082019050919050565b60006020820190508181036000830152620014578162001415565b9050919050565b7f53616665436173743a2076616c756520646f65736e27742066697420696e203360008201527f3220626974730000000000000000000000000000000000000000000000000000602082015250565b6000620014bc602683620011e9565b9150620014c9826200145e565b604082019050919050565b60006020820190508181036000830152620014ef81620014ad565b9050919050565b60006040820190506200150d600083018562001136565b6200151c602083018462001136565b9392505050565b60805160a05160c05160e05161010051610120516136f462001573600039600061170b0152600061174d0152600061172c01526000611661015260006116b7015260006116e001526136f46000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c806370a08231116100b8578063a457c2d71161007c578063a457c2d7146103d9578063a9059cbb14610409578063c3cda52014610439578063d505accf14610455578063dd62ed3e14610471578063f1127ed8146104a157610142565b806370a08231146102fb5780637ecebe001461032b5780638e539e8c1461035b57806395d89b411461038b5780639ab24eb0146103a957610142565b80633644e5151161010a5780633644e51514610201578063395093511461021f5780633a46b1a81461024f578063587cde1e1461027f5780635c19a95c146102af5780636fcfff45146102cb57610142565b806306fdde0314610147578063095ea7b31461016557806318160ddd1461019557806323b872dd146101b3578063313ce567146101e3575b600080fd5b61014f6104d1565b60405161015c9190612347565b60405180910390f35b61017f600480360381019061017a9190612402565b610563565b60405161018c919061245d565b60405180910390f35b61019d610586565b6040516101aa9190612487565b60405180910390f35b6101cd60048036038101906101c891906124a2565b610590565b6040516101da919061245d565b60405180910390f35b6101eb6105bf565b6040516101f89190612511565b60405180910390f35b6102096105c8565b6040516102169190612545565b60405180910390f35b61023960048036038101906102349190612402565b6105d7565b604051610246919061245d565b60405180910390f35b61026960048036038101906102649190612402565b61060e565b6040516102769190612487565b60405180910390f35b61029960048036038101906102949190612560565b6106a2565b6040516102a6919061259c565b60405180910390f35b6102c960048036038101906102c49190612560565b61070b565b005b6102e560048036038101906102e09190612560565b61071f565b6040516102f291906125d6565b60405180910390f35b61031560048036038101906103109190612560565b610773565b6040516103229190612487565b60405180910390f35b61034560048036038101906103409190612560565b6107bb565b6040516103529190612487565b60405180910390f35b610375600480360381019061037091906125f1565b61080b565b6040516103829190612487565b60405180910390f35b610393610861565b6040516103a09190612347565b60405180910390f35b6103c360048036038101906103be9190612560565b6108f3565b6040516103d09190612487565b60405180910390f35b6103f360048036038101906103ee9190612402565b610a04565b604051610400919061245d565b60405180910390f35b610423600480360381019061041e9190612402565b610a7b565b604051610430919061245d565b60405180910390f35b610453600480360381019061044e9190612676565b610a9e565b005b61046f600480360381019061046a9190612703565b610ba2565b005b61048b600480360381019061048691906127a5565b610ce4565b6040516104989190612487565b60405180910390f35b6104bb60048036038101906104b69190612811565b610d6b565b6040516104c891906128c6565b60405180910390f35b6060600380546104e090612910565b80601f016020809104026020016040519081016040528092919081815260200182805461050c90612910565b80156105595780601f1061052e57610100808354040283529160200191610559565b820191906000526020600020905b81548152906001019060200180831161053c57829003601f168201915b5050505050905090565b60008061056e611181565b905061057b818585611189565b600191505092915050565b6000600254905090565b60008061059b611181565b90506105a8858285611352565b6105b38585856113de565b60019150509392505050565b60006012905090565b60006105d261165d565b905090565b6000806105e2611181565b90506106038185856105f48589610ce4565b6105fe9190612970565b611189565b600191505092915050565b6000438210610652576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610649906129f0565b60405180910390fd5b61069a600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002083611777565b905092915050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b61071c610716611181565b82611883565b50565b600061076c600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490506110e8565b9050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000610804600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061199d565b9050919050565b600043821061084f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610846906129f0565b60405180910390fd5b61085a600983611777565b9050919050565b60606004805461087090612910565b80601f016020809104026020016040519081016040528092919081815260200182805461089c90612910565b80156108e95780601f106108be576101008083540402835291602001916108e9565b820191906000526020600020905b8154815290600101906020018083116108cc57829003601f168201915b5050505050905090565b600080600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490509050600081146109db57600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060018261098f9190612a10565b815481106109a05761099f612a44565b5b9060005260206000200160000160049054906101000a90047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff166109de565b60005b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16915050919050565b600080610a0f611181565b90506000610a1d8286610ce4565b905083811015610a62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5990612ae5565b60405180910390fd5b610a6f8286868403611189565b60019250505092915050565b600080610a86611181565b9050610a938185856113de565b600191505092915050565b83421115610ae1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad890612b51565b60405180910390fd5b6000610b43610b3b7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf898989604051602001610b209493929190612b71565b604051602081830303815290604052805190602001206119ab565b8585856119c5565b9050610b4e816119f0565b8614610b8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8690612c02565b60405180910390fd5b610b998188611883565b50505050505050565b83421115610be5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdc90612c6e565b60405180910390fd5b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9888888610c148c6119f0565b89604051602001610c2a96959493929190612c8e565b6040516020818303038152906040528051906020012090506000610c4d826119ab565b90506000610c5d828787876119c5565b90508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ccd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc490612d3b565b60405180910390fd5b610cd88a8a8a611189565b50505050505050505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610d73612279565b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208263ffffffff1681548110610dca57610dc9612a44565b5b906000526020600020016040518060400160405290816000820160009054906101000a900463ffffffff1663ffffffff1663ffffffff1681526020016000820160049054906101000a90047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1681525050905092915050565b610e858282610f08565b610e8d611a4e565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16610eb3610586565b1115610ef4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eeb90612dcd565b60405180910390fd5b610f02600961106783611a72565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6e90612e39565b60405180910390fd5b610f8360008383611cea565b8060026000828254610f959190612970565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610fea9190612970565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161104f9190612487565b60405180910390a361106360008383611cef565b5050565b600081836110759190612970565b905092915050565b60007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff80168211156110e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d790612ecb565b60405180910390fd5b819050919050565b600063ffffffff8016821115611133576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112a90612f5d565b60405180910390fd5b819050919050565b611146838383611166565b611161611152846106a2565b61115b846106a2565b83611cff565b505050565b505050565b600081836111799190612a10565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ef90612fef565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611267576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125e90613081565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516113459190612487565b60405180910390a3505050565b600061135e8484610ce4565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146113d857818110156113ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c1906130ed565b60405180910390fd5b6113d78484848403611189565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361144d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114449061317f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b390613211565b60405180910390fd5b6114c7838383611cea565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561154d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611544906132a3565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115e09190612970565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516116449190612487565b60405180910390a3611657848484611cef565b50505050565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff161480156116d957507f000000000000000000000000000000000000000000000000000000000000000046145b15611706577f00000000000000000000000000000000000000000000000000000000000000009050611774565b6117717f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000007f0000000000000000000000000000000000000000000000000000000000000000611ef8565b90505b90565b6000808380549050905060005b818110156117f65760006117988284611f32565b9050848682815481106117ae576117ad612a44565b5b9060005260206000200160000160009054906101000a900463ffffffff1663ffffffff1611156117e0578092506117f0565b6001816117ed9190612970565b91505b50611784565b60008214611858578460018361180c9190612a10565b8154811061181d5761181c612a44565b5b9060005260206000200160000160049054906101000a90047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1661185b565b60005b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff169250505092915050565b600061188e836106a2565b9050600061189b84610773565b905082600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f60405160405180910390a4611997828483611cff565b50505050565b600081600001549050919050565b60006119be6119b861165d565b83611f58565b9050919050565b60008060006119d687878787611f8b565b915091506119e381612097565b8192505050949350505050565b600080600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050611a3d8161199d565b9150611a4881612263565b50919050565b60007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff905090565b60008060008580549050905060008114611ae05785600182611a949190612a10565b81548110611aa557611aa4612a44565b5b9060005260206000200160000160049054906101000a90047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16611ae3565b60005b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff169250611b1183858763ffffffff16565b9150600081118015611b6457504386600183611b2d9190612a10565b81548110611b3e57611b3d612a44565b5b9060005260206000200160000160009054906101000a900463ffffffff1663ffffffff16145b15611bf157611b728261107d565b86600183611b809190612a10565b81548110611b9157611b90612a44565b5b9060005260206000200160000160046101000a8154817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff02191690837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff160217905550611ce1565b856040518060400160405280611c06436110e8565b63ffffffff168152602001611c1a8561107d565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff168152509080600181540180825580915050600190039060005260206000200160009091909190915060008201518160000160006101000a81548163ffffffff021916908363ffffffff16021790555060208201518160000160046101000a8154817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff02191690837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16021790555050505b50935093915050565b505050565b611cfa83838361113b565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611d3b5750600081115b15611ef357600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611e1957600080611dc2600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061116b85611a72565b915091508473ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248383604051611e0e9291906132c3565b60405180910390a250505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611ef257600080611e9b600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061106785611a72565b915091508373ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248383604051611ee79291906132c3565b60405180910390a250505b5b505050565b60008383834630604051602001611f139594939291906132ec565b6040516020818303038152906040528051906020012090509392505050565b60006002828418611f43919061336e565b828416611f509190612970565b905092915050565b60008282604051602001611f6d929190613417565b60405160208183030381529060405280519060200120905092915050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115611fc657600060039150915061208e565b601b8560ff1614158015611fde5750601c8560ff1614155b15611ff057600060049150915061208e565b600060018787878760405160008152602001604052604051612015949392919061344e565b6020604051602081039080840390855afa158015612037573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036120855760006001925092505061208e565b80600092509250505b94509492505050565b600060048111156120ab576120aa613493565b5b8160048111156120be576120bd613493565b5b031561226057600160048111156120d8576120d7613493565b5b8160048111156120eb576120ea613493565b5b0361212b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121229061350e565b60405180910390fd5b6002600481111561213f5761213e613493565b5b81600481111561215257612151613493565b5b03612192576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121899061357a565b60405180910390fd5b600360048111156121a6576121a5613493565b5b8160048111156121b9576121b8613493565b5b036121f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f09061360c565b60405180910390fd5b60048081111561220c5761220b613493565b5b81600481111561221f5761221e613493565b5b0361225f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122569061369e565b60405180910390fd5b5b50565b6001816000016000828254019250508190555050565b6040518060400160405280600063ffffffff16815260200160007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1681525090565b600081519050919050565b600082825260208201905092915050565b60005b838110156122f15780820151818401526020810190506122d6565b60008484015250505050565b6000601f19601f8301169050919050565b6000612319826122b7565b61232381856122c2565b93506123338185602086016122d3565b61233c816122fd565b840191505092915050565b60006020820190508181036000830152612361818461230e565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006123998261236e565b9050919050565b6123a98161238e565b81146123b457600080fd5b50565b6000813590506123c6816123a0565b92915050565b6000819050919050565b6123df816123cc565b81146123ea57600080fd5b50565b6000813590506123fc816123d6565b92915050565b6000806040838503121561241957612418612369565b5b6000612427858286016123b7565b9250506020612438858286016123ed565b9150509250929050565b60008115159050919050565b61245781612442565b82525050565b6000602082019050612472600083018461244e565b92915050565b612481816123cc565b82525050565b600060208201905061249c6000830184612478565b92915050565b6000806000606084860312156124bb576124ba612369565b5b60006124c9868287016123b7565b93505060206124da868287016123b7565b92505060406124eb868287016123ed565b9150509250925092565b600060ff82169050919050565b61250b816124f5565b82525050565b60006020820190506125266000830184612502565b92915050565b6000819050919050565b61253f8161252c565b82525050565b600060208201905061255a6000830184612536565b92915050565b60006020828403121561257657612575612369565b5b6000612584848285016123b7565b91505092915050565b6125968161238e565b82525050565b60006020820190506125b1600083018461258d565b92915050565b600063ffffffff82169050919050565b6125d0816125b7565b82525050565b60006020820190506125eb60008301846125c7565b92915050565b60006020828403121561260757612606612369565b5b6000612615848285016123ed565b91505092915050565b612627816124f5565b811461263257600080fd5b50565b6000813590506126448161261e565b92915050565b6126538161252c565b811461265e57600080fd5b50565b6000813590506126708161264a565b92915050565b60008060008060008060c0878903121561269357612692612369565b5b60006126a189828a016123b7565b96505060206126b289828a016123ed565b95505060406126c389828a016123ed565b94505060606126d489828a01612635565b93505060806126e589828a01612661565b92505060a06126f689828a01612661565b9150509295509295509295565b600080600080600080600060e0888a03121561272257612721612369565b5b60006127308a828b016123b7565b97505060206127418a828b016123b7565b96505060406127528a828b016123ed565b95505060606127638a828b016123ed565b94505060806127748a828b01612635565b93505060a06127858a828b01612661565b92505060c06127968a828b01612661565b91505092959891949750929550565b600080604083850312156127bc576127bb612369565b5b60006127ca858286016123b7565b92505060206127db858286016123b7565b9150509250929050565b6127ee816125b7565b81146127f957600080fd5b50565b60008135905061280b816127e5565b92915050565b6000806040838503121561282857612827612369565b5b6000612836858286016123b7565b9250506020612847858286016127fc565b9150509250929050565b61285a816125b7565b82525050565b60007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff82169050919050565b61289181612860565b82525050565b6040820160008201516128ad6000850182612851565b5060208201516128c06020850182612888565b50505050565b60006040820190506128db6000830184612897565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061292857607f821691505b60208210810361293b5761293a6128e1565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061297b826123cc565b9150612986836123cc565b925082820190508082111561299e5761299d612941565b5b92915050565b7f4552433230566f7465733a20626c6f636b206e6f7420796574206d696e656400600082015250565b60006129da601f836122c2565b91506129e5826129a4565b602082019050919050565b60006020820190508181036000830152612a09816129cd565b9050919050565b6000612a1b826123cc565b9150612a26836123cc565b9250828203905081811115612a3e57612a3d612941565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612acf6025836122c2565b9150612ada82612a73565b604082019050919050565b60006020820190508181036000830152612afe81612ac2565b9050919050565b7f4552433230566f7465733a207369676e61747572652065787069726564000000600082015250565b6000612b3b601d836122c2565b9150612b4682612b05565b602082019050919050565b60006020820190508181036000830152612b6a81612b2e565b9050919050565b6000608082019050612b866000830187612536565b612b93602083018661258d565b612ba06040830185612478565b612bad6060830184612478565b95945050505050565b7f4552433230566f7465733a20696e76616c6964206e6f6e636500000000000000600082015250565b6000612bec6019836122c2565b9150612bf782612bb6565b602082019050919050565b60006020820190508181036000830152612c1b81612bdf565b9050919050565b7f45524332305065726d69743a206578706972656420646561646c696e65000000600082015250565b6000612c58601d836122c2565b9150612c6382612c22565b602082019050919050565b60006020820190508181036000830152612c8781612c4b565b9050919050565b600060c082019050612ca36000830189612536565b612cb0602083018861258d565b612cbd604083018761258d565b612cca6060830186612478565b612cd76080830185612478565b612ce460a0830184612478565b979650505050505050565b7f45524332305065726d69743a20696e76616c6964207369676e61747572650000600082015250565b6000612d25601e836122c2565b9150612d3082612cef565b602082019050919050565b60006020820190508181036000830152612d5481612d18565b9050919050565b7f4552433230566f7465733a20746f74616c20737570706c79207269736b73206f60008201527f766572666c6f77696e6720766f74657300000000000000000000000000000000602082015250565b6000612db76030836122c2565b9150612dc282612d5b565b604082019050919050565b60006020820190508181036000830152612de681612daa565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000612e23601f836122c2565b9150612e2e82612ded565b602082019050919050565b60006020820190508181036000830152612e5281612e16565b9050919050565b7f53616665436173743a2076616c756520646f65736e27742066697420696e203260008201527f3234206269747300000000000000000000000000000000000000000000000000602082015250565b6000612eb56027836122c2565b9150612ec082612e59565b604082019050919050565b60006020820190508181036000830152612ee481612ea8565b9050919050565b7f53616665436173743a2076616c756520646f65736e27742066697420696e203360008201527f3220626974730000000000000000000000000000000000000000000000000000602082015250565b6000612f476026836122c2565b9150612f5282612eeb565b604082019050919050565b60006020820190508181036000830152612f7681612f3a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612fd96024836122c2565b9150612fe482612f7d565b604082019050919050565b6000602082019050818103600083015261300881612fcc565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061306b6022836122c2565b91506130768261300f565b604082019050919050565b6000602082019050818103600083015261309a8161305e565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006130d7601d836122c2565b91506130e2826130a1565b602082019050919050565b60006020820190508181036000830152613106816130ca565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006131696025836122c2565b91506131748261310d565b604082019050919050565b600060208201905081810360008301526131988161315c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006131fb6023836122c2565b91506132068261319f565b604082019050919050565b6000602082019050818103600083015261322a816131ee565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061328d6026836122c2565b915061329882613231565b604082019050919050565b600060208201905081810360008301526132bc81613280565b9050919050565b60006040820190506132d86000830185612478565b6132e56020830184612478565b9392505050565b600060a0820190506133016000830188612536565b61330e6020830187612536565b61331b6040830186612536565b6133286060830185612478565b613335608083018461258d565b9695505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613379826123cc565b9150613384836123cc565b9250826133945761339361333f565b5b828204905092915050565b600081905092915050565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b60006133e060028361339f565b91506133eb826133aa565b600282019050919050565b6000819050919050565b61341161340c8261252c565b6133f6565b82525050565b6000613422826133d3565b915061342e8285613400565b60208201915061343e8284613400565b6020820191508190509392505050565b60006080820190506134636000830187612536565b6134706020830186612502565b61347d6040830185612536565b61348a6060830184612536565b95945050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b60006134f86018836122c2565b9150613503826134c2565b602082019050919050565b60006020820190508181036000830152613527816134eb565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b6000613564601f836122c2565b915061356f8261352e565b602082019050919050565b6000602082019050818103600083015261359381613557565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b60006135f66022836122c2565b91506136018261359a565b604082019050919050565b60006020820190508181036000830152613625816135e9565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b60006136886022836122c2565b91506136938261362c565b604082019050919050565b600060208201905081810360008301526136b78161367b565b905091905056fea2646970667358221220cec0d19cc49c4d887c4f88624827838de2a6a7572a36371f1a55cd92be11748664736f6c63430008100033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101425760003560e01c806370a08231116100b8578063a457c2d71161007c578063a457c2d7146103d9578063a9059cbb14610409578063c3cda52014610439578063d505accf14610455578063dd62ed3e14610471578063f1127ed8146104a157610142565b806370a08231146102fb5780637ecebe001461032b5780638e539e8c1461035b57806395d89b411461038b5780639ab24eb0146103a957610142565b80633644e5151161010a5780633644e51514610201578063395093511461021f5780633a46b1a81461024f578063587cde1e1461027f5780635c19a95c146102af5780636fcfff45146102cb57610142565b806306fdde0314610147578063095ea7b31461016557806318160ddd1461019557806323b872dd146101b3578063313ce567146101e3575b600080fd5b61014f6104d1565b60405161015c9190612347565b60405180910390f35b61017f600480360381019061017a9190612402565b610563565b60405161018c919061245d565b60405180910390f35b61019d610586565b6040516101aa9190612487565b60405180910390f35b6101cd60048036038101906101c891906124a2565b610590565b6040516101da919061245d565b60405180910390f35b6101eb6105bf565b6040516101f89190612511565b60405180910390f35b6102096105c8565b6040516102169190612545565b60405180910390f35b61023960048036038101906102349190612402565b6105d7565b604051610246919061245d565b60405180910390f35b61026960048036038101906102649190612402565b61060e565b6040516102769190612487565b60405180910390f35b61029960048036038101906102949190612560565b6106a2565b6040516102a6919061259c565b60405180910390f35b6102c960048036038101906102c49190612560565b61070b565b005b6102e560048036038101906102e09190612560565b61071f565b6040516102f291906125d6565b60405180910390f35b61031560048036038101906103109190612560565b610773565b6040516103229190612487565b60405180910390f35b61034560048036038101906103409190612560565b6107bb565b6040516103529190612487565b60405180910390f35b610375600480360381019061037091906125f1565b61080b565b6040516103829190612487565b60405180910390f35b610393610861565b6040516103a09190612347565b60405180910390f35b6103c360048036038101906103be9190612560565b6108f3565b6040516103d09190612487565b60405180910390f35b6103f360048036038101906103ee9190612402565b610a04565b604051610400919061245d565b60405180910390f35b610423600480360381019061041e9190612402565b610a7b565b604051610430919061245d565b60405180910390f35b610453600480360381019061044e9190612676565b610a9e565b005b61046f600480360381019061046a9190612703565b610ba2565b005b61048b600480360381019061048691906127a5565b610ce4565b6040516104989190612487565b60405180910390f35b6104bb60048036038101906104b69190612811565b610d6b565b6040516104c891906128c6565b60405180910390f35b6060600380546104e090612910565b80601f016020809104026020016040519081016040528092919081815260200182805461050c90612910565b80156105595780601f1061052e57610100808354040283529160200191610559565b820191906000526020600020905b81548152906001019060200180831161053c57829003601f168201915b5050505050905090565b60008061056e611181565b905061057b818585611189565b600191505092915050565b6000600254905090565b60008061059b611181565b90506105a8858285611352565b6105b38585856113de565b60019150509392505050565b60006012905090565b60006105d261165d565b905090565b6000806105e2611181565b90506106038185856105f48589610ce4565b6105fe9190612970565b611189565b600191505092915050565b6000438210610652576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610649906129f0565b60405180910390fd5b61069a600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002083611777565b905092915050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b61071c610716611181565b82611883565b50565b600061076c600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490506110e8565b9050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000610804600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061199d565b9050919050565b600043821061084f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610846906129f0565b60405180910390fd5b61085a600983611777565b9050919050565b60606004805461087090612910565b80601f016020809104026020016040519081016040528092919081815260200182805461089c90612910565b80156108e95780601f106108be576101008083540402835291602001916108e9565b820191906000526020600020905b8154815290600101906020018083116108cc57829003601f168201915b5050505050905090565b600080600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490509050600081146109db57600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060018261098f9190612a10565b815481106109a05761099f612a44565b5b9060005260206000200160000160049054906101000a90047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff166109de565b60005b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16915050919050565b600080610a0f611181565b90506000610a1d8286610ce4565b905083811015610a62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5990612ae5565b60405180910390fd5b610a6f8286868403611189565b60019250505092915050565b600080610a86611181565b9050610a938185856113de565b600191505092915050565b83421115610ae1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad890612b51565b60405180910390fd5b6000610b43610b3b7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf898989604051602001610b209493929190612b71565b604051602081830303815290604052805190602001206119ab565b8585856119c5565b9050610b4e816119f0565b8614610b8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8690612c02565b60405180910390fd5b610b998188611883565b50505050505050565b83421115610be5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdc90612c6e565b60405180910390fd5b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9888888610c148c6119f0565b89604051602001610c2a96959493929190612c8e565b6040516020818303038152906040528051906020012090506000610c4d826119ab565b90506000610c5d828787876119c5565b90508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ccd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc490612d3b565b60405180910390fd5b610cd88a8a8a611189565b50505050505050505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610d73612279565b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208263ffffffff1681548110610dca57610dc9612a44565b5b906000526020600020016040518060400160405290816000820160009054906101000a900463ffffffff1663ffffffff1663ffffffff1681526020016000820160049054906101000a90047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1681525050905092915050565b610e858282610f08565b610e8d611a4e565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16610eb3610586565b1115610ef4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eeb90612dcd565b60405180910390fd5b610f02600961106783611a72565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6e90612e39565b60405180910390fd5b610f8360008383611cea565b8060026000828254610f959190612970565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610fea9190612970565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161104f9190612487565b60405180910390a361106360008383611cef565b5050565b600081836110759190612970565b905092915050565b60007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff80168211156110e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d790612ecb565b60405180910390fd5b819050919050565b600063ffffffff8016821115611133576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112a90612f5d565b60405180910390fd5b819050919050565b611146838383611166565b611161611152846106a2565b61115b846106a2565b83611cff565b505050565b505050565b600081836111799190612a10565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ef90612fef565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611267576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125e90613081565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516113459190612487565b60405180910390a3505050565b600061135e8484610ce4565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146113d857818110156113ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c1906130ed565b60405180910390fd5b6113d78484848403611189565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361144d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114449061317f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b390613211565b60405180910390fd5b6114c7838383611cea565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561154d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611544906132a3565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115e09190612970565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516116449190612487565b60405180910390a3611657848484611cef565b50505050565b60007f0000000000000000000000005f94f574ab2ec610aa78ac6289b0cd94fc01a36073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff161480156116d957507f000000000000000000000000000000000000000000000000000000000000000146145b15611706577faeab317d16d31a9226318d36a29d2925ad817a79ffefb4b521711c9e37188fda9050611774565b6117717f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f7f32f4a45c4ab4135f1cbfea7dfa22df1989a156346650a361d0f3e86154a871277fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6611ef8565b90505b90565b6000808380549050905060005b818110156117f65760006117988284611f32565b9050848682815481106117ae576117ad612a44565b5b9060005260206000200160000160009054906101000a900463ffffffff1663ffffffff1611156117e0578092506117f0565b6001816117ed9190612970565b91505b50611784565b60008214611858578460018361180c9190612a10565b8154811061181d5761181c612a44565b5b9060005260206000200160000160049054906101000a90047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1661185b565b60005b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff169250505092915050565b600061188e836106a2565b9050600061189b84610773565b905082600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f60405160405180910390a4611997828483611cff565b50505050565b600081600001549050919050565b60006119be6119b861165d565b83611f58565b9050919050565b60008060006119d687878787611f8b565b915091506119e381612097565b8192505050949350505050565b600080600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050611a3d8161199d565b9150611a4881612263565b50919050565b60007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff905090565b60008060008580549050905060008114611ae05785600182611a949190612a10565b81548110611aa557611aa4612a44565b5b9060005260206000200160000160049054906101000a90047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16611ae3565b60005b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff169250611b1183858763ffffffff16565b9150600081118015611b6457504386600183611b2d9190612a10565b81548110611b3e57611b3d612a44565b5b9060005260206000200160000160009054906101000a900463ffffffff1663ffffffff16145b15611bf157611b728261107d565b86600183611b809190612a10565b81548110611b9157611b90612a44565b5b9060005260206000200160000160046101000a8154817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff02191690837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff160217905550611ce1565b856040518060400160405280611c06436110e8565b63ffffffff168152602001611c1a8561107d565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff168152509080600181540180825580915050600190039060005260206000200160009091909190915060008201518160000160006101000a81548163ffffffff021916908363ffffffff16021790555060208201518160000160046101000a8154817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff02191690837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16021790555050505b50935093915050565b505050565b611cfa83838361113b565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611d3b5750600081115b15611ef357600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611e1957600080611dc2600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061116b85611a72565b915091508473ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248383604051611e0e9291906132c3565b60405180910390a250505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611ef257600080611e9b600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061106785611a72565b915091508373ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248383604051611ee79291906132c3565b60405180910390a250505b5b505050565b60008383834630604051602001611f139594939291906132ec565b6040516020818303038152906040528051906020012090509392505050565b60006002828418611f43919061336e565b828416611f509190612970565b905092915050565b60008282604051602001611f6d929190613417565b60405160208183030381529060405280519060200120905092915050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115611fc657600060039150915061208e565b601b8560ff1614158015611fde5750601c8560ff1614155b15611ff057600060049150915061208e565b600060018787878760405160008152602001604052604051612015949392919061344e565b6020604051602081039080840390855afa158015612037573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036120855760006001925092505061208e565b80600092509250505b94509492505050565b600060048111156120ab576120aa613493565b5b8160048111156120be576120bd613493565b5b031561226057600160048111156120d8576120d7613493565b5b8160048111156120eb576120ea613493565b5b0361212b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121229061350e565b60405180910390fd5b6002600481111561213f5761213e613493565b5b81600481111561215257612151613493565b5b03612192576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121899061357a565b60405180910390fd5b600360048111156121a6576121a5613493565b5b8160048111156121b9576121b8613493565b5b036121f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f09061360c565b60405180910390fd5b60048081111561220c5761220b613493565b5b81600481111561221f5761221e613493565b5b0361225f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122569061369e565b60405180910390fd5b5b50565b6001816000016000828254019250508190555050565b6040518060400160405280600063ffffffff16815260200160007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1681525090565b600081519050919050565b600082825260208201905092915050565b60005b838110156122f15780820151818401526020810190506122d6565b60008484015250505050565b6000601f19601f8301169050919050565b6000612319826122b7565b61232381856122c2565b93506123338185602086016122d3565b61233c816122fd565b840191505092915050565b60006020820190508181036000830152612361818461230e565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006123998261236e565b9050919050565b6123a98161238e565b81146123b457600080fd5b50565b6000813590506123c6816123a0565b92915050565b6000819050919050565b6123df816123cc565b81146123ea57600080fd5b50565b6000813590506123fc816123d6565b92915050565b6000806040838503121561241957612418612369565b5b6000612427858286016123b7565b9250506020612438858286016123ed565b9150509250929050565b60008115159050919050565b61245781612442565b82525050565b6000602082019050612472600083018461244e565b92915050565b612481816123cc565b82525050565b600060208201905061249c6000830184612478565b92915050565b6000806000606084860312156124bb576124ba612369565b5b60006124c9868287016123b7565b93505060206124da868287016123b7565b92505060406124eb868287016123ed565b9150509250925092565b600060ff82169050919050565b61250b816124f5565b82525050565b60006020820190506125266000830184612502565b92915050565b6000819050919050565b61253f8161252c565b82525050565b600060208201905061255a6000830184612536565b92915050565b60006020828403121561257657612575612369565b5b6000612584848285016123b7565b91505092915050565b6125968161238e565b82525050565b60006020820190506125b1600083018461258d565b92915050565b600063ffffffff82169050919050565b6125d0816125b7565b82525050565b60006020820190506125eb60008301846125c7565b92915050565b60006020828403121561260757612606612369565b5b6000612615848285016123ed565b91505092915050565b612627816124f5565b811461263257600080fd5b50565b6000813590506126448161261e565b92915050565b6126538161252c565b811461265e57600080fd5b50565b6000813590506126708161264a565b92915050565b60008060008060008060c0878903121561269357612692612369565b5b60006126a189828a016123b7565b96505060206126b289828a016123ed565b95505060406126c389828a016123ed565b94505060606126d489828a01612635565b93505060806126e589828a01612661565b92505060a06126f689828a01612661565b9150509295509295509295565b600080600080600080600060e0888a03121561272257612721612369565b5b60006127308a828b016123b7565b97505060206127418a828b016123b7565b96505060406127528a828b016123ed565b95505060606127638a828b016123ed565b94505060806127748a828b01612635565b93505060a06127858a828b01612661565b92505060c06127968a828b01612661565b91505092959891949750929550565b600080604083850312156127bc576127bb612369565b5b60006127ca858286016123b7565b92505060206127db858286016123b7565b9150509250929050565b6127ee816125b7565b81146127f957600080fd5b50565b60008135905061280b816127e5565b92915050565b6000806040838503121561282857612827612369565b5b6000612836858286016123b7565b9250506020612847858286016127fc565b9150509250929050565b61285a816125b7565b82525050565b60007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff82169050919050565b61289181612860565b82525050565b6040820160008201516128ad6000850182612851565b5060208201516128c06020850182612888565b50505050565b60006040820190506128db6000830184612897565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061292857607f821691505b60208210810361293b5761293a6128e1565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061297b826123cc565b9150612986836123cc565b925082820190508082111561299e5761299d612941565b5b92915050565b7f4552433230566f7465733a20626c6f636b206e6f7420796574206d696e656400600082015250565b60006129da601f836122c2565b91506129e5826129a4565b602082019050919050565b60006020820190508181036000830152612a09816129cd565b9050919050565b6000612a1b826123cc565b9150612a26836123cc565b9250828203905081811115612a3e57612a3d612941565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612acf6025836122c2565b9150612ada82612a73565b604082019050919050565b60006020820190508181036000830152612afe81612ac2565b9050919050565b7f4552433230566f7465733a207369676e61747572652065787069726564000000600082015250565b6000612b3b601d836122c2565b9150612b4682612b05565b602082019050919050565b60006020820190508181036000830152612b6a81612b2e565b9050919050565b6000608082019050612b866000830187612536565b612b93602083018661258d565b612ba06040830185612478565b612bad6060830184612478565b95945050505050565b7f4552433230566f7465733a20696e76616c6964206e6f6e636500000000000000600082015250565b6000612bec6019836122c2565b9150612bf782612bb6565b602082019050919050565b60006020820190508181036000830152612c1b81612bdf565b9050919050565b7f45524332305065726d69743a206578706972656420646561646c696e65000000600082015250565b6000612c58601d836122c2565b9150612c6382612c22565b602082019050919050565b60006020820190508181036000830152612c8781612c4b565b9050919050565b600060c082019050612ca36000830189612536565b612cb0602083018861258d565b612cbd604083018761258d565b612cca6060830186612478565b612cd76080830185612478565b612ce460a0830184612478565b979650505050505050565b7f45524332305065726d69743a20696e76616c6964207369676e61747572650000600082015250565b6000612d25601e836122c2565b9150612d3082612cef565b602082019050919050565b60006020820190508181036000830152612d5481612d18565b9050919050565b7f4552433230566f7465733a20746f74616c20737570706c79207269736b73206f60008201527f766572666c6f77696e6720766f74657300000000000000000000000000000000602082015250565b6000612db76030836122c2565b9150612dc282612d5b565b604082019050919050565b60006020820190508181036000830152612de681612daa565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000612e23601f836122c2565b9150612e2e82612ded565b602082019050919050565b60006020820190508181036000830152612e5281612e16565b9050919050565b7f53616665436173743a2076616c756520646f65736e27742066697420696e203260008201527f3234206269747300000000000000000000000000000000000000000000000000602082015250565b6000612eb56027836122c2565b9150612ec082612e59565b604082019050919050565b60006020820190508181036000830152612ee481612ea8565b9050919050565b7f53616665436173743a2076616c756520646f65736e27742066697420696e203360008201527f3220626974730000000000000000000000000000000000000000000000000000602082015250565b6000612f476026836122c2565b9150612f5282612eeb565b604082019050919050565b60006020820190508181036000830152612f7681612f3a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612fd96024836122c2565b9150612fe482612f7d565b604082019050919050565b6000602082019050818103600083015261300881612fcc565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061306b6022836122c2565b91506130768261300f565b604082019050919050565b6000602082019050818103600083015261309a8161305e565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006130d7601d836122c2565b91506130e2826130a1565b602082019050919050565b60006020820190508181036000830152613106816130ca565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006131696025836122c2565b91506131748261310d565b604082019050919050565b600060208201905081810360008301526131988161315c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006131fb6023836122c2565b91506132068261319f565b604082019050919050565b6000602082019050818103600083015261322a816131ee565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061328d6026836122c2565b915061329882613231565b604082019050919050565b600060208201905081810360008301526132bc81613280565b9050919050565b60006040820190506132d86000830185612478565b6132e56020830184612478565b9392505050565b600060a0820190506133016000830188612536565b61330e6020830187612536565b61331b6040830186612536565b6133286060830185612478565b613335608083018461258d565b9695505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613379826123cc565b9150613384836123cc565b9250826133945761339361333f565b5b828204905092915050565b600081905092915050565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b60006133e060028361339f565b91506133eb826133aa565b600282019050919050565b6000819050919050565b61341161340c8261252c565b6133f6565b82525050565b6000613422826133d3565b915061342e8285613400565b60208201915061343e8284613400565b6020820191508190509392505050565b60006080820190506134636000830187612536565b6134706020830186612502565b61347d6040830185612536565b61348a6060830184612536565b95945050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b60006134f86018836122c2565b9150613503826134c2565b602082019050919050565b60006020820190508181036000830152613527816134eb565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b6000613564601f836122c2565b915061356f8261352e565b602082019050919050565b6000602082019050818103600083015261359381613557565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b60006135f66022836122c2565b91506136018261359a565b604082019050919050565b60006020820190508181036000830152613625816135e9565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b60006136886022836122c2565b91506136938261362c565b604082019050919050565b600060208201905081810360008301526136b78161367b565b905091905056fea2646970667358221220cec0d19cc49c4d887c4f88624827838de2a6a7572a36371f1a55cd92be11748664736f6c63430008100033
Deployed Bytecode Sourcemap
98664:775:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75175:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77526:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76295:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78307:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76137:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88780:115;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79011:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;91982:268;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;91356:128;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;94455:114;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;91112:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76466:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88522:128;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;92539:259;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75394:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;91568:212;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79752:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;76799:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;94651:591;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;87811:645;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77055:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;90882:150;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75175:100;75229:13;75262:5;75255:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75175:100;:::o;77526:201::-;77609:4;77626:13;77642:12;:10;:12::i;:::-;77626:28;;77665:32;77674:5;77681:7;77690:6;77665:8;:32::i;:::-;77715:4;77708:11;;;77526:201;;;;:::o;76295:108::-;76356:7;76383:12;;76376:19;;76295:108;:::o;78307:295::-;78438:4;78455:15;78473:12;:10;:12::i;:::-;78455:30;;78496:38;78512:4;78518:7;78527:6;78496:15;:38::i;:::-;78545:27;78555:4;78561:2;78565:6;78545:9;:27::i;:::-;78590:4;78583:11;;;78307:295;;;;;:::o;76137:93::-;76195:5;76220:2;76213:9;;76137:93;:::o;88780:115::-;88840:7;88867:20;:18;:20::i;:::-;88860:27;;88780:115;:::o;79011:238::-;79099:4;79116:13;79132:12;:10;:12::i;:::-;79116:28;;79155:64;79164:5;79171:7;79208:10;79180:25;79190:5;79197:7;79180:9;:25::i;:::-;:38;;;;:::i;:::-;79155:8;:64::i;:::-;79237:4;79230:11;;;79011:238;;;;:::o;91982:268::-;92080:7;92122:12;92108:11;:26;92100:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;92188:54;92207:12;:21;92220:7;92207:21;;;;;;;;;;;;;;;92230:11;92188:18;:54::i;:::-;92181:61;;91982:268;;;;:::o;91356:128::-;91430:7;91457:10;:19;91468:7;91457:19;;;;;;;;;;;;;;;;;;;;;;;;;91450:26;;91356:128;;;:::o;94455:114::-;94527:34;94537:12;:10;:12::i;:::-;94551:9;94527;:34::i;:::-;94455:114;:::o;91112:151::-;91182:6;91208:47;91226:12;:21;91239:7;91226:21;;;;;;;;;;;;;;;:28;;;;91208:17;:47::i;:::-;91201:54;;91112:151;;;:::o;76466:127::-;76540:7;76567:9;:18;76577:7;76567:18;;;;;;;;;;;;;;;;76560:25;;76466:127;;;:::o;88522:128::-;88591:7;88618:24;:7;:14;88626:5;88618:14;;;;;;;;;;;;;;;:22;:24::i;:::-;88611:31;;88522:128;;;:::o;92539:259::-;92626:7;92668:12;92654:11;:26;92646:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;92734:56;92753:23;92778:11;92734:18;:56::i;:::-;92727:63;;92539:259;;;:::o;75394:104::-;75450:13;75483:7;75476:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75394:104;:::o;91568:212::-;91641:7;91661:11;91675:12;:21;91688:7;91675:21;;;;;;;;;;;;;;;:28;;;;91661:42;;91728:1;91721:3;:8;:51;;91736:12;:21;91749:7;91736:21;;;;;;;;;;;;;;;91764:1;91758:3;:7;;;;:::i;:::-;91736:30;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;;;;;;;;;91721:51;;;91732:1;91721:51;91714:58;;;;;91568:212;;;:::o;79752:436::-;79845:4;79862:13;79878:12;:10;:12::i;:::-;79862:28;;79901:24;79928:25;79938:5;79945:7;79928:9;:25::i;:::-;79901:52;;79992:15;79972:16;:35;;79964:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;80085:60;80094:5;80101:7;80129:15;80110:16;:34;80085:8;:60::i;:::-;80176:4;80169:11;;;;79752:436;;;;:::o;76799:193::-;76878:4;76895:13;76911:12;:10;:12::i;:::-;76895:28;;76934;76944:5;76951:2;76955:6;76934:9;:28::i;:::-;76980:4;76973:11;;;76799:193;;;;:::o;94651:591::-;94878:6;94859:15;:25;;94851:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;94929:14;94946:174;94974:87;90562:71;95034:9;95045:5;95052:6;95001:58;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;94991:69;;;;;;94974:16;:87::i;:::-;95076:1;95092;95108;94946:13;:174::i;:::-;94929:191;;95148:17;95158:6;95148:9;:17::i;:::-;95139:5;:26;95131:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;95206:28;95216:6;95224:9;95206;:28::i;:::-;94840:402;94651:591;;;;;;:::o;87811:645::-;88055:8;88036:15;:27;;88028:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;88110:18;86986:95;88170:5;88177:7;88186:5;88193:16;88203:5;88193:9;:16::i;:::-;88211:8;88141:79;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;88131:90;;;;;;88110:111;;88234:12;88249:28;88266:10;88249:16;:28::i;:::-;88234:43;;88290:14;88307:28;88321:4;88327:1;88330;88333;88307:13;:28::i;:::-;88290:45;;88364:5;88354:15;;:6;:15;;;88346:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;88417:31;88426:5;88433:7;88442:5;88417:8;:31::i;:::-;88017:439;;;87811:645;;;;;;;:::o;77055:151::-;77144:7;77171:11;:18;77183:5;77171:18;;;;;;;;;;;;;;;:27;77190:7;77171:27;;;;;;;;;;;;;;;;77164:34;;77055:151;;;;:::o;90882:150::-;90961:17;;:::i;:::-;90998:12;:21;91011:7;90998:21;;;;;;;;;;;;;;;91020:3;90998:26;;;;;;;;;;:::i;:::-;;;;;;;;;90991:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90882:150;;;;:::o;95548:290::-;95633:28;95645:7;95654:6;95633:11;:28::i;:::-;95697:12;:10;:12::i;:::-;95680:29;;:13;:11;:13::i;:::-;:29;;95672:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;95775:55;95792:23;95817:4;95823:6;95775:16;:55::i;:::-;;;95548:290;;:::o;81616:399::-;81719:1;81700:21;;:7;:21;;;81692:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;81770:49;81799:1;81803:7;81812:6;81770:20;:49::i;:::-;81848:6;81832:12;;:22;;;;;;;:::i;:::-;;;;;;;;81887:6;81865:9;:18;81875:7;81865:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;81930:7;81909:37;;81926:1;81909:37;;;81939:6;81909:37;;;;;;:::i;:::-;;;;;;;;81959:48;81987:1;81991:7;82000:6;81959:19;:48::i;:::-;81616:399;;:::o;98392:98::-;98450:7;98481:1;98477;:5;;;;:::i;:::-;98470:12;;98392:98;;;;:::o;2864:195::-;2921:7;2958:17;2949:26;;:5;:26;;2941:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;3045:5;3030:21;;2864:195;;;:::o;15700:190::-;15756:6;15792:16;15783:25;;:5;:25;;15775:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;15876:5;15862:20;;15700:190;;;:::o;96266:262::-;96408:43;96434:4;96440:2;96444:6;96408:25;:43::i;:::-;96464:56;96481:15;96491:4;96481:9;:15::i;:::-;96498:13;96508:2;96498:9;:13::i;:::-;96513:6;96464:16;:56::i;:::-;96266:262;;;:::o;85830:124::-;;;;:::o;98498:103::-;98561:7;98592:1;98588;:5;;;;:::i;:::-;98581:12;;98498:103;;;;:::o;69201:98::-;69254:7;69281:10;69274:17;;69201:98;:::o;83377:380::-;83530:1;83513:19;;:5;:19;;;83505:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;83611:1;83592:21;;:7;:21;;;83584:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;83695:6;83665:11;:18;83677:5;83665:18;;;;;;;;;;;;;;;:27;83684:7;83665:27;;;;;;;;;;;;;;;:36;;;;83733:7;83717:32;;83726:5;83717:32;;;83742:6;83717:32;;;;;;:::i;:::-;;;;;;;;83377:380;;;:::o;84048:453::-;84183:24;84210:25;84220:5;84227:7;84210:9;:25::i;:::-;84183:52;;84270:17;84250:16;:37;84246:248;;84332:6;84312:16;:26;;84304:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;84416:51;84425:5;84432:7;84460:6;84441:16;:25;84416:8;:51::i;:::-;84246:248;84172:329;84048:453;;;:::o;80658:671::-;80805:1;80789:18;;:4;:18;;;80781:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;80882:1;80868:16;;:2;:16;;;80860:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;80937:38;80958:4;80964:2;80968:6;80937:20;:38::i;:::-;80988:19;81010:9;:15;81020:4;81010:15;;;;;;;;;;;;;;;;80988:37;;81059:6;81044:11;:21;;81036:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;81176:6;81162:11;:20;81144:9;:15;81154:4;81144:15;;;;;;;;;;;;;;;:38;;;;81221:6;81204:9;:13;81214:2;81204:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;81260:2;81245:26;;81254:4;81245:26;;;81264:6;81245:26;;;;;;:::i;:::-;;;;;;;;81284:37;81304:4;81310:2;81314:6;81284:19;:37::i;:::-;80770:559;80658:671;;;:::o;64756:314::-;64809:7;64850:12;64833:29;;64841:4;64833:29;;;:66;;;;;64883:16;64866:13;:33;64833:66;64829:234;;;64923:24;64916:31;;;;64829:234;64987:64;65009:10;65021:12;65035:15;64987:21;:64::i;:::-;64980:71;;64756:314;;:::o;92887:1482::-;92986:7;94005:12;94020:5;:12;;;;94005:27;;94043:11;94069:236;94082:4;94076:3;:10;94069:236;;;94103:11;94117:23;94130:3;94135:4;94117:12;:23::i;:::-;94103:37;;94182:11;94159:5;94165:3;94159:10;;;;;;;;:::i;:::-;;;;;;;;;:20;;;;;;;;;;;;:34;;;94155:139;;;94221:3;94214:10;;94155:139;;;94277:1;94271:3;:7;;;;:::i;:::-;94265:13;;94155:139;94088:217;94069:236;;;94332:1;94324:4;:9;:37;;94340:5;94353:1;94346:4;:8;;;;:::i;:::-;94340:15;;;;;;;;:::i;:::-;;;;;;;;;:21;;;;;;;;;;;;94324:37;;;94336:1;94324:37;94317:44;;;;;;92887:1482;;;;:::o;96692:388::-;96777:23;96803:20;96813:9;96803;:20::i;:::-;96777:46;;96834:24;96861:20;96871:9;96861;:20::i;:::-;96834:47;;96916:9;96892:10;:21;96903:9;96892:21;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;96987:9;96943:54;;96970:15;96943:54;;96959:9;96943:54;;;;;;;;;;;;97010:62;97027:15;97044:9;97055:16;97010;:62::i;:::-;96766:314;;96692:388;;:::o;48806:114::-;48871:7;48898;:14;;;48891:21;;48806:114;;;:::o;65983:167::-;66060:7;66087:55;66109:20;:18;:20::i;:::-;66131:10;66087:21;:55::i;:::-;66080:62;;65983:167;;;:::o;59632:279::-;59760:7;59781:17;59800:18;59822:25;59833:4;59839:1;59842;59845;59822:10;:25::i;:::-;59780:67;;;;59858:18;59870:5;59858:11;:18::i;:::-;59894:9;59887:16;;;;59632:279;;;;;;:::o;89033:207::-;89093:15;89121:30;89154:7;:14;89162:5;89154:14;;;;;;;;;;;;;;;89121:47;;89189:15;:5;:13;:15::i;:::-;89179:25;;89215:17;:5;:15;:17::i;:::-;89110:130;89033:207;;;:::o;95349:105::-;95402:7;95429:17;95422:24;;95349:105;:::o;97739:645::-;97913:17;97932;97962:11;97976:5;:12;;;;97962:26;;98018:1;98011:3;:8;:35;;98026:5;98038:1;98032:3;:7;;;;:::i;:::-;98026:14;;;;;;;;:::i;:::-;;;;;;;;;:20;;;;;;;;;;;;98011:35;;;98022:1;98011:35;97999:47;;;;98069:20;98072:9;98083:5;98069:2;:20;;:::i;:::-;98057:32;;98112:1;98106:3;:7;:51;;;;;98145:12;98117:5;98129:1;98123:3;:7;;;;:::i;:::-;98117:14;;;;;;;;:::i;:::-;;;;;;;;;:24;;;;;;;;;;;;:40;;;98106:51;98102:275;;;98197:29;98216:9;98197:18;:29::i;:::-;98174:5;98186:1;98180:3;:7;;;;:::i;:::-;98174:14;;;;;;;;:::i;:::-;;;;;;;;;:20;;;:52;;;;;;;;;;;;;;;;;;98102:275;;;98259:5;98270:94;;;;;;;;98293:31;98311:12;98293:17;:31::i;:::-;98270:94;;;;;;98333:29;98352:9;98333:18;:29::i;:::-;98270:94;;;;;98259:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;98102:275;97951:433;97739:645;;;;;;:::o;85101:125::-;;;;:::o;98927:193::-;99069:43;99095:4;99101:2;99105:6;99069:25;:43::i;:::-;98927:193;;;:::o;97088:643::-;97220:3;97213:10;;:3;:10;;;;:24;;;;;97236:1;97227:6;:10;97213:24;97209:515;;;97273:1;97258:17;;:3;:17;;;97254:224;;97297:17;97316;97337:54;97354:12;:17;97367:3;97354:17;;;;;;;;;;;;;;;97373:9;97384:6;97337:16;:54::i;:::-;97296:95;;;;97436:3;97415:47;;;97441:9;97452;97415:47;;;;;;;:::i;:::-;;;;;;;;97277:201;;97254:224;97513:1;97498:17;;:3;:17;;;97494:219;;97537:17;97556;97577:49;97594:12;:17;97607:3;97594:17;;;;;;;;;;;;;;;97613:4;97619:6;97577:16;:49::i;:::-;97536:90;;;;97671:3;97650:47;;;97676:9;97687;97650:47;;;;;;;:::i;:::-;;;;;;;;97517:196;;97494:219;97209:515;97088:643;;;:::o;65078:263::-;65222:7;65270:8;65280;65290:11;65303:13;65326:4;65259:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;65249:84;;;;;;65242:91;;65078:263;;;;;:::o;39718:156::-;39780:7;39865:1;39860;39856;:5;39855:11;;;;:::i;:::-;39850:1;39846;:5;39845:21;;;;:::i;:::-;39838:28;;39718:156;;;;:::o;61323:196::-;61416:7;61482:15;61499:10;61453:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;61443:68;;;;;;61436:75;;61323:196;;;;:::o;57861:1632::-;57992:7;58001:12;58926:66;58921:1;58913:10;;:79;58909:163;;;59025:1;59029:30;59009:51;;;;;;58909:163;59091:2;59086:1;:7;;;;:18;;;;;59102:2;59097:1;:7;;;;59086:18;59082:102;;;59137:1;59141:30;59121:51;;;;;;59082:102;59281:14;59298:24;59308:4;59314:1;59317;59320;59298:24;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59281:41;;59355:1;59337:20;;:6;:20;;;59333:103;;59390:1;59394:29;59374:50;;;;;;;59333:103;59456:6;59464:20;59448:37;;;;;57861:1632;;;;;;;;:::o;52474:643::-;52552:20;52543:29;;;;;;;;:::i;:::-;;:5;:29;;;;;;;;:::i;:::-;;;52539:571;52589:7;52539:571;52650:29;52641:38;;;;;;;;:::i;:::-;;:5;:38;;;;;;;;:::i;:::-;;;52637:473;;52696:34;;;;;;;;;;:::i;:::-;;;;;;;;52637:473;52761:35;52752:44;;;;;;;;:::i;:::-;;:5;:44;;;;;;;;:::i;:::-;;;52748:362;;52813:41;;;;;;;;;;:::i;:::-;;;;;;;;52748:362;52885:30;52876:39;;;;;;;;:::i;:::-;;:5;:39;;;;;;;;:::i;:::-;;;52872:238;;52932:44;;;;;;;;;;:::i;:::-;;;;;;;;52872:238;53007:30;52998:39;;;;;;;;:::i;:::-;;:5;:39;;;;;;;;:::i;:::-;;;52994:116;;53054:44;;;;;;;;;;:::i;:::-;;;;;;;;52994:116;52474:643;;:::o;48928:127::-;49035:1;49017:7;:14;;;:19;;;;;;;;;;;48928:127;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:77::-;4890:7;4919:5;4908:16;;4853:77;;;:::o;4936:118::-;5023:24;5041:5;5023:24;:::i;:::-;5018:3;5011:37;4936:118;;:::o;5060:222::-;5153:4;5191:2;5180:9;5176:18;5168:26;;5204:71;5272:1;5261:9;5257:17;5248:6;5204:71;:::i;:::-;5060:222;;;;:::o;5288:329::-;5347:6;5396:2;5384:9;5375:7;5371:23;5367:32;5364:119;;;5402:79;;:::i;:::-;5364:119;5522:1;5547:53;5592:7;5583:6;5572:9;5568:22;5547:53;:::i;:::-;5537:63;;5493:117;5288:329;;;;:::o;5623:118::-;5710:24;5728:5;5710:24;:::i;:::-;5705:3;5698:37;5623:118;;:::o;5747:222::-;5840:4;5878:2;5867:9;5863:18;5855:26;;5891:71;5959:1;5948:9;5944:17;5935:6;5891:71;:::i;:::-;5747:222;;;;:::o;5975:93::-;6011:7;6051:10;6044:5;6040:22;6029:33;;5975:93;;;:::o;6074:115::-;6159:23;6176:5;6159:23;:::i;:::-;6154:3;6147:36;6074:115;;:::o;6195:218::-;6286:4;6324:2;6313:9;6309:18;6301:26;;6337:69;6403:1;6392:9;6388:17;6379:6;6337:69;:::i;:::-;6195:218;;;;:::o;6419:329::-;6478:6;6527:2;6515:9;6506:7;6502:23;6498:32;6495:119;;;6533:79;;:::i;:::-;6495:119;6653:1;6678:53;6723:7;6714:6;6703:9;6699:22;6678:53;:::i;:::-;6668:63;;6624:117;6419:329;;;;:::o;6754:118::-;6825:22;6841:5;6825:22;:::i;:::-;6818:5;6815:33;6805:61;;6862:1;6859;6852:12;6805:61;6754:118;:::o;6878:135::-;6922:5;6960:6;6947:20;6938:29;;6976:31;7001:5;6976:31;:::i;:::-;6878:135;;;;:::o;7019:122::-;7092:24;7110:5;7092:24;:::i;:::-;7085:5;7082:35;7072:63;;7131:1;7128;7121:12;7072:63;7019:122;:::o;7147:139::-;7193:5;7231:6;7218:20;7209:29;;7247:33;7274:5;7247:33;:::i;:::-;7147:139;;;;:::o;7292:1053::-;7394:6;7402;7410;7418;7426;7434;7483:3;7471:9;7462:7;7458:23;7454:33;7451:120;;;7490:79;;:::i;:::-;7451:120;7610:1;7635:53;7680:7;7671:6;7660:9;7656:22;7635:53;:::i;:::-;7625:63;;7581:117;7737:2;7763:53;7808:7;7799:6;7788:9;7784:22;7763:53;:::i;:::-;7753:63;;7708:118;7865:2;7891:53;7936:7;7927:6;7916:9;7912:22;7891:53;:::i;:::-;7881:63;;7836:118;7993:2;8019:51;8062:7;8053:6;8042:9;8038:22;8019:51;:::i;:::-;8009:61;;7964:116;8119:3;8146:53;8191:7;8182:6;8171:9;8167:22;8146:53;:::i;:::-;8136:63;;8090:119;8248:3;8275:53;8320:7;8311:6;8300:9;8296:22;8275:53;:::i;:::-;8265:63;;8219:119;7292:1053;;;;;;;;:::o;8351:1199::-;8462:6;8470;8478;8486;8494;8502;8510;8559:3;8547:9;8538:7;8534:23;8530:33;8527:120;;;8566:79;;:::i;:::-;8527:120;8686:1;8711:53;8756:7;8747:6;8736:9;8732:22;8711:53;:::i;:::-;8701:63;;8657:117;8813:2;8839:53;8884:7;8875:6;8864:9;8860:22;8839:53;:::i;:::-;8829:63;;8784:118;8941:2;8967:53;9012:7;9003:6;8992:9;8988:22;8967:53;:::i;:::-;8957:63;;8912:118;9069:2;9095:53;9140:7;9131:6;9120:9;9116:22;9095:53;:::i;:::-;9085:63;;9040:118;9197:3;9224:51;9267:7;9258:6;9247:9;9243:22;9224:51;:::i;:::-;9214:61;;9168:117;9324:3;9351:53;9396:7;9387:6;9376:9;9372:22;9351:53;:::i;:::-;9341:63;;9295:119;9453:3;9480:53;9525:7;9516:6;9505:9;9501:22;9480:53;:::i;:::-;9470:63;;9424:119;8351:1199;;;;;;;;;;:::o;9556:474::-;9624:6;9632;9681:2;9669:9;9660:7;9656:23;9652:32;9649:119;;;9687:79;;:::i;:::-;9649:119;9807:1;9832:53;9877:7;9868:6;9857:9;9853:22;9832:53;:::i;:::-;9822:63;;9778:117;9934:2;9960:53;10005:7;9996:6;9985:9;9981:22;9960:53;:::i;:::-;9950:63;;9905:118;9556:474;;;;;:::o;10036:120::-;10108:23;10125:5;10108:23;:::i;:::-;10101:5;10098:34;10088:62;;10146:1;10143;10136:12;10088:62;10036:120;:::o;10162:137::-;10207:5;10245:6;10232:20;10223:29;;10261:32;10287:5;10261:32;:::i;:::-;10162:137;;;;:::o;10305:472::-;10372:6;10380;10429:2;10417:9;10408:7;10404:23;10400:32;10397:119;;;10435:79;;:::i;:::-;10397:119;10555:1;10580:53;10625:7;10616:6;10605:9;10601:22;10580:53;:::i;:::-;10570:63;;10526:117;10682:2;10708:52;10752:7;10743:6;10732:9;10728:22;10708:52;:::i;:::-;10698:62;;10653:117;10305:472;;;;;:::o;10783:105::-;10858:23;10875:5;10858:23;:::i;:::-;10853:3;10846:36;10783:105;;:::o;10894:142::-;10931:7;10971:58;10964:5;10960:70;10949:81;;10894:142;;;:::o;11042:108::-;11119:24;11137:5;11119:24;:::i;:::-;11114:3;11107:37;11042:108;;:::o;11224:517::-;11377:4;11372:3;11368:14;11469:4;11462:5;11458:16;11452:23;11488:61;11543:4;11538:3;11534:14;11520:12;11488:61;:::i;:::-;11392:167;11642:4;11635:5;11631:16;11625:23;11661:63;11718:4;11713:3;11709:14;11695:12;11661:63;:::i;:::-;11569:165;11346:395;11224:517;;:::o;11747:334::-;11896:4;11934:2;11923:9;11919:18;11911:26;;11947:127;12071:1;12060:9;12056:17;12047:6;11947:127;:::i;:::-;11747:334;;;;:::o;12087:180::-;12135:77;12132:1;12125:88;12232:4;12229:1;12222:15;12256:4;12253:1;12246:15;12273:320;12317:6;12354:1;12348:4;12344:12;12334:22;;12401:1;12395:4;12391:12;12422:18;12412:81;;12478:4;12470:6;12466:17;12456:27;;12412:81;12540:2;12532:6;12529:14;12509:18;12506:38;12503:84;;12559:18;;:::i;:::-;12503:84;12324:269;12273:320;;;:::o;12599:180::-;12647:77;12644:1;12637:88;12744:4;12741:1;12734:15;12768:4;12765:1;12758:15;12785:191;12825:3;12844:20;12862:1;12844:20;:::i;:::-;12839:25;;12878:20;12896:1;12878:20;:::i;:::-;12873:25;;12921:1;12918;12914:9;12907:16;;12942:3;12939:1;12936:10;12933:36;;;12949:18;;:::i;:::-;12933:36;12785:191;;;;:::o;12982:181::-;13122:33;13118:1;13110:6;13106:14;13099:57;12982:181;:::o;13169:366::-;13311:3;13332:67;13396:2;13391:3;13332:67;:::i;:::-;13325:74;;13408:93;13497:3;13408:93;:::i;:::-;13526:2;13521:3;13517:12;13510:19;;13169:366;;;:::o;13541:419::-;13707:4;13745:2;13734:9;13730:18;13722:26;;13794:9;13788:4;13784:20;13780:1;13769:9;13765:17;13758:47;13822:131;13948:4;13822:131;:::i;:::-;13814:139;;13541:419;;;:::o;13966:194::-;14006:4;14026:20;14044:1;14026:20;:::i;:::-;14021:25;;14060:20;14078:1;14060:20;:::i;:::-;14055:25;;14104:1;14101;14097:9;14089:17;;14128:1;14122:4;14119:11;14116:37;;;14133:18;;:::i;:::-;14116:37;13966:194;;;;:::o;14166:180::-;14214:77;14211:1;14204:88;14311:4;14308:1;14301:15;14335:4;14332:1;14325:15;14352:224;14492:34;14488:1;14480:6;14476:14;14469:58;14561:7;14556:2;14548:6;14544:15;14537:32;14352:224;:::o;14582:366::-;14724:3;14745:67;14809:2;14804:3;14745:67;:::i;:::-;14738:74;;14821:93;14910:3;14821:93;:::i;:::-;14939:2;14934:3;14930:12;14923:19;;14582:366;;;:::o;14954:419::-;15120:4;15158:2;15147:9;15143:18;15135:26;;15207:9;15201:4;15197:20;15193:1;15182:9;15178:17;15171:47;15235:131;15361:4;15235:131;:::i;:::-;15227:139;;14954:419;;;:::o;15379:179::-;15519:31;15515:1;15507:6;15503:14;15496:55;15379:179;:::o;15564:366::-;15706:3;15727:67;15791:2;15786:3;15727:67;:::i;:::-;15720:74;;15803:93;15892:3;15803:93;:::i;:::-;15921:2;15916:3;15912:12;15905:19;;15564:366;;;:::o;15936:419::-;16102:4;16140:2;16129:9;16125:18;16117:26;;16189:9;16183:4;16179:20;16175:1;16164:9;16160:17;16153:47;16217:131;16343:4;16217:131;:::i;:::-;16209:139;;15936:419;;;:::o;16361:553::-;16538:4;16576:3;16565:9;16561:19;16553:27;;16590:71;16658:1;16647:9;16643:17;16634:6;16590:71;:::i;:::-;16671:72;16739:2;16728:9;16724:18;16715:6;16671:72;:::i;:::-;16753;16821:2;16810:9;16806:18;16797:6;16753:72;:::i;:::-;16835;16903:2;16892:9;16888:18;16879:6;16835:72;:::i;:::-;16361:553;;;;;;;:::o;16920:175::-;17060:27;17056:1;17048:6;17044:14;17037:51;16920:175;:::o;17101:366::-;17243:3;17264:67;17328:2;17323:3;17264:67;:::i;:::-;17257:74;;17340:93;17429:3;17340:93;:::i;:::-;17458:2;17453:3;17449:12;17442:19;;17101:366;;;:::o;17473:419::-;17639:4;17677:2;17666:9;17662:18;17654:26;;17726:9;17720:4;17716:20;17712:1;17701:9;17697:17;17690:47;17754:131;17880:4;17754:131;:::i;:::-;17746:139;;17473:419;;;:::o;17898:179::-;18038:31;18034:1;18026:6;18022:14;18015:55;17898:179;:::o;18083:366::-;18225:3;18246:67;18310:2;18305:3;18246:67;:::i;:::-;18239:74;;18322:93;18411:3;18322:93;:::i;:::-;18440:2;18435:3;18431:12;18424:19;;18083:366;;;:::o;18455:419::-;18621:4;18659:2;18648:9;18644:18;18636:26;;18708:9;18702:4;18698:20;18694:1;18683:9;18679:17;18672:47;18736:131;18862:4;18736:131;:::i;:::-;18728:139;;18455:419;;;:::o;18880:775::-;19113:4;19151:3;19140:9;19136:19;19128:27;;19165:71;19233:1;19222:9;19218:17;19209:6;19165:71;:::i;:::-;19246:72;19314:2;19303:9;19299:18;19290:6;19246:72;:::i;:::-;19328;19396:2;19385:9;19381:18;19372:6;19328:72;:::i;:::-;19410;19478:2;19467:9;19463:18;19454:6;19410:72;:::i;:::-;19492:73;19560:3;19549:9;19545:19;19536:6;19492:73;:::i;:::-;19575;19643:3;19632:9;19628:19;19619:6;19575:73;:::i;:::-;18880:775;;;;;;;;;:::o;19661:180::-;19801:32;19797:1;19789:6;19785:14;19778:56;19661:180;:::o;19847:366::-;19989:3;20010:67;20074:2;20069:3;20010:67;:::i;:::-;20003:74;;20086:93;20175:3;20086:93;:::i;:::-;20204:2;20199:3;20195:12;20188:19;;19847:366;;;:::o;20219:419::-;20385:4;20423:2;20412:9;20408:18;20400:26;;20472:9;20466:4;20462:20;20458:1;20447:9;20443:17;20436:47;20500:131;20626:4;20500:131;:::i;:::-;20492:139;;20219:419;;;:::o;20644:235::-;20784:34;20780:1;20772:6;20768:14;20761:58;20853:18;20848:2;20840:6;20836:15;20829:43;20644:235;:::o;20885:366::-;21027:3;21048:67;21112:2;21107:3;21048:67;:::i;:::-;21041:74;;21124:93;21213:3;21124:93;:::i;:::-;21242:2;21237:3;21233:12;21226:19;;20885:366;;;:::o;21257:419::-;21423:4;21461:2;21450:9;21446:18;21438:26;;21510:9;21504:4;21500:20;21496:1;21485:9;21481:17;21474:47;21538:131;21664:4;21538:131;:::i;:::-;21530:139;;21257:419;;;:::o;21682:181::-;21822:33;21818:1;21810:6;21806:14;21799:57;21682:181;:::o;21869:366::-;22011:3;22032:67;22096:2;22091:3;22032:67;:::i;:::-;22025:74;;22108:93;22197:3;22108:93;:::i;:::-;22226:2;22221:3;22217:12;22210:19;;21869:366;;;:::o;22241:419::-;22407:4;22445:2;22434:9;22430:18;22422:26;;22494:9;22488:4;22484:20;22480:1;22469:9;22465:17;22458:47;22522:131;22648:4;22522:131;:::i;:::-;22514:139;;22241:419;;;:::o;22666:226::-;22806:34;22802:1;22794:6;22790:14;22783:58;22875:9;22870:2;22862:6;22858:15;22851:34;22666:226;:::o;22898:366::-;23040:3;23061:67;23125:2;23120:3;23061:67;:::i;:::-;23054:74;;23137:93;23226:3;23137:93;:::i;:::-;23255:2;23250:3;23246:12;23239:19;;22898:366;;;:::o;23270:419::-;23436:4;23474:2;23463:9;23459:18;23451:26;;23523:9;23517:4;23513:20;23509:1;23498:9;23494:17;23487:47;23551:131;23677:4;23551:131;:::i;:::-;23543:139;;23270:419;;;:::o;23695:225::-;23835:34;23831:1;23823:6;23819:14;23812:58;23904:8;23899:2;23891:6;23887:15;23880:33;23695:225;:::o;23926:366::-;24068:3;24089:67;24153:2;24148:3;24089:67;:::i;:::-;24082:74;;24165:93;24254:3;24165:93;:::i;:::-;24283:2;24278:3;24274:12;24267:19;;23926:366;;;:::o;24298:419::-;24464:4;24502:2;24491:9;24487:18;24479:26;;24551:9;24545:4;24541:20;24537:1;24526:9;24522:17;24515:47;24579:131;24705:4;24579:131;:::i;:::-;24571:139;;24298:419;;;:::o;24723:223::-;24863:34;24859:1;24851:6;24847:14;24840:58;24932:6;24927:2;24919:6;24915:15;24908:31;24723:223;:::o;24952:366::-;25094:3;25115:67;25179:2;25174:3;25115:67;:::i;:::-;25108:74;;25191:93;25280:3;25191:93;:::i;:::-;25309:2;25304:3;25300:12;25293:19;;24952:366;;;:::o;25324:419::-;25490:4;25528:2;25517:9;25513:18;25505:26;;25577:9;25571:4;25567:20;25563:1;25552:9;25548:17;25541:47;25605:131;25731:4;25605:131;:::i;:::-;25597:139;;25324:419;;;:::o;25749:221::-;25889:34;25885:1;25877:6;25873:14;25866:58;25958:4;25953:2;25945:6;25941:15;25934:29;25749:221;:::o;25976:366::-;26118:3;26139:67;26203:2;26198:3;26139:67;:::i;:::-;26132:74;;26215:93;26304:3;26215:93;:::i;:::-;26333:2;26328:3;26324:12;26317:19;;25976:366;;;:::o;26348:419::-;26514:4;26552:2;26541:9;26537:18;26529:26;;26601:9;26595:4;26591:20;26587:1;26576:9;26572:17;26565:47;26629:131;26755:4;26629:131;:::i;:::-;26621:139;;26348:419;;;:::o;26773:179::-;26913:31;26909:1;26901:6;26897:14;26890:55;26773:179;:::o;26958:366::-;27100:3;27121:67;27185:2;27180:3;27121:67;:::i;:::-;27114:74;;27197:93;27286:3;27197:93;:::i;:::-;27315:2;27310:3;27306:12;27299:19;;26958:366;;;:::o;27330:419::-;27496:4;27534:2;27523:9;27519:18;27511:26;;27583:9;27577:4;27573:20;27569:1;27558:9;27554:17;27547:47;27611:131;27737:4;27611:131;:::i;:::-;27603:139;;27330:419;;;:::o;27755:224::-;27895:34;27891:1;27883:6;27879:14;27872:58;27964:7;27959:2;27951:6;27947:15;27940:32;27755:224;:::o;27985:366::-;28127:3;28148:67;28212:2;28207:3;28148:67;:::i;:::-;28141:74;;28224:93;28313:3;28224:93;:::i;:::-;28342:2;28337:3;28333:12;28326:19;;27985:366;;;:::o;28357:419::-;28523:4;28561:2;28550:9;28546:18;28538:26;;28610:9;28604:4;28600:20;28596:1;28585:9;28581:17;28574:47;28638:131;28764:4;28638:131;:::i;:::-;28630:139;;28357:419;;;:::o;28782:222::-;28922:34;28918:1;28910:6;28906:14;28899:58;28991:5;28986:2;28978:6;28974:15;28967:30;28782:222;:::o;29010:366::-;29152:3;29173:67;29237:2;29232:3;29173:67;:::i;:::-;29166:74;;29249:93;29338:3;29249:93;:::i;:::-;29367:2;29362:3;29358:12;29351:19;;29010:366;;;:::o;29382:419::-;29548:4;29586:2;29575:9;29571:18;29563:26;;29635:9;29629:4;29625:20;29621:1;29610:9;29606:17;29599:47;29663:131;29789:4;29663:131;:::i;:::-;29655:139;;29382:419;;;:::o;29807:225::-;29947:34;29943:1;29935:6;29931:14;29924:58;30016:8;30011:2;30003:6;29999:15;29992:33;29807:225;:::o;30038:366::-;30180:3;30201:67;30265:2;30260:3;30201:67;:::i;:::-;30194:74;;30277:93;30366:3;30277:93;:::i;:::-;30395:2;30390:3;30386:12;30379:19;;30038:366;;;:::o;30410:419::-;30576:4;30614:2;30603:9;30599:18;30591:26;;30663:9;30657:4;30653:20;30649:1;30638:9;30634:17;30627:47;30691:131;30817:4;30691:131;:::i;:::-;30683:139;;30410:419;;;:::o;30835:332::-;30956:4;30994:2;30983:9;30979:18;30971:26;;31007:71;31075:1;31064:9;31060:17;31051:6;31007:71;:::i;:::-;31088:72;31156:2;31145:9;31141:18;31132:6;31088:72;:::i;:::-;30835:332;;;;;:::o;31173:664::-;31378:4;31416:3;31405:9;31401:19;31393:27;;31430:71;31498:1;31487:9;31483:17;31474:6;31430:71;:::i;:::-;31511:72;31579:2;31568:9;31564:18;31555:6;31511:72;:::i;:::-;31593;31661:2;31650:9;31646:18;31637:6;31593:72;:::i;:::-;31675;31743:2;31732:9;31728:18;31719:6;31675:72;:::i;:::-;31757:73;31825:3;31814:9;31810:19;31801:6;31757:73;:::i;:::-;31173:664;;;;;;;;:::o;31843:180::-;31891:77;31888:1;31881:88;31988:4;31985:1;31978:15;32012:4;32009:1;32002:15;32029:185;32069:1;32086:20;32104:1;32086:20;:::i;:::-;32081:25;;32120:20;32138:1;32120:20;:::i;:::-;32115:25;;32159:1;32149:35;;32164:18;;:::i;:::-;32149:35;32206:1;32203;32199:9;32194:14;;32029:185;;;;:::o;32220:148::-;32322:11;32359:3;32344:18;;32220:148;;;;:::o;32374:214::-;32514:66;32510:1;32502:6;32498:14;32491:90;32374:214;:::o;32594:400::-;32754:3;32775:84;32857:1;32852:3;32775:84;:::i;:::-;32768:91;;32868:93;32957:3;32868:93;:::i;:::-;32986:1;32981:3;32977:11;32970:18;;32594:400;;;:::o;33000:79::-;33039:7;33068:5;33057:16;;33000:79;;;:::o;33085:157::-;33190:45;33210:24;33228:5;33210:24;:::i;:::-;33190:45;:::i;:::-;33185:3;33178:58;33085:157;;:::o;33248:663::-;33489:3;33511:148;33655:3;33511:148;:::i;:::-;33504:155;;33669:75;33740:3;33731:6;33669:75;:::i;:::-;33769:2;33764:3;33760:12;33753:19;;33782:75;33853:3;33844:6;33782:75;:::i;:::-;33882:2;33877:3;33873:12;33866:19;;33902:3;33895:10;;33248:663;;;;;:::o;33917:545::-;34090:4;34128:3;34117:9;34113:19;34105:27;;34142:71;34210:1;34199:9;34195:17;34186:6;34142:71;:::i;:::-;34223:68;34287:2;34276:9;34272:18;34263:6;34223:68;:::i;:::-;34301:72;34369:2;34358:9;34354:18;34345:6;34301:72;:::i;:::-;34383;34451:2;34440:9;34436:18;34427:6;34383:72;:::i;:::-;33917:545;;;;;;;:::o;34468:180::-;34516:77;34513:1;34506:88;34613:4;34610:1;34603:15;34637:4;34634:1;34627:15;34654:174;34794:26;34790:1;34782:6;34778:14;34771:50;34654:174;:::o;34834:366::-;34976:3;34997:67;35061:2;35056:3;34997:67;:::i;:::-;34990:74;;35073:93;35162:3;35073:93;:::i;:::-;35191:2;35186:3;35182:12;35175:19;;34834:366;;;:::o;35206:419::-;35372:4;35410:2;35399:9;35395:18;35387:26;;35459:9;35453:4;35449:20;35445:1;35434:9;35430:17;35423:47;35487:131;35613:4;35487:131;:::i;:::-;35479:139;;35206:419;;;:::o;35631:181::-;35771:33;35767:1;35759:6;35755:14;35748:57;35631:181;:::o;35818:366::-;35960:3;35981:67;36045:2;36040:3;35981:67;:::i;:::-;35974:74;;36057:93;36146:3;36057:93;:::i;:::-;36175:2;36170:3;36166:12;36159:19;;35818:366;;;:::o;36190:419::-;36356:4;36394:2;36383:9;36379:18;36371:26;;36443:9;36437:4;36433:20;36429:1;36418:9;36414:17;36407:47;36471:131;36597:4;36471:131;:::i;:::-;36463:139;;36190:419;;;:::o;36615:221::-;36755:34;36751:1;36743:6;36739:14;36732:58;36824:4;36819:2;36811:6;36807:15;36800:29;36615:221;:::o;36842:366::-;36984:3;37005:67;37069:2;37064:3;37005:67;:::i;:::-;36998:74;;37081:93;37170:3;37081:93;:::i;:::-;37199:2;37194:3;37190:12;37183:19;;36842:366;;;:::o;37214:419::-;37380:4;37418:2;37407:9;37403:18;37395:26;;37467:9;37461:4;37457:20;37453:1;37442:9;37438:17;37431:47;37495:131;37621:4;37495:131;:::i;:::-;37487:139;;37214:419;;;:::o;37639:221::-;37779:34;37775:1;37767:6;37763:14;37756:58;37848:4;37843:2;37835:6;37831:15;37824:29;37639:221;:::o;37866:366::-;38008:3;38029:67;38093:2;38088:3;38029:67;:::i;:::-;38022:74;;38105:93;38194:3;38105:93;:::i;:::-;38223:2;38218:3;38214:12;38207:19;;37866:366;;;:::o;38238:419::-;38404:4;38442:2;38431:9;38427:18;38419:26;;38491:9;38485:4;38481:20;38477:1;38466:9;38462:17;38455:47;38519:131;38645:4;38519:131;:::i;:::-;38511:139;;38238:419;;;:::o
Swarm Source
ipfs://cec0d19cc49c4d887c4f88624827838de2a6a7572a36371f1a55cd92be117486
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.