@etherisc/gif-next 0.0.2-a9f5983-610 → 0.0.2-aa7068b-175

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (724) hide show
  1. package/README.md +83 -93
  2. package/artifacts/contracts/accounting/AccountingService.sol/AccountingService.dbg.json +4 -0
  3. package/artifacts/contracts/accounting/AccountingService.sol/AccountingService.json +1023 -0
  4. package/artifacts/contracts/accounting/AccountingServiceManager.sol/AccountingServiceManager.dbg.json +4 -0
  5. package/artifacts/contracts/accounting/AccountingServiceManager.sol/AccountingServiceManager.json +752 -0
  6. package/artifacts/contracts/accounting/IAccountingService.sol/IAccountingService.dbg.json +4 -0
  7. package/artifacts/contracts/accounting/IAccountingService.sol/IAccountingService.json +791 -0
  8. package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.dbg.json +4 -0
  9. package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.json +1494 -0
  10. package/artifacts/contracts/authorization/AccessAdmin.sol/IAccessManagedChecker.dbg.json +4 -0
  11. package/artifacts/contracts/authorization/AccessAdmin.sol/IAccessManagedChecker.json +24 -0
  12. package/artifacts/contracts/authorization/AccessAdminLib.sol/AccessAdminLib.dbg.json +4 -0
  13. package/artifacts/contracts/authorization/AccessAdminLib.sol/AccessAdminLib.json +673 -0
  14. package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.dbg.json +4 -0
  15. package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.json +1403 -0
  16. package/artifacts/contracts/authorization/Authorization.sol/Authorization.dbg.json +4 -0
  17. package/artifacts/contracts/authorization/Authorization.sol/Authorization.json +615 -0
  18. package/artifacts/contracts/authorization/IAccess.sol/IAccess.dbg.json +4 -0
  19. package/artifacts/contracts/{instance/module/ISetup.sol/ISetup.json → authorization/IAccess.sol/IAccess.json} +2 -2
  20. package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.dbg.json +4 -0
  21. package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.json +1224 -0
  22. package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.dbg.json +4 -0
  23. package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.json +382 -0
  24. package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.dbg.json +4 -0
  25. package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.json +167 -0
  26. package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.dbg.json +4 -0
  27. package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.json +253 -0
  28. package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.dbg.json +4 -0
  29. package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.json +1338 -0
  30. package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.dbg.json +4 -0
  31. package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.json +644 -0
  32. package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +4 -0
  33. package/artifacts/contracts/{components → distribution}/Distribution.sol/Distribution.json +265 -559
  34. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +4 -0
  35. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +1525 -0
  36. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
  37. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +872 -0
  38. package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
  39. package/artifacts/contracts/{components → distribution}/IDistributionComponent.sol/IDistributionComponent.json +349 -311
  40. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +4 -0
  41. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.json +1008 -0
  42. package/artifacts/contracts/examples/fire/DamageLevel.sol/DamageLevelLib.dbg.json +4 -0
  43. package/artifacts/contracts/examples/fire/DamageLevel.sol/DamageLevelLib.json +22 -0
  44. package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.dbg.json +4 -0
  45. package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.json +1491 -0
  46. package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.dbg.json +4 -0
  47. package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.json +644 -0
  48. package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.dbg.json +4 -0
  49. package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.json +2048 -0
  50. package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.dbg.json +4 -0
  51. package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.json +644 -0
  52. package/artifacts/contracts/examples/fire/FireUSD.sol/FireUSD.dbg.json +4 -0
  53. package/artifacts/contracts/examples/fire/FireUSD.sol/FireUSD.json +376 -0
  54. package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.dbg.json +4 -0
  55. package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.json +1495 -0
  56. package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.dbg.json +4 -0
  57. package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.json +644 -0
  58. package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.dbg.json +4 -0
  59. package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.json +1195 -0
  60. package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.dbg.json +4 -0
  61. package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.json +1671 -0
  62. package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.dbg.json +4 -0
  63. package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.json +644 -0
  64. package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.dbg.json +4 -0
  65. package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.json +2448 -0
  66. package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.dbg.json +4 -0
  67. package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.json +644 -0
  68. package/artifacts/contracts/instance/BundleSet.sol/BundleSet.dbg.json +4 -0
  69. package/artifacts/contracts/instance/BundleSet.sol/BundleSet.json +851 -0
  70. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
  71. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +377 -2053
  72. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
  73. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +364 -73
  74. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  75. package/artifacts/contracts/instance/Instance.sol/Instance.json +462 -2859
  76. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +4 -0
  77. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +2036 -0
  78. package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.dbg.json +4 -0
  79. package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.json +716 -0
  80. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
  81. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1663 -625
  82. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
  83. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +369 -369
  84. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
  85. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +153 -112
  86. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
  87. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +3718 -0
  88. package/artifacts/contracts/instance/RiskSet.sol/RiskSet.dbg.json +4 -0
  89. package/artifacts/contracts/instance/RiskSet.sol/RiskSet.json +853 -0
  90. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.dbg.json +4 -0
  91. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.json +318 -0
  92. package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.dbg.json +4 -0
  93. package/artifacts/contracts/instance/{Cloneable.sol → base/Cloneable.sol}/Cloneable.json +1 -49
  94. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.dbg.json +4 -0
  95. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.json +10 -0
  96. package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.dbg.json +4 -0
  97. package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.json +223 -0
  98. package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.dbg.json +4 -0
  99. package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.json +192 -0
  100. package/artifacts/contracts/instance/base/ObjectSetHelperLib.sol/ObjectSetHelperLib.dbg.json +4 -0
  101. package/artifacts/contracts/instance/base/ObjectSetHelperLib.sol/ObjectSetHelperLib.json +168 -0
  102. package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
  103. package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +4 -0
  104. package/artifacts/contracts/instance/module/{ITreasury.sol/ITreasury.json → IComponents.sol/IComponents.json} +2 -2
  105. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +1 -1
  106. package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +1 -1
  107. package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +1 -1
  108. package/artifacts/contracts/mock/Dip.sol/Dip.dbg.json +4 -0
  109. package/artifacts/contracts/mock/Dip.sol/Dip.json +376 -0
  110. package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.dbg.json +4 -0
  111. package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.json +959 -0
  112. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.dbg.json +4 -0
  113. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.json +632 -0
  114. package/artifacts/contracts/oracle/IOracle.sol/IOracle.dbg.json +4 -0
  115. package/artifacts/contracts/oracle/IOracle.sol/IOracle.json +52 -0
  116. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.dbg.json +4 -0
  117. package/artifacts/contracts/{components/Component.sol/Component.json → oracle/IOracleComponent.sol/IOracleComponent.json} +236 -236
  118. package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +4 -0
  119. package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.json +733 -0
  120. package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +4 -0
  121. package/artifacts/contracts/oracle/Oracle.sol/Oracle.json +875 -0
  122. package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +4 -0
  123. package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +1013 -0
  124. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +4 -0
  125. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +772 -0
  126. package/artifacts/contracts/pool/BasicPool.sol/BasicPool.dbg.json +4 -0
  127. package/artifacts/contracts/{components/Pool.sol/Pool.json → pool/BasicPool.sol/BasicPool.json} +320 -519
  128. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.dbg.json +4 -0
  129. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.json +644 -0
  130. package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +4 -0
  131. package/artifacts/contracts/pool/BundleService.sol/BundleService.json +1277 -0
  132. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
  133. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +808 -0
  134. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +4 -0
  135. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.json +880 -0
  136. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
  137. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.json +907 -0
  138. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +4 -0
  139. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +1230 -0
  140. package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +4 -0
  141. package/artifacts/contracts/{components/IPoolComponent.sol/IPoolComponent.json → pool/Pool.sol/Pool.json} +437 -439
  142. package/artifacts/contracts/pool/PoolLib.sol/PoolLib.dbg.json +4 -0
  143. package/artifacts/contracts/pool/PoolLib.sol/PoolLib.json +456 -0
  144. package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +4 -0
  145. package/artifacts/contracts/pool/PoolService.sol/PoolService.json +1590 -0
  146. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
  147. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +816 -0
  148. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +4 -0
  149. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +829 -0
  150. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
  151. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +736 -0
  152. package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.dbg.json +4 -0
  153. package/artifacts/contracts/{components/Product.sol/Product.json → product/BasicProduct.sol/BasicProduct.json} +412 -418
  154. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.dbg.json +4 -0
  155. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.json +644 -0
  156. package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +4 -0
  157. package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +1512 -0
  158. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
  159. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +856 -0
  160. package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +4 -0
  161. package/artifacts/contracts/{instance/service/IPolicyService.sol/IPolicyService.json → product/IApplicationService.sol/IApplicationService.json} +221 -196
  162. package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +4 -0
  163. package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +1064 -0
  164. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +4 -0
  165. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +981 -0
  166. package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +4 -0
  167. package/artifacts/contracts/{instance/service/IBundleService.sol/IBundleService.json → product/IPricingService.sol/IPricingService.json} +285 -305
  168. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +4 -0
  169. package/artifacts/contracts/{components → product}/IProductComponent.sol/IProductComponent.json +502 -224
  170. package/artifacts/contracts/product/IRiskService.sol/IRiskService.dbg.json +4 -0
  171. package/artifacts/contracts/{instance/service/IProductService.sol/IProductService.json → product/IRiskService.sol/IRiskService.json} +150 -64
  172. package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +4 -0
  173. package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +1349 -0
  174. package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.dbg.json +4 -0
  175. package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.json +293 -0
  176. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
  177. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +816 -0
  178. package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +4 -0
  179. package/artifacts/contracts/product/PricingService.sol/PricingService.json +946 -0
  180. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
  181. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +792 -0
  182. package/artifacts/contracts/product/Product.sol/Product.dbg.json +4 -0
  183. package/artifacts/contracts/product/Product.sol/Product.json +1119 -0
  184. package/artifacts/contracts/product/RiskService.sol/RiskService.dbg.json +4 -0
  185. package/artifacts/contracts/product/RiskService.sol/RiskService.json +659 -0
  186. package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.dbg.json +4 -0
  187. package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.json +732 -0
  188. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
  189. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +72 -16
  190. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  191. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +499 -26
  192. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
  193. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +286 -122
  194. package/artifacts/contracts/registry/IRelease.sol/IRelease.dbg.json +4 -0
  195. package/artifacts/contracts/registry/IRelease.sol/IRelease.json +24 -0
  196. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
  197. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +5 -0
  198. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  199. package/artifacts/contracts/registry/Registry.sol/Registry.json +989 -125
  200. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +4 -0
  201. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +2018 -0
  202. package/artifacts/contracts/registry/RegistryAuthorization.sol/RegistryAuthorization.dbg.json +4 -0
  203. package/artifacts/contracts/registry/RegistryAuthorization.sol/RegistryAuthorization.json +878 -0
  204. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
  205. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +361 -258
  206. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
  207. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +164 -99
  208. package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.dbg.json +4 -0
  209. package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.json +1954 -0
  210. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.dbg.json +4 -0
  211. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.json +205 -0
  212. package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.dbg.json +4 -0
  213. package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.json +1337 -0
  214. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.dbg.json +4 -0
  215. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.json +272 -0
  216. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
  217. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +317 -154
  218. package/artifacts/contracts/shared/Component.sol/Component.dbg.json +4 -0
  219. package/artifacts/contracts/shared/Component.sol/Component.json +707 -0
  220. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +4 -0
  221. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +1532 -0
  222. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +4 -0
  223. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +812 -0
  224. package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.dbg.json +4 -0
  225. package/artifacts/contracts/{instance/base/ComponentService.sol/ComponentService.json → shared/ComponentVerifyingService.sol/ComponentVerifyingService.json} +115 -171
  226. package/artifacts/contracts/shared/ContractLib.sol/ContractLib.dbg.json +4 -0
  227. package/artifacts/contracts/shared/ContractLib.sol/ContractLib.json +597 -0
  228. package/artifacts/contracts/shared/ContractLib.sol/IInstanceAdminHelper.dbg.json +4 -0
  229. package/artifacts/contracts/shared/ContractLib.sol/IInstanceAdminHelper.json +24 -0
  230. package/artifacts/contracts/shared/ContractLib.sol/ITargetHelper.dbg.json +4 -0
  231. package/artifacts/contracts/shared/ContractLib.sol/ITargetHelper.json +30 -0
  232. package/artifacts/contracts/shared/ContractLib.sol/ITokenRegistryHelper.dbg.json +4 -0
  233. package/artifacts/contracts/shared/ContractLib.sol/ITokenRegistryHelper.json +40 -0
  234. package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +4 -0
  235. package/artifacts/contracts/{components → shared}/IComponent.sol/IComponent.json +267 -82
  236. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +4 -0
  237. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +1180 -0
  238. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +4 -0
  239. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +709 -0
  240. package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
  241. package/artifacts/contracts/{instance/base → shared}/IKeyValueStore.sol/IKeyValueStore.json +95 -14
  242. package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +4 -0
  243. package/artifacts/contracts/{instance/base → shared}/ILifecycle.sol/ILifecycle.json +35 -4
  244. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
  245. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +19 -10
  246. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +1 -1
  247. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +59 -13
  248. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
  249. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +144 -3
  250. package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +1 -1
  251. package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.json +0 -13
  252. package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
  253. package/artifacts/contracts/shared/IService.sol/IService.json +158 -17
  254. package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.dbg.json +4 -0
  255. package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.json +53 -0
  256. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +4 -0
  257. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +797 -0
  258. package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
  259. package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.json +538 -0
  260. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +4 -0
  261. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.json +174 -0
  262. package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.dbg.json +4 -0
  263. package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.json +306 -0
  264. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
  265. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +28 -70
  266. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +1 -1
  267. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +35 -85
  268. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
  269. package/artifacts/contracts/shared/Registerable.sol/Registerable.json +126 -100
  270. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +1 -1
  271. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +2 -28
  272. package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
  273. package/artifacts/contracts/shared/Service.sol/Service.json +144 -105
  274. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
  275. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +635 -8
  276. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.dbg.json +4 -0
  277. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.json +484 -0
  278. package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.dbg.json +4 -0
  279. package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.json +172 -0
  280. package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +4 -0
  281. package/artifacts/contracts/staking/IStaking.sol/IStaking.json +1465 -0
  282. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +4 -0
  283. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +1096 -0
  284. package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.dbg.json +4 -0
  285. package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.json +440 -0
  286. package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +4 -0
  287. package/artifacts/contracts/staking/Staking.sol/Staking.json +1849 -0
  288. package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.dbg.json +4 -0
  289. package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.json +205 -0
  290. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +4 -0
  291. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +788 -0
  292. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +4 -0
  293. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +587 -0
  294. package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +4 -0
  295. package/artifacts/contracts/staking/StakingService.sol/StakingService.json +1317 -0
  296. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +4 -0
  297. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +740 -0
  298. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +4 -0
  299. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +2283 -0
  300. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +4 -0
  301. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +607 -0
  302. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +4 -0
  303. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.json +10 -0
  304. package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +4 -0
  305. package/artifacts/contracts/type/Amount.sol/AmountLib.json +398 -0
  306. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +4 -0
  307. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.json +225 -0
  308. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
  309. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.json +203 -0
  310. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
  311. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.json +104 -0
  312. package/artifacts/contracts/type/Fee.sol/FeeLib.dbg.json +4 -0
  313. package/artifacts/contracts/type/Fee.sol/FeeLib.json +317 -0
  314. package/artifacts/contracts/type/Key32.sol/Key32Lib.dbg.json +4 -0
  315. package/artifacts/contracts/type/Key32.sol/Key32Lib.json +125 -0
  316. package/artifacts/contracts/type/Key32Set.sol/LibKey32Set.dbg.json +4 -0
  317. package/artifacts/contracts/type/Key32Set.sol/LibKey32Set.json +33 -0
  318. package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +4 -0
  319. package/artifacts/contracts/type/NftId.sol/NftIdLib.json +228 -0
  320. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
  321. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.json +33 -0
  322. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
  323. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.json +241 -0
  324. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
  325. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.json +209 -0
  326. package/artifacts/contracts/type/Referral.sol/ReferralLib.dbg.json +4 -0
  327. package/artifacts/contracts/type/Referral.sol/ReferralLib.json +142 -0
  328. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.dbg.json +4 -0
  329. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.json +204 -0
  330. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +4 -0
  331. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.json +204 -0
  332. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +4 -0
  333. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +433 -0
  334. package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +4 -0
  335. package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +246 -0
  336. package/artifacts/contracts/type/Selector.sol/SelectorLib.dbg.json +4 -0
  337. package/artifacts/contracts/type/Selector.sol/SelectorLib.json +148 -0
  338. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.dbg.json +4 -0
  339. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.json +10 -0
  340. package/artifacts/contracts/type/StateId.sol/StateIdLib.dbg.json +4 -0
  341. package/artifacts/contracts/type/StateId.sol/StateIdLib.json +105 -0
  342. package/artifacts/contracts/type/String.sol/StrLib.dbg.json +4 -0
  343. package/artifacts/contracts/type/String.sol/StrLib.json +132 -0
  344. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +4 -0
  345. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.json +312 -0
  346. package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +4 -0
  347. package/artifacts/contracts/type/UFixed.sol/UFixedLib.json +548 -0
  348. package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +4 -0
  349. package/artifacts/contracts/type/Version.sol/VersionLib.json +158 -0
  350. package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +4 -0
  351. package/artifacts/contracts/type/Version.sol/VersionPartLib.json +167 -0
  352. package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.dbg.json +4 -0
  353. package/artifacts/contracts/{shared → upgradeability}/IVersionable.sol/IVersionable.json +1 -1
  354. package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.dbg.json +4 -0
  355. package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.json +618 -0
  356. package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
  357. package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
  358. package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.dbg.json +4 -0
  359. package/artifacts/contracts/{shared → upgradeability}/Versionable.sol/Versionable.json +1 -1
  360. package/contracts/accounting/AccountingService.sol +261 -0
  361. package/contracts/accounting/AccountingServiceManager.sol +38 -0
  362. package/contracts/accounting/IAccountingService.sol +45 -0
  363. package/contracts/authorization/AccessAdmin.sol +704 -0
  364. package/contracts/authorization/AccessAdminLib.sol +183 -0
  365. package/contracts/authorization/AccessManagerCloneable.sol +158 -0
  366. package/contracts/authorization/Authorization.sol +365 -0
  367. package/contracts/authorization/IAccess.sol +49 -0
  368. package/contracts/authorization/IAccessAdmin.sol +170 -0
  369. package/contracts/authorization/IAuthorization.sol +80 -0
  370. package/contracts/authorization/IServiceAuthorization.sol +40 -0
  371. package/contracts/authorization/ServiceAuthorization.sol +106 -0
  372. package/contracts/distribution/BasicDistribution.sol +141 -0
  373. package/contracts/distribution/BasicDistributionAuthorization.sol +60 -0
  374. package/contracts/{components → distribution}/Distribution.sol +175 -194
  375. package/contracts/distribution/DistributionService.sol +362 -0
  376. package/contracts/distribution/DistributionServiceManager.sol +39 -0
  377. package/contracts/distribution/IDistributionComponent.sol +52 -0
  378. package/contracts/distribution/IDistributionService.sol +101 -0
  379. package/contracts/examples/fire/DamageLevel.sol +59 -0
  380. package/contracts/examples/fire/FirePool.sol +90 -0
  381. package/contracts/examples/fire/FirePoolAuthorization.sol +35 -0
  382. package/contracts/examples/fire/FireProduct.sol +437 -0
  383. package/contracts/examples/fire/FireProductAuthorization.sol +45 -0
  384. package/contracts/examples/fire/FireUSD.sol +26 -0
  385. package/contracts/examples/unpermissioned/SimpleDistribution.sol +57 -0
  386. package/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol +28 -0
  387. package/contracts/examples/unpermissioned/SimpleOracle.sol +137 -0
  388. package/contracts/examples/unpermissioned/SimplePool.sol +106 -0
  389. package/contracts/examples/unpermissioned/SimplePoolAuthorization.sol +28 -0
  390. package/contracts/examples/unpermissioned/SimpleProduct.sol +377 -0
  391. package/contracts/examples/unpermissioned/SimpleProductAuthorization.sol +28 -0
  392. package/contracts/instance/BundleSet.sol +130 -0
  393. package/contracts/instance/IInstance.sol +77 -66
  394. package/contracts/instance/IInstanceService.sol +50 -26
  395. package/contracts/instance/Instance.sol +210 -212
  396. package/contracts/instance/InstanceAdmin.sol +450 -0
  397. package/contracts/instance/InstanceAuthorizationV3.sol +235 -0
  398. package/contracts/instance/InstanceReader.sol +408 -64
  399. package/contracts/instance/InstanceService.sol +327 -367
  400. package/contracts/instance/InstanceServiceManager.sol +14 -29
  401. package/contracts/instance/InstanceStore.sol +298 -0
  402. package/contracts/instance/RiskSet.sol +118 -0
  403. package/contracts/instance/base/BalanceStore.sol +123 -0
  404. package/contracts/instance/{Cloneable.sol → base/Cloneable.sol} +4 -22
  405. package/contracts/instance/base/ObjectCounter.sol +20 -0
  406. package/contracts/instance/base/ObjectLifecycle.sol +113 -0
  407. package/contracts/instance/base/ObjectSet.sol +77 -0
  408. package/contracts/instance/base/ObjectSetHelperLib.sol +30 -0
  409. package/contracts/instance/module/IBundle.sol +8 -9
  410. package/contracts/instance/module/IComponents.sol +51 -0
  411. package/contracts/instance/module/IDistribution.sol +8 -5
  412. package/contracts/instance/module/IPolicy.sol +55 -18
  413. package/contracts/instance/module/IRisk.sol +4 -1
  414. package/contracts/{test/Usdc.sol → mock/Dip.sol} +6 -6
  415. package/contracts/oracle/BasicOracle.sol +47 -0
  416. package/contracts/oracle/BasicOracleAuthorization.sol +37 -0
  417. package/contracts/oracle/IOracle.sol +36 -0
  418. package/contracts/oracle/IOracleComponent.sol +33 -0
  419. package/contracts/oracle/IOracleService.sol +66 -0
  420. package/contracts/oracle/Oracle.sol +156 -0
  421. package/contracts/oracle/OracleService.sol +310 -0
  422. package/contracts/oracle/OracleServiceManager.sol +39 -0
  423. package/contracts/pool/BasicPool.sol +175 -0
  424. package/contracts/pool/BasicPoolAuthorization.sol +76 -0
  425. package/contracts/pool/BundleService.sol +395 -0
  426. package/contracts/pool/BundleServiceManager.sol +39 -0
  427. package/contracts/pool/IBundleService.sol +115 -0
  428. package/contracts/pool/IPoolComponent.sol +62 -0
  429. package/contracts/pool/IPoolService.sol +165 -0
  430. package/contracts/pool/Pool.sol +345 -0
  431. package/contracts/pool/PoolLib.sol +216 -0
  432. package/contracts/pool/PoolService.sol +760 -0
  433. package/contracts/pool/PoolServiceManager.sol +39 -0
  434. package/contracts/product/ApplicationService.sol +263 -0
  435. package/contracts/{instance/service → product}/ApplicationServiceManager.sol +12 -9
  436. package/contracts/product/BasicProduct.sol +51 -0
  437. package/contracts/product/BasicProductAuthorization.sol +56 -0
  438. package/contracts/product/ClaimService.sol +640 -0
  439. package/contracts/{instance/service → product}/ClaimServiceManager.sol +12 -9
  440. package/contracts/{instance/service → product}/IApplicationService.sol +19 -36
  441. package/contracts/product/IClaimService.sol +135 -0
  442. package/contracts/product/IPolicyService.sol +95 -0
  443. package/contracts/product/IPricingService.sol +39 -0
  444. package/contracts/product/IProductComponent.sol +62 -0
  445. package/contracts/product/IRiskService.sol +30 -0
  446. package/contracts/product/PolicyService.sol +672 -0
  447. package/contracts/product/PolicyServiceLib.sol +65 -0
  448. package/contracts/product/PolicyServiceManager.sol +39 -0
  449. package/contracts/product/PricingService.sol +304 -0
  450. package/contracts/product/PricingServiceManager.sol +39 -0
  451. package/contracts/product/Product.sol +469 -0
  452. package/contracts/product/RiskService.sol +144 -0
  453. package/contracts/product/RiskServiceManager.sol +39 -0
  454. package/contracts/registry/ChainNft.sol +83 -36
  455. package/contracts/registry/IRegistry.sol +97 -30
  456. package/contracts/registry/IRegistryService.sol +36 -41
  457. package/contracts/registry/IRelease.sol +26 -0
  458. package/contracts/registry/ITransferInterceptor.sol +1 -1
  459. package/contracts/registry/Registry.sol +472 -206
  460. package/contracts/registry/RegistryAdmin.sol +258 -0
  461. package/contracts/registry/RegistryAuthorization.sol +266 -0
  462. package/contracts/registry/RegistryService.sol +89 -131
  463. package/contracts/registry/RegistryServiceManager.sol +23 -32
  464. package/contracts/registry/ReleaseAdmin.sol +253 -0
  465. package/contracts/registry/ReleaseLifecycle.sol +32 -0
  466. package/contracts/registry/ReleaseRegistry.sol +517 -0
  467. package/contracts/registry/ServiceAuthorizationV3.sol +330 -0
  468. package/contracts/registry/TokenRegistry.sol +261 -64
  469. package/contracts/shared/Component.sol +227 -0
  470. package/contracts/shared/ComponentService.sol +696 -0
  471. package/contracts/shared/ComponentServiceManager.sol +38 -0
  472. package/contracts/shared/ComponentVerifyingService.sol +128 -0
  473. package/contracts/shared/ContractLib.sol +281 -0
  474. package/contracts/shared/IComponent.sol +61 -0
  475. package/contracts/shared/IComponentService.sol +110 -0
  476. package/contracts/shared/IInstanceLinkedComponent.sol +30 -0
  477. package/contracts/{instance/base → shared}/IKeyValueStore.sol +16 -11
  478. package/contracts/{instance/base → shared}/ILifecycle.sol +5 -4
  479. package/contracts/shared/INftOwnable.sol +4 -2
  480. package/contracts/shared/IPolicyHolder.sol +23 -14
  481. package/contracts/shared/IRegisterable.sol +23 -1
  482. package/contracts/shared/IRegistryLinked.sol +0 -1
  483. package/contracts/shared/IService.sol +12 -5
  484. package/contracts/shared/{ERC165.sol → InitializableERC165.sol} +12 -4
  485. package/contracts/shared/InstanceLinkedComponent.sol +197 -0
  486. package/contracts/shared/KeyValueStore.sol +131 -0
  487. package/contracts/shared/Lifecycle.sol +88 -0
  488. package/contracts/shared/NftIdSet.sol +65 -0
  489. package/contracts/shared/NftOwnable.sol +35 -27
  490. package/contracts/shared/PolicyHolder.sol +22 -41
  491. package/contracts/shared/Registerable.sol +52 -20
  492. package/contracts/shared/RegistryLinked.sol +9 -19
  493. package/contracts/shared/Service.sol +36 -29
  494. package/contracts/shared/TokenHandler.sol +327 -12
  495. package/contracts/shared/TokenHandlerDeployerLib.sol +20 -0
  496. package/contracts/staking/IStaking.sol +169 -0
  497. package/contracts/staking/IStakingService.sol +168 -0
  498. package/contracts/staking/StakeManagerLib.sol +224 -0
  499. package/contracts/staking/Staking.sol +526 -0
  500. package/contracts/staking/StakingLifecycle.sol +23 -0
  501. package/contracts/staking/StakingManager.sol +52 -0
  502. package/contracts/staking/StakingReader.sol +190 -0
  503. package/contracts/staking/StakingService.sol +433 -0
  504. package/contracts/staking/StakingServiceManager.sol +45 -0
  505. package/contracts/staking/StakingStore.sol +605 -0
  506. package/contracts/staking/TargetManagerLib.sol +211 -0
  507. package/contracts/{types → type}/AddressSet.sol +1 -1
  508. package/contracts/type/Amount.sol +150 -0
  509. package/contracts/{types → type}/Blocknumber.sol +27 -3
  510. package/contracts/{types → type}/ClaimId.sol +31 -3
  511. package/contracts/{types → type}/Fee.sol +33 -23
  512. package/contracts/{types → type}/Key32.sol +2 -2
  513. package/contracts/type/Key32Set.sol +62 -0
  514. package/contracts/{types → type}/NftId.sol +28 -15
  515. package/contracts/{types → type}/NftIdSet.sol +2 -2
  516. package/contracts/type/ObjectType.sol +294 -0
  517. package/contracts/type/PayoutId.sol +82 -0
  518. package/contracts/{types → type}/Referral.sol +6 -1
  519. package/contracts/type/RequestId.sol +75 -0
  520. package/contracts/type/RiskId.sol +75 -0
  521. package/contracts/type/RoleId.sol +182 -0
  522. package/contracts/type/Seconds.sol +101 -0
  523. package/contracts/type/Selector.sol +107 -0
  524. package/contracts/{types → type}/StateId.sol +48 -4
  525. package/contracts/type/String.sol +53 -0
  526. package/contracts/{types → type}/Timestamp.sol +21 -6
  527. package/contracts/{types → type}/UFixed.sol +41 -121
  528. package/contracts/{types → type}/Version.sol +59 -7
  529. package/contracts/{shared → upgradeability}/IVersionable.sol +1 -1
  530. package/contracts/{shared → upgradeability}/ProxyManager.sol +93 -30
  531. package/contracts/{shared → upgradeability}/UpgradableProxyWithAdmin.sol +1 -3
  532. package/contracts/{shared → upgradeability}/Versionable.sol +3 -3
  533. package/package.json +12 -8
  534. package/artifacts/contracts/components/Component.sol/Component.dbg.json +0 -4
  535. package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +0 -4
  536. package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +0 -4
  537. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +0 -4
  538. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +0 -4
  539. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +0 -4
  540. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +0 -4
  541. package/artifacts/contracts/components/Product.sol/Product.dbg.json +0 -4
  542. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +0 -4
  543. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +0 -764
  544. package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +0 -4
  545. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +0 -4
  546. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +0 -984
  547. package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +0 -4
  548. package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +0 -261
  549. package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.dbg.json +0 -4
  550. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +0 -4
  551. package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +0 -4
  552. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +0 -4
  553. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +0 -502
  554. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +0 -4
  555. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +0 -169
  556. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +0 -4
  557. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +0 -254
  558. package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +0 -4
  559. package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +0 -4
  560. package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.dbg.json +0 -4
  561. package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.json +0 -858
  562. package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +0 -4
  563. package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +0 -657
  564. package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +0 -4
  565. package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +0 -1085
  566. package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +0 -4
  567. package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +0 -661
  568. package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.dbg.json +0 -4
  569. package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.json +0 -743
  570. package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +0 -4
  571. package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.json +0 -637
  572. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +0 -4
  573. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +0 -935
  574. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +0 -4
  575. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +0 -677
  576. package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +0 -4
  577. package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.json +0 -462
  578. package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +0 -4
  579. package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.dbg.json +0 -4
  580. package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.json +0 -398
  581. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +0 -4
  582. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +0 -480
  583. package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +0 -4
  584. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +0 -4
  585. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +0 -336
  586. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +0 -4
  587. package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +0 -4
  588. package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +0 -1109
  589. package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +0 -4
  590. package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +0 -717
  591. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +0 -4
  592. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +0 -716
  593. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +0 -4
  594. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +0 -649
  595. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +0 -4
  596. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +0 -766
  597. package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +0 -4
  598. package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +0 -649
  599. package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +0 -4
  600. package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +0 -285
  601. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +0 -4
  602. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +0 -547
  603. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +0 -4
  604. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.json +0 -107
  605. package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +0 -4
  606. package/artifacts/contracts/shared/ERC165.sol/ERC165.json +0 -73
  607. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +0 -4
  608. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +0 -4
  609. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +0 -582
  610. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +0 -4
  611. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +0 -129
  612. package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +0 -4
  613. package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +0 -4
  614. package/artifacts/contracts/test/TestFee.sol/TestFee.json +0 -119
  615. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +0 -4
  616. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +0 -383
  617. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +0 -4
  618. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +0 -116
  619. package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +0 -4
  620. package/artifacts/contracts/test/TestService.sol/TestService.json +0 -510
  621. package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +0 -4
  622. package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +0 -376
  623. package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +0 -4
  624. package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +0 -218
  625. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +0 -4
  626. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +0 -104
  627. package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +0 -4
  628. package/artifacts/contracts/test/Usdc.sol/USDC.json +0 -376
  629. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +0 -4
  630. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.json +0 -10
  631. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +0 -4
  632. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +0 -174
  633. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +0 -4
  634. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +0 -10
  635. package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.dbg.json +0 -4
  636. package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.json +0 -100
  637. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +0 -4
  638. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +0 -104
  639. package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +0 -4
  640. package/artifacts/contracts/types/Fee.sol/FeeLib.json +0 -257
  641. package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +0 -4
  642. package/artifacts/contracts/types/Key32.sol/Key32Lib.json +0 -125
  643. package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +0 -4
  644. package/artifacts/contracts/types/NftId.sol/NftIdLib.json +0 -153
  645. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +0 -4
  646. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +0 -33
  647. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +0 -4
  648. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.json +0 -100
  649. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +0 -4
  650. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +0 -92
  651. package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.dbg.json +0 -4
  652. package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.json +0 -100
  653. package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +0 -4
  654. package/artifacts/contracts/types/Referral.sol/ReferralLib.json +0 -123
  655. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +0 -4
  656. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +0 -86
  657. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +0 -4
  658. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +0 -156
  659. package/artifacts/contracts/types/Seconds.sol/SecondsLib.dbg.json +0 -4
  660. package/artifacts/contracts/types/Seconds.sol/SecondsLib.json +0 -124
  661. package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +0 -4
  662. package/artifacts/contracts/types/StateId.sol/StateIdLib.json +0 -92
  663. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +0 -4
  664. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +0 -267
  665. package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +0 -4
  666. package/artifacts/contracts/types/UFixed.sol/MathLib.json +0 -10
  667. package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +0 -4
  668. package/artifacts/contracts/types/UFixed.sol/UFixedLib.json +0 -479
  669. package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +0 -4
  670. package/artifacts/contracts/types/Version.sol/VersionLib.json +0 -177
  671. package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +0 -4
  672. package/artifacts/contracts/types/Version.sol/VersionPartLib.json +0 -49
  673. package/contracts/components/Component.sol +0 -221
  674. package/contracts/components/IComponent.sol +0 -68
  675. package/contracts/components/IDistributionComponent.sol +0 -100
  676. package/contracts/components/IPoolComponent.sol +0 -151
  677. package/contracts/components/IProductComponent.sol +0 -40
  678. package/contracts/components/Pool.sol +0 -378
  679. package/contracts/components/Product.sol +0 -293
  680. package/contracts/instance/BundleManager.sol +0 -125
  681. package/contracts/instance/InstanceAccessManager.sol +0 -297
  682. package/contracts/instance/ObjectManager.sol +0 -84
  683. package/contracts/instance/base/ComponentService.sol +0 -134
  684. package/contracts/instance/base/KeyValueStore.sol +0 -172
  685. package/contracts/instance/base/Lifecycle.sol +0 -100
  686. package/contracts/instance/module/IAccess.sol +0 -47
  687. package/contracts/instance/module/ISetup.sol +0 -48
  688. package/contracts/instance/module/ITreasury.sol +0 -23
  689. package/contracts/instance/service/ApplicationService.sol +0 -269
  690. package/contracts/instance/service/BundleService.sol +0 -299
  691. package/contracts/instance/service/BundleServiceManager.sol +0 -51
  692. package/contracts/instance/service/ClaimService.sol +0 -151
  693. package/contracts/instance/service/DistributionService.sol +0 -277
  694. package/contracts/instance/service/DistributionServiceManager.sol +0 -51
  695. package/contracts/instance/service/IBundleService.sol +0 -55
  696. package/contracts/instance/service/IClaimService.sol +0 -61
  697. package/contracts/instance/service/IDistributionService.sol +0 -65
  698. package/contracts/instance/service/IPolicyService.sol +0 -90
  699. package/contracts/instance/service/IPoolService.sol +0 -20
  700. package/contracts/instance/service/IProductService.sol +0 -40
  701. package/contracts/instance/service/PolicyService.sol +0 -476
  702. package/contracts/instance/service/PolicyServiceManager.sol +0 -54
  703. package/contracts/instance/service/PoolService.sol +0 -109
  704. package/contracts/instance/service/PoolServiceManager.sol +0 -51
  705. package/contracts/instance/service/ProductService.sol +0 -233
  706. package/contracts/instance/service/ProductServiceManager.sol +0 -54
  707. package/contracts/registry/RegistryAccessManager.sol +0 -216
  708. package/contracts/registry/ReleaseManager.sol +0 -322
  709. package/contracts/shared/ContractDeployerLib.sol +0 -72
  710. package/contracts/test/TestFee.sol +0 -25
  711. package/contracts/test/TestRegisterable.sol +0 -18
  712. package/contracts/test/TestRoleId.sol +0 -14
  713. package/contracts/test/TestService.sol +0 -25
  714. package/contracts/test/TestToken.sol +0 -26
  715. package/contracts/test/TestVersion.sol +0 -44
  716. package/contracts/test/TestVersionable.sol +0 -17
  717. package/contracts/types/ChainId.sol +0 -38
  718. package/contracts/types/NumberId.sol +0 -52
  719. package/contracts/types/ObjectType.sol +0 -156
  720. package/contracts/types/PayoutId.sol +0 -54
  721. package/contracts/types/RiskId.sol +0 -43
  722. package/contracts/types/RoleId.sol +0 -95
  723. package/contracts/types/Seconds.sol +0 -54
  724. /package/contracts/{types → type}/DistributorType.sol +0 -0
@@ -0,0 +1,1349 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "PolicyService",
4
+ "sourceName": "contracts/product/PolicyService.sol",
5
+ "abi": [
6
+ {
7
+ "inputs": [
8
+ {
9
+ "internalType": "address",
10
+ "name": "authority",
11
+ "type": "address"
12
+ }
13
+ ],
14
+ "name": "AccessManagedInvalidAuthority",
15
+ "type": "error"
16
+ },
17
+ {
18
+ "inputs": [
19
+ {
20
+ "internalType": "address",
21
+ "name": "caller",
22
+ "type": "address"
23
+ },
24
+ {
25
+ "internalType": "uint32",
26
+ "name": "delay",
27
+ "type": "uint32"
28
+ }
29
+ ],
30
+ "name": "AccessManagedRequiredDelay",
31
+ "type": "error"
32
+ },
33
+ {
34
+ "inputs": [
35
+ {
36
+ "internalType": "address",
37
+ "name": "caller",
38
+ "type": "address"
39
+ }
40
+ ],
41
+ "name": "AccessManagedUnauthorized",
42
+ "type": "error"
43
+ },
44
+ {
45
+ "inputs": [
46
+ {
47
+ "internalType": "address",
48
+ "name": "authority",
49
+ "type": "address"
50
+ }
51
+ ],
52
+ "name": "ErrorAuthorityInvalid",
53
+ "type": "error"
54
+ },
55
+ {
56
+ "inputs": [
57
+ {
58
+ "internalType": "NftId",
59
+ "name": "nftId",
60
+ "type": "uint96"
61
+ }
62
+ ],
63
+ "name": "ErrorNftOwnableAlreadyLinked",
64
+ "type": "error"
65
+ },
66
+ {
67
+ "inputs": [
68
+ {
69
+ "internalType": "address",
70
+ "name": "contractAddress",
71
+ "type": "address"
72
+ }
73
+ ],
74
+ "name": "ErrorNftOwnableContractNotRegistered",
75
+ "type": "error"
76
+ },
77
+ {
78
+ "inputs": [],
79
+ "name": "ErrorNftOwnableInitialOwnerZero",
80
+ "type": "error"
81
+ },
82
+ {
83
+ "inputs": [
84
+ {
85
+ "internalType": "NftId",
86
+ "name": "nftId",
87
+ "type": "uint96"
88
+ },
89
+ {
90
+ "internalType": "ObjectType",
91
+ "name": "expectedObjectType",
92
+ "type": "uint8"
93
+ }
94
+ ],
95
+ "name": "ErrorNftOwnableInvalidType",
96
+ "type": "error"
97
+ },
98
+ {
99
+ "inputs": [
100
+ {
101
+ "internalType": "address",
102
+ "name": "account",
103
+ "type": "address"
104
+ }
105
+ ],
106
+ "name": "ErrorNftOwnableNotOwner",
107
+ "type": "error"
108
+ },
109
+ {
110
+ "inputs": [
111
+ {
112
+ "internalType": "address",
113
+ "name": "registryAddress",
114
+ "type": "address"
115
+ }
116
+ ],
117
+ "name": "ErrorNotRegistry",
118
+ "type": "error"
119
+ },
120
+ {
121
+ "inputs": [
122
+ {
123
+ "internalType": "address",
124
+ "name": "customer",
125
+ "type": "address"
126
+ },
127
+ {
128
+ "internalType": "address",
129
+ "name": "tokenHandlerAddress",
130
+ "type": "address"
131
+ },
132
+ {
133
+ "internalType": "uint256",
134
+ "name": "amount",
135
+ "type": "uint256"
136
+ }
137
+ ],
138
+ "name": "ErrorPolicyServiceInsufficientAllowance",
139
+ "type": "error"
140
+ },
141
+ {
142
+ "inputs": [
143
+ {
144
+ "internalType": "NftId",
145
+ "name": "policyNftId",
146
+ "type": "uint96"
147
+ },
148
+ {
149
+ "internalType": "uint16",
150
+ "name": "openClaimsCount",
151
+ "type": "uint16"
152
+ }
153
+ ],
154
+ "name": "ErrorPolicyServiceOpenClaims",
155
+ "type": "error"
156
+ },
157
+ {
158
+ "inputs": [
159
+ {
160
+ "internalType": "NftId",
161
+ "name": "policyNftId",
162
+ "type": "uint96"
163
+ },
164
+ {
165
+ "internalType": "Timestamp",
166
+ "name": "lowerLimit",
167
+ "type": "uint40"
168
+ },
169
+ {
170
+ "internalType": "Timestamp",
171
+ "name": "activatedAt",
172
+ "type": "uint40"
173
+ }
174
+ ],
175
+ "name": "ErrorPolicyServicePolicyActivationTooEarly",
176
+ "type": "error"
177
+ },
178
+ {
179
+ "inputs": [
180
+ {
181
+ "internalType": "NftId",
182
+ "name": "policyNftId",
183
+ "type": "uint96"
184
+ },
185
+ {
186
+ "internalType": "Timestamp",
187
+ "name": "upperLimit",
188
+ "type": "uint40"
189
+ },
190
+ {
191
+ "internalType": "Timestamp",
192
+ "name": "activatedAt",
193
+ "type": "uint40"
194
+ }
195
+ ],
196
+ "name": "ErrorPolicyServicePolicyActivationTooLate",
197
+ "type": "error"
198
+ },
199
+ {
200
+ "inputs": [
201
+ {
202
+ "internalType": "NftId",
203
+ "name": "policyNftId",
204
+ "type": "uint96"
205
+ }
206
+ ],
207
+ "name": "ErrorPolicyServicePolicyAlreadyActivated",
208
+ "type": "error"
209
+ },
210
+ {
211
+ "inputs": [
212
+ {
213
+ "internalType": "NftId",
214
+ "name": "policyNftId",
215
+ "type": "uint96"
216
+ },
217
+ {
218
+ "internalType": "Timestamp",
219
+ "name": "lowerLimit",
220
+ "type": "uint40"
221
+ },
222
+ {
223
+ "internalType": "Timestamp",
224
+ "name": "expiredAt",
225
+ "type": "uint40"
226
+ }
227
+ ],
228
+ "name": "ErrorPolicyServicePolicyExpirationTooEarly",
229
+ "type": "error"
230
+ },
231
+ {
232
+ "inputs": [
233
+ {
234
+ "internalType": "NftId",
235
+ "name": "policyNftId",
236
+ "type": "uint96"
237
+ },
238
+ {
239
+ "internalType": "Timestamp",
240
+ "name": "upperLimit",
241
+ "type": "uint40"
242
+ },
243
+ {
244
+ "internalType": "Timestamp",
245
+ "name": "expiredAt",
246
+ "type": "uint40"
247
+ }
248
+ ],
249
+ "name": "ErrorPolicyServicePolicyExpirationTooLate",
250
+ "type": "error"
251
+ },
252
+ {
253
+ "inputs": [
254
+ {
255
+ "internalType": "NftId",
256
+ "name": "policyNftId",
257
+ "type": "uint96"
258
+ },
259
+ {
260
+ "internalType": "Timestamp",
261
+ "name": "expiredAt",
262
+ "type": "uint40"
263
+ }
264
+ ],
265
+ "name": "ErrorPolicyServicePolicyHasNotExpired",
266
+ "type": "error"
267
+ },
268
+ {
269
+ "inputs": [
270
+ {
271
+ "internalType": "NftId",
272
+ "name": "policyNftId",
273
+ "type": "uint96"
274
+ }
275
+ ],
276
+ "name": "ErrorPolicyServicePolicyNotActivated",
277
+ "type": "error"
278
+ },
279
+ {
280
+ "inputs": [
281
+ {
282
+ "internalType": "NftId",
283
+ "name": "policyNftId",
284
+ "type": "uint96"
285
+ },
286
+ {
287
+ "internalType": "StateId",
288
+ "name": "state",
289
+ "type": "uint8"
290
+ }
291
+ ],
292
+ "name": "ErrorPolicyServicePolicyNotActive",
293
+ "type": "error"
294
+ },
295
+ {
296
+ "inputs": [
297
+ {
298
+ "internalType": "NftId",
299
+ "name": "policyNftId",
300
+ "type": "uint96"
301
+ }
302
+ ],
303
+ "name": "ErrorPolicyServicePolicyNotCloseable",
304
+ "type": "error"
305
+ },
306
+ {
307
+ "inputs": [
308
+ {
309
+ "internalType": "NftId",
310
+ "name": "applicationNftId",
311
+ "type": "uint96"
312
+ },
313
+ {
314
+ "internalType": "NftId",
315
+ "name": "expectedProductNftId",
316
+ "type": "uint96"
317
+ },
318
+ {
319
+ "internalType": "NftId",
320
+ "name": "actualProductNftId",
321
+ "type": "uint96"
322
+ }
323
+ ],
324
+ "name": "ErrorPolicyServicePolicyProductMismatch",
325
+ "type": "error"
326
+ },
327
+ {
328
+ "inputs": [
329
+ {
330
+ "internalType": "NftId",
331
+ "name": "applicationNftId",
332
+ "type": "uint96"
333
+ }
334
+ ],
335
+ "name": "ErrorPolicyServicePolicyStateNotApplied",
336
+ "type": "error"
337
+ },
338
+ {
339
+ "inputs": [
340
+ {
341
+ "internalType": "NftId",
342
+ "name": "applicationNftId",
343
+ "type": "uint96"
344
+ }
345
+ ],
346
+ "name": "ErrorPolicyServicePolicyStateNotCollateralized",
347
+ "type": "error"
348
+ },
349
+ {
350
+ "inputs": [
351
+ {
352
+ "internalType": "NftId",
353
+ "name": "policyNftId",
354
+ "type": "uint96"
355
+ }
356
+ ],
357
+ "name": "ErrorPolicyServicePremiumAlreadyPaid",
358
+ "type": "error"
359
+ },
360
+ {
361
+ "inputs": [
362
+ {
363
+ "internalType": "NftId",
364
+ "name": "policyNftId",
365
+ "type": "uint96"
366
+ },
367
+ {
368
+ "internalType": "Amount",
369
+ "name": "expectedPremiumAmount",
370
+ "type": "uint96"
371
+ },
372
+ {
373
+ "internalType": "Amount",
374
+ "name": "recalculatedPremiumAmount",
375
+ "type": "uint96"
376
+ }
377
+ ],
378
+ "name": "ErrorPolicyServicePremiumMismatch",
379
+ "type": "error"
380
+ },
381
+ {
382
+ "inputs": [
383
+ {
384
+ "internalType": "NftId",
385
+ "name": "policyNftId",
386
+ "type": "uint96"
387
+ },
388
+ {
389
+ "internalType": "Amount",
390
+ "name": "premiumAmount",
391
+ "type": "uint96"
392
+ }
393
+ ],
394
+ "name": "ErrorPolicyServicePremiumNotPaid",
395
+ "type": "error"
396
+ },
397
+ {
398
+ "inputs": [
399
+ {
400
+ "internalType": "NftId",
401
+ "name": "policyNftId",
402
+ "type": "uint96"
403
+ },
404
+ {
405
+ "internalType": "Amount",
406
+ "name": "expectedPremiumAmount",
407
+ "type": "uint96"
408
+ },
409
+ {
410
+ "internalType": "Amount",
411
+ "name": "transferredPremiumAmount",
412
+ "type": "uint96"
413
+ }
414
+ ],
415
+ "name": "ErrorPolicyServiceTransferredPremiumMismatch",
416
+ "type": "error"
417
+ },
418
+ {
419
+ "inputs": [],
420
+ "name": "ErrorRegisterableNotActive",
421
+ "type": "error"
422
+ },
423
+ {
424
+ "inputs": [],
425
+ "name": "InvalidInitialization",
426
+ "type": "error"
427
+ },
428
+ {
429
+ "inputs": [],
430
+ "name": "NotInitializing",
431
+ "type": "error"
432
+ },
433
+ {
434
+ "inputs": [],
435
+ "name": "ReentrancyGuardReentrantCall",
436
+ "type": "error"
437
+ },
438
+ {
439
+ "anonymous": false,
440
+ "inputs": [
441
+ {
442
+ "indexed": false,
443
+ "internalType": "address",
444
+ "name": "authority",
445
+ "type": "address"
446
+ }
447
+ ],
448
+ "name": "AuthorityUpdated",
449
+ "type": "event"
450
+ },
451
+ {
452
+ "anonymous": false,
453
+ "inputs": [
454
+ {
455
+ "indexed": false,
456
+ "internalType": "uint64",
457
+ "name": "version",
458
+ "type": "uint64"
459
+ }
460
+ ],
461
+ "name": "Initialized",
462
+ "type": "event"
463
+ },
464
+ {
465
+ "anonymous": false,
466
+ "inputs": [
467
+ {
468
+ "indexed": false,
469
+ "internalType": "NftId",
470
+ "name": "policyNftId",
471
+ "type": "uint96"
472
+ },
473
+ {
474
+ "indexed": false,
475
+ "internalType": "Timestamp",
476
+ "name": "activatedAt",
477
+ "type": "uint40"
478
+ }
479
+ ],
480
+ "name": "LogPolicyServicePolicyActivated",
481
+ "type": "event"
482
+ },
483
+ {
484
+ "anonymous": false,
485
+ "inputs": [
486
+ {
487
+ "indexed": false,
488
+ "internalType": "NftId",
489
+ "name": "policyNftId",
490
+ "type": "uint96"
491
+ },
492
+ {
493
+ "indexed": false,
494
+ "internalType": "Timestamp",
495
+ "name": "activatedAt",
496
+ "type": "uint40"
497
+ }
498
+ ],
499
+ "name": "LogPolicyServicePolicyActivatedUpdated",
500
+ "type": "event"
501
+ },
502
+ {
503
+ "anonymous": false,
504
+ "inputs": [
505
+ {
506
+ "indexed": false,
507
+ "internalType": "NftId",
508
+ "name": "policyNftId",
509
+ "type": "uint96"
510
+ }
511
+ ],
512
+ "name": "LogPolicyServicePolicyClosed",
513
+ "type": "event"
514
+ },
515
+ {
516
+ "anonymous": false,
517
+ "inputs": [
518
+ {
519
+ "indexed": false,
520
+ "internalType": "NftId",
521
+ "name": "policyNftId",
522
+ "type": "uint96"
523
+ },
524
+ {
525
+ "indexed": false,
526
+ "internalType": "Amount",
527
+ "name": "premiumAmount",
528
+ "type": "uint96"
529
+ },
530
+ {
531
+ "indexed": false,
532
+ "internalType": "Timestamp",
533
+ "name": "activatedAt",
534
+ "type": "uint40"
535
+ }
536
+ ],
537
+ "name": "LogPolicyServicePolicyCreated",
538
+ "type": "event"
539
+ },
540
+ {
541
+ "anonymous": false,
542
+ "inputs": [
543
+ {
544
+ "indexed": false,
545
+ "internalType": "NftId",
546
+ "name": "policyNftId",
547
+ "type": "uint96"
548
+ }
549
+ ],
550
+ "name": "LogPolicyServicePolicyDeclined",
551
+ "type": "event"
552
+ },
553
+ {
554
+ "anonymous": false,
555
+ "inputs": [
556
+ {
557
+ "indexed": false,
558
+ "internalType": "NftId",
559
+ "name": "policyNftId",
560
+ "type": "uint96"
561
+ },
562
+ {
563
+ "indexed": false,
564
+ "internalType": "Timestamp",
565
+ "name": "expiredAt",
566
+ "type": "uint40"
567
+ }
568
+ ],
569
+ "name": "LogPolicyServicePolicyExpirationUpdated",
570
+ "type": "event"
571
+ },
572
+ {
573
+ "anonymous": false,
574
+ "inputs": [
575
+ {
576
+ "indexed": false,
577
+ "internalType": "NftId",
578
+ "name": "policyNftId",
579
+ "type": "uint96"
580
+ },
581
+ {
582
+ "indexed": false,
583
+ "internalType": "Amount",
584
+ "name": "premiumAmount",
585
+ "type": "uint96"
586
+ }
587
+ ],
588
+ "name": "LogPolicyServicePolicyPremiumCollected",
589
+ "type": "event"
590
+ },
591
+ {
592
+ "inputs": [],
593
+ "name": "NFT_OWNABLE_STORAGE_LOCATION_V1",
594
+ "outputs": [
595
+ {
596
+ "internalType": "bytes32",
597
+ "name": "",
598
+ "type": "bytes32"
599
+ }
600
+ ],
601
+ "stateMutability": "view",
602
+ "type": "function"
603
+ },
604
+ {
605
+ "inputs": [],
606
+ "name": "REGISTERABLE_LOCATION_V1",
607
+ "outputs": [
608
+ {
609
+ "internalType": "bytes32",
610
+ "name": "",
611
+ "type": "bytes32"
612
+ }
613
+ ],
614
+ "stateMutability": "view",
615
+ "type": "function"
616
+ },
617
+ {
618
+ "inputs": [
619
+ {
620
+ "internalType": "NftId",
621
+ "name": "policyNftId",
622
+ "type": "uint96"
623
+ },
624
+ {
625
+ "internalType": "Timestamp",
626
+ "name": "activateAt",
627
+ "type": "uint40"
628
+ }
629
+ ],
630
+ "name": "activate",
631
+ "outputs": [],
632
+ "stateMutability": "nonpayable",
633
+ "type": "function"
634
+ },
635
+ {
636
+ "inputs": [
637
+ {
638
+ "internalType": "NftId",
639
+ "name": "policyNftId",
640
+ "type": "uint96"
641
+ },
642
+ {
643
+ "internalType": "Timestamp",
644
+ "name": "newActivateAt",
645
+ "type": "uint40"
646
+ }
647
+ ],
648
+ "name": "adjustActivation",
649
+ "outputs": [],
650
+ "stateMutability": "nonpayable",
651
+ "type": "function"
652
+ },
653
+ {
654
+ "inputs": [],
655
+ "name": "authority",
656
+ "outputs": [
657
+ {
658
+ "internalType": "address",
659
+ "name": "",
660
+ "type": "address"
661
+ }
662
+ ],
663
+ "stateMutability": "view",
664
+ "type": "function"
665
+ },
666
+ {
667
+ "inputs": [
668
+ {
669
+ "internalType": "NftId",
670
+ "name": "policyNftId",
671
+ "type": "uint96"
672
+ }
673
+ ],
674
+ "name": "close",
675
+ "outputs": [],
676
+ "stateMutability": "nonpayable",
677
+ "type": "function"
678
+ },
679
+ {
680
+ "inputs": [
681
+ {
682
+ "internalType": "NftId",
683
+ "name": "policyNftId",
684
+ "type": "uint96"
685
+ },
686
+ {
687
+ "internalType": "Timestamp",
688
+ "name": "activateAt",
689
+ "type": "uint40"
690
+ }
691
+ ],
692
+ "name": "collectPremium",
693
+ "outputs": [],
694
+ "stateMutability": "nonpayable",
695
+ "type": "function"
696
+ },
697
+ {
698
+ "inputs": [
699
+ {
700
+ "internalType": "NftId",
701
+ "name": "applicationNftId",
702
+ "type": "uint96"
703
+ },
704
+ {
705
+ "internalType": "Timestamp",
706
+ "name": "activateAt",
707
+ "type": "uint40"
708
+ }
709
+ ],
710
+ "name": "createPolicy",
711
+ "outputs": [
712
+ {
713
+ "internalType": "Amount",
714
+ "name": "premiumAmount",
715
+ "type": "uint96"
716
+ }
717
+ ],
718
+ "stateMutability": "nonpayable",
719
+ "type": "function"
720
+ },
721
+ {
722
+ "inputs": [
723
+ {
724
+ "internalType": "NftId",
725
+ "name": "applicationNftId",
726
+ "type": "uint96"
727
+ }
728
+ ],
729
+ "name": "decline",
730
+ "outputs": [],
731
+ "stateMutability": "nonpayable",
732
+ "type": "function"
733
+ },
734
+ {
735
+ "inputs": [
736
+ {
737
+ "internalType": "NftId",
738
+ "name": "policyNftId",
739
+ "type": "uint96"
740
+ },
741
+ {
742
+ "internalType": "Timestamp",
743
+ "name": "expireAt",
744
+ "type": "uint40"
745
+ }
746
+ ],
747
+ "name": "expire",
748
+ "outputs": [
749
+ {
750
+ "internalType": "Timestamp",
751
+ "name": "expiredAt",
752
+ "type": "uint40"
753
+ }
754
+ ],
755
+ "stateMutability": "nonpayable",
756
+ "type": "function"
757
+ },
758
+ {
759
+ "inputs": [
760
+ {
761
+ "internalType": "contract IInstance",
762
+ "name": "instance",
763
+ "type": "address"
764
+ },
765
+ {
766
+ "internalType": "NftId",
767
+ "name": "policyNftId",
768
+ "type": "uint96"
769
+ },
770
+ {
771
+ "internalType": "Timestamp",
772
+ "name": "expireAt",
773
+ "type": "uint40"
774
+ }
775
+ ],
776
+ "name": "expirePolicy",
777
+ "outputs": [
778
+ {
779
+ "internalType": "Timestamp",
780
+ "name": "expiredAt",
781
+ "type": "uint40"
782
+ }
783
+ ],
784
+ "stateMutability": "nonpayable",
785
+ "type": "function"
786
+ },
787
+ {
788
+ "inputs": [],
789
+ "name": "getDomain",
790
+ "outputs": [
791
+ {
792
+ "internalType": "ObjectType",
793
+ "name": "serviceDomain",
794
+ "type": "uint8"
795
+ }
796
+ ],
797
+ "stateMutability": "pure",
798
+ "type": "function"
799
+ },
800
+ {
801
+ "inputs": [],
802
+ "name": "getInitialInfo",
803
+ "outputs": [
804
+ {
805
+ "components": [
806
+ {
807
+ "internalType": "NftId",
808
+ "name": "nftId",
809
+ "type": "uint96"
810
+ },
811
+ {
812
+ "internalType": "NftId",
813
+ "name": "parentNftId",
814
+ "type": "uint96"
815
+ },
816
+ {
817
+ "internalType": "ObjectType",
818
+ "name": "objectType",
819
+ "type": "uint8"
820
+ },
821
+ {
822
+ "internalType": "bool",
823
+ "name": "isInterceptor",
824
+ "type": "bool"
825
+ },
826
+ {
827
+ "internalType": "address",
828
+ "name": "objectAddress",
829
+ "type": "address"
830
+ },
831
+ {
832
+ "internalType": "address",
833
+ "name": "initialOwner",
834
+ "type": "address"
835
+ },
836
+ {
837
+ "internalType": "bytes",
838
+ "name": "data",
839
+ "type": "bytes"
840
+ }
841
+ ],
842
+ "internalType": "struct IRegistry.ObjectInfo",
843
+ "name": "info",
844
+ "type": "tuple"
845
+ }
846
+ ],
847
+ "stateMutability": "view",
848
+ "type": "function"
849
+ },
850
+ {
851
+ "inputs": [],
852
+ "name": "getNftId",
853
+ "outputs": [
854
+ {
855
+ "internalType": "NftId",
856
+ "name": "",
857
+ "type": "uint96"
858
+ }
859
+ ],
860
+ "stateMutability": "view",
861
+ "type": "function"
862
+ },
863
+ {
864
+ "inputs": [],
865
+ "name": "getOwner",
866
+ "outputs": [
867
+ {
868
+ "internalType": "address",
869
+ "name": "",
870
+ "type": "address"
871
+ }
872
+ ],
873
+ "stateMutability": "view",
874
+ "type": "function"
875
+ },
876
+ {
877
+ "inputs": [],
878
+ "name": "getRegistry",
879
+ "outputs": [
880
+ {
881
+ "internalType": "contract IRegistry",
882
+ "name": "",
883
+ "type": "address"
884
+ }
885
+ ],
886
+ "stateMutability": "view",
887
+ "type": "function"
888
+ },
889
+ {
890
+ "inputs": [],
891
+ "name": "getRelease",
892
+ "outputs": [
893
+ {
894
+ "internalType": "VersionPart",
895
+ "name": "release",
896
+ "type": "uint8"
897
+ }
898
+ ],
899
+ "stateMutability": "view",
900
+ "type": "function"
901
+ },
902
+ {
903
+ "inputs": [],
904
+ "name": "getRoleId",
905
+ "outputs": [
906
+ {
907
+ "internalType": "RoleId",
908
+ "name": "serviceRoleId",
909
+ "type": "uint64"
910
+ }
911
+ ],
912
+ "stateMutability": "view",
913
+ "type": "function"
914
+ },
915
+ {
916
+ "inputs": [],
917
+ "name": "getVersion",
918
+ "outputs": [
919
+ {
920
+ "internalType": "Version",
921
+ "name": "",
922
+ "type": "uint24"
923
+ }
924
+ ],
925
+ "stateMutability": "pure",
926
+ "type": "function"
927
+ },
928
+ {
929
+ "inputs": [
930
+ {
931
+ "internalType": "address",
932
+ "name": "activatedBy",
933
+ "type": "address"
934
+ },
935
+ {
936
+ "internalType": "bytes",
937
+ "name": "data",
938
+ "type": "bytes"
939
+ }
940
+ ],
941
+ "name": "initializeVersionable",
942
+ "outputs": [],
943
+ "stateMutability": "nonpayable",
944
+ "type": "function"
945
+ },
946
+ {
947
+ "inputs": [],
948
+ "name": "isActive",
949
+ "outputs": [
950
+ {
951
+ "internalType": "bool",
952
+ "name": "active",
953
+ "type": "bool"
954
+ }
955
+ ],
956
+ "stateMutability": "view",
957
+ "type": "function"
958
+ },
959
+ {
960
+ "inputs": [],
961
+ "name": "isConsumingScheduledOp",
962
+ "outputs": [
963
+ {
964
+ "internalType": "bytes4",
965
+ "name": "",
966
+ "type": "bytes4"
967
+ }
968
+ ],
969
+ "stateMutability": "view",
970
+ "type": "function"
971
+ },
972
+ {
973
+ "inputs": [],
974
+ "name": "linkToRegisteredNftId",
975
+ "outputs": [
976
+ {
977
+ "internalType": "NftId",
978
+ "name": "nftId",
979
+ "type": "uint96"
980
+ }
981
+ ],
982
+ "stateMutability": "nonpayable",
983
+ "type": "function"
984
+ },
985
+ {
986
+ "inputs": [
987
+ {
988
+ "internalType": "address",
989
+ "name": "newAuthority",
990
+ "type": "address"
991
+ }
992
+ ],
993
+ "name": "setAuthority",
994
+ "outputs": [],
995
+ "stateMutability": "nonpayable",
996
+ "type": "function"
997
+ },
998
+ {
999
+ "inputs": [
1000
+ {
1001
+ "internalType": "bytes4",
1002
+ "name": "interfaceId",
1003
+ "type": "bytes4"
1004
+ }
1005
+ ],
1006
+ "name": "supportsInterface",
1007
+ "outputs": [
1008
+ {
1009
+ "internalType": "bool",
1010
+ "name": "",
1011
+ "type": "bool"
1012
+ }
1013
+ ],
1014
+ "stateMutability": "view",
1015
+ "type": "function"
1016
+ },
1017
+ {
1018
+ "inputs": [
1019
+ {
1020
+ "internalType": "bytes",
1021
+ "name": "data",
1022
+ "type": "bytes"
1023
+ }
1024
+ ],
1025
+ "name": "upgradeVersionable",
1026
+ "outputs": [],
1027
+ "stateMutability": "nonpayable",
1028
+ "type": "function"
1029
+ }
1030
+ ],
1031
+ "bytecode": "0x6080604052348015600e575f80fd5b5060156019565b60c9565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff161560685760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b039081161460c65780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b61613d806100d65f395ff3fe608060405234801561000f575f80fd5b5060043610610187575f3560e01c806376b707b7116100d9578063aa5ae5aa11610093578063bbfbbfba1161006e578063bbfbbfba146103ca578063bc4a1c35146103dd578063bf7e214f146103f0578063d3220051146103f8575f80fd5b8063aa5ae5aa1461039c578063ada9652e146103af578063b68d1809146103c3575f80fd5b806376b707b71461030a5780637a9e5e4b146103245780637baa9a0b14610337578063893d20e8146103605780638fb36037146103685780639ffcede914610389575f80fd5b806322f3e2d4116101445780634d5e16a91161011f5780634d5e16a9146102955780635ab1bd53146102a8578063644c45e0146102cd5780636c741e78146102ea575f80fd5b806322f3e2d414610267578063329d6e741461026f57806349bb9e4b14610282575f80fd5b806301ffc9a71461018b5780630aaba8e8146101cc5780630d8e6e2c146101e15780630fec111c146101fd578063138461e0146102125780631eff4b2214610232575b5f80fd5b6101b7610199366004614bd3565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6101df6101da366004614c0e565b61040b565b005b6101e9610a08565b60405162ffffff90911681526020016101c3565b610205610a8f565b6040516101c39190614c57565b61021a610c49565b6040516001600160601b0390911681526020016101c3565b6102597f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b6040519081526020016101c3565b6101b7610c53565b6101df61027d366004614e52565b610cca565b6101df610290366004614e97565b610e14565b6101df6102a3366004614ef5565b610f10565b6001546001600160a01b03165b6040516001600160a01b0390911681526020016101c3565b5f80516020616088833981519152546001600160601b031661021a565b6102f261106b565b6040516001600160401b0390911681526020016101c3565b6103126110f7565b60405160ff90911681526020016101c3565b6101df610332366004614f2c565b61115f565b61034a610345366004614ef5565b6111e1565b60405164ffffffffff90911681526020016101c3565b6102b561122f565b610370611360565b6040516001600160e01b031990911681526020016101c3565b6101df610397366004614c0e565b611395565b61021a6103aa366004614ef5565b6115da565b6102595f8051602061608883398151915281565b6015610312565b6101df6103d8366004614ef5565b611e21565b61034a6103eb366004614f47565b6124cd565b6102b56125ec565b6101df610406366004614ef5565b612607565b610417335b5f36612969565b61041f612a67565b5f805f61042b84612a9e565b9250925092505f836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa15801561046e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104929190614f8f565b604051637017c97760e11b815290915073__$d4f8ac2ac7f53dfb2fb9ff92adbd6d29df$__9063e02f92ee906104ce9084908990600401614faa565b602060405180830381865af41580156104e9573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061050d9190614fe0565b61053a5760405163b6e77a0960e01b81526001600160601b03861660048201526024015b60405180910390fd5b606082015160208301516040516309c5844f60e01b81526001600160601b03881660048201526105c6906001600160a01b038516906309c5844f90602401602060405180830381865afa158015610593573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105b79190615012565b60dc5b60ff9081169116141590565b156105fd5760a0840151604051635567446960e11b81526001600160601b03808a1660048301529091166024820152604401610531565b600554604051633525dbdf60e11b81526001600160a01b0390911690636a4bb7be906106319089908b9089906004016151d8565b5f604051808303815f87803b158015610648575f80fd5b505af115801561065a573d5f803e3d5ffd5b5050505073__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af41580156106a5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106c9919061521e565b64ffffffffff166101e085015260408051631a99b41b60e31b815290516001600160a01b0388169163d4cda0d89160048083019260209291908290030181865afa158015610719573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061073d9190614f8f565b6001600160a01b031663425d08e2888660c86040518463ffffffff1660e01b815260040161076d93929190615239565b5f604051808303815f87803b158015610784575f80fd5b505af1158015610796573d5f803e3d5ffd5b505050505f6107ad6001546001600160a01b031690565b60405163677d3feb60e11b81526001600160601b03841660048201526001600160a01b03919091169063cefa7fd690602401602060405180830381865afa1580156107fa573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061081e9190615278565b9050866001600160a01b0316630e0c586d6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561085c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108809190614f8f565b6001600160a01b031663903a264b87858b6040518463ffffffff1660e01b81526004016108af93929190615293565b5f604051808303815f87803b1580156108c6575f80fd5b505af11580156108d8573d5f803e3d5ffd5b50505050866001600160a01b0316636dddada46040518163ffffffff1660e01b8152600401602060405180830381865afa158015610918573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061093c9190614f8f565b60405163752723bf60e11b81526001600160601b03808416600483015280851660248301528a1660448201526001600160a01b03919091169063ea4e477e906064015f604051808303815f87803b158015610995575f80fd5b505af11580156109a7573d5f803e3d5ffd5b50506040516001600160601b038b1681527f549ae8b6fdcdbc1ee634d00b432905175415ba23ee737dac1d99b6ef540afc719250602001905060405180910390a150505050505050610a0560015f805160206160c883398151915255565b50565b604051632efe011360e01b8152600360048201525f60248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af4158015610a66573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a8a91906152c0565b905090565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820152907f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610b3b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b5f9190615278565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a001610ba761122f565b6001600160a01b03168152602001826001018054610bc4906152e2565b80601f0160208091040260200160405190810160405280929190818152602001828054610bf0906152e2565b8015610c3b5780601f10610c1257610100808354040283529160200191610c3b565b820191905f5260205f20905b815481529060010190602001808311610c1e57829003601f168201915b505050505081525091505090565b5f610a8a30612ca0565b5f610c5c6125ec565b60405163a166aa8960e01b81523060048201526001600160a01b03919091169063a166aa8990602401602060405180830381865afa158015610ca0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cc49190614fe0565b15905090565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c610cec610a08565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015610d2a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d4e9190615328565b5f805160206160e88339815191528054600160401b900460ff1680610d80575080546001600160401b03808416911610155b15610d9e5760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155610dc883612e99565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b5f805160206160e88339815191528054600160401b810460ff1615906001600160401b03165f81158015610e455750825b90505f826001600160401b03166001148015610e605750303b155b905081158015610e6e575080155b15610e8c5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610eb657845460ff60401b1916600160401b1785555b610ec08787612ea1565b8315610f0757845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15b50505050505050565b610f1933610410565b610f21612a67565b5f80610f2c84612a9e565b9250509150610f3c848285613349565b9050816001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f7a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f9e9190614f8f565b6001600160a01b031663425d08e2858360ff6040518463ffffffff1660e01b8152600401610fce93929190615239565b5f604051808303815f87803b158015610fe5575f80fd5b505af1158015610ff7573d5f803e3d5ffd5b5050604080516001600160601b038816815264ffffffffff871660208201527f0fb266de81849f168e7cbd8db91f5efc1e79dd85e672e18e6fdb84e86c42cc6c93500190505b60405180910390a161104f84846134d8565b505061106760015f805160206160c883398151915255565b5050565b5f73__$1d92393fa9ccd763988368ce8a1cb90d26$__63dda777d360156110906110f7565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865af41580156110d3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a8a9190615328565b5f6111006125ec565b6001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa15801561113b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a8a9190615012565b336111686125ec565b6001600160a01b0316816001600160a01b0316146111a35760405162d1953b60e31b81526001600160a01b0382166004820152602401610531565b816001600160a01b03163b5f036111d8576040516361798f2f60e11b81526001600160a01b0383166004820152602401610531565b611067826135e0565b5f6111eb33610410565b6111f3612a67565b5f806111fe85612a9e565b925050915061120f82868387613640565b9250505061122960015f805160206160c883398151915255565b92915050565b5f805f8051602061608883398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af415801561129b573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112bf9190614fe0565b1561134a576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611320573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113449190614f8f565b91505090565b54600160601b90046001600160a01b0316919050565b5f805160206160a883398151915280545f9190600160a01b900460ff16611387575f611344565b638fb3603760e01b91505090565b61139e33610410565b6113a6612a67565b5f6113b082612a9e565b50509050611490816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156113f3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114179190614f8f565b604051639096a1f360e01b81526001600160601b03851660048201526001600160a01b039190911690639096a1f3906024015b602060405180830381865afa158015611465573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114899190615012565b600a6105ba565b156114b957604051631130ddad60e21b81526001600160601b0383166004820152602401610531565b806001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156114f5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115199190614f8f565b6001600160a01b0316635d4345cc83601e6040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff1660248201526044015f604051808303815f87803b158015611570575f80fd5b505af1158015611582573d5f803e3d5ffd5b50506040516001600160601b03851681527fa9d1c49a019bf7dc62cfada9540cd302c4fc54f6ed05d99b581074ed70441fae9250602001905060405180910390a150610a0560015f805160206160c883398151915255565b5f6115e433610410565b6115ec612a67565b5f805f6115f886612a9e565b9250925092505f836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa15801561163b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061165f9190614f8f565b604051639096a1f360e01b81526001600160601b038916600482015290915061169b906001600160a01b03831690639096a1f39060240161144a565b156116c457604051631130ddad60e21b81526001600160601b0388166004820152602401610531565b60055460405163037efc5960e61b81526001600160601b03851660048201526001600160a01b03918216916384d1f7cf91879185169063dfbf164090602401602060405180830381865afa15801561171e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117429190614f8f565b6020860151608087015160405160e086901b6001600160e01b03191681526001600160a01b0394851660048201529390921660248401526001600160601b038089166044850152808d16606485015290811660848401521660a482015260c40160408051808303815f875af11580156117bd573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117e1919061534e565b5050604051638d38cd4b60e01b815264ffffffffff8716600482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__90638d38cd4b90602401602060405180830381865af4158015611837573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061185b9190614fe0565b1561186e5761186b878388613349565b91505b836001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156118aa573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118ce9190614f8f565b6001600160a01b031663425d08e2888460286040518463ffffffff1660e01b81526004016118fe93929190615239565b5f604051808303815f87803b158015611915575f80fd5b505af1158015611927573d5f803e3d5ffd5b5050505060608201516020830151600654608085015160c086015160e08701516040808901519051637a5ff29d60e11b81525f956001600160a01b03169463f4bfe53a9461197e948d948b948b919060040161537b565b61024060405180830381865afa15801561199a573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119be91906153f8565b905080608001519750866001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a03573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a279190614f8f565b6001600160a01b0316634d4a7ae98b836040518363ffffffff1660e01b8152600401611a54929190615745565b5f604051808303815f87803b158015611a6b575f80fd5b505af1158015611a7d573d5f803e3d5ffd5b50506040516302d764c760e21b81526001600160601b03891660048201525f92506001600160a01b0387169150630b5d931c906024015f60405180830381865afa158015611acd573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052611af491908101906157eb565b9050806040015115611b7f576004805460c0830151604089810151905163038f0f2560e11b81526001600160601b03909216938201939093526001600160c01b031990921660248301526001600160a01b03169063071e1e4a906044015f604051808303815f87803b158015611b68575f80fd5b505af1158015611b7a573d5f803e3d5ffd5b505050505b505f611b936001546001600160a01b031690565b60405163677d3feb60e11b81526001600160601b03851660048201526001600160a01b03919091169063cefa7fd690602401602060405180830381865afa158015611be0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c049190615278565b9050876001600160a01b0316630e0c586d6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c42573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c669190614f8f565b6001600160a01b0316639ad7533f88868e6040518463ffffffff1660e01b8152600401611c9593929190615293565b5f604051808303815f87803b158015611cac575f80fd5b505af1158015611cbe573d5f803e3d5ffd5b50505050876001600160a01b0316636dddada46040518163ffffffff1660e01b8152600401602060405180830381865afa158015611cfe573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d229190614f8f565b6040516001622c076960e21b031981526001600160601b03808416600483015280861660248301528d1660448201526001600160a01b03919091169063ff4fe25c906064015f604051808303815f87803b158015611d7e575f80fd5b505af1158015611d90573d5f803e3d5ffd5b505050507f2e8d9b075b0da8e4e0de386a81c149b1f6fb08eb063859bb0802de4d3261249b8b8360a001518c604051611df1939291906001600160601b03938416815291909216602082015264ffffffffff91909116604082015260600190565b60405180910390a1611e038b8b6134d8565b505050505050505061122960015f805160206160c883398151915255565b611e2a33610410565b611e32612a67565b5f805f611e3e85612a9e565b9250925092505f836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e81573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ea59190614f8f565b604051639096a1f360e01b81526001600160601b0388166004820152909150611f22906001600160a01b03831690639096a1f390602401602060405180830381865afa158015611ef7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f1b9190615012565b60286105ba565b15611f4b5760405163904913a960e01b81526001600160601b0387166004820152602401610531565b6040516309c5844f60e01b81526001600160601b0387166004820152611fc7906001600160a01b038316906309c5844f90602401602060405180830381865afa158015611f9a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611fbe9190615012565b60ff1660dc1490565b15611ff057604051635b7a826360e01b81526001600160601b0387166004820152602401610531565b60405163e444c3df60e01b81526001600160601b03871660048201525f906001600160a01b0383169063e444c3df9060240161024060405180830381865afa15801561203e573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061206291906153f8565b60405163a310e2a360e01b81526001600160601b03861660048201529091506001600160a01b0383169063a310e2a390602401602060405180830381865afa1580156120b0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120d49190614f8f565b6001600160a01b031663f14ac2b96120f46001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b038b1660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015612141573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121659190614f8f565b60a08401516040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526001600160601b031660248201525f60448201526064015f6040518083038186803b1580156121bb575f80fd5b505afa1580156121cd573d5f803e3d5ffd5b5050505061224682866001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015612211573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122359190614f8f565b8686602001518760400151866139ae565b604051638d38cd4b60e01b815264ffffffffff8716600482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__90638d38cd4b90602401602060405180830381865af415801561229a573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122be9190614fe0565b156122d1576122ce878488613349565b92505b846001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa15801561230d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123319190614f8f565b6001600160a01b031663425d08e2888560ff6040518463ffffffff1660e01b815260040161236193929190615239565b5f604051808303815f87803b158015612378575f80fd5b505af115801561238a573d5f803e3d5ffd5b50505050846001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156123ca573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123ee9190614f8f565b6001600160a01b0316632ae5819d8860dc6040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff1660248201526044015f604051808303815f87803b158015612445575f80fd5b505af1158015612457573d5f803e3d5ffd5b50505060a0820151604080516001600160601b03808c16825290921660208301527ea0c8fe3b5b724e2059f6961117d71cb0d74006490b63aa1e51f89d050e1b3b92500160405180910390a16124b28288855f015184613ba7565b505050505061106760015f805160206160c883398151915255565b5f6124d733610410565b6124df612a67565b6124ea836015613ee9565b5f846001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015612527573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061254b9190614f8f565b60405163bd7d9d8560e01b81526001600160601b03861660048201526001600160a01b03919091169063bd7d9d85906024015f60405180830381865afa158015612597573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526125be9190810190615949565b90506125cc85858386613640565b9150506125e560015f805160206160c883398151915255565b9392505050565b5f805160206160a8833981519152546001600160a01b031690565b61261033610410565b612618612a67565b5f8061262384612a9e565b6101a081015160405163790a38ad60e01b815264ffffffffff9091166004820152929450925073__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9163790a38ad9150602401602060405180830381865af4158015612684573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126a89190614fe0565b156126d15760405163358702ab60e11b81526001600160601b0385166004820152602401610531565b61274f8373__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af415801561271c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612740919061521e565b64ffffffffff90811691161090565b156127f9578373__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af415801561279c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127c0919061521e565b604051620ee96f60ec1b81526001600160601b03909216600483015264ffffffffff908116602483015284166044820152606401610531565b6101c081015164ffffffffff9081169084161115612851576101c081015160405163b3be080560e01b81526001600160601b038616600482015264ffffffffff91821660248201529084166044820152606401610531565b64ffffffffff83166101a082015260408051631a99b41b60e31b815290516001600160a01b0384169163d4cda0d89160048083019260209291908290030181865afa1580156128a2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128c69190614f8f565b6001600160a01b031663425d08e2858360ff6040518463ffffffff1660e01b81526004016128f693929190615239565b5f604051808303815f87803b15801561290d575f80fd5b505af115801561291f573d5f803e3d5ffd5b5050604080516001600160601b038816815264ffffffffff871660208201527f984dda4d8ee0bb327632ff3d6032e400bd617a855444711be74d56cb26ed66b7935001905061103d565b5f805160206160a88339815191525f806129a16129846125ec565b873061299360045f8a8c615adc565b61299c91615b03565b614020565b9150915081612a5f5763ffffffff811615612a3c57825460ff60a01b1916600160a01b1783556129cf6125ec565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b81526004016129fe93929190615b3b565b5f604051808303815f87803b158015612a15575f80fd5b505af1158015612a27573d5f803e3d5ffd5b5050845460ff60a01b1916855550612a5f9050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401610531565b505050505050565b5f805160206160c8833981519152805460011901612a9857604051633ee5aeb560e01b815260040160405180910390fd5b60029055565b5f80612aa8614b51565b5f8073__$fb599632d08395912d9d70eb2f0f93b5e2$__635c990ed3612ad66001546001600160a01b031690565b33600c6040516001600160e01b031960e086901b1681526001600160a01b03938416600482015292909116602483015260ff166044820152600160648201526084015f60405180830381865af4158015612b32573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612b599190810190615b7a565b91509150815f01519350809450846001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015612ba2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612bc69190614f8f565b60405163bd7d9d8560e01b81526001600160601b03881660048201526001600160a01b03919091169063bd7d9d85906024015f60405180830381865afa158015612c12573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612c399190810190615949565b9250612c48835f015185614128565b15612c84578251604051631a06208360e01b81526001600160601b03808916600483015280871660248301529091166044820152606401610531565b50509193909250565b60015f805160206160c883398151915255565b5f805f8051602061608883398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015612d0c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612d309190614fe0565b15612d5c5780546040516301ab8b6760e21b81526001600160601b039091166004820152602401610531565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa158015612dae573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612dd29190614fe0565b612dfa5760405163b9304b0d60e01b81526001600160a01b0384166004820152602401610531565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b0385811660048301529190911690635e546bee90602401602060405180830381865afa158015612e4c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612e709190615278565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b6101876141ac565b5f805160206160e88339815191528054600160401b810460ff1615906001600160401b03165f81158015612ed25750825b90505f826001600160401b03166001148015612eed5750303b155b905081158015612efb575080155b15612f195760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315612f4357845460ff60401b1916600160401b1785555b5f8087806020019051810190612f599190615c5c565b91509150612f6882828b6141e4565b5f612f71610a08565b60405163c9e66e2960e01b815262ffffff909116600482015273__$8eede297b65ed5a56eb3f84d8232ae93f5$__9063c9e66e2990602401602060405180830381865af4158015612fc4573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612fe89190615012565b9050612ffc6001546001600160a01b031690565b6001600160a01b031663d39e604360286040516001600160e01b031960e084901b16815260ff91821660048201529084166024820152604401602060405180830381865afa158015613050573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906130749190614f8f565b600280546001600160a01b0319166001600160a01b03928316179055600154166001600160a01b031663d39e6043600b6040516001600160e01b031960e084901b16815260ff91821660048201529084166024820152604401602060405180830381865afa1580156130e8573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061310c9190614f8f565b600380546001600160a01b0319166001600160a01b03928316179055600154166001600160a01b031663d39e6043600f6040516001600160e01b031960e084901b16815260ff91821660048201529084166024820152604401602060405180830381865afa158015613180573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906131a49190614f8f565b600580546001600160a01b0319166001600160a01b03928316179055600154166001600160a01b031663d39e6043600e6040516001600160e01b031960e084901b16815260ff91821660048201529084166024820152604401602060405180830381865afa158015613218573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061323c9190614f8f565b600480546001600160a01b0319166001600160a01b03928316179055600154166001600160a01b031663d39e6043602a6040516001600160e01b031960e084901b16815260ff91821660048201529084166024820152604401602060405180830381865afa1580156132b0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906132d49190614f8f565b600680546001600160a01b0319166001600160a01b039290921691909117905561330463dd6a8fd760e01b61427d565b5050508315610f0757845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001610efe565b613351614b51565b6101a083015160405163790a38ad60e01b815264ffffffffff909116600482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9063790a38ad90602401602060405180830381865af41580156133ac573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906133d09190614fe0565b1580156133ec57506101a083015164ffffffffff808416911614155b156134155760405163f95747d360e01b81526001600160601b0385166004820152602401610531565b6101a083015164ffffffffff8381169116036134325750816125e5565b64ffffffffff8281166101a0850181905260c08501516040516352bcc5a760e11b81526004810192909252909116602482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9063a5798b4e90604401602060405180830381865af415801561349f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906134c3919061521e565b64ffffffffff166101c0840152509092915050565b60405163790a38ad60e01b815264ffffffffff8216600482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9063790a38ad90602401602060405180830381865af415801561352c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906135509190614fe0565b15613559575050565b5f613563836142ad565b90506001600160a01b038116156135db57604051630be6b84560e21b81526001600160601b038416600482015264ffffffffff831660248201526001600160a01b03821690632f9ae114906044015b5f604051808303815f87803b1580156135c9575f80fd5b505af1158015610f07573d5f803e3d5ffd5b505050565b5f805160206160a883398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b5f73__$d4f8ac2ac7f53dfb2fb9ff92adbd6d29df$__63fb77bafc8386886001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015613699573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906136bd9190614f8f565b604051639096a1f360e01b81526001600160601b038a1660048201526001600160a01b039190911690639096a1f390602401602060405180830381865afa15801561370a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061372e9190615012565b876040518563ffffffff1660e01b815260040161374e9493929190615c89565b5f6040518083038186803b158015613764575f80fd5b505af4158015613776573d5f803e3d5ffd5b5050604051638d38cd4b60e01b815264ffffffffff8516600482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9250638d38cd4b9150602401602060405180830381865af41580156137ce573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906137f29190614fe0565b1561380a5764ffffffffff82166101c0840152613883565b73__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015613851573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613875919061521e565b64ffffffffff166101c08401525b846001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156138bf573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906138e39190614f8f565b6001600160a01b031663425d08e2858560ff6040518463ffffffff1660e01b815260040161391393929190615239565b5f604051808303815f87803b15801561392a575f80fd5b505af115801561393c573d5f803e3d5ffd5b5050506101c0840151604080516001600160601b038816815264ffffffffff90921660208301527f78c7b2401beaecd3c89e9a37210cba72e9f33e125194b23cb6c42a6d07c4fe1492500160405180910390a161399e84846101c001516143c0565b506101c08201515b949350505050565b5f6139b9878661449e565b505050905060025f9054906101000a90046001600160a01b03166001600160a01b03166367438c5087876139f68661014001518760c001516147c2565b6040516001600160e01b031960e086901b1681526001600160a01b0390931660048401526001600160601b0391821660248401521660448201526064015f604051808303815f87803b158015613a4a575f80fd5b505af1158015613a5c573d5f803e3d5ffd5b5050604051630a4d29dd60e31b81526001600160601b038416600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__92506352694ee89150602401602060405180830381865af4158015613ab6573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613ada9190614fe0565b613b3f5760048054604051633ca8687160e11b81526001600160a01b0390911691637950d0e291613b119185918891889101615e2f565b5f604051808303815f87803b158015613b28575f80fd5b505af1158015613b3a573d5f803e3d5ffd5b505050505b60055460405163fb3bcd1f60e01b81526001600160a01b039091169063fb3bcd1f90613b719087908690600401615745565b5f604051808303815f87803b158015613b88575f80fd5b505af1158015613b9a573d5f803e3d5ffd5b5050505050505050505050565b5f613bba6001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03861660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015613c07573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613c2b9190614f8f565b90505f805f613c3a888761449e565b60405163a310e2a360e01b81526001600160601b038b16600482015292965090945092505f91506001600160a01b038a169063a310e2a390602401602060405180830381865afa158015613c90573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613cb49190614f8f565b60a0870151604051630f3f86bd60e31b81529192506001600160a01b038316916379fc35e891613ce991899190600401614faa565b5f604051808303815f87803b158015613d00575f80fd5b505af1158015613d12573d5f803e3d5ffd5b5050505060208601516040516330b8415f60e01b81526001600160601b03909116600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af4158015613d72573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613d969190614fe0565b15613dfa5760208601516040516333f6af9b60e11b81526001600160a01b038316916367ed5f3691613dcc918891600401614faa565b5f604051808303815f87803b158015613de3575f80fd5b505af1158015613df5573d5f803e3d5ffd5b505050505b60408681015190516330b8415f60e01b81526001600160601b03909116600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af4158015613e56573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613e7a9190614fe0565b15613ede5760408087015190516333f6af9b60e11b81526001600160a01b038316916367ed5f3691613eb0918791600401614faa565b5f604051808303815f87803b158015613ec7575f80fd5b505af1158015613ed9573d5f803e3d5ffd5b505050505b505050505050505050565b60405163b2466acf60e01b815260ff8216600482015273__$0d958e68cba84670b8f4a3f2f2686b1c6b$__9063b2466acf90602401602060405180830381865af4158015613f39573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613f5d9190614fe0565b613f6957613f69615e5d565b6001546001600160a01b0316604051635b12715d60e11b81526001600160601b038416600482015260ff831660248201526001600160a01b03919091169063b624e2ba90604401602060405180830381865afa158015613fcb573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613fef9190614fe0565b6110675760405163d711af7560e01b81526001600160601b038316600482015260ff82166024820152604401610531565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b1790525161408e9190615e71565b5f60405180830381855afa9150503d805f81146140c6576040519150601f19603f3d011682016040523d82523d5f602084013e6140cb565b606091505b5091509150811561411d5760408151106140fd57808060200190518101906140f39190615e87565b909450925061411d565b602081511061411d578080602001905181019061411a9190614fe0565b93505b505094509492505050565b6040516399009c5160e01b81526001600160601b038084166004830152821660248201525f9073__$94a2c899be079b00d952d0d84fffaa5c34$__906399009c5190604401602060405180830381865af4158015614188573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906125e59190614fe0565b5f805160206160e883398151915254600160401b900460ff166141e257604051631afcd79f60e31b815260040160405180910390fd5b565b6141ec6141ac565b6141f4614846565b6142718383846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015614235573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906142599190615278565b60085f8660405180602001604052805f815250614856565b6135db63daf9067160e01b5b6142856141ac565b610a05816001600160e01b0319165f908152602081905260409020805460ff19166001179055565b5f806142c16001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03851660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa15801561430e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906143329190614f8f565b604051635b5dd68960e11b81526001600160a01b038216600482015290925082915073__$fb599632d08395912d9d70eb2f0f93b5e2$__9063b6bbad1290602401602060405180830381865af415801561438e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906143b29190614fe0565b6143ba575f91505b50919050565b60405163790a38ad60e01b815264ffffffffff8216600482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9063790a38ad90602401602060405180830381865af4158015614414573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906144389190614fe0565b15614441575050565b5f61444b836142ad565b90506001600160a01b038116156135db576040516362782d9f60e01b81526001600160601b038416600482015264ffffffffff831660248201526001600160a01b038216906362782d9f906044016135b2565b6040516302d764c760e21b81526001600160601b03821660048201525f9081908190819081906001600160a01b03881690630b5d931c906024015f60405180830381865afa1580156144f2573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261451991908101906157eb565b60405163f0ea17c360e01b81526001600160601b03881660048201529091506001600160a01b0388169063f0ea17c3906024015f60405180830381865afa158015614566573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261458d9190810190615eb9565b604001516001600160a01b031663132996046040518163ffffffff1660e01b8152600401602060405180830381865afa1580156145cc573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906145f09190614f8f565b60a082015160405163f0ea17c360e01b81526001600160601b0390911660048201529092506001600160a01b0388169063f0ea17c3906024015f60405180830381865afa158015614643573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261466a9190810190615eb9565b604001516001600160a01b031663132996046040518163ffffffff1660e01b8152600401602060405180830381865afa1580156146a9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906146cd9190614f8f565b92508060400151156147b85760c081015160405163f0ea17c360e01b81526001600160601b03821660048201529095506001600160a01b0388169063f0ea17c3906024015f60405180830381865afa15801561472b573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526147529190810190615eb9565b604001516001600160a01b031663132996046040518163ffffffff1660e01b8152600401602060405180830381865afa158015614791573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906147b59190614f8f565b93505b5092959194509250565b60405163274acb3560e01b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063274acb3590604401602060405180830381865af4158015614822573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906125e59190615278565b61484e6141ac565b6141e261499d565b61485e6141ac565b604051632330f24760e01b81526001600160a01b038816600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90632330f24790602401602060405180830381865af41580156148b4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906148d89190614fe0565b6149005760405163cf6935e560e01b81526001600160a01b0388166004820152602401610531565b614909876149a5565b61491386836149b6565b5f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b861515021781559050600181016149828382615fcd565b50614993634a531f3360e01b61427d565b5050505050505050565b612c8d6141ac565b6149ad6141ac565b610a0581614a2c565b6149be6141ac565b6149c6614a3d565b6149cf82614a85565b6001600160a01b0381166149f65760405163f17ef42d60e01b815260040160405180910390fd5b5f8051602061608883398151915280546001600160601b0316600160601b6001600160a01b039093169290920291909117905550565b614a346141ac565b610a05816135e0565b614a456141ac565b6141e26301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b614a8d6141ac565b604051633334d16b60e01b81526001600160a01b038216600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90633334d16b90602401602060405180830381865af4158015614ae3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190614b079190614fe0565b614b2f5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610531565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b60408051610200810182525f8082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820183905260e0820181905261010082015261012081018290526101408101829052610160810182905261018081018290526101a081018290526101c081018290526101e081019190915290565b5f60208284031215614be3575f80fd5b81356001600160e01b0319811681146125e5575f80fd5b6001600160601b0381168114610a05575f80fd5b5f60208284031215614c1e575f80fd5b81356125e581614bfa565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f6060830151614c9f608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e0808401526139a6610100840182614c29565b634e487b7160e01b5f52604160045260245ffd5b60405161024081016001600160401b0381118282101715614d1a57614d1a614ce3565b60405290565b60405161010081016001600160401b0381118282101715614d1a57614d1a614ce3565b60405161020081016001600160401b0381118282101715614d1a57614d1a614ce3565b60405160e081016001600160401b0381118282101715614d1a57614d1a614ce3565b604051608081016001600160401b0381118282101715614d1a57614d1a614ce3565b604051601f8201601f191681016001600160401b0381118282101715614dd257614dd2614ce3565b604052919050565b5f6001600160401b03821115614df257614df2614ce3565b50601f01601f191660200190565b5f82601f830112614e0f575f80fd5b8135614e22614e1d82614dda565b614daa565b818152846020838601011115614e36575f80fd5b816020850160208301375f918101602001919091529392505050565b5f60208284031215614e62575f80fd5b81356001600160401b03811115614e77575f80fd5b6139a684828501614e00565b6001600160a01b0381168114610a05575f80fd5b5f8060408385031215614ea8575f80fd5b8235614eb381614e83565b915060208301356001600160401b03811115614ecd575f80fd5b614ed985828601614e00565b9150509250929050565b64ffffffffff81168114610a05575f80fd5b5f8060408385031215614f06575f80fd5b8235614f1181614bfa565b91506020830135614f2181614ee3565b809150509250929050565b5f60208284031215614f3c575f80fd5b81356125e581614e83565b5f805f60608486031215614f59575f80fd5b8335614f6481614e83565b92506020840135614f7481614bfa565b91506040840135614f8481614ee3565b809150509250925092565b5f60208284031215614f9f575f80fd5b81516125e581614e83565b6001600160a01b039290921682526001600160601b0316602082015260400190565b80518015158114614fdb575f80fd5b919050565b5f60208284031215614ff0575f80fd5b6125e582614fcc565b60ff81168114610a05575f80fd5b8051614fdb81614ff9565b5f60208284031215615022575f80fd5b81516125e581614ff9565b80516001600160601b031682525f602082015161505560208501826001600160601b03169052565b50604082015161507160408501826001600160c01b0319169052565b50606082015161508d60608501826001600160c01b0319169052565b5060808201516150a860808501826001600160601b03169052565b5060a08201516150c360a08501826001600160601b03169052565b5060c08201516150dc60c085018264ffffffffff169052565b5060e082015161020060e08501526150f8610200850182614c29565b90506101008301518482036101008601526151138282614c29565b91505061012083015161512d61012086018261ffff169052565b5061014083015161514561014086018261ffff169052565b506101608301516151626101608601826001600160601b03169052565b5061018083015161517f6101808601826001600160601b03169052565b506101a083015161519a6101a086018264ffffffffff169052565b506101c08301516151b56101c086018264ffffffffff169052565b506101e08301516151d06101e086018264ffffffffff169052565b509392505050565b6001600160a01b03841681526001600160601b03831660208201526060604082018190525f9061520a9083018461502d565b95945050505050565b8051614fdb81614ee3565b5f6020828403121561522e575f80fd5b81516125e581614ee3565b6001600160601b0384168152606060208201525f61525a606083018561502d565b905060ff83166040830152949350505050565b8051614fdb81614bfa565b5f60208284031215615288575f80fd5b81516125e581614bfa565b6001600160601b0393841681526001600160c01b0319929092166020830152909116604082015260600190565b5f602082840312156152d0575f80fd5b815162ffffff811681146125e5575f80fd5b600181811c908216806152f657607f821691505b6020821081036143ba57634e487b7160e01b5f52602260045260245ffd5b6001600160401b0381168114610a05575f80fd5b5f60208284031215615338575f80fd5b81516125e581615314565b8051614fdb81614e83565b5f806040838503121561535f575f80fd5b825161536a81614bfa565b6020840151909250614f2181614bfa565b6001600160601b03881681526001600160401b0360c01b871660208201526001600160601b038616604082015264ffffffffff8516606082015260e060808201525f6153ca60e0830186614c29565b6001600160601b039490941660a0830152506001600160c01b03199190911660c09091015295945050505050565b5f61024082840312801561540a575f80fd5b50615413614cf7565b61541c8361526d565b815261542a6020840161526d565b602082015261543b6040840161526d565b604082015261544c6060840161526d565b606082015261545d6080840161526d565b608082015261546e60a0840161526d565b60a082015261547f60c0840161526d565b60c082015261549060e0840161526d565b60e08201526154a2610100840161526d565b6101008201526154b5610120840161526d565b6101208201526154c8610140840161526d565b6101408201526154db610160840161526d565b6101608201526154ee610180840161526d565b6101808201526155016101a0840161526d565b6101a08201526155146101c0840161526d565b6101c08201526155276101e0840161526d565b6101e082015261553a610200840161526d565b61020082015261554d610220840161526d565b6102208201529392505050565b80516001600160601b03168252602081015161558160208401826001600160601b03169052565b50604081015161559c60408401826001600160601b03169052565b5060608101516155b760608401826001600160601b03169052565b5060808101516155d260808401826001600160601b03169052565b5060a08101516155ed60a08401826001600160601b03169052565b5060c081015161560860c08401826001600160601b03169052565b5060e081015161562360e08401826001600160601b03169052565b506101008101516156406101008401826001600160601b03169052565b5061012081015161565d6101208401826001600160601b03169052565b5061014081015161567a6101408401826001600160601b03169052565b506101608101516156976101608401826001600160601b03169052565b506101808101516156b46101808401826001600160601b03169052565b506101a08101516156d16101a08401826001600160601b03169052565b506101c08101516156ee6101c08401826001600160601b03169052565b506101e081015161570b6101e08401826001600160601b03169052565b506102008101516157286102008401826001600160601b03169052565b506102208101516135db6102208401826001600160601b03169052565b6001600160601b038316815261026081016125e5602083018461555a565b5f82601f830112615772575f80fd5b81516001600160401b0381111561578b5761578b614ce3565b8060051b61579b60208201614daa565b918252602081850181019290810190868411156157b6575f80fd5b6020860192505b838310156157e15782516157d081614bfa565b8252602092830192909101906157bd565b9695505050505050565b5f602082840312156157fb575f80fd5b81516001600160401b03811115615810575f80fd5b82016101008185031215615822575f80fd5b61582a614d20565b61583382614fcc565b815261584160208301614fcc565b602082015261585260408301614fcc565b604082015261586360608301615007565b606082015261587460808301615007565b608082015261588560a0830161526d565b60a082015261589660c0830161526d565b60c082015260e08201516001600160401b038111156158b3575f80fd5b6158bf86828501615763565b60e083015250949350505050565b80516001600160c01b031981168114614fdb575f80fd5b5f6158f1614e1d84614dda565b9050828152838383011115615904575f80fd5b8282602083015e5f602084830101529392505050565b5f82601f830112615929575f80fd5b6125e5838351602085016158e4565b805161ffff81168114614fdb575f80fd5b5f60208284031215615959575f80fd5b81516001600160401b0381111561596e575f80fd5b82016102008185031215615980575f80fd5b615988614d43565b6159918261526d565b815261599f6020830161526d565b60208201526159b0604083016158cd565b60408201526159c1606083016158cd565b60608201526159d26080830161526d565b60808201526159e360a0830161526d565b60a08201526159f460c08301615213565b60c082015260e08201516001600160401b03811115615a11575f80fd5b615a1d8682850161591a565b60e0830152506101008201516001600160401b03811115615a3c575f80fd5b615a488682850161591a565b61010083015250615a5c6101208301615938565b610120820152615a6f6101408301615938565b610140820152615a82610160830161526d565b610160820152615a95610180830161526d565b610180820152615aa86101a08301615213565b6101a0820152615abb6101c08301615213565b6101c0820152615ace6101e08301615213565b6101e0820152949350505050565b5f8085851115615aea575f80fd5b83861115615af6575f80fd5b5050820193919092039150565b80356001600160e01b03198116906004841015615b34576001600160e01b0319600485900360031b81901b82161691505b5092915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b5f8060408385031215615b8b575f80fd5b82516001600160401b03811115615ba0575f80fd5b830160e08186031215615bb1575f80fd5b615bb9614d66565b615bc28261526d565b8152615bd06020830161526d565b6020820152615be160408301615007565b6040820152615bf260608301614fcc565b6060820152615c0360808301615343565b6080820152615c1460a08301615343565b60a082015260c08201516001600160401b03811115615c31575f80fd5b615c3d8782850161591a565b60c0830152509250615c53905060208401615343565b90509250929050565b5f8060408385031215615c6d575f80fd5b8251615c7881614e83565b6020840151909250614f2181614e83565b64ffffffffff851681526001600160601b038416602082015260ff8316604082015260806060820152615cc86080820183516001600160601b03169052565b5f6020830151615ce360a08401826001600160601b03169052565b5060408301516001600160c01b0319811660c08401525060608301516001600160c01b0319811660e08401525060808301516001600160601b0381166101008401525060a08301516001600160601b0381166101208401525060c083015164ffffffffff81166101408401525060e0830151610200610160840152615d6c610280840182614c29565b9050610100840151607f1984830301610180850152615d8b8282614c29565b915050610120840151615da56101a085018261ffff169052565b5061014084015161ffff81166101c0850152506101608401516001600160601b0381166101e0850152506101808401516001600160601b038116610200850152506101a084015164ffffffffff8116610220850152506101c084015164ffffffffff8116610240850152506101e084015164ffffffffff8116610260850152509695505050505050565b6001600160601b03841681526001600160c01b03198316602082015261028081016139a6604083018461555a565b634e487b7160e01b5f52600160045260245ffd5b5f82518060208501845e5f920191825250919050565b5f8060408385031215615e98575f80fd5b615ea183614fcc565b9150602083015163ffffffff81168114614f21575f80fd5b5f60208284031215615ec9575f80fd5b81516001600160401b03811115615ede575f80fd5b820160808185031215615eef575f80fd5b615ef7614d88565b81516001600160401b03811115615f0c575f80fd5b8201601f81018613615f1c575f80fd5b615f2b868251602084016158e4565b825250615f3a60208301615343565b6020820152615f4b60408301615343565b604082015260608201516001600160401b03811115615f68575f80fd5b615f748682850161591a565b606083015250949350505050565b601f8211156135db57805f5260205f20601f840160051c81016020851015615fa75750805b601f840160051c820191505b81811015615fc6575f8155600101615fb3565b5050505050565b81516001600160401b03811115615fe657615fe6614ce3565b615ffa81615ff484546152e2565b84615f82565b6020601f82116001811461602c575f83156160155750848201515b5f19600385901b1c1916600184901b178455615fc6565b5f84815260208120601f198516915b8281101561605b578785015182556020948501946001909201910161603b565b508482101561607857868401515f19600387901b60f8161c191681555b50505050600190811b0190555056fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a009b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a264697066735822122002691f46c96cc8cb52823b858d5909a2e920f34f6f0cdc9165d2a4786f996dc864736f6c634300081a0033",
1032
+ "deployedBytecode": "0x608060405234801561000f575f80fd5b5060043610610187575f3560e01c806376b707b7116100d9578063aa5ae5aa11610093578063bbfbbfba1161006e578063bbfbbfba146103ca578063bc4a1c35146103dd578063bf7e214f146103f0578063d3220051146103f8575f80fd5b8063aa5ae5aa1461039c578063ada9652e146103af578063b68d1809146103c3575f80fd5b806376b707b71461030a5780637a9e5e4b146103245780637baa9a0b14610337578063893d20e8146103605780638fb36037146103685780639ffcede914610389575f80fd5b806322f3e2d4116101445780634d5e16a91161011f5780634d5e16a9146102955780635ab1bd53146102a8578063644c45e0146102cd5780636c741e78146102ea575f80fd5b806322f3e2d414610267578063329d6e741461026f57806349bb9e4b14610282575f80fd5b806301ffc9a71461018b5780630aaba8e8146101cc5780630d8e6e2c146101e15780630fec111c146101fd578063138461e0146102125780631eff4b2214610232575b5f80fd5b6101b7610199366004614bd3565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6101df6101da366004614c0e565b61040b565b005b6101e9610a08565b60405162ffffff90911681526020016101c3565b610205610a8f565b6040516101c39190614c57565b61021a610c49565b6040516001600160601b0390911681526020016101c3565b6102597f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b6040519081526020016101c3565b6101b7610c53565b6101df61027d366004614e52565b610cca565b6101df610290366004614e97565b610e14565b6101df6102a3366004614ef5565b610f10565b6001546001600160a01b03165b6040516001600160a01b0390911681526020016101c3565b5f80516020616088833981519152546001600160601b031661021a565b6102f261106b565b6040516001600160401b0390911681526020016101c3565b6103126110f7565b60405160ff90911681526020016101c3565b6101df610332366004614f2c565b61115f565b61034a610345366004614ef5565b6111e1565b60405164ffffffffff90911681526020016101c3565b6102b561122f565b610370611360565b6040516001600160e01b031990911681526020016101c3565b6101df610397366004614c0e565b611395565b61021a6103aa366004614ef5565b6115da565b6102595f8051602061608883398151915281565b6015610312565b6101df6103d8366004614ef5565b611e21565b61034a6103eb366004614f47565b6124cd565b6102b56125ec565b6101df610406366004614ef5565b612607565b610417335b5f36612969565b61041f612a67565b5f805f61042b84612a9e565b9250925092505f836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa15801561046e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104929190614f8f565b604051637017c97760e11b815290915073__$d4f8ac2ac7f53dfb2fb9ff92adbd6d29df$__9063e02f92ee906104ce9084908990600401614faa565b602060405180830381865af41580156104e9573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061050d9190614fe0565b61053a5760405163b6e77a0960e01b81526001600160601b03861660048201526024015b60405180910390fd5b606082015160208301516040516309c5844f60e01b81526001600160601b03881660048201526105c6906001600160a01b038516906309c5844f90602401602060405180830381865afa158015610593573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105b79190615012565b60dc5b60ff9081169116141590565b156105fd5760a0840151604051635567446960e11b81526001600160601b03808a1660048301529091166024820152604401610531565b600554604051633525dbdf60e11b81526001600160a01b0390911690636a4bb7be906106319089908b9089906004016151d8565b5f604051808303815f87803b158015610648575f80fd5b505af115801561065a573d5f803e3d5ffd5b5050505073__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af41580156106a5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106c9919061521e565b64ffffffffff166101e085015260408051631a99b41b60e31b815290516001600160a01b0388169163d4cda0d89160048083019260209291908290030181865afa158015610719573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061073d9190614f8f565b6001600160a01b031663425d08e2888660c86040518463ffffffff1660e01b815260040161076d93929190615239565b5f604051808303815f87803b158015610784575f80fd5b505af1158015610796573d5f803e3d5ffd5b505050505f6107ad6001546001600160a01b031690565b60405163677d3feb60e11b81526001600160601b03841660048201526001600160a01b03919091169063cefa7fd690602401602060405180830381865afa1580156107fa573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061081e9190615278565b9050866001600160a01b0316630e0c586d6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561085c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108809190614f8f565b6001600160a01b031663903a264b87858b6040518463ffffffff1660e01b81526004016108af93929190615293565b5f604051808303815f87803b1580156108c6575f80fd5b505af11580156108d8573d5f803e3d5ffd5b50505050866001600160a01b0316636dddada46040518163ffffffff1660e01b8152600401602060405180830381865afa158015610918573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061093c9190614f8f565b60405163752723bf60e11b81526001600160601b03808416600483015280851660248301528a1660448201526001600160a01b03919091169063ea4e477e906064015f604051808303815f87803b158015610995575f80fd5b505af11580156109a7573d5f803e3d5ffd5b50506040516001600160601b038b1681527f549ae8b6fdcdbc1ee634d00b432905175415ba23ee737dac1d99b6ef540afc719250602001905060405180910390a150505050505050610a0560015f805160206160c883398151915255565b50565b604051632efe011360e01b8152600360048201525f60248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af4158015610a66573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a8a91906152c0565b905090565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820152907f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610b3b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b5f9190615278565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a001610ba761122f565b6001600160a01b03168152602001826001018054610bc4906152e2565b80601f0160208091040260200160405190810160405280929190818152602001828054610bf0906152e2565b8015610c3b5780601f10610c1257610100808354040283529160200191610c3b565b820191905f5260205f20905b815481529060010190602001808311610c1e57829003601f168201915b505050505081525091505090565b5f610a8a30612ca0565b5f610c5c6125ec565b60405163a166aa8960e01b81523060048201526001600160a01b03919091169063a166aa8990602401602060405180830381865afa158015610ca0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cc49190614fe0565b15905090565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c610cec610a08565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015610d2a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d4e9190615328565b5f805160206160e88339815191528054600160401b900460ff1680610d80575080546001600160401b03808416911610155b15610d9e5760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155610dc883612e99565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b5f805160206160e88339815191528054600160401b810460ff1615906001600160401b03165f81158015610e455750825b90505f826001600160401b03166001148015610e605750303b155b905081158015610e6e575080155b15610e8c5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315610eb657845460ff60401b1916600160401b1785555b610ec08787612ea1565b8315610f0757845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15b50505050505050565b610f1933610410565b610f21612a67565b5f80610f2c84612a9e565b9250509150610f3c848285613349565b9050816001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f7a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f9e9190614f8f565b6001600160a01b031663425d08e2858360ff6040518463ffffffff1660e01b8152600401610fce93929190615239565b5f604051808303815f87803b158015610fe5575f80fd5b505af1158015610ff7573d5f803e3d5ffd5b5050604080516001600160601b038816815264ffffffffff871660208201527f0fb266de81849f168e7cbd8db91f5efc1e79dd85e672e18e6fdb84e86c42cc6c93500190505b60405180910390a161104f84846134d8565b505061106760015f805160206160c883398151915255565b5050565b5f73__$1d92393fa9ccd763988368ce8a1cb90d26$__63dda777d360156110906110f7565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865af41580156110d3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a8a9190615328565b5f6111006125ec565b6001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa15801561113b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a8a9190615012565b336111686125ec565b6001600160a01b0316816001600160a01b0316146111a35760405162d1953b60e31b81526001600160a01b0382166004820152602401610531565b816001600160a01b03163b5f036111d8576040516361798f2f60e11b81526001600160a01b0383166004820152602401610531565b611067826135e0565b5f6111eb33610410565b6111f3612a67565b5f806111fe85612a9e565b925050915061120f82868387613640565b9250505061122960015f805160206160c883398151915255565b92915050565b5f805f8051602061608883398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af415801561129b573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112bf9190614fe0565b1561134a576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611320573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113449190614f8f565b91505090565b54600160601b90046001600160a01b0316919050565b5f805160206160a883398151915280545f9190600160a01b900460ff16611387575f611344565b638fb3603760e01b91505090565b61139e33610410565b6113a6612a67565b5f6113b082612a9e565b50509050611490816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156113f3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114179190614f8f565b604051639096a1f360e01b81526001600160601b03851660048201526001600160a01b039190911690639096a1f3906024015b602060405180830381865afa158015611465573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114899190615012565b600a6105ba565b156114b957604051631130ddad60e21b81526001600160601b0383166004820152602401610531565b806001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156114f5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115199190614f8f565b6001600160a01b0316635d4345cc83601e6040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff1660248201526044015f604051808303815f87803b158015611570575f80fd5b505af1158015611582573d5f803e3d5ffd5b50506040516001600160601b03851681527fa9d1c49a019bf7dc62cfada9540cd302c4fc54f6ed05d99b581074ed70441fae9250602001905060405180910390a150610a0560015f805160206160c883398151915255565b5f6115e433610410565b6115ec612a67565b5f805f6115f886612a9e565b9250925092505f836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa15801561163b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061165f9190614f8f565b604051639096a1f360e01b81526001600160601b038916600482015290915061169b906001600160a01b03831690639096a1f39060240161144a565b156116c457604051631130ddad60e21b81526001600160601b0388166004820152602401610531565b60055460405163037efc5960e61b81526001600160601b03851660048201526001600160a01b03918216916384d1f7cf91879185169063dfbf164090602401602060405180830381865afa15801561171e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117429190614f8f565b6020860151608087015160405160e086901b6001600160e01b03191681526001600160a01b0394851660048201529390921660248401526001600160601b038089166044850152808d16606485015290811660848401521660a482015260c40160408051808303815f875af11580156117bd573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117e1919061534e565b5050604051638d38cd4b60e01b815264ffffffffff8716600482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__90638d38cd4b90602401602060405180830381865af4158015611837573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061185b9190614fe0565b1561186e5761186b878388613349565b91505b836001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156118aa573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118ce9190614f8f565b6001600160a01b031663425d08e2888460286040518463ffffffff1660e01b81526004016118fe93929190615239565b5f604051808303815f87803b158015611915575f80fd5b505af1158015611927573d5f803e3d5ffd5b5050505060608201516020830151600654608085015160c086015160e08701516040808901519051637a5ff29d60e11b81525f956001600160a01b03169463f4bfe53a9461197e948d948b948b919060040161537b565b61024060405180830381865afa15801561199a573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119be91906153f8565b905080608001519750866001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a03573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a279190614f8f565b6001600160a01b0316634d4a7ae98b836040518363ffffffff1660e01b8152600401611a54929190615745565b5f604051808303815f87803b158015611a6b575f80fd5b505af1158015611a7d573d5f803e3d5ffd5b50506040516302d764c760e21b81526001600160601b03891660048201525f92506001600160a01b0387169150630b5d931c906024015f60405180830381865afa158015611acd573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052611af491908101906157eb565b9050806040015115611b7f576004805460c0830151604089810151905163038f0f2560e11b81526001600160601b03909216938201939093526001600160c01b031990921660248301526001600160a01b03169063071e1e4a906044015f604051808303815f87803b158015611b68575f80fd5b505af1158015611b7a573d5f803e3d5ffd5b505050505b505f611b936001546001600160a01b031690565b60405163677d3feb60e11b81526001600160601b03851660048201526001600160a01b03919091169063cefa7fd690602401602060405180830381865afa158015611be0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c049190615278565b9050876001600160a01b0316630e0c586d6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c42573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c669190614f8f565b6001600160a01b0316639ad7533f88868e6040518463ffffffff1660e01b8152600401611c9593929190615293565b5f604051808303815f87803b158015611cac575f80fd5b505af1158015611cbe573d5f803e3d5ffd5b50505050876001600160a01b0316636dddada46040518163ffffffff1660e01b8152600401602060405180830381865afa158015611cfe573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d229190614f8f565b6040516001622c076960e21b031981526001600160601b03808416600483015280861660248301528d1660448201526001600160a01b03919091169063ff4fe25c906064015f604051808303815f87803b158015611d7e575f80fd5b505af1158015611d90573d5f803e3d5ffd5b505050507f2e8d9b075b0da8e4e0de386a81c149b1f6fb08eb063859bb0802de4d3261249b8b8360a001518c604051611df1939291906001600160601b03938416815291909216602082015264ffffffffff91909116604082015260600190565b60405180910390a1611e038b8b6134d8565b505050505050505061122960015f805160206160c883398151915255565b611e2a33610410565b611e32612a67565b5f805f611e3e85612a9e565b9250925092505f836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e81573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ea59190614f8f565b604051639096a1f360e01b81526001600160601b0388166004820152909150611f22906001600160a01b03831690639096a1f390602401602060405180830381865afa158015611ef7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f1b9190615012565b60286105ba565b15611f4b5760405163904913a960e01b81526001600160601b0387166004820152602401610531565b6040516309c5844f60e01b81526001600160601b0387166004820152611fc7906001600160a01b038316906309c5844f90602401602060405180830381865afa158015611f9a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611fbe9190615012565b60ff1660dc1490565b15611ff057604051635b7a826360e01b81526001600160601b0387166004820152602401610531565b60405163e444c3df60e01b81526001600160601b03871660048201525f906001600160a01b0383169063e444c3df9060240161024060405180830381865afa15801561203e573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061206291906153f8565b60405163a310e2a360e01b81526001600160601b03861660048201529091506001600160a01b0383169063a310e2a390602401602060405180830381865afa1580156120b0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906120d49190614f8f565b6001600160a01b031663f14ac2b96120f46001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b038b1660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015612141573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121659190614f8f565b60a08401516040516001600160e01b031960e085901b1681526001600160a01b0390921660048301526001600160601b031660248201525f60448201526064015f6040518083038186803b1580156121bb575f80fd5b505afa1580156121cd573d5f803e3d5ffd5b5050505061224682866001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015612211573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122359190614f8f565b8686602001518760400151866139ae565b604051638d38cd4b60e01b815264ffffffffff8716600482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__90638d38cd4b90602401602060405180830381865af415801561229a573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122be9190614fe0565b156122d1576122ce878488613349565b92505b846001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa15801561230d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123319190614f8f565b6001600160a01b031663425d08e2888560ff6040518463ffffffff1660e01b815260040161236193929190615239565b5f604051808303815f87803b158015612378575f80fd5b505af115801561238a573d5f803e3d5ffd5b50505050846001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156123ca573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906123ee9190614f8f565b6001600160a01b0316632ae5819d8860dc6040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff1660248201526044015f604051808303815f87803b158015612445575f80fd5b505af1158015612457573d5f803e3d5ffd5b50505060a0820151604080516001600160601b03808c16825290921660208301527ea0c8fe3b5b724e2059f6961117d71cb0d74006490b63aa1e51f89d050e1b3b92500160405180910390a16124b28288855f015184613ba7565b505050505061106760015f805160206160c883398151915255565b5f6124d733610410565b6124df612a67565b6124ea836015613ee9565b5f846001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015612527573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061254b9190614f8f565b60405163bd7d9d8560e01b81526001600160601b03861660048201526001600160a01b03919091169063bd7d9d85906024015f60405180830381865afa158015612597573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526125be9190810190615949565b90506125cc85858386613640565b9150506125e560015f805160206160c883398151915255565b9392505050565b5f805160206160a8833981519152546001600160a01b031690565b61261033610410565b612618612a67565b5f8061262384612a9e565b6101a081015160405163790a38ad60e01b815264ffffffffff9091166004820152929450925073__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9163790a38ad9150602401602060405180830381865af4158015612684573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126a89190614fe0565b156126d15760405163358702ab60e11b81526001600160601b0385166004820152602401610531565b61274f8373__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af415801561271c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612740919061521e565b64ffffffffff90811691161090565b156127f9578373__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af415801561279c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127c0919061521e565b604051620ee96f60ec1b81526001600160601b03909216600483015264ffffffffff908116602483015284166044820152606401610531565b6101c081015164ffffffffff9081169084161115612851576101c081015160405163b3be080560e01b81526001600160601b038616600482015264ffffffffff91821660248201529084166044820152606401610531565b64ffffffffff83166101a082015260408051631a99b41b60e31b815290516001600160a01b0384169163d4cda0d89160048083019260209291908290030181865afa1580156128a2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128c69190614f8f565b6001600160a01b031663425d08e2858360ff6040518463ffffffff1660e01b81526004016128f693929190615239565b5f604051808303815f87803b15801561290d575f80fd5b505af115801561291f573d5f803e3d5ffd5b5050604080516001600160601b038816815264ffffffffff871660208201527f984dda4d8ee0bb327632ff3d6032e400bd617a855444711be74d56cb26ed66b7935001905061103d565b5f805160206160a88339815191525f806129a16129846125ec565b873061299360045f8a8c615adc565b61299c91615b03565b614020565b9150915081612a5f5763ffffffff811615612a3c57825460ff60a01b1916600160a01b1783556129cf6125ec565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b81526004016129fe93929190615b3b565b5f604051808303815f87803b158015612a15575f80fd5b505af1158015612a27573d5f803e3d5ffd5b5050845460ff60a01b1916855550612a5f9050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401610531565b505050505050565b5f805160206160c8833981519152805460011901612a9857604051633ee5aeb560e01b815260040160405180910390fd5b60029055565b5f80612aa8614b51565b5f8073__$fb599632d08395912d9d70eb2f0f93b5e2$__635c990ed3612ad66001546001600160a01b031690565b33600c6040516001600160e01b031960e086901b1681526001600160a01b03938416600482015292909116602483015260ff166044820152600160648201526084015f60405180830381865af4158015612b32573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612b599190810190615b7a565b91509150815f01519350809450846001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015612ba2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612bc69190614f8f565b60405163bd7d9d8560e01b81526001600160601b03881660048201526001600160a01b03919091169063bd7d9d85906024015f60405180830381865afa158015612c12573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612c399190810190615949565b9250612c48835f015185614128565b15612c84578251604051631a06208360e01b81526001600160601b03808916600483015280871660248301529091166044820152606401610531565b50509193909250565b60015f805160206160c883398151915255565b5f805f8051602061608883398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015612d0c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612d309190614fe0565b15612d5c5780546040516301ab8b6760e21b81526001600160601b039091166004820152602401610531565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa158015612dae573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612dd29190614fe0565b612dfa5760405163b9304b0d60e01b81526001600160a01b0384166004820152602401610531565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b0385811660048301529190911690635e546bee90602401602060405180830381865afa158015612e4c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612e709190615278565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b6101876141ac565b5f805160206160e88339815191528054600160401b810460ff1615906001600160401b03165f81158015612ed25750825b90505f826001600160401b03166001148015612eed5750303b155b905081158015612efb575080155b15612f195760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315612f4357845460ff60401b1916600160401b1785555b5f8087806020019051810190612f599190615c5c565b91509150612f6882828b6141e4565b5f612f71610a08565b60405163c9e66e2960e01b815262ffffff909116600482015273__$8eede297b65ed5a56eb3f84d8232ae93f5$__9063c9e66e2990602401602060405180830381865af4158015612fc4573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612fe89190615012565b9050612ffc6001546001600160a01b031690565b6001600160a01b031663d39e604360286040516001600160e01b031960e084901b16815260ff91821660048201529084166024820152604401602060405180830381865afa158015613050573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906130749190614f8f565b600280546001600160a01b0319166001600160a01b03928316179055600154166001600160a01b031663d39e6043600b6040516001600160e01b031960e084901b16815260ff91821660048201529084166024820152604401602060405180830381865afa1580156130e8573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061310c9190614f8f565b600380546001600160a01b0319166001600160a01b03928316179055600154166001600160a01b031663d39e6043600f6040516001600160e01b031960e084901b16815260ff91821660048201529084166024820152604401602060405180830381865afa158015613180573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906131a49190614f8f565b600580546001600160a01b0319166001600160a01b03928316179055600154166001600160a01b031663d39e6043600e6040516001600160e01b031960e084901b16815260ff91821660048201529084166024820152604401602060405180830381865afa158015613218573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061323c9190614f8f565b600480546001600160a01b0319166001600160a01b03928316179055600154166001600160a01b031663d39e6043602a6040516001600160e01b031960e084901b16815260ff91821660048201529084166024820152604401602060405180830381865afa1580156132b0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906132d49190614f8f565b600680546001600160a01b0319166001600160a01b039290921691909117905561330463dd6a8fd760e01b61427d565b5050508315610f0757845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001610efe565b613351614b51565b6101a083015160405163790a38ad60e01b815264ffffffffff909116600482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9063790a38ad90602401602060405180830381865af41580156133ac573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906133d09190614fe0565b1580156133ec57506101a083015164ffffffffff808416911614155b156134155760405163f95747d360e01b81526001600160601b0385166004820152602401610531565b6101a083015164ffffffffff8381169116036134325750816125e5565b64ffffffffff8281166101a0850181905260c08501516040516352bcc5a760e11b81526004810192909252909116602482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9063a5798b4e90604401602060405180830381865af415801561349f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906134c3919061521e565b64ffffffffff166101c0840152509092915050565b60405163790a38ad60e01b815264ffffffffff8216600482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9063790a38ad90602401602060405180830381865af415801561352c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906135509190614fe0565b15613559575050565b5f613563836142ad565b90506001600160a01b038116156135db57604051630be6b84560e21b81526001600160601b038416600482015264ffffffffff831660248201526001600160a01b03821690632f9ae114906044015b5f604051808303815f87803b1580156135c9575f80fd5b505af1158015610f07573d5f803e3d5ffd5b505050565b5f805160206160a883398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b5f73__$d4f8ac2ac7f53dfb2fb9ff92adbd6d29df$__63fb77bafc8386886001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015613699573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906136bd9190614f8f565b604051639096a1f360e01b81526001600160601b038a1660048201526001600160a01b039190911690639096a1f390602401602060405180830381865afa15801561370a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061372e9190615012565b876040518563ffffffff1660e01b815260040161374e9493929190615c89565b5f6040518083038186803b158015613764575f80fd5b505af4158015613776573d5f803e3d5ffd5b5050604051638d38cd4b60e01b815264ffffffffff8516600482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9250638d38cd4b9150602401602060405180830381865af41580156137ce573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906137f29190614fe0565b1561380a5764ffffffffff82166101c0840152613883565b73__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015613851573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613875919061521e565b64ffffffffff166101c08401525b846001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156138bf573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906138e39190614f8f565b6001600160a01b031663425d08e2858560ff6040518463ffffffff1660e01b815260040161391393929190615239565b5f604051808303815f87803b15801561392a575f80fd5b505af115801561393c573d5f803e3d5ffd5b5050506101c0840151604080516001600160601b038816815264ffffffffff90921660208301527f78c7b2401beaecd3c89e9a37210cba72e9f33e125194b23cb6c42a6d07c4fe1492500160405180910390a161399e84846101c001516143c0565b506101c08201515b949350505050565b5f6139b9878661449e565b505050905060025f9054906101000a90046001600160a01b03166001600160a01b03166367438c5087876139f68661014001518760c001516147c2565b6040516001600160e01b031960e086901b1681526001600160a01b0390931660048401526001600160601b0391821660248401521660448201526064015f604051808303815f87803b158015613a4a575f80fd5b505af1158015613a5c573d5f803e3d5ffd5b5050604051630a4d29dd60e31b81526001600160601b038416600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__92506352694ee89150602401602060405180830381865af4158015613ab6573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613ada9190614fe0565b613b3f5760048054604051633ca8687160e11b81526001600160a01b0390911691637950d0e291613b119185918891889101615e2f565b5f604051808303815f87803b158015613b28575f80fd5b505af1158015613b3a573d5f803e3d5ffd5b505050505b60055460405163fb3bcd1f60e01b81526001600160a01b039091169063fb3bcd1f90613b719087908690600401615745565b5f604051808303815f87803b158015613b88575f80fd5b505af1158015613b9a573d5f803e3d5ffd5b5050505050505050505050565b5f613bba6001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03861660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015613c07573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613c2b9190614f8f565b90505f805f613c3a888761449e565b60405163a310e2a360e01b81526001600160601b038b16600482015292965090945092505f91506001600160a01b038a169063a310e2a390602401602060405180830381865afa158015613c90573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613cb49190614f8f565b60a0870151604051630f3f86bd60e31b81529192506001600160a01b038316916379fc35e891613ce991899190600401614faa565b5f604051808303815f87803b158015613d00575f80fd5b505af1158015613d12573d5f803e3d5ffd5b5050505060208601516040516330b8415f60e01b81526001600160601b03909116600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af4158015613d72573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613d969190614fe0565b15613dfa5760208601516040516333f6af9b60e11b81526001600160a01b038316916367ed5f3691613dcc918891600401614faa565b5f604051808303815f87803b158015613de3575f80fd5b505af1158015613df5573d5f803e3d5ffd5b505050505b60408681015190516330b8415f60e01b81526001600160601b03909116600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af4158015613e56573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613e7a9190614fe0565b15613ede5760408087015190516333f6af9b60e11b81526001600160a01b038316916367ed5f3691613eb0918791600401614faa565b5f604051808303815f87803b158015613ec7575f80fd5b505af1158015613ed9573d5f803e3d5ffd5b505050505b505050505050505050565b60405163b2466acf60e01b815260ff8216600482015273__$0d958e68cba84670b8f4a3f2f2686b1c6b$__9063b2466acf90602401602060405180830381865af4158015613f39573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613f5d9190614fe0565b613f6957613f69615e5d565b6001546001600160a01b0316604051635b12715d60e11b81526001600160601b038416600482015260ff831660248201526001600160a01b03919091169063b624e2ba90604401602060405180830381865afa158015613fcb573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613fef9190614fe0565b6110675760405163d711af7560e01b81526001600160601b038316600482015260ff82166024820152604401610531565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b1790525161408e9190615e71565b5f60405180830381855afa9150503d805f81146140c6576040519150601f19603f3d011682016040523d82523d5f602084013e6140cb565b606091505b5091509150811561411d5760408151106140fd57808060200190518101906140f39190615e87565b909450925061411d565b602081511061411d578080602001905181019061411a9190614fe0565b93505b505094509492505050565b6040516399009c5160e01b81526001600160601b038084166004830152821660248201525f9073__$94a2c899be079b00d952d0d84fffaa5c34$__906399009c5190604401602060405180830381865af4158015614188573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906125e59190614fe0565b5f805160206160e883398151915254600160401b900460ff166141e257604051631afcd79f60e31b815260040160405180910390fd5b565b6141ec6141ac565b6141f4614846565b6142718383846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015614235573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906142599190615278565b60085f8660405180602001604052805f815250614856565b6135db63daf9067160e01b5b6142856141ac565b610a05816001600160e01b0319165f908152602081905260409020805460ff19166001179055565b5f806142c16001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03851660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa15801561430e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906143329190614f8f565b604051635b5dd68960e11b81526001600160a01b038216600482015290925082915073__$fb599632d08395912d9d70eb2f0f93b5e2$__9063b6bbad1290602401602060405180830381865af415801561438e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906143b29190614fe0565b6143ba575f91505b50919050565b60405163790a38ad60e01b815264ffffffffff8216600482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9063790a38ad90602401602060405180830381865af4158015614414573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906144389190614fe0565b15614441575050565b5f61444b836142ad565b90506001600160a01b038116156135db576040516362782d9f60e01b81526001600160601b038416600482015264ffffffffff831660248201526001600160a01b038216906362782d9f906044016135b2565b6040516302d764c760e21b81526001600160601b03821660048201525f9081908190819081906001600160a01b03881690630b5d931c906024015f60405180830381865afa1580156144f2573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261451991908101906157eb565b60405163f0ea17c360e01b81526001600160601b03881660048201529091506001600160a01b0388169063f0ea17c3906024015f60405180830381865afa158015614566573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261458d9190810190615eb9565b604001516001600160a01b031663132996046040518163ffffffff1660e01b8152600401602060405180830381865afa1580156145cc573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906145f09190614f8f565b60a082015160405163f0ea17c360e01b81526001600160601b0390911660048201529092506001600160a01b0388169063f0ea17c3906024015f60405180830381865afa158015614643573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261466a9190810190615eb9565b604001516001600160a01b031663132996046040518163ffffffff1660e01b8152600401602060405180830381865afa1580156146a9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906146cd9190614f8f565b92508060400151156147b85760c081015160405163f0ea17c360e01b81526001600160601b03821660048201529095506001600160a01b0388169063f0ea17c3906024015f60405180830381865afa15801561472b573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526147529190810190615eb9565b604001516001600160a01b031663132996046040518163ffffffff1660e01b8152600401602060405180830381865afa158015614791573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906147b59190614f8f565b93505b5092959194509250565b60405163274acb3560e01b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063274acb3590604401602060405180830381865af4158015614822573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906125e59190615278565b61484e6141ac565b6141e261499d565b61485e6141ac565b604051632330f24760e01b81526001600160a01b038816600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90632330f24790602401602060405180830381865af41580156148b4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906148d89190614fe0565b6149005760405163cf6935e560e01b81526001600160a01b0388166004820152602401610531565b614909876149a5565b61491386836149b6565b5f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b861515021781559050600181016149828382615fcd565b50614993634a531f3360e01b61427d565b5050505050505050565b612c8d6141ac565b6149ad6141ac565b610a0581614a2c565b6149be6141ac565b6149c6614a3d565b6149cf82614a85565b6001600160a01b0381166149f65760405163f17ef42d60e01b815260040160405180910390fd5b5f8051602061608883398151915280546001600160601b0316600160601b6001600160a01b039093169290920291909117905550565b614a346141ac565b610a05816135e0565b614a456141ac565b6141e26301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b614a8d6141ac565b604051633334d16b60e01b81526001600160a01b038216600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90633334d16b90602401602060405180830381865af4158015614ae3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190614b079190614fe0565b614b2f5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610531565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b60408051610200810182525f8082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820183905260e0820181905261010082015261012081018290526101408101829052610160810182905261018081018290526101a081018290526101c081018290526101e081019190915290565b5f60208284031215614be3575f80fd5b81356001600160e01b0319811681146125e5575f80fd5b6001600160601b0381168114610a05575f80fd5b5f60208284031215614c1e575f80fd5b81356125e581614bfa565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f6060830151614c9f608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e0808401526139a6610100840182614c29565b634e487b7160e01b5f52604160045260245ffd5b60405161024081016001600160401b0381118282101715614d1a57614d1a614ce3565b60405290565b60405161010081016001600160401b0381118282101715614d1a57614d1a614ce3565b60405161020081016001600160401b0381118282101715614d1a57614d1a614ce3565b60405160e081016001600160401b0381118282101715614d1a57614d1a614ce3565b604051608081016001600160401b0381118282101715614d1a57614d1a614ce3565b604051601f8201601f191681016001600160401b0381118282101715614dd257614dd2614ce3565b604052919050565b5f6001600160401b03821115614df257614df2614ce3565b50601f01601f191660200190565b5f82601f830112614e0f575f80fd5b8135614e22614e1d82614dda565b614daa565b818152846020838601011115614e36575f80fd5b816020850160208301375f918101602001919091529392505050565b5f60208284031215614e62575f80fd5b81356001600160401b03811115614e77575f80fd5b6139a684828501614e00565b6001600160a01b0381168114610a05575f80fd5b5f8060408385031215614ea8575f80fd5b8235614eb381614e83565b915060208301356001600160401b03811115614ecd575f80fd5b614ed985828601614e00565b9150509250929050565b64ffffffffff81168114610a05575f80fd5b5f8060408385031215614f06575f80fd5b8235614f1181614bfa565b91506020830135614f2181614ee3565b809150509250929050565b5f60208284031215614f3c575f80fd5b81356125e581614e83565b5f805f60608486031215614f59575f80fd5b8335614f6481614e83565b92506020840135614f7481614bfa565b91506040840135614f8481614ee3565b809150509250925092565b5f60208284031215614f9f575f80fd5b81516125e581614e83565b6001600160a01b039290921682526001600160601b0316602082015260400190565b80518015158114614fdb575f80fd5b919050565b5f60208284031215614ff0575f80fd5b6125e582614fcc565b60ff81168114610a05575f80fd5b8051614fdb81614ff9565b5f60208284031215615022575f80fd5b81516125e581614ff9565b80516001600160601b031682525f602082015161505560208501826001600160601b03169052565b50604082015161507160408501826001600160c01b0319169052565b50606082015161508d60608501826001600160c01b0319169052565b5060808201516150a860808501826001600160601b03169052565b5060a08201516150c360a08501826001600160601b03169052565b5060c08201516150dc60c085018264ffffffffff169052565b5060e082015161020060e08501526150f8610200850182614c29565b90506101008301518482036101008601526151138282614c29565b91505061012083015161512d61012086018261ffff169052565b5061014083015161514561014086018261ffff169052565b506101608301516151626101608601826001600160601b03169052565b5061018083015161517f6101808601826001600160601b03169052565b506101a083015161519a6101a086018264ffffffffff169052565b506101c08301516151b56101c086018264ffffffffff169052565b506101e08301516151d06101e086018264ffffffffff169052565b509392505050565b6001600160a01b03841681526001600160601b03831660208201526060604082018190525f9061520a9083018461502d565b95945050505050565b8051614fdb81614ee3565b5f6020828403121561522e575f80fd5b81516125e581614ee3565b6001600160601b0384168152606060208201525f61525a606083018561502d565b905060ff83166040830152949350505050565b8051614fdb81614bfa565b5f60208284031215615288575f80fd5b81516125e581614bfa565b6001600160601b0393841681526001600160c01b0319929092166020830152909116604082015260600190565b5f602082840312156152d0575f80fd5b815162ffffff811681146125e5575f80fd5b600181811c908216806152f657607f821691505b6020821081036143ba57634e487b7160e01b5f52602260045260245ffd5b6001600160401b0381168114610a05575f80fd5b5f60208284031215615338575f80fd5b81516125e581615314565b8051614fdb81614e83565b5f806040838503121561535f575f80fd5b825161536a81614bfa565b6020840151909250614f2181614bfa565b6001600160601b03881681526001600160401b0360c01b871660208201526001600160601b038616604082015264ffffffffff8516606082015260e060808201525f6153ca60e0830186614c29565b6001600160601b039490941660a0830152506001600160c01b03199190911660c09091015295945050505050565b5f61024082840312801561540a575f80fd5b50615413614cf7565b61541c8361526d565b815261542a6020840161526d565b602082015261543b6040840161526d565b604082015261544c6060840161526d565b606082015261545d6080840161526d565b608082015261546e60a0840161526d565b60a082015261547f60c0840161526d565b60c082015261549060e0840161526d565b60e08201526154a2610100840161526d565b6101008201526154b5610120840161526d565b6101208201526154c8610140840161526d565b6101408201526154db610160840161526d565b6101608201526154ee610180840161526d565b6101808201526155016101a0840161526d565b6101a08201526155146101c0840161526d565b6101c08201526155276101e0840161526d565b6101e082015261553a610200840161526d565b61020082015261554d610220840161526d565b6102208201529392505050565b80516001600160601b03168252602081015161558160208401826001600160601b03169052565b50604081015161559c60408401826001600160601b03169052565b5060608101516155b760608401826001600160601b03169052565b5060808101516155d260808401826001600160601b03169052565b5060a08101516155ed60a08401826001600160601b03169052565b5060c081015161560860c08401826001600160601b03169052565b5060e081015161562360e08401826001600160601b03169052565b506101008101516156406101008401826001600160601b03169052565b5061012081015161565d6101208401826001600160601b03169052565b5061014081015161567a6101408401826001600160601b03169052565b506101608101516156976101608401826001600160601b03169052565b506101808101516156b46101808401826001600160601b03169052565b506101a08101516156d16101a08401826001600160601b03169052565b506101c08101516156ee6101c08401826001600160601b03169052565b506101e081015161570b6101e08401826001600160601b03169052565b506102008101516157286102008401826001600160601b03169052565b506102208101516135db6102208401826001600160601b03169052565b6001600160601b038316815261026081016125e5602083018461555a565b5f82601f830112615772575f80fd5b81516001600160401b0381111561578b5761578b614ce3565b8060051b61579b60208201614daa565b918252602081850181019290810190868411156157b6575f80fd5b6020860192505b838310156157e15782516157d081614bfa565b8252602092830192909101906157bd565b9695505050505050565b5f602082840312156157fb575f80fd5b81516001600160401b03811115615810575f80fd5b82016101008185031215615822575f80fd5b61582a614d20565b61583382614fcc565b815261584160208301614fcc565b602082015261585260408301614fcc565b604082015261586360608301615007565b606082015261587460808301615007565b608082015261588560a0830161526d565b60a082015261589660c0830161526d565b60c082015260e08201516001600160401b038111156158b3575f80fd5b6158bf86828501615763565b60e083015250949350505050565b80516001600160c01b031981168114614fdb575f80fd5b5f6158f1614e1d84614dda565b9050828152838383011115615904575f80fd5b8282602083015e5f602084830101529392505050565b5f82601f830112615929575f80fd5b6125e5838351602085016158e4565b805161ffff81168114614fdb575f80fd5b5f60208284031215615959575f80fd5b81516001600160401b0381111561596e575f80fd5b82016102008185031215615980575f80fd5b615988614d43565b6159918261526d565b815261599f6020830161526d565b60208201526159b0604083016158cd565b60408201526159c1606083016158cd565b60608201526159d26080830161526d565b60808201526159e360a0830161526d565b60a08201526159f460c08301615213565b60c082015260e08201516001600160401b03811115615a11575f80fd5b615a1d8682850161591a565b60e0830152506101008201516001600160401b03811115615a3c575f80fd5b615a488682850161591a565b61010083015250615a5c6101208301615938565b610120820152615a6f6101408301615938565b610140820152615a82610160830161526d565b610160820152615a95610180830161526d565b610180820152615aa86101a08301615213565b6101a0820152615abb6101c08301615213565b6101c0820152615ace6101e08301615213565b6101e0820152949350505050565b5f8085851115615aea575f80fd5b83861115615af6575f80fd5b5050820193919092039150565b80356001600160e01b03198116906004841015615b34576001600160e01b0319600485900360031b81901b82161691505b5092915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b5f8060408385031215615b8b575f80fd5b82516001600160401b03811115615ba0575f80fd5b830160e08186031215615bb1575f80fd5b615bb9614d66565b615bc28261526d565b8152615bd06020830161526d565b6020820152615be160408301615007565b6040820152615bf260608301614fcc565b6060820152615c0360808301615343565b6080820152615c1460a08301615343565b60a082015260c08201516001600160401b03811115615c31575f80fd5b615c3d8782850161591a565b60c0830152509250615c53905060208401615343565b90509250929050565b5f8060408385031215615c6d575f80fd5b8251615c7881614e83565b6020840151909250614f2181614e83565b64ffffffffff851681526001600160601b038416602082015260ff8316604082015260806060820152615cc86080820183516001600160601b03169052565b5f6020830151615ce360a08401826001600160601b03169052565b5060408301516001600160c01b0319811660c08401525060608301516001600160c01b0319811660e08401525060808301516001600160601b0381166101008401525060a08301516001600160601b0381166101208401525060c083015164ffffffffff81166101408401525060e0830151610200610160840152615d6c610280840182614c29565b9050610100840151607f1984830301610180850152615d8b8282614c29565b915050610120840151615da56101a085018261ffff169052565b5061014084015161ffff81166101c0850152506101608401516001600160601b0381166101e0850152506101808401516001600160601b038116610200850152506101a084015164ffffffffff8116610220850152506101c084015164ffffffffff8116610240850152506101e084015164ffffffffff8116610260850152509695505050505050565b6001600160601b03841681526001600160c01b03198316602082015261028081016139a6604083018461555a565b634e487b7160e01b5f52600160045260245ffd5b5f82518060208501845e5f920191825250919050565b5f8060408385031215615e98575f80fd5b615ea183614fcc565b9150602083015163ffffffff81168114614f21575f80fd5b5f60208284031215615ec9575f80fd5b81516001600160401b03811115615ede575f80fd5b820160808185031215615eef575f80fd5b615ef7614d88565b81516001600160401b03811115615f0c575f80fd5b8201601f81018613615f1c575f80fd5b615f2b868251602084016158e4565b825250615f3a60208301615343565b6020820152615f4b60408301615343565b604082015260608201516001600160401b03811115615f68575f80fd5b615f748682850161591a565b606083015250949350505050565b601f8211156135db57805f5260205f20601f840160051c81016020851015615fa75750805b601f840160051c820191505b81811015615fc6575f8155600101615fb3565b5050505050565b81516001600160401b03811115615fe657615fe6614ce3565b615ffa81615ff484546152e2565b84615f82565b6020601f82116001811461602c575f83156160155750848201515b5f19600385901b1c1916600184901b178455615fc6565b5f84815260208120601f198516915b8281101561605b578785015182556020948501946001909201910161603b565b508482101561607857868401515f19600387901b60f8161c191681555b50505050600190811b0190555056fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a009b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a264697066735822122002691f46c96cc8cb52823b858d5909a2e920f34f6f0cdc9165d2a4786f996dc864736f6c634300081a0033",
1033
+ "linkReferences": {
1034
+ "contracts/product/PolicyServiceLib.sol": {
1035
+ "PolicyServiceLib": [
1036
+ {
1037
+ "length": 20,
1038
+ "start": 1402
1039
+ },
1040
+ {
1041
+ "length": 20,
1042
+ "start": 14105
1043
+ }
1044
+ ]
1045
+ },
1046
+ "contracts/shared/ContractLib.sol": {
1047
+ "ContractLib": [
1048
+ {
1049
+ "length": 20,
1050
+ "start": 11138
1051
+ },
1052
+ {
1053
+ "length": 20,
1054
+ "start": 17452
1055
+ },
1056
+ {
1057
+ "length": 20,
1058
+ "start": 18770
1059
+ },
1060
+ {
1061
+ "length": 20,
1062
+ "start": 19329
1063
+ }
1064
+ ]
1065
+ },
1066
+ "contracts/type/Amount.sol": {
1067
+ "AmountLib": [
1068
+ {
1069
+ "length": 20,
1070
+ "start": 15888
1071
+ },
1072
+ {
1073
+ "length": 20,
1074
+ "start": 16116
1075
+ },
1076
+ {
1077
+ "length": 20,
1078
+ "start": 18624
1079
+ }
1080
+ ]
1081
+ },
1082
+ "contracts/type/NftId.sol": {
1083
+ "NftIdLib": [
1084
+ {
1085
+ "length": 20,
1086
+ "start": 3020
1087
+ },
1088
+ {
1089
+ "length": 20,
1090
+ "start": 4921
1091
+ },
1092
+ {
1093
+ "length": 20,
1094
+ "start": 11690
1095
+ },
1096
+ {
1097
+ "length": 20,
1098
+ "start": 15186
1099
+ },
1100
+ {
1101
+ "length": 20,
1102
+ "start": 16934
1103
+ }
1104
+ ]
1105
+ },
1106
+ "contracts/type/ObjectType.sol": {
1107
+ "ObjectTypeLib": [
1108
+ {
1109
+ "length": 20,
1110
+ "start": 16343
1111
+ }
1112
+ ]
1113
+ },
1114
+ "contracts/type/RoleId.sol": {
1115
+ "RoleIdLib": [
1116
+ {
1117
+ "length": 20,
1118
+ "start": 4420
1119
+ }
1120
+ ]
1121
+ },
1122
+ "contracts/type/Timestamp.sol": {
1123
+ "TimestampLib": [
1124
+ {
1125
+ "length": 20,
1126
+ "start": 1846
1127
+ },
1128
+ {
1129
+ "length": 20,
1130
+ "start": 6357
1131
+ },
1132
+ {
1133
+ "length": 20,
1134
+ "start": 9016
1135
+ },
1136
+ {
1137
+ "length": 20,
1138
+ "start": 10017
1139
+ },
1140
+ {
1141
+ "length": 20,
1142
+ "start": 10157
1143
+ },
1144
+ {
1145
+ "length": 20,
1146
+ "start": 10285
1147
+ },
1148
+ {
1149
+ "length": 20,
1150
+ "start": 13386
1151
+ },
1152
+ {
1153
+ "length": 20,
1154
+ "start": 13629
1155
+ },
1156
+ {
1157
+ "length": 20,
1158
+ "start": 13770
1159
+ },
1160
+ {
1161
+ "length": 20,
1162
+ "start": 14442
1163
+ },
1164
+ {
1165
+ "length": 20,
1166
+ "start": 14562
1167
+ },
1168
+ {
1169
+ "length": 20,
1170
+ "start": 17586
1171
+ }
1172
+ ]
1173
+ },
1174
+ "contracts/type/Version.sol": {
1175
+ "VersionLib": [
1176
+ {
1177
+ "length": 20,
1178
+ "start": 2820
1179
+ },
1180
+ {
1181
+ "length": 20,
1182
+ "start": 3490
1183
+ },
1184
+ {
1185
+ "length": 20,
1186
+ "start": 12386
1187
+ }
1188
+ ]
1189
+ }
1190
+ },
1191
+ "deployedLinkReferences": {
1192
+ "contracts/product/PolicyServiceLib.sol": {
1193
+ "PolicyServiceLib": [
1194
+ {
1195
+ "length": 20,
1196
+ "start": 1188
1197
+ },
1198
+ {
1199
+ "length": 20,
1200
+ "start": 13891
1201
+ }
1202
+ ]
1203
+ },
1204
+ "contracts/shared/ContractLib.sol": {
1205
+ "ContractLib": [
1206
+ {
1207
+ "length": 20,
1208
+ "start": 10924
1209
+ },
1210
+ {
1211
+ "length": 20,
1212
+ "start": 17238
1213
+ },
1214
+ {
1215
+ "length": 20,
1216
+ "start": 18556
1217
+ },
1218
+ {
1219
+ "length": 20,
1220
+ "start": 19115
1221
+ }
1222
+ ]
1223
+ },
1224
+ "contracts/type/Amount.sol": {
1225
+ "AmountLib": [
1226
+ {
1227
+ "length": 20,
1228
+ "start": 15674
1229
+ },
1230
+ {
1231
+ "length": 20,
1232
+ "start": 15902
1233
+ },
1234
+ {
1235
+ "length": 20,
1236
+ "start": 18410
1237
+ }
1238
+ ]
1239
+ },
1240
+ "contracts/type/NftId.sol": {
1241
+ "NftIdLib": [
1242
+ {
1243
+ "length": 20,
1244
+ "start": 2806
1245
+ },
1246
+ {
1247
+ "length": 20,
1248
+ "start": 4707
1249
+ },
1250
+ {
1251
+ "length": 20,
1252
+ "start": 11476
1253
+ },
1254
+ {
1255
+ "length": 20,
1256
+ "start": 14972
1257
+ },
1258
+ {
1259
+ "length": 20,
1260
+ "start": 16720
1261
+ }
1262
+ ]
1263
+ },
1264
+ "contracts/type/ObjectType.sol": {
1265
+ "ObjectTypeLib": [
1266
+ {
1267
+ "length": 20,
1268
+ "start": 16129
1269
+ }
1270
+ ]
1271
+ },
1272
+ "contracts/type/RoleId.sol": {
1273
+ "RoleIdLib": [
1274
+ {
1275
+ "length": 20,
1276
+ "start": 4206
1277
+ }
1278
+ ]
1279
+ },
1280
+ "contracts/type/Timestamp.sol": {
1281
+ "TimestampLib": [
1282
+ {
1283
+ "length": 20,
1284
+ "start": 1632
1285
+ },
1286
+ {
1287
+ "length": 20,
1288
+ "start": 6143
1289
+ },
1290
+ {
1291
+ "length": 20,
1292
+ "start": 8802
1293
+ },
1294
+ {
1295
+ "length": 20,
1296
+ "start": 9803
1297
+ },
1298
+ {
1299
+ "length": 20,
1300
+ "start": 9943
1301
+ },
1302
+ {
1303
+ "length": 20,
1304
+ "start": 10071
1305
+ },
1306
+ {
1307
+ "length": 20,
1308
+ "start": 13172
1309
+ },
1310
+ {
1311
+ "length": 20,
1312
+ "start": 13415
1313
+ },
1314
+ {
1315
+ "length": 20,
1316
+ "start": 13556
1317
+ },
1318
+ {
1319
+ "length": 20,
1320
+ "start": 14228
1321
+ },
1322
+ {
1323
+ "length": 20,
1324
+ "start": 14348
1325
+ },
1326
+ {
1327
+ "length": 20,
1328
+ "start": 17372
1329
+ }
1330
+ ]
1331
+ },
1332
+ "contracts/type/Version.sol": {
1333
+ "VersionLib": [
1334
+ {
1335
+ "length": 20,
1336
+ "start": 2606
1337
+ },
1338
+ {
1339
+ "length": 20,
1340
+ "start": 3276
1341
+ },
1342
+ {
1343
+ "length": 20,
1344
+ "start": 12172
1345
+ }
1346
+ ]
1347
+ }
1348
+ }
1349
+ }