Latest 25 from a total of 36,072 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 60783670 | 2 hrs ago | IN | 0 AVAX | 0.00000467 | ||||
Transfer | 60781929 | 3 hrs ago | IN | 0 AVAX | 0.00021138 | ||||
Transfer | 60781469 | 3 hrs ago | IN | 0 AVAX | 0.00000712 | ||||
Transfer | 60769491 | 8 hrs ago | IN | 0 AVAX | 0.00021132 | ||||
Transfer | 60769233 | 8 hrs ago | IN | 0 AVAX | 0.00009529 | ||||
Transfer | 60769224 | 8 hrs ago | IN | 0 AVAX | 0.00000511 | ||||
Transfer | 60769179 | 8 hrs ago | IN | 0 AVAX | 0.00009603 | ||||
Transfer | 60752203 | 14 hrs ago | IN | 0 AVAX | 0.0013454 | ||||
Transfer | 60742501 | 18 hrs ago | IN | 0 AVAX | 0.00021132 | ||||
Transfer | 60742450 | 18 hrs ago | IN | 0 AVAX | 0.00002899 | ||||
Transfer | 60741521 | 18 hrs ago | IN | 0 AVAX | 0.00027502 | ||||
Transfer | 60739655 | 19 hrs ago | IN | 0 AVAX | 0.00296195 | ||||
Transfer | 60739354 | 19 hrs ago | IN | 0 AVAX | 0.00374085 | ||||
Approve | 60739090 | 19 hrs ago | IN | 0 AVAX | 0.00255651 | ||||
Transfer | 60734629 | 21 hrs ago | IN | 0 AVAX | 0.00000703 | ||||
Transfer | 60734596 | 21 hrs ago | IN | 0 AVAX | 0.00029682 | ||||
Transfer | 60732656 | 22 hrs ago | IN | 0 AVAX | 0.00021138 | ||||
Transfer | 60732244 | 22 hrs ago | IN | 0 AVAX | 0.00009528 | ||||
Transfer | 60731988 | 22 hrs ago | IN | 0 AVAX | 0.00000595 | ||||
Approve | 60707662 | 32 hrs ago | IN | 0 AVAX | 0.00002456 | ||||
Transfer | 60693371 | 38 hrs ago | IN | 0 AVAX | 0.00021138 | ||||
Transfer | 60693302 | 38 hrs ago | IN | 0 AVAX | 0.00029676 | ||||
Transfer | 60685251 | 41 hrs ago | IN | 0 AVAX | 0.0003171 | ||||
Transfer | 60685213 | 41 hrs ago | IN | 0 AVAX | 0.00075094 | ||||
Transfer | 60672655 | 46 hrs ago | IN | 0 AVAX | 0.00029688 |
Loading...
Loading
Contract Name:
GAU
Compiler Version
v0.8.16+commit.07a7930e
Contract Source Code (Solidity)
/** *Submitted for verification at snowscan.xyz on 2022-08-31 */ // SPDX-License-Identifier: MIT // 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/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/security/Pausable.sol // OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { _requireNotPaused(); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { _requirePaused(); _; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Throws if the contract is paused. */ function _requireNotPaused() internal view virtual { require(!paused(), "Pausable: paused"); } /** * @dev Throws if the contract is not paused. */ function _requirePaused() internal view virtual { require(paused(), "Pausable: not paused"); } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } // 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: @openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.0; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { _spendAllowance(account, _msgSender(), amount); _burn(account, amount); } } // File: contracts/GAU.sol pragma solidity ^0.8.4; contract GAU is ERC20, ERC20Burnable, Pausable, Ownable, ERC20Permit, ERC20Votes { constructor() ERC20("GAU Token", "GAU") ERC20Permit("GAU Token") { _mint(msg.sender, 500000000 * 10 ** decimals()); } function pause() public onlyOwner { _pause(); } function unpause() public onlyOwner { _unpause(); } function _beforeTokenTransfer(address from, address to, uint256 amount) internal whenNotPaused override { super._beforeTokenTransfer(from, to, amount); } // 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
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"DelegateVotesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","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":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"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":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6101406040523480156200001257600080fd5b506040518060400160405280600981526020017f47415520546f6b656e0000000000000000000000000000000000000000000000815250806040518060400160405280600181526020017f31000000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600981526020017f47415520546f6b656e00000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f47415500000000000000000000000000000000000000000000000000000000008152508160039081620000fd919062000f93565b5080600490816200010f919062000f93565b5050506000600560006101000a81548160ff0219169083151502179055506200014d620001416200024660201b60201c565b6200024e60201b60201c565b60008280519060200120905060008280519060200120905060007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f90508260e081815250508161010081815250504660a08181525050620001b68184846200031460201b60201c565b608081815250503073ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff16815250508061012081815250505050505050506200024033620002156200035060201b60201c565b600a6200022391906200120a565b631dcd65006200023491906200125b565b6200035960201b60201c565b62001736565b600033905090565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008383834630604051602001620003319594939291906200132d565b6040516020818303038152906040528051906020012090509392505050565b60006012905090565b6200037082826200037460201b620010f11760201c565b5050565b6200038b82826200043260201b6200117e1760201c565b6200039b620005aa60201b60201c565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16620003c9620005ce60201b60201c565b11156200040d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004049062001411565b60405180910390fd5b6200042c600a620005d860201b620012dd1783620005f060201b60201c565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620004a4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200049b9062001483565b60405180910390fd5b620004b860008383620008a160201b60201c565b8060026000828254620004cc9190620014a5565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620005239190620014a5565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200058a9190620014e0565b60405180910390a3620005a660008383620008ce60201b60201c565b5050565b60007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff905090565b6000600254905090565b60008183620005e89190620014a5565b905092915050565b60008060008580549050905060008114620006655785600182620006159190620014fd565b8154811062000629576200062862001538565b5b9060005260206000200160000160049054906101000a90047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1662000668565b60005b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1692506200069483858760201c565b9150600081118015620006ed57504386600183620006b39190620014fd565b81548110620006c757620006c662001538565b5b9060005260206000200160000160009054906101000a900463ffffffff1663ffffffff16145b156200078e576200070982620008eb60201b620012f31760201c565b86600183620007199190620014fd565b815481106200072d576200072c62001538565b5b9060005260206000200160000160046101000a8154817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff02191690837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16021790555062000898565b856040518060400160405280620007b0436200095960201b6200135e1760201c565b63ffffffff168152602001620007d185620008eb60201b620012f31760201c565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff168152509080600181540180825580915050600190039060005260206000200160009091909190915060008201518160000160006101000a81548163ffffffff021916908363ffffffff16021790555060208201518160000160046101000a8154817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff02191690837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16021790555050505b50935093915050565b620008b1620009af60201b60201c565b620008c983838362000a0460201b620013b11760201c565b505050565b620008e683838362000a0960201b620013b61760201c565b505050565b60007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff801682111562000951576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200094890620015dd565b60405180910390fd5b819050919050565b600063ffffffff8016821115620009a7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200099e9062001675565b60405180910390fd5b819050919050565b620009bf62000a5960201b60201c565b1562000a02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009f990620016e7565b60405180910390fd5b565b505050565b62000a2183838362000a7060201b620013e11760201c565b62000a5462000a368462000a7560201b60201c565b62000a478462000a7560201b60201c565b8362000ade60201b60201c565b505050565b6000600560009054906101000a900460ff16905090565b505050565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801562000b1b5750600081115b1562000cfc57600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161462000c0e5760008062000bb5600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002062000d0160201b620013e61785620005f060201b60201c565b915091508473ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724838360405162000c0392919062001709565b60405180910390a250505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000cfb5760008062000ca2600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020620005d860201b620012dd1785620005f060201b60201c565b915091508373ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724838360405162000cf092919062001709565b60405180910390a250505b5b505050565b6000818362000d119190620014fd565b905092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000d9b57607f821691505b60208210810362000db15762000db062000d53565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000e1b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000ddc565b62000e27868362000ddc565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000e7462000e6e62000e688462000e3f565b62000e49565b62000e3f565b9050919050565b6000819050919050565b62000e908362000e53565b62000ea862000e9f8262000e7b565b84845462000de9565b825550505050565b600090565b62000ebf62000eb0565b62000ecc81848462000e85565b505050565b5b8181101562000ef45762000ee860008262000eb5565b60018101905062000ed2565b5050565b601f82111562000f435762000f0d8162000db7565b62000f188462000dcc565b8101602085101562000f28578190505b62000f4062000f378562000dcc565b83018262000ed1565b50505b505050565b600082821c905092915050565b600062000f686000198460080262000f48565b1980831691505092915050565b600062000f83838362000f55565b9150826002028217905092915050565b62000f9e8262000d19565b67ffffffffffffffff81111562000fba5762000fb962000d24565b5b62000fc6825462000d82565b62000fd382828562000ef8565b600060209050601f8311600181146200100b576000841562000ff6578287015190505b62001002858262000f75565b86555062001072565b601f1984166200101b8662000db7565b60005b8281101562001045578489015182556001820191506020850194506020810190506200101e565b8683101562001065578489015162001061601f89168262000f55565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156200110857808604811115620010e057620010df6200107a565b5b6001851615620010f05780820291505b80810290506200110085620010a9565b9450620010c0565b94509492505050565b600082620011235760019050620011f6565b81620011335760009050620011f6565b81600181146200114c576002811462001157576200118d565b6001915050620011f6565b60ff8411156200116c576200116b6200107a565b5b8360020a9150848211156200118657620011856200107a565b5b50620011f6565b5060208310610133831016604e8410600b8410161715620011c75782820a905083811115620011c157620011c06200107a565b5b620011f6565b620011d68484846001620010b6565b92509050818404811115620011f057620011ef6200107a565b5b81810290505b9392505050565b600060ff82169050919050565b6000620012178262000e3f565b91506200122483620011fd565b9250620012537fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462001111565b905092915050565b6000620012688262000e3f565b9150620012758362000e3f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620012b157620012b06200107a565b5b828202905092915050565b6000819050919050565b620012d181620012bc565b82525050565b620012e28162000e3f565b82525050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200131582620012e8565b9050919050565b620013278162001308565b82525050565b600060a082019050620013446000830188620012c6565b620013536020830187620012c6565b620013626040830186620012c6565b620013716060830185620012d7565b6200138060808301846200131c565b9695505050505050565b600082825260208201905092915050565b7f4552433230566f7465733a20746f74616c20737570706c79207269736b73206f60008201527f766572666c6f77696e6720766f74657300000000000000000000000000000000602082015250565b6000620013f96030836200138a565b915062001406826200139b565b604082019050919050565b600060208201905081810360008301526200142c81620013ea565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200146b601f836200138a565b9150620014788262001433565b602082019050919050565b600060208201905081810360008301526200149e816200145c565b9050919050565b6000620014b28262000e3f565b9150620014bf8362000e3f565b9250828201905080821115620014da57620014d96200107a565b5b92915050565b6000602082019050620014f76000830184620012d7565b92915050565b60006200150a8262000e3f565b9150620015178362000e3f565b92508282039050818111156200153257620015316200107a565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f53616665436173743a2076616c756520646f65736e27742066697420696e203260008201527f3234206269747300000000000000000000000000000000000000000000000000602082015250565b6000620015c56027836200138a565b9150620015d28262001567565b604082019050919050565b60006020820190508181036000830152620015f881620015b6565b9050919050565b7f53616665436173743a2076616c756520646f65736e27742066697420696e203360008201527f3220626974730000000000000000000000000000000000000000000000000000602082015250565b60006200165d6026836200138a565b91506200166a82620015ff565b604082019050919050565b6000602082019050818103600083015262001690816200164e565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000620016cf6010836200138a565b9150620016dc8262001697565b602082019050919050565b600060208201905081810360008301526200170281620016c0565b9050919050565b6000604082019050620017206000830185620012d7565b6200172f6020830184620012d7565b9392505050565b60805160a05160c05160e051610100516101205161411b620017866000396000611986015260006119c8015260006119a7015260006118dc015260006119320152600061195b015261411b6000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c8063715018a6116101045780639ab24eb0116100a2578063d505accf11610071578063d505accf1461057f578063dd62ed3e1461059b578063f1127ed8146105cb578063f2fde38b146105fb576101da565b80639ab24eb0146104d3578063a457c2d714610503578063a9059cbb14610533578063c3cda52014610563576101da565b80638456cb59116100de5780638456cb591461045d5780638da5cb5b146104675780638e539e8c1461048557806395d89b41146104b5576101da565b8063715018a61461040757806379cc6790146104115780637ecebe001461042d576101da565b80633a46b1a81161017c5780635c19a95c1161014b5780635c19a95c1461036d5780635c975abb146103895780636fcfff45146103a757806370a08231146103d7576101da565b80633a46b1a8146102e75780633f4ba83a1461031757806342966c6814610321578063587cde1e1461033d576101da565b806323b872dd116101b857806323b872dd1461024b578063313ce5671461027b5780633644e5151461029957806339509351146102b7576101da565b806306fdde03146101df578063095ea7b3146101fd57806318160ddd1461022d575b600080fd5b6101e7610617565b6040516101f49190612a74565b60405180910390f35b61021760048036038101906102129190612b2f565b6106a9565b6040516102249190612b8a565b60405180910390f35b6102356106cc565b6040516102429190612bb4565b60405180910390f35b61026560048036038101906102609190612bcf565b6106d6565b6040516102729190612b8a565b60405180910390f35b610283610705565b6040516102909190612c3e565b60405180910390f35b6102a161070e565b6040516102ae9190612c72565b60405180910390f35b6102d160048036038101906102cc9190612b2f565b61071d565b6040516102de9190612b8a565b60405180910390f35b61030160048036038101906102fc9190612b2f565b610754565b60405161030e9190612bb4565b60405180910390f35b61031f6107e8565b005b61033b60048036038101906103369190612c8d565b6107fa565b005b61035760048036038101906103529190612cba565b61080e565b6040516103649190612cf6565b60405180910390f35b61038760048036038101906103829190612cba565b610877565b005b61039161088b565b60405161039e9190612b8a565b60405180910390f35b6103c160048036038101906103bc9190612cba565b6108a2565b6040516103ce9190612d30565b60405180910390f35b6103f160048036038101906103ec9190612cba565b6108f6565b6040516103fe9190612bb4565b60405180910390f35b61040f61093e565b005b61042b60048036038101906104269190612b2f565b610952565b005b61044760048036038101906104429190612cba565b610972565b6040516104549190612bb4565b60405180910390f35b6104656109c2565b005b61046f6109d4565b60405161047c9190612cf6565b60405180910390f35b61049f600480360381019061049a9190612c8d565b6109fe565b6040516104ac9190612bb4565b60405180910390f35b6104bd610a54565b6040516104ca9190612a74565b60405180910390f35b6104ed60048036038101906104e89190612cba565b610ae6565b6040516104fa9190612bb4565b60405180910390f35b61051d60048036038101906105189190612b2f565b610bf7565b60405161052a9190612b8a565b60405180910390f35b61054d60048036038101906105489190612b2f565b610c6e565b60405161055a9190612b8a565b60405180910390f35b61057d60048036038101906105789190612da3565b610c91565b005b61059960048036038101906105949190612e30565b610d95565b005b6105b560048036038101906105b09190612ed2565b610ed7565b6040516105c29190612bb4565b60405180910390f35b6105e560048036038101906105e09190612f3e565b610f5e565b6040516105f29190612ff3565b60405180910390f35b61061560048036038101906106109190612cba565b61106e565b005b6060600380546106269061303d565b80601f01602080910402602001604051908101604052809291908181526020018280546106529061303d565b801561069f5780601f106106745761010080835404028352916020019161069f565b820191906000526020600020905b81548152906001019060200180831161068257829003601f168201915b5050505050905090565b6000806106b46113fc565b90506106c1818585611404565b600191505092915050565b6000600254905090565b6000806106e16113fc565b90506106ee8582856115cd565b6106f9858585611659565b60019150509392505050565b60006012905090565b60006107186118d8565b905090565b6000806107286113fc565b905061074981858561073a8589610ed7565b610744919061309d565b611404565b600191505092915050565b6000438210610798576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078f9061311d565b60405180910390fd5b6107e0600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020836119f2565b905092915050565b6107f0611afe565b6107f8611b7c565b565b61080b6108056113fc565b82611bdf565b50565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6108886108826113fc565b82611bed565b50565b6000600560009054906101000a900460ff16905090565b60006108ef600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054905061135e565b9050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610946611afe565b6109506000611d07565b565b6109648261095e6113fc565b836115cd565b61096e8282611bdf565b5050565b60006109bb600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611dcd565b9050919050565b6109ca611afe565b6109d2611ddb565b565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000438210610a42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a399061311d565b60405180910390fd5b610a4d600a836119f2565b9050919050565b606060048054610a639061303d565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8f9061303d565b8015610adc5780601f10610ab157610100808354040283529160200191610adc565b820191906000526020600020905b815481529060010190602001808311610abf57829003601f168201915b5050505050905090565b600080600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080549050905060008114610bce57600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600182610b82919061313d565b81548110610b9357610b92613171565b5b9060005260206000200160000160049054906101000a90047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16610bd1565b60005b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16915050919050565b600080610c026113fc565b90506000610c108286610ed7565b905083811015610c55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4c90613212565b60405180910390fd5b610c628286868403611404565b60019250505092915050565b600080610c796113fc565b9050610c86818585611659565b600191505092915050565b83421115610cd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccb9061327e565b60405180910390fd5b6000610d36610d2e7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf898989604051602001610d13949392919061329e565b60405160208183030381529060405280519060200120611e3e565b858585611e58565b9050610d4181611e83565b8614610d82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d799061332f565b60405180910390fd5b610d8c8188611bed565b50505050505050565b83421115610dd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcf9061339b565b60405180910390fd5b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9888888610e078c611e83565b89604051602001610e1d969594939291906133bb565b6040516020818303038152906040528051906020012090506000610e4082611e3e565b90506000610e5082878787611e58565b90508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ec0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb790613468565b60405180910390fd5b610ecb8a8a8a611404565b50505050505050505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610f666129a6565b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208263ffffffff1681548110610fbd57610fbc613171565b5b906000526020600020016040518060400160405290816000820160009054906101000a900463ffffffff1663ffffffff1663ffffffff1681526020016000820160049054906101000a90047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1681525050905092915050565b611076611afe565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036110e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110dc906134fa565b60405180910390fd5b6110ee81611d07565b50565b6110fb828261117e565b611103611ee1565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff166111296106cc565b111561116a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111619061358c565b60405180910390fd5b611178600a6112dd83611f05565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e4906135f8565b60405180910390fd5b6111f96000838361217d565b806002600082825461120b919061309d565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611260919061309d565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516112c59190612bb4565b60405180910390a36112d960008383612195565b5050565b600081836112eb919061309d565b905092915050565b60007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8016821115611356576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134d9061368a565b60405180910390fd5b819050919050565b600063ffffffff80168211156113a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a09061371c565b60405180910390fd5b819050919050565b505050565b6113c18383836113e1565b6113dc6113cd8461080e565b6113d68461080e565b836121a5565b505050565b505050565b600081836113f4919061313d565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611473576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146a906137ae565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d990613840565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516115c09190612bb4565b60405180910390a3505050565b60006115d98484610ed7565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146116535781811015611645576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163c906138ac565b60405180910390fd5b6116528484848403611404565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036116c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bf9061393e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611737576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172e906139d0565b60405180910390fd5b61174283838361217d565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156117c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bf90613a62565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461185b919061309d565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118bf9190612bb4565b60405180910390a36118d2848484612195565b50505050565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff1614801561195457507f000000000000000000000000000000000000000000000000000000000000000046145b15611981577f000000000000000000000000000000000000000000000000000000000000000090506119ef565b6119ec7f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000007f000000000000000000000000000000000000000000000000000000000000000061239e565b90505b90565b6000808380549050905060005b81811015611a71576000611a1382846123d8565b905084868281548110611a2957611a28613171565b5b9060005260206000200160000160009054906101000a900463ffffffff1663ffffffff161115611a5b57809250611a6b565b600181611a68919061309d565b91505b506119ff565b60008214611ad35784600183611a87919061313d565b81548110611a9857611a97613171565b5b9060005260206000200160000160049054906101000a90047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16611ad6565b60005b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff169250505092915050565b611b066113fc565b73ffffffffffffffffffffffffffffffffffffffff16611b246109d4565b73ffffffffffffffffffffffffffffffffffffffff1614611b7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7190613ace565b60405180910390fd5b565b611b846123fe565b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611bc86113fc565b604051611bd59190612cf6565b60405180910390a1565b611be98282612447565b5050565b6000611bf88361080e565b90506000611c05846108f6565b905082600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f60405160405180910390a4611d018284836121a5565b50505050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081600001549050919050565b611de3612465565b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611e276113fc565b604051611e349190612cf6565b60405180910390a1565b6000611e51611e4b6118d8565b836124af565b9050919050565b6000806000611e69878787876124e2565b91509150611e76816125ee565b8192505050949350505050565b600080600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050611ed081611dcd565b9150611edb816127ba565b50919050565b60007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff905090565b60008060008580549050905060008114611f735785600182611f27919061313d565b81548110611f3857611f37613171565b5b9060005260206000200160000160049054906101000a90047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16611f76565b60005b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff169250611fa483858763ffffffff16565b9150600081118015611ff757504386600183611fc0919061313d565b81548110611fd157611fd0613171565b5b9060005260206000200160000160009054906101000a900463ffffffff1663ffffffff16145b1561208457612005826112f3565b86600183612013919061313d565b8154811061202457612023613171565b5b9060005260206000200160000160046101000a8154817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff02191690837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff160217905550612174565b8560405180604001604052806120994361135e565b63ffffffff1681526020016120ad856112f3565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff168152509080600181540180825580915050600190039060005260206000200160009091909190915060008201518160000160006101000a81548163ffffffff021916908363ffffffff16021790555060208201518160000160046101000a8154817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff02191690837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16021790555050505b50935093915050565b612185612465565b6121908383836113b1565b505050565b6121a08383836113b6565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156121e15750600081115b1561239957600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146122bf57600080612268600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206113e685611f05565b915091508473ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a72483836040516122b4929190613aee565b60405180910390a250505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461239857600080612341600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206112dd85611f05565b915091508373ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724838360405161238d929190613aee565b60405180910390a250505b5b505050565b600083838346306040516020016123b9959493929190613b17565b6040516020818303038152906040528051906020012090509392505050565b600060028284186123e99190613b99565b8284166123f6919061309d565b905092915050565b61240661088b565b612445576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243c90613c16565b60405180910390fd5b565b61245182826127d0565b61245f600a6113e683611f05565b50505050565b61246d61088b565b156124ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a490613c82565b60405180910390fd5b565b600082826040516020016124c4929190613d1a565b60405160208183030381529060405280519060200120905092915050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c111561251d5760006003915091506125e5565b601b8560ff16141580156125355750601c8560ff1614155b156125475760006004915091506125e5565b60006001878787876040516000815260200160405260405161256c9493929190613d51565b6020604051602081039080840390855afa15801561258e573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036125dc576000600192509250506125e5565b80600092509250505b94509492505050565b6000600481111561260257612601613d96565b5b81600481111561261557612614613d96565b5b03156127b7576001600481111561262f5761262e613d96565b5b81600481111561264257612641613d96565b5b03612682576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267990613e11565b60405180910390fd5b6002600481111561269657612695613d96565b5b8160048111156126a9576126a8613d96565b5b036126e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e090613e7d565b60405180910390fd5b600360048111156126fd576126fc613d96565b5b8160048111156127105761270f613d96565b5b03612750576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274790613f0f565b60405180910390fd5b60048081111561276357612762613d96565b5b81600481111561277657612775613d96565b5b036127b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ad90613fa1565b60405180910390fd5b5b50565b6001816000016000828254019250508190555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361283f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283690614033565b60405180910390fd5b61284b8260008361217d565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156128d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c8906140c5565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254612928919061313d565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161298d9190612bb4565b60405180910390a36129a183600084612195565b505050565b6040518060400160405280600063ffffffff16815260200160007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1681525090565b600081519050919050565b600082825260208201905092915050565b60005b83811015612a1e578082015181840152602081019050612a03565b60008484015250505050565b6000601f19601f8301169050919050565b6000612a46826129e4565b612a5081856129ef565b9350612a60818560208601612a00565b612a6981612a2a565b840191505092915050565b60006020820190508181036000830152612a8e8184612a3b565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612ac682612a9b565b9050919050565b612ad681612abb565b8114612ae157600080fd5b50565b600081359050612af381612acd565b92915050565b6000819050919050565b612b0c81612af9565b8114612b1757600080fd5b50565b600081359050612b2981612b03565b92915050565b60008060408385031215612b4657612b45612a96565b5b6000612b5485828601612ae4565b9250506020612b6585828601612b1a565b9150509250929050565b60008115159050919050565b612b8481612b6f565b82525050565b6000602082019050612b9f6000830184612b7b565b92915050565b612bae81612af9565b82525050565b6000602082019050612bc96000830184612ba5565b92915050565b600080600060608486031215612be857612be7612a96565b5b6000612bf686828701612ae4565b9350506020612c0786828701612ae4565b9250506040612c1886828701612b1a565b9150509250925092565b600060ff82169050919050565b612c3881612c22565b82525050565b6000602082019050612c536000830184612c2f565b92915050565b6000819050919050565b612c6c81612c59565b82525050565b6000602082019050612c876000830184612c63565b92915050565b600060208284031215612ca357612ca2612a96565b5b6000612cb184828501612b1a565b91505092915050565b600060208284031215612cd057612ccf612a96565b5b6000612cde84828501612ae4565b91505092915050565b612cf081612abb565b82525050565b6000602082019050612d0b6000830184612ce7565b92915050565b600063ffffffff82169050919050565b612d2a81612d11565b82525050565b6000602082019050612d456000830184612d21565b92915050565b612d5481612c22565b8114612d5f57600080fd5b50565b600081359050612d7181612d4b565b92915050565b612d8081612c59565b8114612d8b57600080fd5b50565b600081359050612d9d81612d77565b92915050565b60008060008060008060c08789031215612dc057612dbf612a96565b5b6000612dce89828a01612ae4565b9650506020612ddf89828a01612b1a565b9550506040612df089828a01612b1a565b9450506060612e0189828a01612d62565b9350506080612e1289828a01612d8e565b92505060a0612e2389828a01612d8e565b9150509295509295509295565b600080600080600080600060e0888a031215612e4f57612e4e612a96565b5b6000612e5d8a828b01612ae4565b9750506020612e6e8a828b01612ae4565b9650506040612e7f8a828b01612b1a565b9550506060612e908a828b01612b1a565b9450506080612ea18a828b01612d62565b93505060a0612eb28a828b01612d8e565b92505060c0612ec38a828b01612d8e565b91505092959891949750929550565b60008060408385031215612ee957612ee8612a96565b5b6000612ef785828601612ae4565b9250506020612f0885828601612ae4565b9150509250929050565b612f1b81612d11565b8114612f2657600080fd5b50565b600081359050612f3881612f12565b92915050565b60008060408385031215612f5557612f54612a96565b5b6000612f6385828601612ae4565b9250506020612f7485828601612f29565b9150509250929050565b612f8781612d11565b82525050565b60007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff82169050919050565b612fbe81612f8d565b82525050565b604082016000820151612fda6000850182612f7e565b506020820151612fed6020850182612fb5565b50505050565b60006040820190506130086000830184612fc4565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061305557607f821691505b6020821081036130685761306761300e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006130a882612af9565b91506130b383612af9565b92508282019050808211156130cb576130ca61306e565b5b92915050565b7f4552433230566f7465733a20626c6f636b206e6f7420796574206d696e656400600082015250565b6000613107601f836129ef565b9150613112826130d1565b602082019050919050565b60006020820190508181036000830152613136816130fa565b9050919050565b600061314882612af9565b915061315383612af9565b925082820390508181111561316b5761316a61306e565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006131fc6025836129ef565b9150613207826131a0565b604082019050919050565b6000602082019050818103600083015261322b816131ef565b9050919050565b7f4552433230566f7465733a207369676e61747572652065787069726564000000600082015250565b6000613268601d836129ef565b915061327382613232565b602082019050919050565b600060208201905081810360008301526132978161325b565b9050919050565b60006080820190506132b36000830187612c63565b6132c06020830186612ce7565b6132cd6040830185612ba5565b6132da6060830184612ba5565b95945050505050565b7f4552433230566f7465733a20696e76616c6964206e6f6e636500000000000000600082015250565b60006133196019836129ef565b9150613324826132e3565b602082019050919050565b600060208201905081810360008301526133488161330c565b9050919050565b7f45524332305065726d69743a206578706972656420646561646c696e65000000600082015250565b6000613385601d836129ef565b91506133908261334f565b602082019050919050565b600060208201905081810360008301526133b481613378565b9050919050565b600060c0820190506133d06000830189612c63565b6133dd6020830188612ce7565b6133ea6040830187612ce7565b6133f76060830186612ba5565b6134046080830185612ba5565b61341160a0830184612ba5565b979650505050505050565b7f45524332305065726d69743a20696e76616c6964207369676e61747572650000600082015250565b6000613452601e836129ef565b915061345d8261341c565b602082019050919050565b6000602082019050818103600083015261348181613445565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006134e46026836129ef565b91506134ef82613488565b604082019050919050565b60006020820190508181036000830152613513816134d7565b9050919050565b7f4552433230566f7465733a20746f74616c20737570706c79207269736b73206f60008201527f766572666c6f77696e6720766f74657300000000000000000000000000000000602082015250565b60006135766030836129ef565b91506135818261351a565b604082019050919050565b600060208201905081810360008301526135a581613569565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006135e2601f836129ef565b91506135ed826135ac565b602082019050919050565b60006020820190508181036000830152613611816135d5565b9050919050565b7f53616665436173743a2076616c756520646f65736e27742066697420696e203260008201527f3234206269747300000000000000000000000000000000000000000000000000602082015250565b60006136746027836129ef565b915061367f82613618565b604082019050919050565b600060208201905081810360008301526136a381613667565b9050919050565b7f53616665436173743a2076616c756520646f65736e27742066697420696e203360008201527f3220626974730000000000000000000000000000000000000000000000000000602082015250565b60006137066026836129ef565b9150613711826136aa565b604082019050919050565b60006020820190508181036000830152613735816136f9565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006137986024836129ef565b91506137a38261373c565b604082019050919050565b600060208201905081810360008301526137c78161378b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061382a6022836129ef565b9150613835826137ce565b604082019050919050565b600060208201905081810360008301526138598161381d565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613896601d836129ef565b91506138a182613860565b602082019050919050565b600060208201905081810360008301526138c581613889565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006139286025836129ef565b9150613933826138cc565b604082019050919050565b600060208201905081810360008301526139578161391b565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006139ba6023836129ef565b91506139c58261395e565b604082019050919050565b600060208201905081810360008301526139e9816139ad565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613a4c6026836129ef565b9150613a57826139f0565b604082019050919050565b60006020820190508181036000830152613a7b81613a3f565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613ab86020836129ef565b9150613ac382613a82565b602082019050919050565b60006020820190508181036000830152613ae781613aab565b9050919050565b6000604082019050613b036000830185612ba5565b613b106020830184612ba5565b9392505050565b600060a082019050613b2c6000830188612c63565b613b396020830187612c63565b613b466040830186612c63565b613b536060830185612ba5565b613b606080830184612ce7565b9695505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613ba482612af9565b9150613baf83612af9565b925082613bbf57613bbe613b6a565b5b828204905092915050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000613c006014836129ef565b9150613c0b82613bca565b602082019050919050565b60006020820190508181036000830152613c2f81613bf3565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000613c6c6010836129ef565b9150613c7782613c36565b602082019050919050565b60006020820190508181036000830152613c9b81613c5f565b9050919050565b600081905092915050565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b6000613ce3600283613ca2565b9150613cee82613cad565b600282019050919050565b6000819050919050565b613d14613d0f82612c59565b613cf9565b82525050565b6000613d2582613cd6565b9150613d318285613d03565b602082019150613d418284613d03565b6020820191508190509392505050565b6000608082019050613d666000830187612c63565b613d736020830186612c2f565b613d806040830185612c63565b613d8d6060830184612c63565b95945050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b6000613dfb6018836129ef565b9150613e0682613dc5565b602082019050919050565b60006020820190508181036000830152613e2a81613dee565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b6000613e67601f836129ef565b9150613e7282613e31565b602082019050919050565b60006020820190508181036000830152613e9681613e5a565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000613ef96022836129ef565b9150613f0482613e9d565b604082019050919050565b60006020820190508181036000830152613f2881613eec565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000613f8b6022836129ef565b9150613f9682613f2f565b604082019050919050565b60006020820190508181036000830152613fba81613f7e565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061401d6021836129ef565b915061402882613fc1565b604082019050919050565b6000602082019050818103600083015261404c81614010565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006140af6022836129ef565b91506140ba82614053565b604082019050919050565b600060208201905081810360008301526140de816140a2565b905091905056fea2646970667358221220918c80019a9956795116683a254f2b310878f03943b767fecb96198bb889440064736f6c63430008100033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101da5760003560e01c8063715018a6116101045780639ab24eb0116100a2578063d505accf11610071578063d505accf1461057f578063dd62ed3e1461059b578063f1127ed8146105cb578063f2fde38b146105fb576101da565b80639ab24eb0146104d3578063a457c2d714610503578063a9059cbb14610533578063c3cda52014610563576101da565b80638456cb59116100de5780638456cb591461045d5780638da5cb5b146104675780638e539e8c1461048557806395d89b41146104b5576101da565b8063715018a61461040757806379cc6790146104115780637ecebe001461042d576101da565b80633a46b1a81161017c5780635c19a95c1161014b5780635c19a95c1461036d5780635c975abb146103895780636fcfff45146103a757806370a08231146103d7576101da565b80633a46b1a8146102e75780633f4ba83a1461031757806342966c6814610321578063587cde1e1461033d576101da565b806323b872dd116101b857806323b872dd1461024b578063313ce5671461027b5780633644e5151461029957806339509351146102b7576101da565b806306fdde03146101df578063095ea7b3146101fd57806318160ddd1461022d575b600080fd5b6101e7610617565b6040516101f49190612a74565b60405180910390f35b61021760048036038101906102129190612b2f565b6106a9565b6040516102249190612b8a565b60405180910390f35b6102356106cc565b6040516102429190612bb4565b60405180910390f35b61026560048036038101906102609190612bcf565b6106d6565b6040516102729190612b8a565b60405180910390f35b610283610705565b6040516102909190612c3e565b60405180910390f35b6102a161070e565b6040516102ae9190612c72565b60405180910390f35b6102d160048036038101906102cc9190612b2f565b61071d565b6040516102de9190612b8a565b60405180910390f35b61030160048036038101906102fc9190612b2f565b610754565b60405161030e9190612bb4565b60405180910390f35b61031f6107e8565b005b61033b60048036038101906103369190612c8d565b6107fa565b005b61035760048036038101906103529190612cba565b61080e565b6040516103649190612cf6565b60405180910390f35b61038760048036038101906103829190612cba565b610877565b005b61039161088b565b60405161039e9190612b8a565b60405180910390f35b6103c160048036038101906103bc9190612cba565b6108a2565b6040516103ce9190612d30565b60405180910390f35b6103f160048036038101906103ec9190612cba565b6108f6565b6040516103fe9190612bb4565b60405180910390f35b61040f61093e565b005b61042b60048036038101906104269190612b2f565b610952565b005b61044760048036038101906104429190612cba565b610972565b6040516104549190612bb4565b60405180910390f35b6104656109c2565b005b61046f6109d4565b60405161047c9190612cf6565b60405180910390f35b61049f600480360381019061049a9190612c8d565b6109fe565b6040516104ac9190612bb4565b60405180910390f35b6104bd610a54565b6040516104ca9190612a74565b60405180910390f35b6104ed60048036038101906104e89190612cba565b610ae6565b6040516104fa9190612bb4565b60405180910390f35b61051d60048036038101906105189190612b2f565b610bf7565b60405161052a9190612b8a565b60405180910390f35b61054d60048036038101906105489190612b2f565b610c6e565b60405161055a9190612b8a565b60405180910390f35b61057d60048036038101906105789190612da3565b610c91565b005b61059960048036038101906105949190612e30565b610d95565b005b6105b560048036038101906105b09190612ed2565b610ed7565b6040516105c29190612bb4565b60405180910390f35b6105e560048036038101906105e09190612f3e565b610f5e565b6040516105f29190612ff3565b60405180910390f35b61061560048036038101906106109190612cba565b61106e565b005b6060600380546106269061303d565b80601f01602080910402602001604051908101604052809291908181526020018280546106529061303d565b801561069f5780601f106106745761010080835404028352916020019161069f565b820191906000526020600020905b81548152906001019060200180831161068257829003601f168201915b5050505050905090565b6000806106b46113fc565b90506106c1818585611404565b600191505092915050565b6000600254905090565b6000806106e16113fc565b90506106ee8582856115cd565b6106f9858585611659565b60019150509392505050565b60006012905090565b60006107186118d8565b905090565b6000806107286113fc565b905061074981858561073a8589610ed7565b610744919061309d565b611404565b600191505092915050565b6000438210610798576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161078f9061311d565b60405180910390fd5b6107e0600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020836119f2565b905092915050565b6107f0611afe565b6107f8611b7c565b565b61080b6108056113fc565b82611bdf565b50565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6108886108826113fc565b82611bed565b50565b6000600560009054906101000a900460ff16905090565b60006108ef600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208054905061135e565b9050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610946611afe565b6109506000611d07565b565b6109648261095e6113fc565b836115cd565b61096e8282611bdf565b5050565b60006109bb600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020611dcd565b9050919050565b6109ca611afe565b6109d2611ddb565b565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000438210610a42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a399061311d565b60405180910390fd5b610a4d600a836119f2565b9050919050565b606060048054610a639061303d565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8f9061303d565b8015610adc5780601f10610ab157610100808354040283529160200191610adc565b820191906000526020600020905b815481529060010190602001808311610abf57829003601f168201915b5050505050905090565b600080600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080549050905060008114610bce57600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600182610b82919061313d565b81548110610b9357610b92613171565b5b9060005260206000200160000160049054906101000a90047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16610bd1565b60005b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16915050919050565b600080610c026113fc565b90506000610c108286610ed7565b905083811015610c55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4c90613212565b60405180910390fd5b610c628286868403611404565b60019250505092915050565b600080610c796113fc565b9050610c86818585611659565b600191505092915050565b83421115610cd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccb9061327e565b60405180910390fd5b6000610d36610d2e7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf898989604051602001610d13949392919061329e565b60405160208183030381529060405280519060200120611e3e565b858585611e58565b9050610d4181611e83565b8614610d82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d799061332f565b60405180910390fd5b610d8c8188611bed565b50505050505050565b83421115610dd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcf9061339b565b60405180910390fd5b60007f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9888888610e078c611e83565b89604051602001610e1d969594939291906133bb565b6040516020818303038152906040528051906020012090506000610e4082611e3e565b90506000610e5082878787611e58565b90508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610ec0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb790613468565b60405180910390fd5b610ecb8a8a8a611404565b50505050505050505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610f666129a6565b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208263ffffffff1681548110610fbd57610fbc613171565b5b906000526020600020016040518060400160405290816000820160009054906101000a900463ffffffff1663ffffffff1663ffffffff1681526020016000820160049054906101000a90047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1681525050905092915050565b611076611afe565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036110e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110dc906134fa565b60405180910390fd5b6110ee81611d07565b50565b6110fb828261117e565b611103611ee1565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff166111296106cc565b111561116a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111619061358c565b60405180910390fd5b611178600a6112dd83611f05565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e4906135f8565b60405180910390fd5b6111f96000838361217d565b806002600082825461120b919061309d565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611260919061309d565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516112c59190612bb4565b60405180910390a36112d960008383612195565b5050565b600081836112eb919061309d565b905092915050565b60007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8016821115611356576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134d9061368a565b60405180910390fd5b819050919050565b600063ffffffff80168211156113a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a09061371c565b60405180910390fd5b819050919050565b505050565b6113c18383836113e1565b6113dc6113cd8461080e565b6113d68461080e565b836121a5565b505050565b505050565b600081836113f4919061313d565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611473576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146a906137ae565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d990613840565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516115c09190612bb4565b60405180910390a3505050565b60006115d98484610ed7565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146116535781811015611645576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163c906138ac565b60405180910390fd5b6116528484848403611404565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036116c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bf9061393e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611737576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172e906139d0565b60405180910390fd5b61174283838361217d565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156117c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bf90613a62565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461185b919061309d565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118bf9190612bb4565b60405180910390a36118d2848484612195565b50505050565b60007f000000000000000000000000ca8ebfb8e1460aaac7c272cb9053b3d42412aac273ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff1614801561195457507f000000000000000000000000000000000000000000000000000000000000a86a46145b15611981577fa054643257edc1e7e47eb9a440c80f2adf290aa794a7c0e3428fd14f33fae37390506119ef565b6119ec7f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f7f2a32d3363a02d18f198222deed22c05d9e7be05d00529a25976bef163ff0d1067fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc661239e565b90505b90565b6000808380549050905060005b81811015611a71576000611a1382846123d8565b905084868281548110611a2957611a28613171565b5b9060005260206000200160000160009054906101000a900463ffffffff1663ffffffff161115611a5b57809250611a6b565b600181611a68919061309d565b91505b506119ff565b60008214611ad35784600183611a87919061313d565b81548110611a9857611a97613171565b5b9060005260206000200160000160049054906101000a90047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16611ad6565b60005b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff169250505092915050565b611b066113fc565b73ffffffffffffffffffffffffffffffffffffffff16611b246109d4565b73ffffffffffffffffffffffffffffffffffffffff1614611b7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7190613ace565b60405180910390fd5b565b611b846123fe565b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611bc86113fc565b604051611bd59190612cf6565b60405180910390a1565b611be98282612447565b5050565b6000611bf88361080e565b90506000611c05846108f6565b905082600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f60405160405180910390a4611d018284836121a5565b50505050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081600001549050919050565b611de3612465565b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611e276113fc565b604051611e349190612cf6565b60405180910390a1565b6000611e51611e4b6118d8565b836124af565b9050919050565b6000806000611e69878787876124e2565b91509150611e76816125ee565b8192505050949350505050565b600080600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050611ed081611dcd565b9150611edb816127ba565b50919050565b60007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff905090565b60008060008580549050905060008114611f735785600182611f27919061313d565b81548110611f3857611f37613171565b5b9060005260206000200160000160049054906101000a90047bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16611f76565b60005b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff169250611fa483858763ffffffff16565b9150600081118015611ff757504386600183611fc0919061313d565b81548110611fd157611fd0613171565b5b9060005260206000200160000160009054906101000a900463ffffffff1663ffffffff16145b1561208457612005826112f3565b86600183612013919061313d565b8154811061202457612023613171565b5b9060005260206000200160000160046101000a8154817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff02191690837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff160217905550612174565b8560405180604001604052806120994361135e565b63ffffffff1681526020016120ad856112f3565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff168152509080600181540180825580915050600190039060005260206000200160009091909190915060008201518160000160006101000a81548163ffffffff021916908363ffffffff16021790555060208201518160000160046101000a8154817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff02191690837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff16021790555050505b50935093915050565b612185612465565b6121908383836113b1565b505050565b6121a08383836113b6565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156121e15750600081115b1561239957600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146122bf57600080612268600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206113e685611f05565b915091508473ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a72483836040516122b4929190613aee565b60405180910390a250505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461239857600080612341600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206112dd85611f05565b915091508373ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724838360405161238d929190613aee565b60405180910390a250505b5b505050565b600083838346306040516020016123b9959493929190613b17565b6040516020818303038152906040528051906020012090509392505050565b600060028284186123e99190613b99565b8284166123f6919061309d565b905092915050565b61240661088b565b612445576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243c90613c16565b60405180910390fd5b565b61245182826127d0565b61245f600a6113e683611f05565b50505050565b61246d61088b565b156124ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a490613c82565b60405180910390fd5b565b600082826040516020016124c4929190613d1a565b60405160208183030381529060405280519060200120905092915050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c111561251d5760006003915091506125e5565b601b8560ff16141580156125355750601c8560ff1614155b156125475760006004915091506125e5565b60006001878787876040516000815260200160405260405161256c9493929190613d51565b6020604051602081039080840390855afa15801561258e573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036125dc576000600192509250506125e5565b80600092509250505b94509492505050565b6000600481111561260257612601613d96565b5b81600481111561261557612614613d96565b5b03156127b7576001600481111561262f5761262e613d96565b5b81600481111561264257612641613d96565b5b03612682576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267990613e11565b60405180910390fd5b6002600481111561269657612695613d96565b5b8160048111156126a9576126a8613d96565b5b036126e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e090613e7d565b60405180910390fd5b600360048111156126fd576126fc613d96565b5b8160048111156127105761270f613d96565b5b03612750576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274790613f0f565b60405180910390fd5b60048081111561276357612762613d96565b5b81600481111561277657612775613d96565b5b036127b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ad90613fa1565b60405180910390fd5b5b50565b6001816000016000828254019250508190555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361283f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283690614033565b60405180910390fd5b61284b8260008361217d565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156128d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c8906140c5565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254612928919061313d565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161298d9190612bb4565b60405180910390a36129a183600084612195565b505050565b6040518060400160405280600063ffffffff16815260200160007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1681525090565b600081519050919050565b600082825260208201905092915050565b60005b83811015612a1e578082015181840152602081019050612a03565b60008484015250505050565b6000601f19601f8301169050919050565b6000612a46826129e4565b612a5081856129ef565b9350612a60818560208601612a00565b612a6981612a2a565b840191505092915050565b60006020820190508181036000830152612a8e8184612a3b565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612ac682612a9b565b9050919050565b612ad681612abb565b8114612ae157600080fd5b50565b600081359050612af381612acd565b92915050565b6000819050919050565b612b0c81612af9565b8114612b1757600080fd5b50565b600081359050612b2981612b03565b92915050565b60008060408385031215612b4657612b45612a96565b5b6000612b5485828601612ae4565b9250506020612b6585828601612b1a565b9150509250929050565b60008115159050919050565b612b8481612b6f565b82525050565b6000602082019050612b9f6000830184612b7b565b92915050565b612bae81612af9565b82525050565b6000602082019050612bc96000830184612ba5565b92915050565b600080600060608486031215612be857612be7612a96565b5b6000612bf686828701612ae4565b9350506020612c0786828701612ae4565b9250506040612c1886828701612b1a565b9150509250925092565b600060ff82169050919050565b612c3881612c22565b82525050565b6000602082019050612c536000830184612c2f565b92915050565b6000819050919050565b612c6c81612c59565b82525050565b6000602082019050612c876000830184612c63565b92915050565b600060208284031215612ca357612ca2612a96565b5b6000612cb184828501612b1a565b91505092915050565b600060208284031215612cd057612ccf612a96565b5b6000612cde84828501612ae4565b91505092915050565b612cf081612abb565b82525050565b6000602082019050612d0b6000830184612ce7565b92915050565b600063ffffffff82169050919050565b612d2a81612d11565b82525050565b6000602082019050612d456000830184612d21565b92915050565b612d5481612c22565b8114612d5f57600080fd5b50565b600081359050612d7181612d4b565b92915050565b612d8081612c59565b8114612d8b57600080fd5b50565b600081359050612d9d81612d77565b92915050565b60008060008060008060c08789031215612dc057612dbf612a96565b5b6000612dce89828a01612ae4565b9650506020612ddf89828a01612b1a565b9550506040612df089828a01612b1a565b9450506060612e0189828a01612d62565b9350506080612e1289828a01612d8e565b92505060a0612e2389828a01612d8e565b9150509295509295509295565b600080600080600080600060e0888a031215612e4f57612e4e612a96565b5b6000612e5d8a828b01612ae4565b9750506020612e6e8a828b01612ae4565b9650506040612e7f8a828b01612b1a565b9550506060612e908a828b01612b1a565b9450506080612ea18a828b01612d62565b93505060a0612eb28a828b01612d8e565b92505060c0612ec38a828b01612d8e565b91505092959891949750929550565b60008060408385031215612ee957612ee8612a96565b5b6000612ef785828601612ae4565b9250506020612f0885828601612ae4565b9150509250929050565b612f1b81612d11565b8114612f2657600080fd5b50565b600081359050612f3881612f12565b92915050565b60008060408385031215612f5557612f54612a96565b5b6000612f6385828601612ae4565b9250506020612f7485828601612f29565b9150509250929050565b612f8781612d11565b82525050565b60007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff82169050919050565b612fbe81612f8d565b82525050565b604082016000820151612fda6000850182612f7e565b506020820151612fed6020850182612fb5565b50505050565b60006040820190506130086000830184612fc4565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061305557607f821691505b6020821081036130685761306761300e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006130a882612af9565b91506130b383612af9565b92508282019050808211156130cb576130ca61306e565b5b92915050565b7f4552433230566f7465733a20626c6f636b206e6f7420796574206d696e656400600082015250565b6000613107601f836129ef565b9150613112826130d1565b602082019050919050565b60006020820190508181036000830152613136816130fa565b9050919050565b600061314882612af9565b915061315383612af9565b925082820390508181111561316b5761316a61306e565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006131fc6025836129ef565b9150613207826131a0565b604082019050919050565b6000602082019050818103600083015261322b816131ef565b9050919050565b7f4552433230566f7465733a207369676e61747572652065787069726564000000600082015250565b6000613268601d836129ef565b915061327382613232565b602082019050919050565b600060208201905081810360008301526132978161325b565b9050919050565b60006080820190506132b36000830187612c63565b6132c06020830186612ce7565b6132cd6040830185612ba5565b6132da6060830184612ba5565b95945050505050565b7f4552433230566f7465733a20696e76616c6964206e6f6e636500000000000000600082015250565b60006133196019836129ef565b9150613324826132e3565b602082019050919050565b600060208201905081810360008301526133488161330c565b9050919050565b7f45524332305065726d69743a206578706972656420646561646c696e65000000600082015250565b6000613385601d836129ef565b91506133908261334f565b602082019050919050565b600060208201905081810360008301526133b481613378565b9050919050565b600060c0820190506133d06000830189612c63565b6133dd6020830188612ce7565b6133ea6040830187612ce7565b6133f76060830186612ba5565b6134046080830185612ba5565b61341160a0830184612ba5565b979650505050505050565b7f45524332305065726d69743a20696e76616c6964207369676e61747572650000600082015250565b6000613452601e836129ef565b915061345d8261341c565b602082019050919050565b6000602082019050818103600083015261348181613445565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006134e46026836129ef565b91506134ef82613488565b604082019050919050565b60006020820190508181036000830152613513816134d7565b9050919050565b7f4552433230566f7465733a20746f74616c20737570706c79207269736b73206f60008201527f766572666c6f77696e6720766f74657300000000000000000000000000000000602082015250565b60006135766030836129ef565b91506135818261351a565b604082019050919050565b600060208201905081810360008301526135a581613569565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006135e2601f836129ef565b91506135ed826135ac565b602082019050919050565b60006020820190508181036000830152613611816135d5565b9050919050565b7f53616665436173743a2076616c756520646f65736e27742066697420696e203260008201527f3234206269747300000000000000000000000000000000000000000000000000602082015250565b60006136746027836129ef565b915061367f82613618565b604082019050919050565b600060208201905081810360008301526136a381613667565b9050919050565b7f53616665436173743a2076616c756520646f65736e27742066697420696e203360008201527f3220626974730000000000000000000000000000000000000000000000000000602082015250565b60006137066026836129ef565b9150613711826136aa565b604082019050919050565b60006020820190508181036000830152613735816136f9565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006137986024836129ef565b91506137a38261373c565b604082019050919050565b600060208201905081810360008301526137c78161378b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061382a6022836129ef565b9150613835826137ce565b604082019050919050565b600060208201905081810360008301526138598161381d565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613896601d836129ef565b91506138a182613860565b602082019050919050565b600060208201905081810360008301526138c581613889565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006139286025836129ef565b9150613933826138cc565b604082019050919050565b600060208201905081810360008301526139578161391b565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006139ba6023836129ef565b91506139c58261395e565b604082019050919050565b600060208201905081810360008301526139e9816139ad565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613a4c6026836129ef565b9150613a57826139f0565b604082019050919050565b60006020820190508181036000830152613a7b81613a3f565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613ab86020836129ef565b9150613ac382613a82565b602082019050919050565b60006020820190508181036000830152613ae781613aab565b9050919050565b6000604082019050613b036000830185612ba5565b613b106020830184612ba5565b9392505050565b600060a082019050613b2c6000830188612c63565b613b396020830187612c63565b613b466040830186612c63565b613b536060830185612ba5565b613b606080830184612ce7565b9695505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613ba482612af9565b9150613baf83612af9565b925082613bbf57613bbe613b6a565b5b828204905092915050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000613c006014836129ef565b9150613c0b82613bca565b602082019050919050565b60006020820190508181036000830152613c2f81613bf3565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000613c6c6010836129ef565b9150613c7782613c36565b602082019050919050565b60006020820190508181036000830152613c9b81613c5f565b9050919050565b600081905092915050565b7f1901000000000000000000000000000000000000000000000000000000000000600082015250565b6000613ce3600283613ca2565b9150613cee82613cad565b600282019050919050565b6000819050919050565b613d14613d0f82612c59565b613cf9565b82525050565b6000613d2582613cd6565b9150613d318285613d03565b602082019150613d418284613d03565b6020820191508190509392505050565b6000608082019050613d666000830187612c63565b613d736020830186612c2f565b613d806040830185612c63565b613d8d6060830184612c63565b95945050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b6000613dfb6018836129ef565b9150613e0682613dc5565b602082019050919050565b60006020820190508181036000830152613e2a81613dee565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b6000613e67601f836129ef565b9150613e7282613e31565b602082019050919050565b60006020820190508181036000830152613e9681613e5a565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000613ef96022836129ef565b9150613f0482613e9d565b604082019050919050565b60006020820190508181036000830152613f2881613eec565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000613f8b6022836129ef565b9150613f9682613f2f565b604082019050919050565b60006020820190508181036000830152613fba81613f7e565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061401d6021836129ef565b915061402882613fc1565b604082019050919050565b6000602082019050818103600083015261404c81614010565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006140af6022836129ef565b91506140ba82614053565b604082019050919050565b600060208201905081810360008301526140de816140a2565b905091905056fea2646970667358221220918c80019a9956795116683a254f2b310878f03943b767fecb96198bb889440064736f6c63430008100033
Deployed Bytecode Sourcemap
105231:1158:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80563:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82914:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81683:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;83695:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81525:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;94168:115;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;84399:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;97370:268;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;105527:65;;;:::i;:::-;;104579:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;96744:128;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;99843:114;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73821:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;96500:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81854:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71331:103;;;:::i;:::-;;104989:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;93910:128;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;105458:61;;;:::i;:::-;;70683:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;97927:259;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80782:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;96956:212;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85140:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82187:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;100039:591;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;93199:645;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82443:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;96270:150;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71589:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80563:100;80617:13;80650:5;80643:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80563:100;:::o;82914:201::-;82997:4;83014:13;83030:12;:10;:12::i;:::-;83014:28;;83053:32;83062:5;83069:7;83078:6;83053:8;:32::i;:::-;83103:4;83096:11;;;82914:201;;;;:::o;81683:108::-;81744:7;81771:12;;81764:19;;81683:108;:::o;83695:295::-;83826:4;83843:15;83861:12;:10;:12::i;:::-;83843:30;;83884:38;83900:4;83906:7;83915:6;83884:15;:38::i;:::-;83933:27;83943:4;83949:2;83953:6;83933:9;:27::i;:::-;83978:4;83971:11;;;83695:295;;;;;:::o;81525:93::-;81583:5;81608:2;81601:9;;81525:93;:::o;94168:115::-;94228:7;94255:20;:18;:20::i;:::-;94248:27;;94168:115;:::o;84399:238::-;84487:4;84504:13;84520:12;:10;:12::i;:::-;84504:28;;84543:64;84552:5;84559:7;84596:10;84568:25;84578:5;84585:7;84568:9;:25::i;:::-;:38;;;;:::i;:::-;84543:8;:64::i;:::-;84625:4;84618:11;;;84399:238;;;;:::o;97370:268::-;97468:7;97510:12;97496:11;:26;97488:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;97576:54;97595:12;:21;97608:7;97595:21;;;;;;;;;;;;;;;97618:11;97576:18;:54::i;:::-;97569:61;;97370:268;;;;:::o;105527:65::-;70569:13;:11;:13::i;:::-;105574:10:::1;:8;:10::i;:::-;105527:65::o:0;104579:91::-;104635:27;104641:12;:10;:12::i;:::-;104655:6;104635:5;:27::i;:::-;104579:91;:::o;96744:128::-;96818:7;96845:10;:19;96856:7;96845:19;;;;;;;;;;;;;;;;;;;;;;;;;96838:26;;96744:128;;;:::o;99843:114::-;99915:34;99925:12;:10;:12::i;:::-;99939:9;99915;:34::i;:::-;99843:114;:::o;73821:86::-;73868:4;73892:7;;;;;;;;;;;73885:14;;73821:86;:::o;96500:151::-;96570:6;96596:47;96614:12;:21;96627:7;96614:21;;;;;;;;;;;;;;;:28;;;;96596:17;:47::i;:::-;96589:54;;96500:151;;;:::o;81854:127::-;81928:7;81955:9;:18;81965:7;81955:18;;;;;;;;;;;;;;;;81948:25;;81854:127;;;:::o;71331:103::-;70569:13;:11;:13::i;:::-;71396:30:::1;71423:1;71396:18;:30::i;:::-;71331:103::o:0;104989:164::-;105066:46;105082:7;105091:12;:10;:12::i;:::-;105105:6;105066:15;:46::i;:::-;105123:22;105129:7;105138:6;105123:5;:22::i;:::-;104989:164;;:::o;93910:128::-;93979:7;94006:24;:7;:14;94014:5;94006:14;;;;;;;;;;;;;;;:22;:24::i;:::-;93999:31;;93910:128;;;:::o;105458:61::-;70569:13;:11;:13::i;:::-;105503:8:::1;:6;:8::i;:::-;105458:61::o:0;70683:87::-;70729:7;70756:6;;;;;;;;;;;70749:13;;70683:87;:::o;97927:259::-;98014:7;98056:12;98042:11;:26;98034:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;98122:56;98141:23;98166:11;98122:18;:56::i;:::-;98115:63;;97927:259;;;:::o;80782:104::-;80838:13;80871:7;80864:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80782:104;:::o;96956:212::-;97029:7;97049:11;97063:12;:21;97076:7;97063:21;;;;;;;;;;;;;;;:28;;;;97049:42;;97116:1;97109:3;:8;:51;;97124:12;:21;97137:7;97124:21;;;;;;;;;;;;;;;97152:1;97146:3;:7;;;;:::i;:::-;97124:30;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;;;;;;;;;97109:51;;;97120:1;97109:51;97102:58;;;;;96956:212;;;:::o;85140:436::-;85233:4;85250:13;85266:12;:10;:12::i;:::-;85250:28;;85289:24;85316:25;85326:5;85333:7;85316:9;:25::i;:::-;85289:52;;85380:15;85360:16;:35;;85352:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;85473:60;85482:5;85489:7;85517:15;85498:16;:34;85473:8;:60::i;:::-;85564:4;85557:11;;;;85140:436;;;;:::o;82187:193::-;82266:4;82283:13;82299:12;:10;:12::i;:::-;82283:28;;82322;82332:5;82339:2;82343:6;82322:9;:28::i;:::-;82368:4;82361:11;;;82187:193;;;;:::o;100039:591::-;100266:6;100247:15;:25;;100239:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;100317:14;100334:174;100362:87;95950:71;100422:9;100433:5;100440:6;100389:58;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;100379:69;;;;;;100362:16;:87::i;:::-;100464:1;100480;100496;100334:13;:174::i;:::-;100317:191;;100536:17;100546:6;100536:9;:17::i;:::-;100527:5;:26;100519:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;100594:28;100604:6;100612:9;100594;:28::i;:::-;100228:402;100039:591;;;;;;:::o;93199:645::-;93443:8;93424:15;:27;;93416:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;93498:18;92374:95;93558:5;93565:7;93574:5;93581:16;93591:5;93581:9;:16::i;:::-;93599:8;93529:79;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;93519:90;;;;;;93498:111;;93622:12;93637:28;93654:10;93637:16;:28::i;:::-;93622:43;;93678:14;93695:28;93709:4;93715:1;93718;93721;93695:13;:28::i;:::-;93678:45;;93752:5;93742:15;;:6;:15;;;93734:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;93805:31;93814:5;93821:7;93830:5;93805:8;:31::i;:::-;93405:439;;;93199:645;;;;;;;:::o;82443:151::-;82532:7;82559:11;:18;82571:5;82559:18;;;;;;;;;;;;;;;:27;82578:7;82559:27;;;;;;;;;;;;;;;;82552:34;;82443:151;;;;:::o;96270:150::-;96349:17;;:::i;:::-;96386:12;:21;96399:7;96386:21;;;;;;;;;;;;;;;96408:3;96386:26;;;;;;;;;;:::i;:::-;;;;;;;;;96379:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96270:150;;;;:::o;71589:201::-;70569:13;:11;:13::i;:::-;71698:1:::1;71678:22;;:8;:22;;::::0;71670:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;71754:28;71773:8;71754:18;:28::i;:::-;71589:201:::0;:::o;100936:290::-;101021:28;101033:7;101042:6;101021:11;:28::i;:::-;101085:12;:10;:12::i;:::-;101068:29;;:13;:11;:13::i;:::-;:29;;101060:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;101163:55;101180:23;101205:4;101211:6;101163:16;:55::i;:::-;;;100936:290;;:::o;87004:399::-;87107:1;87088:21;;:7;:21;;;87080:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;87158:49;87187:1;87191:7;87200:6;87158:20;:49::i;:::-;87236:6;87220:12;;:22;;;;;;;:::i;:::-;;;;;;;;87275:6;87253:9;:18;87263:7;87253:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;87318:7;87297:37;;87314:1;87297:37;;;87327:6;87297:37;;;;;;:::i;:::-;;;;;;;;87347:48;87375:1;87379:7;87388:6;87347:19;:48::i;:::-;87004:399;;:::o;103780:98::-;103838:7;103869:1;103865;:5;;;;:::i;:::-;103858:12;;103780:98;;;;:::o;2897:195::-;2954:7;2991:17;2982:26;;:5;:26;;2974:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;3078:5;3063:21;;2897:195;;;:::o;15733:190::-;15789:6;15825:16;15816:25;;:5;:25;;15808:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;15909:5;15895:20;;15733:190;;;:::o;90489:125::-;;;;:::o;101654:262::-;101796:43;101822:4;101828:2;101832:6;101796:25;:43::i;:::-;101852:56;101869:15;101879:4;101869:9;:15::i;:::-;101886:13;101896:2;101886:9;:13::i;:::-;101901:6;101852:16;:56::i;:::-;101654:262;;;:::o;91218:124::-;;;;:::o;103886:103::-;103949:7;103980:1;103976;:5;;;;:::i;:::-;103969:12;;103886:103;;;;:::o;69234:98::-;69287:7;69314:10;69307:17;;69234:98;:::o;88765:380::-;88918:1;88901:19;;:5;:19;;;88893:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;88999:1;88980:21;;:7;:21;;;88972:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;89083:6;89053:11;:18;89065:5;89053:18;;;;;;;;;;;;;;;:27;89072:7;89053:27;;;;;;;;;;;;;;;:36;;;;89121:7;89105:32;;89114:5;89105:32;;;89130:6;89105:32;;;;;;:::i;:::-;;;;;;;;88765:380;;;:::o;89436:453::-;89571:24;89598:25;89608:5;89615:7;89598:9;:25::i;:::-;89571:52;;89658:17;89638:16;:37;89634:248;;89720:6;89700:16;:26;;89692:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;89804:51;89813:5;89820:7;89848:6;89829:16;:25;89804:8;:51::i;:::-;89634:248;89560:329;89436:453;;;:::o;86046:671::-;86193:1;86177:18;;:4;:18;;;86169:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;86270:1;86256:16;;:2;:16;;;86248:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;86325:38;86346:4;86352:2;86356:6;86325:20;:38::i;:::-;86376:19;86398:9;:15;86408:4;86398:15;;;;;;;;;;;;;;;;86376:37;;86447:6;86432:11;:21;;86424:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;86564:6;86550:11;:20;86532:9;:15;86542:4;86532:15;;;;;;;;;;;;;;;:38;;;;86609:6;86592:9;:13;86602:2;86592:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;86648:2;86633:26;;86642:4;86633:26;;;86652:6;86633:26;;;;;;:::i;:::-;;;;;;;;86672:37;86692:4;86698:2;86702:6;86672:19;:37::i;:::-;86158:559;86046:671;;;:::o;64789:314::-;64842:7;64883:12;64866:29;;64874:4;64866:29;;;:66;;;;;64916:16;64899:13;:33;64866:66;64862:234;;;64956:24;64949:31;;;;64862:234;65020:64;65042:10;65054:12;65068:15;65020:21;:64::i;:::-;65013:71;;64789:314;;:::o;98275:1482::-;98374:7;99393:12;99408:5;:12;;;;99393:27;;99431:11;99457:236;99470:4;99464:3;:10;99457:236;;;99491:11;99505:23;99518:3;99523:4;99505:12;:23::i;:::-;99491:37;;99570:11;99547:5;99553:3;99547:10;;;;;;;;:::i;:::-;;;;;;;;;:20;;;;;;;;;;;;:34;;;99543:139;;;99609:3;99602:10;;99543:139;;;99665:1;99659:3;:7;;;;:::i;:::-;99653:13;;99543:139;99476:217;99457:236;;;99720:1;99712:4;:9;:37;;99728:5;99741:1;99734:4;:8;;;;:::i;:::-;99728:15;;;;;;;;:::i;:::-;;;;;;;;;:21;;;;;;;;;;;;99712:37;;;99724:1;99712:37;99705:44;;;;;;98275:1482;;;;:::o;70848:132::-;70923:12;:10;:12::i;:::-;70912:23;;:7;:5;:7::i;:::-;:23;;;70904:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;70848:132::o;74676:120::-;73685:16;:14;:16::i;:::-;74745:5:::1;74735:7;;:15;;;;;;;;;;;;;;;;;;74766:22;74775:12;:10;:12::i;:::-;74766:22;;;;;;:::i;:::-;;;;;;;;74676:120::o:0;106231:155::-;106350:28;106362:7;106371:6;106350:11;:28::i;:::-;106231:155;;:::o;102080:388::-;102165:23;102191:20;102201:9;102191;:20::i;:::-;102165:46;;102222:24;102249:20;102259:9;102249;:20::i;:::-;102222:47;;102304:9;102280:10;:21;102291:9;102280:21;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;102375:9;102331:54;;102358:15;102331:54;;102347:9;102331:54;;;;;;;;;;;;102398:62;102415:15;102432:9;102443:16;102398;:62::i;:::-;102154:314;;102080:388;;:::o;71950:191::-;72024:16;72043:6;;;;;;;;;;;72024:25;;72069:8;72060:6;;:17;;;;;;;;;;;;;;;;;;72124:8;72093:40;;72114:8;72093:40;;;;;;;;;;;;72013:128;71950:191;:::o;48839:114::-;48904:7;48931;:14;;;48924:21;;48839:114;;;:::o;74417:118::-;73426:19;:17;:19::i;:::-;74487:4:::1;74477:7;;:14;;;;;;;;;;;;;;;;;;74507:20;74514:12;:10;:12::i;:::-;74507:20;;;;;;:::i;:::-;;;;;;;;74417:118::o:0;66016:167::-;66093:7;66120:55;66142:20;:18;:20::i;:::-;66164:10;66120:21;:55::i;:::-;66113:62;;66016:167;;;:::o;59665:279::-;59793:7;59814:17;59833:18;59855:25;59866:4;59872:1;59875;59878;59855:10;:25::i;:::-;59813:67;;;;59891:18;59903:5;59891:11;:18::i;:::-;59927:9;59920:16;;;;59665:279;;;;;;:::o;94421:207::-;94481:15;94509:30;94542:7;:14;94550:5;94542:14;;;;;;;;;;;;;;;94509:47;;94577:15;:5;:13;:15::i;:::-;94567:25;;94603:17;:5;:15;:17::i;:::-;94498:130;94421:207;;;:::o;100737:105::-;100790:7;100817:17;100810:24;;100737:105;:::o;103127:645::-;103301:17;103320;103350:11;103364:5;:12;;;;103350:26;;103406:1;103399:3;:8;:35;;103414:5;103426:1;103420:3;:7;;;;:::i;:::-;103414:14;;;;;;;;:::i;:::-;;;;;;;;;:20;;;;;;;;;;;;103399:35;;;103410:1;103399:35;103387:47;;;;103457:20;103460:9;103471:5;103457:2;:20;;:::i;:::-;103445:32;;103500:1;103494:3;:7;:51;;;;;103533:12;103505:5;103517:1;103511:3;:7;;;;:::i;:::-;103505:14;;;;;;;;:::i;:::-;;;;;;;;;:24;;;;;;;;;;;;:40;;;103494:51;103490:275;;;103585:29;103604:9;103585:18;:29::i;:::-;103562:5;103574:1;103568:3;:7;;;;:::i;:::-;103562:14;;;;;;;;:::i;:::-;;;;;;;;;:20;;;:52;;;;;;;;;;;;;;;;;;103490:275;;;103647:5;103658:94;;;;;;;;103681:31;103699:12;103681:17;:31::i;:::-;103658:94;;;;;;103721:29;103740:9;103721:18;:29::i;:::-;103658:94;;;;;103647:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;103490:275;103339:433;103127:645;;;;;;:::o;105600:199::-;73426:19;:17;:19::i;:::-;105747:44:::1;105774:4;105780:2;105784:6;105747:26;:44::i;:::-;105600:199:::0;;;:::o;105877:193::-;106019:43;106045:4;106051:2;106055:6;106019:25;:43::i;:::-;105877:193;;;:::o;102476:643::-;102608:3;102601:10;;:3;:10;;;;:24;;;;;102624:1;102615:6;:10;102601:24;102597:515;;;102661:1;102646:17;;:3;:17;;;102642:224;;102685:17;102704;102725:54;102742:12;:17;102755:3;102742:17;;;;;;;;;;;;;;;102761:9;102772:6;102725:16;:54::i;:::-;102684:95;;;;102824:3;102803:47;;;102829:9;102840;102803:47;;;;;;;:::i;:::-;;;;;;;;102665:201;;102642:224;102901:1;102886:17;;:3;:17;;;102882:219;;102925:17;102944;102965:49;102982:12;:17;102995:3;102982:17;;;;;;;;;;;;;;;103001:4;103007:6;102965:16;:49::i;:::-;102924:90;;;;103059:3;103038:47;;;103064:9;103075;103038:47;;;;;;;:::i;:::-;;;;;;;;102905:196;;102882:219;102597:515;102476:643;;;:::o;65111:263::-;65255:7;65303:8;65313;65323:11;65336:13;65359:4;65292:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;65282:84;;;;;;65275:91;;65111:263;;;;;:::o;39751:156::-;39813:7;39898:1;39893;39889;:5;39888:11;;;;:::i;:::-;39883:1;39879;:5;39878:21;;;;:::i;:::-;39871:28;;39751:156;;;;:::o;74165:108::-;74232:8;:6;:8::i;:::-;74224:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;74165:108::o;101320:194::-;101405:28;101417:7;101426:6;101405:11;:28::i;:::-;101446:60;101463:23;101488:9;101499:6;101446:16;:60::i;:::-;;;101320:194;;:::o;73980:108::-;74051:8;:6;:8::i;:::-;74050:9;74042:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;73980:108::o;61356:196::-;61449:7;61515:15;61532:10;61486:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;61476:68;;;;;;61469:75;;61356:196;;;;:::o;57894:1632::-;58025:7;58034:12;58959:66;58954:1;58946:10;;:79;58942:163;;;59058:1;59062:30;59042:51;;;;;;58942:163;59124:2;59119:1;:7;;;;:18;;;;;59135:2;59130:1;:7;;;;59119:18;59115:102;;;59170:1;59174:30;59154:51;;;;;;59115:102;59314:14;59331:24;59341:4;59347:1;59350;59353;59331:24;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59314:41;;59388:1;59370:20;;:6;:20;;;59366:103;;59423:1;59427:29;59407:50;;;;;;;59366:103;59489:6;59497:20;59481:37;;;;;57894:1632;;;;;;;;:::o;52507:643::-;52585:20;52576:29;;;;;;;;:::i;:::-;;:5;:29;;;;;;;;:::i;:::-;;;52572:571;52622:7;52572:571;52683:29;52674:38;;;;;;;;:::i;:::-;;:5;:38;;;;;;;;:::i;:::-;;;52670:473;;52729:34;;;;;;;;;;:::i;:::-;;;;;;;;52670:473;52794:35;52785:44;;;;;;;;:::i;:::-;;:5;:44;;;;;;;;:::i;:::-;;;52781:362;;52846:41;;;;;;;;;;:::i;:::-;;;;;;;;52781:362;52918:30;52909:39;;;;;;;;:::i;:::-;;:5;:39;;;;;;;;:::i;:::-;;;52905:238;;52965:44;;;;;;;;;;:::i;:::-;;;;;;;;52905:238;53040:30;53031:39;;;;;;;;:::i;:::-;;:5;:39;;;;;;;;:::i;:::-;;;53027:116;;53087:44;;;;;;;;;;:::i;:::-;;;;;;;;53027:116;52507:643;;:::o;48961:127::-;49068:1;49050:7;:14;;;:19;;;;;;;;;;;48961:127;:::o;87736:591::-;87839:1;87820:21;;:7;:21;;;87812:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;87892:49;87913:7;87930:1;87934:6;87892:20;:49::i;:::-;87954:22;87979:9;:18;87989:7;87979:18;;;;;;;;;;;;;;;;87954:43;;88034:6;88016:14;:24;;88008:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;88153:6;88136:14;:23;88115:9;:18;88125:7;88115:18;;;;;;;;;;;;;;;:44;;;;88197:6;88181:12;;:22;;;;;;;:::i;:::-;;;;;;;;88247:1;88221:37;;88230:7;88221:37;;;88251:6;88221:37;;;;;;:::i;:::-;;;;;;;;88271:48;88291:7;88308:1;88312:6;88271:19;:48::i;:::-;87801:526;87736:591;;:::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:::-;5682:6;5731:2;5719:9;5710:7;5706:23;5702:32;5699:119;;;5737:79;;:::i;:::-;5699:119;5857:1;5882:53;5927:7;5918:6;5907:9;5903:22;5882:53;:::i;:::-;5872:63;;5828:117;5623:329;;;;:::o;5958:118::-;6045:24;6063:5;6045:24;:::i;:::-;6040:3;6033:37;5958:118;;:::o;6082:222::-;6175:4;6213:2;6202:9;6198:18;6190:26;;6226:71;6294:1;6283:9;6279:17;6270:6;6226:71;:::i;:::-;6082:222;;;;:::o;6310:93::-;6346:7;6386:10;6379:5;6375:22;6364:33;;6310:93;;;:::o;6409:115::-;6494:23;6511:5;6494:23;:::i;:::-;6489:3;6482:36;6409:115;;:::o;6530:218::-;6621:4;6659:2;6648:9;6644:18;6636:26;;6672:69;6738:1;6727:9;6723:17;6714:6;6672:69;:::i;:::-;6530:218;;;;:::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:225::-;20784:34;20780:1;20772:6;20768:14;20761:58;20853:8;20848:2;20840:6;20836:15;20829:33;20644:225;:::o;20875:366::-;21017:3;21038:67;21102:2;21097:3;21038:67;:::i;:::-;21031:74;;21114:93;21203:3;21114:93;:::i;:::-;21232:2;21227:3;21223:12;21216:19;;20875:366;;;:::o;21247:419::-;21413:4;21451:2;21440:9;21436:18;21428:26;;21500:9;21494:4;21490:20;21486:1;21475:9;21471:17;21464:47;21528:131;21654:4;21528:131;:::i;:::-;21520:139;;21247:419;;;:::o;21672:235::-;21812:34;21808:1;21800:6;21796:14;21789:58;21881:18;21876:2;21868:6;21864:15;21857:43;21672:235;:::o;21913:366::-;22055:3;22076:67;22140:2;22135:3;22076:67;:::i;:::-;22069:74;;22152:93;22241:3;22152:93;:::i;:::-;22270:2;22265:3;22261:12;22254:19;;21913:366;;;:::o;22285:419::-;22451:4;22489:2;22478:9;22474:18;22466:26;;22538:9;22532:4;22528:20;22524:1;22513:9;22509:17;22502:47;22566:131;22692:4;22566:131;:::i;:::-;22558:139;;22285:419;;;:::o;22710:181::-;22850:33;22846:1;22838:6;22834:14;22827:57;22710:181;:::o;22897:366::-;23039:3;23060:67;23124:2;23119:3;23060:67;:::i;:::-;23053:74;;23136:93;23225:3;23136:93;:::i;:::-;23254:2;23249:3;23245:12;23238:19;;22897:366;;;:::o;23269:419::-;23435:4;23473:2;23462:9;23458:18;23450:26;;23522:9;23516:4;23512:20;23508:1;23497:9;23493:17;23486:47;23550:131;23676:4;23550:131;:::i;:::-;23542:139;;23269:419;;;:::o;23694:226::-;23834:34;23830:1;23822:6;23818:14;23811:58;23903:9;23898:2;23890:6;23886:15;23879:34;23694:226;:::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:225::-;24863:34;24859:1;24851:6;24847:14;24840:58;24932:8;24927:2;24919:6;24915:15;24908:33;24723:225;:::o;24954:366::-;25096:3;25117:67;25181:2;25176:3;25117:67;:::i;:::-;25110:74;;25193:93;25282:3;25193:93;:::i;:::-;25311:2;25306:3;25302:12;25295:19;;24954:366;;;:::o;25326:419::-;25492:4;25530:2;25519:9;25515:18;25507:26;;25579:9;25573:4;25569:20;25565:1;25554:9;25550:17;25543:47;25607:131;25733:4;25607:131;:::i;:::-;25599:139;;25326:419;;;:::o;25751:223::-;25891:34;25887:1;25879:6;25875:14;25868:58;25960:6;25955:2;25947:6;25943:15;25936:31;25751:223;:::o;25980:366::-;26122:3;26143:67;26207:2;26202:3;26143:67;:::i;:::-;26136:74;;26219:93;26308:3;26219:93;:::i;:::-;26337:2;26332:3;26328:12;26321:19;;25980:366;;;:::o;26352:419::-;26518:4;26556:2;26545:9;26541:18;26533:26;;26605:9;26599:4;26595:20;26591:1;26580:9;26576:17;26569:47;26633:131;26759:4;26633:131;:::i;:::-;26625:139;;26352:419;;;:::o;26777:221::-;26917:34;26913:1;26905:6;26901:14;26894:58;26986:4;26981:2;26973:6;26969:15;26962:29;26777:221;:::o;27004:366::-;27146:3;27167:67;27231:2;27226:3;27167:67;:::i;:::-;27160:74;;27243:93;27332:3;27243:93;:::i;:::-;27361:2;27356:3;27352:12;27345:19;;27004:366;;;:::o;27376:419::-;27542:4;27580:2;27569:9;27565:18;27557:26;;27629:9;27623:4;27619:20;27615:1;27604:9;27600:17;27593:47;27657:131;27783:4;27657:131;:::i;:::-;27649:139;;27376:419;;;:::o;27801:179::-;27941:31;27937:1;27929:6;27925:14;27918:55;27801:179;:::o;27986:366::-;28128:3;28149:67;28213:2;28208:3;28149:67;:::i;:::-;28142:74;;28225:93;28314:3;28225:93;:::i;:::-;28343:2;28338:3;28334:12;28327:19;;27986:366;;;:::o;28358:419::-;28524:4;28562:2;28551:9;28547:18;28539:26;;28611:9;28605:4;28601:20;28597:1;28586:9;28582:17;28575:47;28639:131;28765:4;28639:131;:::i;:::-;28631:139;;28358:419;;;:::o;28783:224::-;28923:34;28919:1;28911:6;28907:14;28900:58;28992:7;28987:2;28979:6;28975:15;28968:32;28783:224;:::o;29013:366::-;29155:3;29176:67;29240:2;29235:3;29176:67;:::i;:::-;29169:74;;29252:93;29341:3;29252:93;:::i;:::-;29370:2;29365:3;29361:12;29354:19;;29013:366;;;:::o;29385:419::-;29551:4;29589:2;29578:9;29574:18;29566:26;;29638:9;29632:4;29628:20;29624:1;29613:9;29609:17;29602:47;29666:131;29792:4;29666:131;:::i;:::-;29658:139;;29385:419;;;:::o;29810:222::-;29950:34;29946:1;29938:6;29934:14;29927:58;30019:5;30014:2;30006:6;30002:15;29995:30;29810:222;:::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:225::-;30975:34;30971:1;30963:6;30959:14;30952:58;31044:8;31039:2;31031:6;31027:15;31020:33;30835:225;:::o;31066:366::-;31208:3;31229:67;31293:2;31288:3;31229:67;:::i;:::-;31222:74;;31305:93;31394:3;31305:93;:::i;:::-;31423:2;31418:3;31414:12;31407:19;;31066:366;;;:::o;31438:419::-;31604:4;31642:2;31631:9;31627:18;31619:26;;31691:9;31685:4;31681:20;31677:1;31666:9;31662:17;31655:47;31719:131;31845:4;31719:131;:::i;:::-;31711:139;;31438:419;;;:::o;31863:182::-;32003:34;31999:1;31991:6;31987:14;31980:58;31863:182;:::o;32051:366::-;32193:3;32214:67;32278:2;32273:3;32214:67;:::i;:::-;32207:74;;32290:93;32379:3;32290:93;:::i;:::-;32408:2;32403:3;32399:12;32392:19;;32051:366;;;:::o;32423:419::-;32589:4;32627:2;32616:9;32612:18;32604:26;;32676:9;32670:4;32666:20;32662:1;32651:9;32647:17;32640:47;32704:131;32830:4;32704:131;:::i;:::-;32696:139;;32423:419;;;:::o;32848:332::-;32969:4;33007:2;32996:9;32992:18;32984:26;;33020:71;33088:1;33077:9;33073:17;33064:6;33020:71;:::i;:::-;33101:72;33169:2;33158:9;33154:18;33145:6;33101:72;:::i;:::-;32848:332;;;;;:::o;33186:664::-;33391:4;33429:3;33418:9;33414:19;33406:27;;33443:71;33511:1;33500:9;33496:17;33487:6;33443:71;:::i;:::-;33524:72;33592:2;33581:9;33577:18;33568:6;33524:72;:::i;:::-;33606;33674:2;33663:9;33659:18;33650:6;33606:72;:::i;:::-;33688;33756:2;33745:9;33741:18;33732:6;33688:72;:::i;:::-;33770:73;33838:3;33827:9;33823:19;33814:6;33770:73;:::i;:::-;33186:664;;;;;;;;:::o;33856:180::-;33904:77;33901:1;33894:88;34001:4;33998:1;33991:15;34025:4;34022:1;34015:15;34042:185;34082:1;34099:20;34117:1;34099:20;:::i;:::-;34094:25;;34133:20;34151:1;34133:20;:::i;:::-;34128:25;;34172:1;34162:35;;34177:18;;:::i;:::-;34162:35;34219:1;34216;34212:9;34207:14;;34042:185;;;;:::o;34233:170::-;34373:22;34369:1;34361:6;34357:14;34350:46;34233:170;:::o;34409:366::-;34551:3;34572:67;34636:2;34631:3;34572:67;:::i;:::-;34565:74;;34648:93;34737:3;34648:93;:::i;:::-;34766:2;34761:3;34757:12;34750:19;;34409:366;;;:::o;34781:419::-;34947:4;34985:2;34974:9;34970:18;34962:26;;35034:9;35028:4;35024:20;35020:1;35009:9;35005:17;34998:47;35062:131;35188:4;35062:131;:::i;:::-;35054:139;;34781:419;;;:::o;35206:166::-;35346:18;35342:1;35334:6;35330:14;35323:42;35206:166;:::o;35378:366::-;35520:3;35541:67;35605:2;35600:3;35541:67;:::i;:::-;35534:74;;35617:93;35706:3;35617:93;:::i;:::-;35735:2;35730:3;35726:12;35719:19;;35378:366;;;:::o;35750:419::-;35916:4;35954:2;35943:9;35939:18;35931:26;;36003:9;35997:4;35993:20;35989:1;35978:9;35974:17;35967:47;36031:131;36157:4;36031:131;:::i;:::-;36023:139;;35750:419;;;:::o;36175:148::-;36277:11;36314:3;36299:18;;36175:148;;;;:::o;36329:214::-;36469:66;36465:1;36457:6;36453:14;36446:90;36329:214;:::o;36549:400::-;36709:3;36730:84;36812:1;36807:3;36730:84;:::i;:::-;36723:91;;36823:93;36912:3;36823:93;:::i;:::-;36941:1;36936:3;36932:11;36925:18;;36549:400;;;:::o;36955:79::-;36994:7;37023:5;37012:16;;36955:79;;;:::o;37040:157::-;37145:45;37165:24;37183:5;37165:24;:::i;:::-;37145:45;:::i;:::-;37140:3;37133:58;37040:157;;:::o;37203:663::-;37444:3;37466:148;37610:3;37466:148;:::i;:::-;37459:155;;37624:75;37695:3;37686:6;37624:75;:::i;:::-;37724:2;37719:3;37715:12;37708:19;;37737:75;37808:3;37799:6;37737:75;:::i;:::-;37837:2;37832:3;37828:12;37821:19;;37857:3;37850:10;;37203:663;;;;;:::o;37872:545::-;38045:4;38083:3;38072:9;38068:19;38060:27;;38097:71;38165:1;38154:9;38150:17;38141:6;38097:71;:::i;:::-;38178:68;38242:2;38231:9;38227:18;38218:6;38178:68;:::i;:::-;38256:72;38324:2;38313:9;38309:18;38300:6;38256:72;:::i;:::-;38338;38406:2;38395:9;38391:18;38382:6;38338:72;:::i;:::-;37872:545;;;;;;;:::o;38423:180::-;38471:77;38468:1;38461:88;38568:4;38565:1;38558:15;38592:4;38589:1;38582:15;38609:174;38749:26;38745:1;38737:6;38733:14;38726:50;38609:174;:::o;38789:366::-;38931:3;38952:67;39016:2;39011:3;38952:67;:::i;:::-;38945:74;;39028:93;39117:3;39028:93;:::i;:::-;39146:2;39141:3;39137:12;39130:19;;38789:366;;;:::o;39161:419::-;39327:4;39365:2;39354:9;39350:18;39342:26;;39414:9;39408:4;39404:20;39400:1;39389:9;39385:17;39378:47;39442:131;39568:4;39442:131;:::i;:::-;39434:139;;39161:419;;;:::o;39586:181::-;39726:33;39722:1;39714:6;39710:14;39703:57;39586:181;:::o;39773:366::-;39915:3;39936:67;40000:2;39995:3;39936:67;:::i;:::-;39929:74;;40012:93;40101:3;40012:93;:::i;:::-;40130:2;40125:3;40121:12;40114:19;;39773:366;;;:::o;40145:419::-;40311:4;40349:2;40338:9;40334:18;40326:26;;40398:9;40392:4;40388:20;40384:1;40373:9;40369:17;40362:47;40426:131;40552:4;40426:131;:::i;:::-;40418:139;;40145:419;;;:::o;40570:221::-;40710:34;40706:1;40698:6;40694:14;40687:58;40779:4;40774:2;40766:6;40762:15;40755:29;40570:221;:::o;40797:366::-;40939:3;40960:67;41024:2;41019:3;40960:67;:::i;:::-;40953:74;;41036:93;41125:3;41036:93;:::i;:::-;41154:2;41149:3;41145:12;41138:19;;40797:366;;;:::o;41169:419::-;41335:4;41373:2;41362:9;41358:18;41350:26;;41422:9;41416:4;41412:20;41408:1;41397:9;41393:17;41386:47;41450:131;41576:4;41450:131;:::i;:::-;41442:139;;41169:419;;;:::o;41594:221::-;41734:34;41730:1;41722:6;41718:14;41711:58;41803:4;41798:2;41790:6;41786:15;41779:29;41594:221;:::o;41821:366::-;41963:3;41984:67;42048:2;42043:3;41984:67;:::i;:::-;41977:74;;42060:93;42149:3;42060:93;:::i;:::-;42178:2;42173:3;42169:12;42162:19;;41821:366;;;:::o;42193:419::-;42359:4;42397:2;42386:9;42382:18;42374:26;;42446:9;42440:4;42436:20;42432:1;42421:9;42417:17;42410:47;42474:131;42600:4;42474:131;:::i;:::-;42466:139;;42193:419;;;:::o;42618:220::-;42758:34;42754:1;42746:6;42742:14;42735:58;42827:3;42822:2;42814:6;42810:15;42803:28;42618:220;:::o;42844:366::-;42986:3;43007:67;43071:2;43066:3;43007:67;:::i;:::-;43000:74;;43083:93;43172:3;43083:93;:::i;:::-;43201:2;43196:3;43192:12;43185:19;;42844:366;;;:::o;43216:419::-;43382:4;43420:2;43409:9;43405:18;43397:26;;43469:9;43463:4;43459:20;43455:1;43444:9;43440:17;43433:47;43497:131;43623:4;43497:131;:::i;:::-;43489:139;;43216:419;;;:::o;43641:221::-;43781:34;43777:1;43769:6;43765:14;43758:58;43850:4;43845:2;43837:6;43833:15;43826:29;43641:221;:::o;43868:366::-;44010:3;44031:67;44095:2;44090:3;44031:67;:::i;:::-;44024:74;;44107:93;44196:3;44107:93;:::i;:::-;44225:2;44220:3;44216:12;44209:19;;43868:366;;;:::o;44240:419::-;44406:4;44444:2;44433:9;44429:18;44421:26;;44493:9;44487:4;44483:20;44479:1;44468:9;44464:17;44457:47;44521:131;44647:4;44521:131;:::i;:::-;44513:139;;44240:419;;;:::o
Swarm Source
ipfs://918c80019a9956795116683a254f2b310878f03943b767fecb96198bb8894400
Loading...
Loading
OVERVIEW
Gamer Arena is a competitive gaming platform that provides players with the opportunity to earn crypto rewards and prove themselves by putting similarly skilled opponents against each other in digital games.Loading...
Loading
Multichain Portfolio | 34 Chains
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.