@etherisc/gif-next 0.0.2-7a9d124-838 → 0.0.2-7aa572b-366

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 (756) hide show
  1. package/README.md +199 -22
  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 +1664 -0
  10. package/artifacts/contracts/authorization/AccessAdminLib.sol/AccessAdminLib.dbg.json +4 -0
  11. package/artifacts/contracts/authorization/AccessAdminLib.sol/AccessAdminLib.json +1289 -0
  12. package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.dbg.json +4 -0
  13. package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.json +1403 -0
  14. package/artifacts/contracts/authorization/Authorization.sol/Authorization.dbg.json +4 -0
  15. package/artifacts/contracts/authorization/Authorization.sol/Authorization.json +790 -0
  16. package/artifacts/contracts/authorization/IAccess.sol/IAccess.dbg.json +4 -0
  17. package/artifacts/contracts/{instance/module/ISetup.sol/ISetup.json → authorization/IAccess.sol/IAccess.json} +2 -2
  18. package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.dbg.json +4 -0
  19. package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.json +1372 -0
  20. package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.dbg.json +4 -0
  21. package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.json +455 -0
  22. package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.dbg.json +4 -0
  23. package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.json +397 -0
  24. package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.dbg.json +4 -0
  25. package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.json +646 -0
  26. package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.dbg.json +4 -0
  27. package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.json +1225 -0
  28. package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.dbg.json +4 -0
  29. package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.json +805 -0
  30. package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +4 -0
  31. package/artifacts/contracts/distribution/Distribution.sol/Distribution.json +930 -0
  32. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +4 -0
  33. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +1821 -0
  34. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
  35. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +912 -0
  36. package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
  37. package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.json +829 -0
  38. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +4 -0
  39. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.json +1256 -0
  40. package/artifacts/contracts/examples/fire/DamageLevel.sol/DamageLevelLib.dbg.json +4 -0
  41. package/artifacts/contracts/examples/fire/DamageLevel.sol/DamageLevelLib.json +22 -0
  42. package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.dbg.json +4 -0
  43. package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.json +1461 -0
  44. package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.dbg.json +4 -0
  45. package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.json +805 -0
  46. package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.dbg.json +4 -0
  47. package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.json +2018 -0
  48. package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.dbg.json +4 -0
  49. package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.json +805 -0
  50. package/artifacts/contracts/examples/fire/FireUSD.sol/FireUSD.dbg.json +4 -0
  51. package/artifacts/contracts/examples/fire/FireUSD.sol/FireUSD.json +376 -0
  52. package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.dbg.json +4 -0
  53. package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.json +1404 -0
  54. package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.dbg.json +4 -0
  55. package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.json +805 -0
  56. package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.dbg.json +4 -0
  57. package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.json +1152 -0
  58. package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.dbg.json +4 -0
  59. package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.json +1628 -0
  60. package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.dbg.json +4 -0
  61. package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.json +805 -0
  62. package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.dbg.json +4 -0
  63. package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.json +2405 -0
  64. package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.dbg.json +4 -0
  65. package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.json +805 -0
  66. package/artifacts/contracts/instance/BundleSet.sol/BundleSet.dbg.json +4 -0
  67. package/artifacts/contracts/instance/BundleSet.sol/BundleSet.json +851 -0
  68. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
  69. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +668 -1196
  70. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
  71. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +660 -150
  72. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  73. package/artifacts/contracts/instance/Instance.sol/Instance.json +571 -2836
  74. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +4 -0
  75. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +2349 -0
  76. package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.dbg.json +4 -0
  77. package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.json +902 -0
  78. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
  79. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1953 -714
  80. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
  81. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +691 -386
  82. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
  83. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +351 -125
  84. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
  85. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +3784 -0
  86. package/artifacts/contracts/instance/RiskSet.sol/RiskSet.dbg.json +4 -0
  87. package/artifacts/contracts/instance/RiskSet.sol/RiskSet.json +853 -0
  88. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.dbg.json +4 -0
  89. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.json +318 -0
  90. package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.dbg.json +4 -0
  91. package/artifacts/contracts/instance/{AccessManagedSimple.sol/AccessManagedSimple.json → base/Cloneable.sol/Cloneable.json} +38 -2
  92. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.dbg.json +4 -0
  93. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.json +10 -0
  94. package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.dbg.json +4 -0
  95. package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.json +223 -0
  96. package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.dbg.json +4 -0
  97. package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.json +192 -0
  98. package/artifacts/contracts/instance/base/ObjectSetHelperLib.sol/ObjectSetHelperLib.dbg.json +4 -0
  99. package/artifacts/contracts/instance/base/ObjectSetHelperLib.sol/ObjectSetHelperLib.json +168 -0
  100. package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
  101. package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +4 -0
  102. package/artifacts/contracts/instance/module/{ITreasury.sol/ITreasury.json → IComponents.sol/IComponents.json} +2 -2
  103. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +1 -1
  104. package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +1 -1
  105. package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +1 -1
  106. package/artifacts/contracts/mock/Dip.sol/Dip.dbg.json +4 -0
  107. package/artifacts/contracts/mock/Dip.sol/Dip.json +376 -0
  108. package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.dbg.json +4 -0
  109. package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.json +938 -0
  110. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.dbg.json +4 -0
  111. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.json +810 -0
  112. package/artifacts/contracts/oracle/IOracle.sol/IOracle.dbg.json +4 -0
  113. package/artifacts/contracts/oracle/IOracle.sol/IOracle.json +52 -0
  114. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.dbg.json +4 -0
  115. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.json +753 -0
  116. package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +4 -0
  117. package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.json +733 -0
  118. package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +4 -0
  119. package/artifacts/contracts/oracle/Oracle.sol/Oracle.json +854 -0
  120. package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +4 -0
  121. package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +1013 -0
  122. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +4 -0
  123. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +772 -0
  124. package/artifacts/contracts/pool/BasicPool.sol/BasicPool.dbg.json +4 -0
  125. package/artifacts/contracts/pool/BasicPool.sol/BasicPool.json +1231 -0
  126. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.dbg.json +4 -0
  127. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.json +805 -0
  128. package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +4 -0
  129. package/artifacts/contracts/pool/BundleService.sol/BundleService.json +1293 -0
  130. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
  131. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +832 -0
  132. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +4 -0
  133. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.json +880 -0
  134. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
  135. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.json +886 -0
  136. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +4 -0
  137. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +1230 -0
  138. package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +4 -0
  139. package/artifacts/contracts/pool/Pool.sol/Pool.json +1006 -0
  140. package/artifacts/contracts/pool/PoolLib.sol/PoolLib.dbg.json +4 -0
  141. package/artifacts/contracts/pool/PoolLib.sol/PoolLib.json +538 -0
  142. package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +4 -0
  143. package/artifacts/contracts/pool/PoolService.sol/PoolService.json +1606 -0
  144. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
  145. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +824 -0
  146. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +4 -0
  147. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +871 -0
  148. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
  149. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +752 -0
  150. package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.dbg.json +4 -0
  151. package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.json +1140 -0
  152. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.dbg.json +4 -0
  153. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.json +805 -0
  154. package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +4 -0
  155. package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +1512 -0
  156. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
  157. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +856 -0
  158. package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +4 -0
  159. package/artifacts/contracts/{instance/service/IProductService.sol/IProductService.json → product/IApplicationService.sol/IApplicationService.json} +262 -362
  160. package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +4 -0
  161. package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +1064 -0
  162. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +4 -0
  163. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +981 -0
  164. package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +4 -0
  165. package/artifacts/contracts/{instance/service/IPoolService.sol/IPoolService.json → product/IPricingService.sol/IPricingService.json} +325 -350
  166. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +4 -0
  167. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +997 -0
  168. package/artifacts/contracts/product/IRiskService.sol/IRiskService.dbg.json +4 -0
  169. package/artifacts/contracts/{instance/service/IComponentOwnerService.sol/IComponentOwnerService.json → product/IRiskService.sol/IRiskService.json} +199 -185
  170. package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +4 -0
  171. package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +1341 -0
  172. package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.dbg.json +4 -0
  173. package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.json +783 -0
  174. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
  175. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +812 -0
  176. package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +4 -0
  177. package/artifacts/contracts/product/PricingService.sol/PricingService.json +903 -0
  178. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
  179. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +776 -0
  180. package/artifacts/contracts/product/Product.sol/Product.dbg.json +4 -0
  181. package/artifacts/contracts/product/Product.sol/Product.json +1098 -0
  182. package/artifacts/contracts/product/RiskService.sol/RiskService.dbg.json +4 -0
  183. package/artifacts/contracts/product/RiskService.sol/RiskService.json +688 -0
  184. package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.dbg.json +4 -0
  185. package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.json +736 -0
  186. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
  187. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +72 -16
  188. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  189. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +848 -264
  190. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
  191. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +325 -229
  192. package/artifacts/contracts/registry/IRelease.sol/IRelease.dbg.json +4 -0
  193. package/artifacts/contracts/registry/IRelease.sol/IRelease.json +24 -0
  194. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
  195. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +5 -0
  196. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  197. package/artifacts/contracts/registry/Registry.sol/Registry.json +1192 -298
  198. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +4 -0
  199. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +2147 -0
  200. package/artifacts/contracts/registry/RegistryAuthorization.sol/RegistryAuthorization.dbg.json +4 -0
  201. package/artifacts/contracts/registry/RegistryAuthorization.sol/RegistryAuthorization.json +1053 -0
  202. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
  203. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +312 -336
  204. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
  205. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +341 -119
  206. package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.dbg.json +4 -0
  207. package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.json +2152 -0
  208. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.dbg.json +4 -0
  209. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.json +205 -0
  210. package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.dbg.json +4 -0
  211. package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.json +1389 -0
  212. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.dbg.json +4 -0
  213. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.json +683 -0
  214. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
  215. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +352 -101
  216. package/artifacts/contracts/shared/Component.sol/Component.dbg.json +4 -0
  217. package/artifacts/contracts/shared/Component.sol/Component.json +686 -0
  218. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +4 -0
  219. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +1487 -0
  220. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +4 -0
  221. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +816 -0
  222. package/artifacts/contracts/shared/ContractLib.sol/ContractLib.dbg.json +4 -0
  223. package/artifacts/contracts/shared/ContractLib.sol/ContractLib.json +632 -0
  224. package/artifacts/contracts/shared/ContractLib.sol/IInstanceAdminHelper.dbg.json +4 -0
  225. package/artifacts/contracts/shared/ContractLib.sol/IInstanceAdminHelper.json +24 -0
  226. package/artifacts/contracts/shared/ContractLib.sol/ITargetHelper.dbg.json +4 -0
  227. package/artifacts/contracts/shared/ContractLib.sol/ITargetHelper.json +30 -0
  228. package/artifacts/contracts/shared/ContractLib.sol/ITokenRegistryHelper.dbg.json +4 -0
  229. package/artifacts/contracts/shared/ContractLib.sol/ITokenRegistryHelper.json +40 -0
  230. package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +4 -0
  231. package/artifacts/contracts/{instance/base/ComponentServiceBase.sol/ComponentServiceBase.json → shared/IComponent.sol/IComponent.json} +272 -201
  232. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +4 -0
  233. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +1127 -0
  234. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +4 -0
  235. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +688 -0
  236. package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
  237. package/artifacts/contracts/{instance/base → shared}/IKeyValueStore.sol/IKeyValueStore.json +95 -14
  238. package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +4 -0
  239. package/artifacts/contracts/{instance/base → shared}/ILifecycle.sol/ILifecycle.json +35 -4
  240. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
  241. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +46 -26
  242. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +4 -0
  243. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +175 -0
  244. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
  245. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +143 -15
  246. package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
  247. package/artifacts/contracts/{experiment/inheritance/IA.sol/ISharedA.json → shared/IRegistryLinked.sol/IRegistryLinked.json} +15 -17
  248. package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
  249. package/artifacts/contracts/shared/IService.sol/IService.json +137 -159
  250. package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.dbg.json +4 -0
  251. package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.json +53 -0
  252. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +4 -0
  253. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +776 -0
  254. package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
  255. package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.json +538 -0
  256. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +4 -0
  257. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.json +174 -0
  258. package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.dbg.json +4 -0
  259. package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.json +306 -0
  260. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
  261. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +81 -30
  262. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +4 -0
  263. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +198 -0
  264. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
  265. package/artifacts/contracts/shared/Registerable.sol/Registerable.json +159 -55
  266. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +4 -0
  267. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +58 -0
  268. package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
  269. package/artifacts/contracts/shared/Service.sol/Service.json +156 -171
  270. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
  271. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +635 -8
  272. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.dbg.json +4 -0
  273. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.json +484 -0
  274. package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.dbg.json +4 -0
  275. package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.json +172 -0
  276. package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +4 -0
  277. package/artifacts/contracts/staking/IStaking.sol/IStaking.json +1617 -0
  278. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +4 -0
  279. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +1167 -0
  280. package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +4 -0
  281. package/artifacts/contracts/staking/Staking.sol/Staking.json +2025 -0
  282. package/artifacts/contracts/staking/StakingLib.sol/StakingLib.dbg.json +4 -0
  283. package/artifacts/contracts/staking/StakingLib.sol/StakingLib.json +469 -0
  284. package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.dbg.json +4 -0
  285. package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.json +205 -0
  286. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +4 -0
  287. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +804 -0
  288. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +4 -0
  289. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +616 -0
  290. package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +4 -0
  291. package/artifacts/contracts/staking/StakingService.sol/StakingService.json +1396 -0
  292. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +4 -0
  293. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +744 -0
  294. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +4 -0
  295. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +2297 -0
  296. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +4 -0
  297. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +617 -0
  298. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +4 -0
  299. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.json +10 -0
  300. package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +4 -0
  301. package/artifacts/contracts/type/Amount.sol/AmountLib.json +398 -0
  302. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +4 -0
  303. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.json +225 -0
  304. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
  305. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.json +203 -0
  306. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
  307. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.json +104 -0
  308. package/artifacts/contracts/type/Fee.sol/FeeLib.dbg.json +4 -0
  309. package/artifacts/contracts/type/Fee.sol/FeeLib.json +373 -0
  310. package/artifacts/contracts/type/Key32.sol/Key32Lib.dbg.json +4 -0
  311. package/artifacts/contracts/type/Key32.sol/Key32Lib.json +125 -0
  312. package/artifacts/contracts/type/Key32Set.sol/LibKey32Set.dbg.json +4 -0
  313. package/artifacts/contracts/type/Key32Set.sol/LibKey32Set.json +33 -0
  314. package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +4 -0
  315. package/artifacts/contracts/type/NftId.sol/NftIdLib.json +228 -0
  316. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
  317. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.json +33 -0
  318. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
  319. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.json +241 -0
  320. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
  321. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.json +209 -0
  322. package/artifacts/contracts/type/Referral.sol/ReferralLib.dbg.json +4 -0
  323. package/artifacts/contracts/type/Referral.sol/ReferralLib.json +142 -0
  324. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.dbg.json +4 -0
  325. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.json +204 -0
  326. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +4 -0
  327. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.json +204 -0
  328. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +4 -0
  329. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +254 -0
  330. package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +4 -0
  331. package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +265 -0
  332. package/artifacts/contracts/type/Selector.sol/SelectorLib.dbg.json +4 -0
  333. package/artifacts/contracts/type/Selector.sol/SelectorLib.json +148 -0
  334. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.dbg.json +4 -0
  335. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.json +10 -0
  336. package/artifacts/contracts/type/StateId.sol/StateIdLib.dbg.json +4 -0
  337. package/artifacts/contracts/type/StateId.sol/StateIdLib.json +105 -0
  338. package/artifacts/contracts/type/String.sol/StrLib.dbg.json +4 -0
  339. package/artifacts/contracts/type/String.sol/StrLib.json +180 -0
  340. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +4 -0
  341. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.json +312 -0
  342. package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +4 -0
  343. package/artifacts/contracts/type/UFixed.sol/UFixedLib.json +572 -0
  344. package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +4 -0
  345. package/artifacts/contracts/type/Version.sol/VersionLib.json +158 -0
  346. package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +4 -0
  347. package/artifacts/contracts/type/Version.sol/VersionPartLib.json +167 -0
  348. package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.dbg.json +4 -0
  349. package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.json +55 -0
  350. package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.dbg.json +4 -0
  351. package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.json +618 -0
  352. package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
  353. package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +142 -0
  354. package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.dbg.json +4 -0
  355. package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.json +78 -0
  356. package/contracts/accounting/AccountingService.sol +261 -0
  357. package/contracts/accounting/AccountingServiceManager.sol +38 -0
  358. package/contracts/accounting/IAccountingService.sol +45 -0
  359. package/contracts/authorization/AccessAdmin.sol +780 -0
  360. package/contracts/authorization/AccessAdminLib.sol +396 -0
  361. package/contracts/authorization/AccessManagerCloneable.sol +158 -0
  362. package/contracts/authorization/Authorization.sol +174 -0
  363. package/contracts/authorization/IAccess.sol +67 -0
  364. package/contracts/authorization/IAccessAdmin.sol +144 -0
  365. package/contracts/authorization/IAuthorization.sol +27 -0
  366. package/contracts/authorization/IServiceAuthorization.sol +78 -0
  367. package/contracts/authorization/ServiceAuthorization.sol +320 -0
  368. package/contracts/distribution/BasicDistribution.sol +141 -0
  369. package/contracts/distribution/BasicDistributionAuthorization.sol +67 -0
  370. package/contracts/distribution/Distribution.sol +247 -0
  371. package/contracts/distribution/DistributionService.sol +448 -0
  372. package/contracts/distribution/DistributionServiceManager.sol +39 -0
  373. package/contracts/distribution/IDistributionComponent.sol +45 -0
  374. package/contracts/distribution/IDistributionService.sol +115 -0
  375. package/contracts/examples/fire/DamageLevel.sol +59 -0
  376. package/contracts/examples/fire/FirePool.sol +86 -0
  377. package/contracts/examples/fire/FirePoolAuthorization.sol +35 -0
  378. package/contracts/examples/fire/FireProduct.sol +433 -0
  379. package/contracts/examples/fire/FireProductAuthorization.sol +45 -0
  380. package/contracts/examples/fire/FireUSD.sol +26 -0
  381. package/contracts/examples/unpermissioned/SimpleDistribution.sol +81 -0
  382. package/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol +28 -0
  383. package/contracts/examples/unpermissioned/SimpleOracle.sol +133 -0
  384. package/contracts/examples/unpermissioned/SimplePool.sol +102 -0
  385. package/contracts/examples/unpermissioned/SimplePoolAuthorization.sol +28 -0
  386. package/contracts/examples/unpermissioned/SimpleProduct.sol +373 -0
  387. package/contracts/examples/unpermissioned/SimpleProductAuthorization.sol +28 -0
  388. package/contracts/instance/BundleSet.sol +130 -0
  389. package/contracts/instance/IInstance.sol +127 -36
  390. package/contracts/instance/IInstanceService.sol +100 -17
  391. package/contracts/instance/Instance.sol +245 -342
  392. package/contracts/instance/InstanceAdmin.sol +383 -0
  393. package/contracts/instance/InstanceAuthorizationV3.sol +266 -0
  394. package/contracts/instance/InstanceReader.sol +525 -208
  395. package/contracts/instance/InstanceService.sol +475 -161
  396. package/contracts/instance/InstanceServiceManager.sol +14 -32
  397. package/contracts/instance/InstanceStore.sol +298 -0
  398. package/contracts/instance/RiskSet.sol +118 -0
  399. package/contracts/instance/base/BalanceStore.sol +121 -0
  400. package/contracts/instance/base/Cloneable.sol +28 -0
  401. package/contracts/instance/base/ObjectCounter.sol +20 -0
  402. package/contracts/instance/base/ObjectLifecycle.sol +113 -0
  403. package/contracts/instance/base/ObjectSet.sol +77 -0
  404. package/contracts/instance/base/ObjectSetHelperLib.sol +30 -0
  405. package/contracts/instance/module/IBundle.sol +10 -9
  406. package/contracts/instance/module/IComponents.sol +62 -0
  407. package/contracts/instance/module/IDistribution.sol +25 -10
  408. package/contracts/instance/module/IPolicy.sol +81 -21
  409. package/contracts/instance/module/IRisk.sol +6 -1
  410. package/contracts/{test/Usdc.sol → mock/Dip.sol} +6 -6
  411. package/contracts/oracle/BasicOracle.sol +45 -0
  412. package/contracts/oracle/BasicOracleAuthorization.sol +53 -0
  413. package/contracts/oracle/IOracle.sol +41 -0
  414. package/contracts/oracle/IOracleComponent.sol +33 -0
  415. package/contracts/oracle/IOracleService.sol +66 -0
  416. package/contracts/oracle/Oracle.sol +154 -0
  417. package/contracts/oracle/OracleService.sol +310 -0
  418. package/contracts/oracle/OracleServiceManager.sol +39 -0
  419. package/contracts/pool/BasicPool.sol +173 -0
  420. package/contracts/pool/BasicPoolAuthorization.sol +82 -0
  421. package/contracts/pool/BundleService.sol +394 -0
  422. package/contracts/pool/BundleServiceManager.sol +39 -0
  423. package/contracts/pool/IBundleService.sol +115 -0
  424. package/contracts/pool/IPoolComponent.sol +62 -0
  425. package/contracts/pool/IPoolService.sol +165 -0
  426. package/contracts/pool/Pool.sol +343 -0
  427. package/contracts/pool/PoolLib.sol +353 -0
  428. package/contracts/pool/PoolService.sol +582 -0
  429. package/contracts/pool/PoolServiceManager.sol +39 -0
  430. package/contracts/product/ApplicationService.sol +299 -0
  431. package/contracts/product/ApplicationServiceManager.sol +38 -0
  432. package/contracts/product/BasicProduct.sol +49 -0
  433. package/contracts/product/BasicProductAuthorization.sol +63 -0
  434. package/contracts/product/ClaimService.sol +631 -0
  435. package/contracts/product/ClaimServiceManager.sol +38 -0
  436. package/contracts/product/IApplicationService.sol +69 -0
  437. package/contracts/product/IClaimService.sol +135 -0
  438. package/contracts/product/IPolicyService.sol +94 -0
  439. package/contracts/product/IPricingService.sol +40 -0
  440. package/contracts/product/IProductComponent.sol +62 -0
  441. package/contracts/product/IRiskService.sol +33 -0
  442. package/contracts/product/PolicyService.sol +637 -0
  443. package/contracts/product/PolicyServiceLib.sol +139 -0
  444. package/contracts/product/PolicyServiceManager.sol +39 -0
  445. package/contracts/product/PricingService.sol +306 -0
  446. package/contracts/product/PricingServiceManager.sol +39 -0
  447. package/contracts/product/Product.sol +469 -0
  448. package/contracts/product/RiskService.sol +157 -0
  449. package/contracts/product/RiskServiceManager.sol +39 -0
  450. package/contracts/registry/ChainNft.sol +82 -35
  451. package/contracts/registry/IRegistry.sol +128 -37
  452. package/contracts/registry/IRegistryService.sol +40 -28
  453. package/contracts/registry/IRelease.sol +29 -0
  454. package/contracts/registry/ITransferInterceptor.sol +1 -1
  455. package/contracts/registry/Registry.sol +557 -271
  456. package/contracts/registry/RegistryAdmin.sol +188 -0
  457. package/contracts/registry/RegistryAuthorization.sol +284 -0
  458. package/contracts/registry/RegistryService.sol +116 -233
  459. package/contracts/registry/RegistryServiceManager.sol +26 -53
  460. package/contracts/registry/ReleaseAdmin.sol +195 -0
  461. package/contracts/registry/ReleaseLifecycle.sol +32 -0
  462. package/contracts/registry/ReleaseRegistry.sol +520 -0
  463. package/contracts/registry/ServiceAuthorizationV3.sol +344 -0
  464. package/contracts/registry/TokenRegistry.sol +263 -60
  465. package/contracts/shared/Component.sol +210 -0
  466. package/contracts/shared/ComponentService.sol +678 -0
  467. package/contracts/shared/ComponentServiceManager.sol +38 -0
  468. package/contracts/shared/ContractLib.sol +311 -0
  469. package/contracts/shared/IComponent.sol +58 -0
  470. package/contracts/shared/IComponentService.sol +110 -0
  471. package/contracts/shared/IInstanceLinkedComponent.sol +30 -0
  472. package/contracts/{instance/base → shared}/IKeyValueStore.sol +16 -11
  473. package/contracts/{instance/base → shared}/ILifecycle.sol +5 -4
  474. package/contracts/shared/INftOwnable.sol +15 -12
  475. package/contracts/shared/IPolicyHolder.sol +35 -0
  476. package/contracts/shared/IRegisterable.sol +24 -5
  477. package/contracts/shared/IRegistryLinked.sol +11 -0
  478. package/contracts/shared/IService.sol +13 -5
  479. package/contracts/shared/InitializableERC165.sol +35 -0
  480. package/contracts/shared/InstanceLinkedComponent.sol +194 -0
  481. package/contracts/shared/KeyValueStore.sol +131 -0
  482. package/contracts/shared/Lifecycle.sol +88 -0
  483. package/contracts/shared/NftIdSet.sol +65 -0
  484. package/contracts/shared/NftOwnable.sol +75 -82
  485. package/contracts/shared/PolicyHolder.sol +63 -0
  486. package/contracts/shared/Registerable.sol +54 -38
  487. package/contracts/shared/RegistryLinked.sol +38 -0
  488. package/contracts/shared/Service.sol +45 -33
  489. package/contracts/shared/TokenHandler.sol +327 -12
  490. package/contracts/shared/TokenHandlerDeployerLib.sol +20 -0
  491. package/contracts/staking/IStaking.sol +195 -0
  492. package/contracts/staking/IStakingService.sol +170 -0
  493. package/contracts/staking/Staking.sol +605 -0
  494. package/contracts/staking/StakingLib.sol +281 -0
  495. package/contracts/staking/StakingLifecycle.sol +23 -0
  496. package/contracts/staking/StakingManager.sol +52 -0
  497. package/contracts/staking/StakingReader.sol +199 -0
  498. package/contracts/staking/StakingService.sol +468 -0
  499. package/contracts/staking/StakingServiceManager.sol +45 -0
  500. package/contracts/staking/StakingStore.sol +606 -0
  501. package/contracts/staking/TargetManagerLib.sol +211 -0
  502. package/contracts/{types → type}/AddressSet.sol +1 -1
  503. package/contracts/type/Amount.sol +150 -0
  504. package/contracts/{types → type}/Blocknumber.sol +27 -3
  505. package/contracts/type/ClaimId.sol +80 -0
  506. package/contracts/{types → type}/DistributorType.sol +2 -2
  507. package/contracts/type/Fee.sol +66 -0
  508. package/contracts/{types → type}/Key32.sol +2 -2
  509. package/contracts/type/Key32Set.sol +62 -0
  510. package/contracts/{types → type}/NftId.sol +28 -15
  511. package/contracts/type/NftIdSet.sol +62 -0
  512. package/contracts/type/ObjectType.sol +307 -0
  513. package/contracts/type/PayoutId.sol +82 -0
  514. package/contracts/{types → type}/Referral.sol +6 -1
  515. package/contracts/type/RequestId.sol +75 -0
  516. package/contracts/type/RiskId.sol +75 -0
  517. package/contracts/type/RoleId.sol +180 -0
  518. package/contracts/type/Seconds.sol +105 -0
  519. package/contracts/type/Selector.sol +107 -0
  520. package/contracts/{types → type}/StateId.sol +48 -4
  521. package/contracts/type/String.sol +65 -0
  522. package/contracts/{types → type}/Timestamp.sol +33 -19
  523. package/contracts/type/UFixed.sol +262 -0
  524. package/contracts/{types → type}/Version.sol +59 -7
  525. package/contracts/{shared → upgradeability}/IVersionable.sol +5 -48
  526. package/contracts/upgradeability/ProxyManager.sol +234 -0
  527. package/contracts/{shared → upgradeability}/UpgradableProxyWithAdmin.sol +8 -4
  528. package/contracts/upgradeability/Versionable.sol +62 -0
  529. package/package.json +12 -8
  530. package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +0 -4
  531. package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.json +0 -327
  532. package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +0 -4
  533. package/artifacts/contracts/components/Distribution.sol/Distribution.json +0 -618
  534. package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +0 -4
  535. package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.json +0 -280
  536. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +0 -4
  537. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +0 -152
  538. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +0 -4
  539. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +0 -249
  540. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +0 -4
  541. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +0 -157
  542. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +0 -4
  543. package/artifacts/contracts/components/Pool.sol/Pool.json +0 -782
  544. package/artifacts/contracts/components/Product.sol/Product.dbg.json +0 -4
  545. package/artifacts/contracts/components/Product.sol/Product.json +0 -719
  546. package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.dbg.json +0 -4
  547. package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.json +0 -66
  548. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.dbg.json +0 -4
  549. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.json +0 -24
  550. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.dbg.json +0 -4
  551. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.json +0 -42
  552. package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +0 -4
  553. package/artifacts/contracts/experiment/errors/Require.sol/Require.json +0 -105
  554. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +0 -4
  555. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +0 -105
  556. package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +0 -4
  557. package/artifacts/contracts/experiment/inheritance/A.sol/A.json +0 -128
  558. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +0 -4
  559. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +0 -42
  560. package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +0 -4
  561. package/artifacts/contracts/experiment/inheritance/B.sol/B.json +0 -76
  562. package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +0 -4
  563. package/artifacts/contracts/experiment/inheritance/C.sol/C.json +0 -89
  564. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +0 -4
  565. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.json +0 -128
  566. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +0 -4
  567. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +0 -4
  568. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.json +0 -50
  569. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +0 -4
  570. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.json +0 -63
  571. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +0 -4
  572. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +0 -59
  573. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +0 -4
  574. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.json +0 -124
  575. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +0 -4
  576. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.json +0 -74
  577. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +0 -4
  578. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +0 -124
  579. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +0 -4
  580. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +0 -207
  581. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +0 -4
  582. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +0 -10
  583. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +0 -4
  584. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +0 -10
  585. package/artifacts/contracts/instance/AccessManagedSimple.sol/AccessManagedSimple.dbg.json +0 -4
  586. package/artifacts/contracts/instance/AccessManagerSimple.sol/AccessManagerSimple.dbg.json +0 -4
  587. package/artifacts/contracts/instance/AccessManagerSimple.sol/AccessManagerSimple.json +0 -1132
  588. package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.dbg.json +0 -4
  589. package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.json +0 -1082
  590. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +0 -4
  591. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +0 -917
  592. package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +0 -4
  593. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +0 -4
  594. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +0 -113
  595. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +0 -4
  596. package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +0 -4
  597. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +0 -4
  598. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +0 -502
  599. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +0 -4
  600. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +0 -169
  601. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +0 -4
  602. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +0 -211
  603. package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +0 -4
  604. package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +0 -4
  605. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +0 -4
  606. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +0 -827
  607. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +0 -4
  608. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +0 -716
  609. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +0 -4
  610. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +0 -444
  611. package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +0 -4
  612. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +0 -4
  613. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +0 -446
  614. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +0 -4
  615. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +0 -4
  616. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +0 -4
  617. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +0 -926
  618. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +0 -4
  619. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +0 -448
  620. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +0 -4
  621. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +0 -1094
  622. package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +0 -4
  623. package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +0 -472
  624. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +0 -4
  625. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.json +0 -107
  626. package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +0 -4
  627. package/artifacts/contracts/shared/ERC165.sol/ERC165.json +0 -35
  628. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +0 -4
  629. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +0 -205
  630. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +0 -4
  631. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +0 -349
  632. package/artifacts/contracts/shared/RegisterableUpgradable.sol/RegisterableUpgradable.dbg.json +0 -4
  633. package/artifacts/contracts/shared/RegisterableUpgradable.sol/RegisterableUpgradable.json +0 -442
  634. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +0 -4
  635. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +0 -129
  636. package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +0 -4
  637. package/artifacts/contracts/shared/Versionable.sol/Versionable.json +0 -228
  638. package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +0 -4
  639. package/artifacts/contracts/test/TestFee.sol/TestFee.json +0 -119
  640. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +0 -4
  641. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +0 -305
  642. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +0 -4
  643. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +0 -116
  644. package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +0 -4
  645. package/artifacts/contracts/test/TestService.sol/TestService.json +0 -600
  646. package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +0 -4
  647. package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +0 -376
  648. package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +0 -4
  649. package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +0 -218
  650. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +0 -4
  651. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +0 -286
  652. package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +0 -4
  653. package/artifacts/contracts/test/Usdc.sol/USDC.json +0 -376
  654. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +0 -4
  655. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.json +0 -10
  656. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +0 -4
  657. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +0 -174
  658. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +0 -4
  659. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +0 -10
  660. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +0 -4
  661. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +0 -104
  662. package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +0 -4
  663. package/artifacts/contracts/types/Fee.sol/FeeLib.json +0 -257
  664. package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +0 -4
  665. package/artifacts/contracts/types/Key32.sol/Key32Lib.json +0 -125
  666. package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +0 -4
  667. package/artifacts/contracts/types/NftId.sol/NftIdLib.json +0 -153
  668. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +0 -4
  669. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +0 -10
  670. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +0 -4
  671. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.json +0 -100
  672. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +0 -4
  673. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +0 -92
  674. package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +0 -4
  675. package/artifacts/contracts/types/Referral.sol/ReferralLib.json +0 -123
  676. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +0 -4
  677. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +0 -86
  678. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +0 -4
  679. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +0 -156
  680. package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +0 -4
  681. package/artifacts/contracts/types/StateId.sol/StateIdLib.json +0 -92
  682. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +0 -4
  683. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +0 -249
  684. package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +0 -4
  685. package/artifacts/contracts/types/UFixed.sol/MathLib.json +0 -10
  686. package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +0 -4
  687. package/artifacts/contracts/types/UFixed.sol/UFixedLib.json +0 -479
  688. package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +0 -4
  689. package/artifacts/contracts/types/Version.sol/VersionLib.json +0 -177
  690. package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +0 -4
  691. package/artifacts/contracts/types/Version.sol/VersionPartLib.json +0 -49
  692. package/contracts/components/BaseComponent.sol +0 -91
  693. package/contracts/components/Distribution.sol +0 -159
  694. package/contracts/components/IBaseComponent.sol +0 -25
  695. package/contracts/components/IDistributionComponent.sol +0 -44
  696. package/contracts/components/IPoolComponent.sol +0 -62
  697. package/contracts/components/IProductComponent.sol +0 -35
  698. package/contracts/components/Pool.sol +0 -242
  699. package/contracts/components/Product.sol +0 -284
  700. package/contracts/experiment/cloning/Cloner.sol +0 -47
  701. package/contracts/experiment/errors/Require.sol +0 -38
  702. package/contracts/experiment/errors/Revert.sol +0 -44
  703. package/contracts/experiment/inheritance/A.sol +0 -53
  704. package/contracts/experiment/inheritance/B.sol +0 -28
  705. package/contracts/experiment/inheritance/C.sol +0 -34
  706. package/contracts/experiment/inheritance/IA.sol +0 -13
  707. package/contracts/experiment/inheritance/IB.sol +0 -10
  708. package/contracts/experiment/inheritance/IC.sol +0 -12
  709. package/contracts/experiment/statemachine/Dummy.sol +0 -27
  710. package/contracts/experiment/statemachine/ISM.sol +0 -25
  711. package/contracts/experiment/statemachine/SM.sol +0 -57
  712. package/contracts/experiment/statemachine/SimpleStateMachine.sol +0 -31
  713. package/contracts/experiment/types/TypeA.sol +0 -47
  714. package/contracts/experiment/types/TypeB.sol +0 -29
  715. package/contracts/instance/AccessManagedSimple.sol +0 -115
  716. package/contracts/instance/AccessManagerSimple.sol +0 -692
  717. package/contracts/instance/IAccessManagerSimple.sol +0 -391
  718. package/contracts/instance/InstanceAccessManager.sol +0 -288
  719. package/contracts/instance/base/ComponentServiceBase.sol +0 -127
  720. package/contracts/instance/base/IInstanceBase.sol +0 -23
  721. package/contracts/instance/base/KeyValueStore.sol +0 -172
  722. package/contracts/instance/base/Lifecycle.sol +0 -100
  723. package/contracts/instance/module/IAccess.sol +0 -38
  724. package/contracts/instance/module/ISetup.sol +0 -44
  725. package/contracts/instance/module/ITreasury.sol +0 -23
  726. package/contracts/instance/service/ComponentOwnerService.sol +0 -317
  727. package/contracts/instance/service/DistributionService.sol +0 -88
  728. package/contracts/instance/service/DistributionServiceManager.sol +0 -54
  729. package/contracts/instance/service/IComponentOwnerService.sol +0 -20
  730. package/contracts/instance/service/IDistributionService.sol +0 -12
  731. package/contracts/instance/service/IPoolService.sol +0 -41
  732. package/contracts/instance/service/IProductService.sol +0 -107
  733. package/contracts/instance/service/PoolService.sol +0 -198
  734. package/contracts/instance/service/PoolServiceManager.sol +0 -54
  735. package/contracts/instance/service/ProductService.sol +0 -564
  736. package/contracts/instance/service/ProductServiceManager.sol +0 -54
  737. package/contracts/shared/ContractDeployerLib.sol +0 -72
  738. package/contracts/shared/ERC165.sol +0 -25
  739. package/contracts/shared/ProxyManager.sol +0 -94
  740. package/contracts/shared/RegisterableUpgradable.sol +0 -16
  741. package/contracts/shared/Versionable.sol +0 -147
  742. package/contracts/test/TestFee.sol +0 -25
  743. package/contracts/test/TestRegisterable.sol +0 -18
  744. package/contracts/test/TestRoleId.sol +0 -14
  745. package/contracts/test/TestService.sol +0 -24
  746. package/contracts/test/TestToken.sol +0 -26
  747. package/contracts/test/TestVersion.sol +0 -44
  748. package/contracts/test/TestVersionable.sol +0 -17
  749. package/contracts/types/ChainId.sol +0 -38
  750. package/contracts/types/Fee.sol +0 -56
  751. package/contracts/types/NftIdSet.sol +0 -60
  752. package/contracts/types/NumberId.sol +0 -52
  753. package/contracts/types/ObjectType.sol +0 -152
  754. package/contracts/types/RiskId.sol +0 -43
  755. package/contracts/types/RoleId.sol +0 -90
  756. package/contracts/types/UFixed.sol +0 -325
@@ -0,0 +1,1821 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "DistributionService",
4
+ "sourceName": "contracts/distribution/DistributionService.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": "address",
59
+ "name": "caller",
60
+ "type": "address"
61
+ }
62
+ ],
63
+ "name": "ErrorDistributionServiceCallerNotDistributor",
64
+ "type": "error"
65
+ },
66
+ {
67
+ "inputs": [
68
+ {
69
+ "internalType": "address",
70
+ "name": "caller",
71
+ "type": "address"
72
+ }
73
+ ],
74
+ "name": "ErrorDistributionServiceCallerNotRegistered",
75
+ "type": "error"
76
+ },
77
+ {
78
+ "inputs": [
79
+ {
80
+ "internalType": "uint256",
81
+ "name": "commissionPercentage",
82
+ "type": "uint256"
83
+ },
84
+ {
85
+ "internalType": "uint256",
86
+ "name": "maxCommissionPercentage",
87
+ "type": "uint256"
88
+ }
89
+ ],
90
+ "name": "ErrorDistributionServiceCommissionTooHigh",
91
+ "type": "error"
92
+ },
93
+ {
94
+ "inputs": [
95
+ {
96
+ "internalType": "Amount",
97
+ "name": "amount",
98
+ "type": "uint96"
99
+ },
100
+ {
101
+ "internalType": "Amount",
102
+ "name": "limit",
103
+ "type": "uint96"
104
+ }
105
+ ],
106
+ "name": "ErrorDistributionServiceCommissionWithdrawAmountExceedsLimit",
107
+ "type": "error"
108
+ },
109
+ {
110
+ "inputs": [
111
+ {
112
+ "internalType": "uint256",
113
+ "name": "maxDiscountPercentage",
114
+ "type": "uint256"
115
+ },
116
+ {
117
+ "internalType": "uint256",
118
+ "name": "discountPercentage",
119
+ "type": "uint256"
120
+ }
121
+ ],
122
+ "name": "ErrorDistributionServiceDiscountTooHigh",
123
+ "type": "error"
124
+ },
125
+ {
126
+ "inputs": [
127
+ {
128
+ "internalType": "uint256",
129
+ "name": "minDiscountPercentage",
130
+ "type": "uint256"
131
+ },
132
+ {
133
+ "internalType": "uint256",
134
+ "name": "discountPercentage",
135
+ "type": "uint256"
136
+ }
137
+ ],
138
+ "name": "ErrorDistributionServiceDiscountTooLow",
139
+ "type": "error"
140
+ },
141
+ {
142
+ "inputs": [
143
+ {
144
+ "internalType": "NftId",
145
+ "name": "distributorNftId",
146
+ "type": "uint96"
147
+ },
148
+ {
149
+ "internalType": "NftId",
150
+ "name": "distributorDistributionNftId",
151
+ "type": "uint96"
152
+ },
153
+ {
154
+ "internalType": "NftId",
155
+ "name": "distributionNftId",
156
+ "type": "uint96"
157
+ }
158
+ ],
159
+ "name": "ErrorDistributionServiceDistributorDistributionMismatch",
160
+ "type": "error"
161
+ },
162
+ {
163
+ "inputs": [
164
+ {
165
+ "internalType": "DistributorType",
166
+ "name": "distributorType",
167
+ "type": "bytes8"
168
+ },
169
+ {
170
+ "internalType": "NftId",
171
+ "name": "distributorTypeDistributionNftId",
172
+ "type": "uint96"
173
+ },
174
+ {
175
+ "internalType": "NftId",
176
+ "name": "distributionNftId",
177
+ "type": "uint96"
178
+ }
179
+ ],
180
+ "name": "ErrorDistributionServiceDistributorTypeDistributionMismatch",
181
+ "type": "error"
182
+ },
183
+ {
184
+ "inputs": [
185
+ {
186
+ "internalType": "Timestamp",
187
+ "name": "expiryAt",
188
+ "type": "uint40"
189
+ }
190
+ ],
191
+ "name": "ErrorDistributionServiceExpirationInvalid",
192
+ "type": "error"
193
+ },
194
+ {
195
+ "inputs": [
196
+ {
197
+ "internalType": "Seconds",
198
+ "name": "maxReferralLifetime",
199
+ "type": "uint40"
200
+ },
201
+ {
202
+ "internalType": "Timestamp",
203
+ "name": "expiryAt",
204
+ "type": "uint40"
205
+ }
206
+ ],
207
+ "name": "ErrorDistributionServiceExpiryTooLong",
208
+ "type": "error"
209
+ },
210
+ {
211
+ "inputs": [
212
+ {
213
+ "internalType": "Amount",
214
+ "name": "transferredDistributionFeeAmount",
215
+ "type": "uint96"
216
+ },
217
+ {
218
+ "internalType": "Amount",
219
+ "name": "expectedDistributionFeeAmount",
220
+ "type": "uint96"
221
+ }
222
+ ],
223
+ "name": "ErrorDistributionServiceInvalidFeeTransferred",
224
+ "type": "error"
225
+ },
226
+ {
227
+ "inputs": [
228
+ {
229
+ "internalType": "string",
230
+ "name": "code",
231
+ "type": "string"
232
+ }
233
+ ],
234
+ "name": "ErrorDistributionServiceInvalidReferral",
235
+ "type": "error"
236
+ },
237
+ {
238
+ "inputs": [
239
+ {
240
+ "internalType": "ReferralId",
241
+ "name": "referralId",
242
+ "type": "bytes8"
243
+ }
244
+ ],
245
+ "name": "ErrorDistributionServiceInvalidReferralId",
246
+ "type": "error"
247
+ },
248
+ {
249
+ "inputs": [
250
+ {
251
+ "internalType": "uint256",
252
+ "name": "maxDiscountPercentage",
253
+ "type": "uint256"
254
+ },
255
+ {
256
+ "internalType": "uint256",
257
+ "name": "limit",
258
+ "type": "uint256"
259
+ }
260
+ ],
261
+ "name": "ErrorDistributionServiceMaxDiscountTooHigh",
262
+ "type": "error"
263
+ },
264
+ {
265
+ "inputs": [
266
+ {
267
+ "internalType": "uint256",
268
+ "name": "maxReferrals",
269
+ "type": "uint256"
270
+ }
271
+ ],
272
+ "name": "ErrorDistributionServiceMaxReferralsExceeded",
273
+ "type": "error"
274
+ },
275
+ {
276
+ "inputs": [
277
+ {
278
+ "internalType": "uint256",
279
+ "name": "minFee",
280
+ "type": "uint256"
281
+ },
282
+ {
283
+ "internalType": "uint256",
284
+ "name": "limit",
285
+ "type": "uint256"
286
+ }
287
+ ],
288
+ "name": "ErrorDistributionServiceMinFeeTooHigh",
289
+ "type": "error"
290
+ },
291
+ {
292
+ "inputs": [
293
+ {
294
+ "internalType": "NftId",
295
+ "name": "nftId",
296
+ "type": "uint96"
297
+ },
298
+ {
299
+ "internalType": "NftId",
300
+ "name": "parentNftId",
301
+ "type": "uint96"
302
+ }
303
+ ],
304
+ "name": "ErrorDistributionServiceParentNftIdNotInstance",
305
+ "type": "error"
306
+ },
307
+ {
308
+ "inputs": [
309
+ {
310
+ "internalType": "ReferralId",
311
+ "name": "referralId",
312
+ "type": "bytes8"
313
+ },
314
+ {
315
+ "internalType": "NftId",
316
+ "name": "referralDistributionNft",
317
+ "type": "uint96"
318
+ },
319
+ {
320
+ "internalType": "NftId",
321
+ "name": "distributionNftId",
322
+ "type": "uint96"
323
+ }
324
+ ],
325
+ "name": "ErrorDistributionServiceReferralDistributionMismatch",
326
+ "type": "error"
327
+ },
328
+ {
329
+ "inputs": [
330
+ {
331
+ "internalType": "NftId",
332
+ "name": "distributionNftId",
333
+ "type": "uint96"
334
+ },
335
+ {
336
+ "internalType": "ReferralId",
337
+ "name": "referralId",
338
+ "type": "bytes8"
339
+ }
340
+ ],
341
+ "name": "ErrorDistributionServiceReferralInvalid",
342
+ "type": "error"
343
+ },
344
+ {
345
+ "inputs": [
346
+ {
347
+ "internalType": "uint256",
348
+ "name": "maxDiscountPercentage",
349
+ "type": "uint256"
350
+ },
351
+ {
352
+ "internalType": "uint256",
353
+ "name": "limit",
354
+ "type": "uint256"
355
+ }
356
+ ],
357
+ "name": "ErrorDistributionServiceVariableFeesTooHight",
358
+ "type": "error"
359
+ },
360
+ {
361
+ "inputs": [
362
+ {
363
+ "internalType": "NftId",
364
+ "name": "nftId",
365
+ "type": "uint96"
366
+ }
367
+ ],
368
+ "name": "ErrorNftOwnableAlreadyLinked",
369
+ "type": "error"
370
+ },
371
+ {
372
+ "inputs": [
373
+ {
374
+ "internalType": "address",
375
+ "name": "contractAddress",
376
+ "type": "address"
377
+ }
378
+ ],
379
+ "name": "ErrorNftOwnableContractNotRegistered",
380
+ "type": "error"
381
+ },
382
+ {
383
+ "inputs": [],
384
+ "name": "ErrorNftOwnableInitialOwnerZero",
385
+ "type": "error"
386
+ },
387
+ {
388
+ "inputs": [
389
+ {
390
+ "internalType": "NftId",
391
+ "name": "nftId",
392
+ "type": "uint96"
393
+ },
394
+ {
395
+ "internalType": "ObjectType",
396
+ "name": "expectedObjectType",
397
+ "type": "uint8"
398
+ }
399
+ ],
400
+ "name": "ErrorNftOwnableInvalidType",
401
+ "type": "error"
402
+ },
403
+ {
404
+ "inputs": [
405
+ {
406
+ "internalType": "address",
407
+ "name": "account",
408
+ "type": "address"
409
+ }
410
+ ],
411
+ "name": "ErrorNftOwnableNotOwner",
412
+ "type": "error"
413
+ },
414
+ {
415
+ "inputs": [
416
+ {
417
+ "internalType": "address",
418
+ "name": "registryAddress",
419
+ "type": "address"
420
+ }
421
+ ],
422
+ "name": "ErrorNotRegistry",
423
+ "type": "error"
424
+ },
425
+ {
426
+ "inputs": [],
427
+ "name": "ErrorRegisterableNotActive",
428
+ "type": "error"
429
+ },
430
+ {
431
+ "inputs": [],
432
+ "name": "InvalidInitialization",
433
+ "type": "error"
434
+ },
435
+ {
436
+ "inputs": [],
437
+ "name": "NotInitializing",
438
+ "type": "error"
439
+ },
440
+ {
441
+ "inputs": [],
442
+ "name": "ReentrancyGuardReentrantCall",
443
+ "type": "error"
444
+ },
445
+ {
446
+ "inputs": [],
447
+ "name": "UFixedLibNegativeResult",
448
+ "type": "error"
449
+ },
450
+ {
451
+ "anonymous": false,
452
+ "inputs": [
453
+ {
454
+ "indexed": false,
455
+ "internalType": "address",
456
+ "name": "authority",
457
+ "type": "address"
458
+ }
459
+ ],
460
+ "name": "AuthorityUpdated",
461
+ "type": "event"
462
+ },
463
+ {
464
+ "anonymous": false,
465
+ "inputs": [
466
+ {
467
+ "indexed": false,
468
+ "internalType": "uint64",
469
+ "name": "version",
470
+ "type": "uint64"
471
+ }
472
+ ],
473
+ "name": "Initialized",
474
+ "type": "event"
475
+ },
476
+ {
477
+ "anonymous": false,
478
+ "inputs": [
479
+ {
480
+ "indexed": false,
481
+ "internalType": "NftId",
482
+ "name": "distributorNftId",
483
+ "type": "uint96"
484
+ },
485
+ {
486
+ "indexed": false,
487
+ "internalType": "address",
488
+ "name": "recipient",
489
+ "type": "address"
490
+ },
491
+ {
492
+ "indexed": false,
493
+ "internalType": "address",
494
+ "name": "tokenAddress",
495
+ "type": "address"
496
+ },
497
+ {
498
+ "indexed": false,
499
+ "internalType": "Amount",
500
+ "name": "amount",
501
+ "type": "uint96"
502
+ }
503
+ ],
504
+ "name": "LogDistributionServiceCommissionWithdrawn",
505
+ "type": "event"
506
+ },
507
+ {
508
+ "anonymous": false,
509
+ "inputs": [
510
+ {
511
+ "indexed": false,
512
+ "internalType": "NftId",
513
+ "name": "distributionNftId",
514
+ "type": "uint96"
515
+ },
516
+ {
517
+ "indexed": false,
518
+ "internalType": "NftId",
519
+ "name": "distributorNftId",
520
+ "type": "uint96"
521
+ },
522
+ {
523
+ "indexed": false,
524
+ "internalType": "DistributorType",
525
+ "name": "distributorType",
526
+ "type": "bytes8"
527
+ },
528
+ {
529
+ "indexed": false,
530
+ "internalType": "address",
531
+ "name": "distributor",
532
+ "type": "address"
533
+ }
534
+ ],
535
+ "name": "LogDistributionServiceDistributorCreated",
536
+ "type": "event"
537
+ },
538
+ {
539
+ "anonymous": false,
540
+ "inputs": [
541
+ {
542
+ "indexed": false,
543
+ "internalType": "NftId",
544
+ "name": "distributorNftId",
545
+ "type": "uint96"
546
+ },
547
+ {
548
+ "indexed": false,
549
+ "internalType": "DistributorType",
550
+ "name": "oldDistributorType",
551
+ "type": "bytes8"
552
+ },
553
+ {
554
+ "indexed": false,
555
+ "internalType": "DistributorType",
556
+ "name": "newDistributorType",
557
+ "type": "bytes8"
558
+ }
559
+ ],
560
+ "name": "LogDistributionServiceDistributorTypeChanged",
561
+ "type": "event"
562
+ },
563
+ {
564
+ "anonymous": false,
565
+ "inputs": [
566
+ {
567
+ "indexed": false,
568
+ "internalType": "NftId",
569
+ "name": "distributionNftId",
570
+ "type": "uint96"
571
+ },
572
+ {
573
+ "indexed": false,
574
+ "internalType": "string",
575
+ "name": "name",
576
+ "type": "string"
577
+ }
578
+ ],
579
+ "name": "LogDistributionServiceDistributorTypeCreated",
580
+ "type": "event"
581
+ },
582
+ {
583
+ "anonymous": false,
584
+ "inputs": [
585
+ {
586
+ "indexed": false,
587
+ "internalType": "NftId",
588
+ "name": "distributionNftId",
589
+ "type": "uint96"
590
+ },
591
+ {
592
+ "indexed": false,
593
+ "internalType": "NftId",
594
+ "name": "distributorNftId",
595
+ "type": "uint96"
596
+ },
597
+ {
598
+ "indexed": false,
599
+ "internalType": "ReferralId",
600
+ "name": "referralId",
601
+ "type": "bytes8"
602
+ },
603
+ {
604
+ "indexed": false,
605
+ "internalType": "string",
606
+ "name": "code",
607
+ "type": "string"
608
+ }
609
+ ],
610
+ "name": "LogDistributionServiceReferralCreated",
611
+ "type": "event"
612
+ },
613
+ {
614
+ "anonymous": false,
615
+ "inputs": [
616
+ {
617
+ "indexed": false,
618
+ "internalType": "NftId",
619
+ "name": "distributionNftId",
620
+ "type": "uint96"
621
+ },
622
+ {
623
+ "indexed": false,
624
+ "internalType": "NftId",
625
+ "name": "distributorNftId",
626
+ "type": "uint96"
627
+ },
628
+ {
629
+ "indexed": false,
630
+ "internalType": "ReferralId",
631
+ "name": "referralId",
632
+ "type": "bytes8"
633
+ },
634
+ {
635
+ "indexed": false,
636
+ "internalType": "uint32",
637
+ "name": "usedReferrals",
638
+ "type": "uint32"
639
+ }
640
+ ],
641
+ "name": "LogDistributionServiceReferralProcessed",
642
+ "type": "event"
643
+ },
644
+ {
645
+ "anonymous": false,
646
+ "inputs": [
647
+ {
648
+ "indexed": false,
649
+ "internalType": "NftId",
650
+ "name": "distributionNftId",
651
+ "type": "uint96"
652
+ },
653
+ {
654
+ "indexed": false,
655
+ "internalType": "ReferralId",
656
+ "name": "referralId",
657
+ "type": "bytes8"
658
+ }
659
+ ],
660
+ "name": "LogDistributionServiceSaleProcessed",
661
+ "type": "event"
662
+ },
663
+ {
664
+ "inputs": [],
665
+ "name": "NFT_OWNABLE_STORAGE_LOCATION_V1",
666
+ "outputs": [
667
+ {
668
+ "internalType": "bytes32",
669
+ "name": "",
670
+ "type": "bytes32"
671
+ }
672
+ ],
673
+ "stateMutability": "view",
674
+ "type": "function"
675
+ },
676
+ {
677
+ "inputs": [],
678
+ "name": "REGISTERABLE_LOCATION_V1",
679
+ "outputs": [
680
+ {
681
+ "internalType": "bytes32",
682
+ "name": "",
683
+ "type": "bytes32"
684
+ }
685
+ ],
686
+ "stateMutability": "view",
687
+ "type": "function"
688
+ },
689
+ {
690
+ "inputs": [],
691
+ "name": "authority",
692
+ "outputs": [
693
+ {
694
+ "internalType": "address",
695
+ "name": "",
696
+ "type": "address"
697
+ }
698
+ ],
699
+ "stateMutability": "view",
700
+ "type": "function"
701
+ },
702
+ {
703
+ "inputs": [
704
+ {
705
+ "internalType": "NftId",
706
+ "name": "distributorNftId",
707
+ "type": "uint96"
708
+ },
709
+ {
710
+ "internalType": "DistributorType",
711
+ "name": "newDistributorType",
712
+ "type": "bytes8"
713
+ },
714
+ {
715
+ "internalType": "bytes",
716
+ "name": "data",
717
+ "type": "bytes"
718
+ }
719
+ ],
720
+ "name": "changeDistributorType",
721
+ "outputs": [],
722
+ "stateMutability": "nonpayable",
723
+ "type": "function"
724
+ },
725
+ {
726
+ "inputs": [
727
+ {
728
+ "internalType": "address",
729
+ "name": "distributor",
730
+ "type": "address"
731
+ },
732
+ {
733
+ "internalType": "DistributorType",
734
+ "name": "distributorType",
735
+ "type": "bytes8"
736
+ },
737
+ {
738
+ "internalType": "bytes",
739
+ "name": "data",
740
+ "type": "bytes"
741
+ }
742
+ ],
743
+ "name": "createDistributor",
744
+ "outputs": [
745
+ {
746
+ "internalType": "NftId",
747
+ "name": "distributorNftId",
748
+ "type": "uint96"
749
+ }
750
+ ],
751
+ "stateMutability": "nonpayable",
752
+ "type": "function"
753
+ },
754
+ {
755
+ "inputs": [
756
+ {
757
+ "internalType": "string",
758
+ "name": "name",
759
+ "type": "string"
760
+ },
761
+ {
762
+ "internalType": "UFixed",
763
+ "name": "minDiscountPercentage",
764
+ "type": "uint160"
765
+ },
766
+ {
767
+ "internalType": "UFixed",
768
+ "name": "maxDiscountPercentage",
769
+ "type": "uint160"
770
+ },
771
+ {
772
+ "internalType": "UFixed",
773
+ "name": "commissionPercentage",
774
+ "type": "uint160"
775
+ },
776
+ {
777
+ "internalType": "uint32",
778
+ "name": "maxReferralCount",
779
+ "type": "uint32"
780
+ },
781
+ {
782
+ "internalType": "Seconds",
783
+ "name": "maxReferralLifetime",
784
+ "type": "uint40"
785
+ },
786
+ {
787
+ "internalType": "bool",
788
+ "name": "allowSelfReferrals",
789
+ "type": "bool"
790
+ },
791
+ {
792
+ "internalType": "bool",
793
+ "name": "allowRenewals",
794
+ "type": "bool"
795
+ },
796
+ {
797
+ "internalType": "bytes",
798
+ "name": "data",
799
+ "type": "bytes"
800
+ }
801
+ ],
802
+ "name": "createDistributorType",
803
+ "outputs": [
804
+ {
805
+ "internalType": "DistributorType",
806
+ "name": "distributorType",
807
+ "type": "bytes8"
808
+ }
809
+ ],
810
+ "stateMutability": "nonpayable",
811
+ "type": "function"
812
+ },
813
+ {
814
+ "inputs": [
815
+ {
816
+ "internalType": "NftId",
817
+ "name": "distributorNftId",
818
+ "type": "uint96"
819
+ },
820
+ {
821
+ "internalType": "string",
822
+ "name": "code",
823
+ "type": "string"
824
+ },
825
+ {
826
+ "internalType": "UFixed",
827
+ "name": "discountPercentage",
828
+ "type": "uint160"
829
+ },
830
+ {
831
+ "internalType": "uint32",
832
+ "name": "maxReferrals",
833
+ "type": "uint32"
834
+ },
835
+ {
836
+ "internalType": "Timestamp",
837
+ "name": "expiryAt",
838
+ "type": "uint40"
839
+ },
840
+ {
841
+ "internalType": "bytes",
842
+ "name": "data",
843
+ "type": "bytes"
844
+ }
845
+ ],
846
+ "name": "createReferral",
847
+ "outputs": [
848
+ {
849
+ "internalType": "ReferralId",
850
+ "name": "referralId",
851
+ "type": "bytes8"
852
+ }
853
+ ],
854
+ "stateMutability": "nonpayable",
855
+ "type": "function"
856
+ },
857
+ {
858
+ "inputs": [
859
+ {
860
+ "internalType": "contract InstanceReader",
861
+ "name": "instanceReader",
862
+ "type": "address"
863
+ },
864
+ {
865
+ "internalType": "ReferralId",
866
+ "name": "referralId",
867
+ "type": "bytes8"
868
+ }
869
+ ],
870
+ "name": "getDiscountPercentage",
871
+ "outputs": [
872
+ {
873
+ "internalType": "UFixed",
874
+ "name": "discountPercentage",
875
+ "type": "uint160"
876
+ },
877
+ {
878
+ "internalType": "ReferralStatus",
879
+ "name": "status",
880
+ "type": "uint8"
881
+ }
882
+ ],
883
+ "stateMutability": "view",
884
+ "type": "function"
885
+ },
886
+ {
887
+ "inputs": [],
888
+ "name": "getDomain",
889
+ "outputs": [
890
+ {
891
+ "internalType": "ObjectType",
892
+ "name": "serviceDomain",
893
+ "type": "uint8"
894
+ }
895
+ ],
896
+ "stateMutability": "pure",
897
+ "type": "function"
898
+ },
899
+ {
900
+ "inputs": [],
901
+ "name": "getInitialInfo",
902
+ "outputs": [
903
+ {
904
+ "components": [
905
+ {
906
+ "internalType": "NftId",
907
+ "name": "nftId",
908
+ "type": "uint96"
909
+ },
910
+ {
911
+ "internalType": "NftId",
912
+ "name": "parentNftId",
913
+ "type": "uint96"
914
+ },
915
+ {
916
+ "internalType": "ObjectType",
917
+ "name": "objectType",
918
+ "type": "uint8"
919
+ },
920
+ {
921
+ "internalType": "bool",
922
+ "name": "isInterceptor",
923
+ "type": "bool"
924
+ },
925
+ {
926
+ "internalType": "address",
927
+ "name": "objectAddress",
928
+ "type": "address"
929
+ },
930
+ {
931
+ "internalType": "address",
932
+ "name": "initialOwner",
933
+ "type": "address"
934
+ },
935
+ {
936
+ "internalType": "bytes",
937
+ "name": "data",
938
+ "type": "bytes"
939
+ }
940
+ ],
941
+ "internalType": "struct IRegistry.ObjectInfo",
942
+ "name": "info",
943
+ "type": "tuple"
944
+ }
945
+ ],
946
+ "stateMutability": "view",
947
+ "type": "function"
948
+ },
949
+ {
950
+ "inputs": [],
951
+ "name": "getNftId",
952
+ "outputs": [
953
+ {
954
+ "internalType": "NftId",
955
+ "name": "",
956
+ "type": "uint96"
957
+ }
958
+ ],
959
+ "stateMutability": "view",
960
+ "type": "function"
961
+ },
962
+ {
963
+ "inputs": [],
964
+ "name": "getOwner",
965
+ "outputs": [
966
+ {
967
+ "internalType": "address",
968
+ "name": "",
969
+ "type": "address"
970
+ }
971
+ ],
972
+ "stateMutability": "view",
973
+ "type": "function"
974
+ },
975
+ {
976
+ "inputs": [],
977
+ "name": "getRegistry",
978
+ "outputs": [
979
+ {
980
+ "internalType": "contract IRegistry",
981
+ "name": "",
982
+ "type": "address"
983
+ }
984
+ ],
985
+ "stateMutability": "view",
986
+ "type": "function"
987
+ },
988
+ {
989
+ "inputs": [],
990
+ "name": "getRelease",
991
+ "outputs": [
992
+ {
993
+ "internalType": "VersionPart",
994
+ "name": "release",
995
+ "type": "uint8"
996
+ }
997
+ ],
998
+ "stateMutability": "view",
999
+ "type": "function"
1000
+ },
1001
+ {
1002
+ "inputs": [],
1003
+ "name": "getRoleId",
1004
+ "outputs": [
1005
+ {
1006
+ "internalType": "RoleId",
1007
+ "name": "serviceRoleId",
1008
+ "type": "uint64"
1009
+ }
1010
+ ],
1011
+ "stateMutability": "view",
1012
+ "type": "function"
1013
+ },
1014
+ {
1015
+ "inputs": [],
1016
+ "name": "getVersion",
1017
+ "outputs": [
1018
+ {
1019
+ "internalType": "Version",
1020
+ "name": "",
1021
+ "type": "uint24"
1022
+ }
1023
+ ],
1024
+ "stateMutability": "pure",
1025
+ "type": "function"
1026
+ },
1027
+ {
1028
+ "inputs": [
1029
+ {
1030
+ "internalType": "address",
1031
+ "name": "activatedBy",
1032
+ "type": "address"
1033
+ },
1034
+ {
1035
+ "internalType": "bytes",
1036
+ "name": "data",
1037
+ "type": "bytes"
1038
+ }
1039
+ ],
1040
+ "name": "initializeVersionable",
1041
+ "outputs": [],
1042
+ "stateMutability": "nonpayable",
1043
+ "type": "function"
1044
+ },
1045
+ {
1046
+ "inputs": [],
1047
+ "name": "isActive",
1048
+ "outputs": [
1049
+ {
1050
+ "internalType": "bool",
1051
+ "name": "active",
1052
+ "type": "bool"
1053
+ }
1054
+ ],
1055
+ "stateMutability": "view",
1056
+ "type": "function"
1057
+ },
1058
+ {
1059
+ "inputs": [],
1060
+ "name": "isConsumingScheduledOp",
1061
+ "outputs": [
1062
+ {
1063
+ "internalType": "bytes4",
1064
+ "name": "",
1065
+ "type": "bytes4"
1066
+ }
1067
+ ],
1068
+ "stateMutability": "view",
1069
+ "type": "function"
1070
+ },
1071
+ {
1072
+ "inputs": [],
1073
+ "name": "linkToRegisteredNftId",
1074
+ "outputs": [
1075
+ {
1076
+ "internalType": "NftId",
1077
+ "name": "nftId",
1078
+ "type": "uint96"
1079
+ }
1080
+ ],
1081
+ "stateMutability": "nonpayable",
1082
+ "type": "function"
1083
+ },
1084
+ {
1085
+ "inputs": [
1086
+ {
1087
+ "internalType": "NftId",
1088
+ "name": "distributionNftId",
1089
+ "type": "uint96"
1090
+ },
1091
+ {
1092
+ "internalType": "ReferralId",
1093
+ "name": "referralId",
1094
+ "type": "bytes8"
1095
+ }
1096
+ ],
1097
+ "name": "processReferral",
1098
+ "outputs": [],
1099
+ "stateMutability": "nonpayable",
1100
+ "type": "function"
1101
+ },
1102
+ {
1103
+ "inputs": [
1104
+ {
1105
+ "internalType": "NftId",
1106
+ "name": "distributionNftId",
1107
+ "type": "uint96"
1108
+ },
1109
+ {
1110
+ "internalType": "ReferralId",
1111
+ "name": "referralId",
1112
+ "type": "bytes8"
1113
+ },
1114
+ {
1115
+ "components": [
1116
+ {
1117
+ "internalType": "Amount",
1118
+ "name": "productFeeAmount",
1119
+ "type": "uint96"
1120
+ },
1121
+ {
1122
+ "internalType": "Amount",
1123
+ "name": "distributionFeeAndCommissionAmount",
1124
+ "type": "uint96"
1125
+ },
1126
+ {
1127
+ "internalType": "Amount",
1128
+ "name": "poolPremiumAndFeeAmount",
1129
+ "type": "uint96"
1130
+ },
1131
+ {
1132
+ "internalType": "Amount",
1133
+ "name": "netPremiumAmount",
1134
+ "type": "uint96"
1135
+ },
1136
+ {
1137
+ "internalType": "Amount",
1138
+ "name": "fullPremiumAmount",
1139
+ "type": "uint96"
1140
+ },
1141
+ {
1142
+ "internalType": "Amount",
1143
+ "name": "premiumAmount",
1144
+ "type": "uint96"
1145
+ },
1146
+ {
1147
+ "internalType": "Amount",
1148
+ "name": "productFeeFixAmount",
1149
+ "type": "uint96"
1150
+ },
1151
+ {
1152
+ "internalType": "Amount",
1153
+ "name": "poolFeeFixAmount",
1154
+ "type": "uint96"
1155
+ },
1156
+ {
1157
+ "internalType": "Amount",
1158
+ "name": "bundleFeeFixAmount",
1159
+ "type": "uint96"
1160
+ },
1161
+ {
1162
+ "internalType": "Amount",
1163
+ "name": "distributionFeeFixAmount",
1164
+ "type": "uint96"
1165
+ },
1166
+ {
1167
+ "internalType": "Amount",
1168
+ "name": "productFeeVarAmount",
1169
+ "type": "uint96"
1170
+ },
1171
+ {
1172
+ "internalType": "Amount",
1173
+ "name": "poolFeeVarAmount",
1174
+ "type": "uint96"
1175
+ },
1176
+ {
1177
+ "internalType": "Amount",
1178
+ "name": "bundleFeeVarAmount",
1179
+ "type": "uint96"
1180
+ },
1181
+ {
1182
+ "internalType": "Amount",
1183
+ "name": "distributionFeeVarAmount",
1184
+ "type": "uint96"
1185
+ },
1186
+ {
1187
+ "internalType": "Amount",
1188
+ "name": "distributionOwnerFeeFixAmount",
1189
+ "type": "uint96"
1190
+ },
1191
+ {
1192
+ "internalType": "Amount",
1193
+ "name": "distributionOwnerFeeVarAmount",
1194
+ "type": "uint96"
1195
+ },
1196
+ {
1197
+ "internalType": "Amount",
1198
+ "name": "commissionAmount",
1199
+ "type": "uint96"
1200
+ },
1201
+ {
1202
+ "internalType": "Amount",
1203
+ "name": "discountAmount",
1204
+ "type": "uint96"
1205
+ }
1206
+ ],
1207
+ "internalType": "struct IPolicy.PremiumInfo",
1208
+ "name": "premium",
1209
+ "type": "tuple"
1210
+ }
1211
+ ],
1212
+ "name": "processSale",
1213
+ "outputs": [],
1214
+ "stateMutability": "nonpayable",
1215
+ "type": "function"
1216
+ },
1217
+ {
1218
+ "inputs": [
1219
+ {
1220
+ "internalType": "NftId",
1221
+ "name": "distributionNftId",
1222
+ "type": "uint96"
1223
+ },
1224
+ {
1225
+ "internalType": "ReferralId",
1226
+ "name": "referralId",
1227
+ "type": "bytes8"
1228
+ }
1229
+ ],
1230
+ "name": "referralIsValid",
1231
+ "outputs": [
1232
+ {
1233
+ "internalType": "bool",
1234
+ "name": "isValid",
1235
+ "type": "bool"
1236
+ }
1237
+ ],
1238
+ "stateMutability": "view",
1239
+ "type": "function"
1240
+ },
1241
+ {
1242
+ "inputs": [
1243
+ {
1244
+ "internalType": "address",
1245
+ "name": "newAuthority",
1246
+ "type": "address"
1247
+ }
1248
+ ],
1249
+ "name": "setAuthority",
1250
+ "outputs": [],
1251
+ "stateMutability": "nonpayable",
1252
+ "type": "function"
1253
+ },
1254
+ {
1255
+ "inputs": [
1256
+ {
1257
+ "internalType": "bytes4",
1258
+ "name": "interfaceId",
1259
+ "type": "bytes4"
1260
+ }
1261
+ ],
1262
+ "name": "supportsInterface",
1263
+ "outputs": [
1264
+ {
1265
+ "internalType": "bool",
1266
+ "name": "",
1267
+ "type": "bool"
1268
+ }
1269
+ ],
1270
+ "stateMutability": "view",
1271
+ "type": "function"
1272
+ },
1273
+ {
1274
+ "inputs": [
1275
+ {
1276
+ "internalType": "bytes",
1277
+ "name": "data",
1278
+ "type": "bytes"
1279
+ }
1280
+ ],
1281
+ "name": "upgradeVersionable",
1282
+ "outputs": [],
1283
+ "stateMutability": "nonpayable",
1284
+ "type": "function"
1285
+ },
1286
+ {
1287
+ "inputs": [
1288
+ {
1289
+ "internalType": "NftId",
1290
+ "name": "distributorNftId",
1291
+ "type": "uint96"
1292
+ },
1293
+ {
1294
+ "internalType": "Amount",
1295
+ "name": "amount",
1296
+ "type": "uint96"
1297
+ }
1298
+ ],
1299
+ "name": "withdrawCommission",
1300
+ "outputs": [
1301
+ {
1302
+ "internalType": "Amount",
1303
+ "name": "withdrawnAmount",
1304
+ "type": "uint96"
1305
+ }
1306
+ ],
1307
+ "stateMutability": "nonpayable",
1308
+ "type": "function"
1309
+ }
1310
+ ],
1311
+ "bytecode": "0x6080604052348015600e575f80fd5b5060156019565b60c9565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff161560685760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b039081161460c65780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b615d94806100d65f395ff3fe608060405234801561000f575f80fd5b50600436106101a1575f3560e01c80635dcb3bae116100f35780638fb3603711610093578063ada9652e1161006e578063ada9652e146103f9578063b68d18091461040d578063bf7e214f14610414578063eed283151461041c575f80fd5b80638fb36037146103b2578063987cb161146103d3578063ab3fc75f146103e6575f80fd5b806376b707b7116100ce57806376b707b71461036a5780637950d0e2146103845780637a9e5e4b14610397578063893d20e8146103aa575f80fd5b80635dcb3bae1461031a578063644c45e01461032d5780636c741e781461034a575f80fd5b80631bda5efa1161015e57806325d073841161013957806325d07384146102bc578063329d6e74146102cf57806349bb9e4b146102e25780635ab1bd53146102f5575f80fd5b80631bda5efa1461025f5780631eff4b221461027f57806322f3e2d4146102b4575f80fd5b806301ffc9a7146101a5578063071e1e4a146101e657806307e71a6e146101fb5780630d8e6e2c146102265780630fec111c14610242578063138461e014610257575b5f80fd5b6101d16101b33660046148a0565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6101f96101f4366004614907565b610450565b005b61020e61020936600461493e565b610735565b6040516001600160601b0390911681526020016101dd565b61022e610d3f565b60405162ffffff90911681526020016101dd565b61024a610dc6565b6040516101dd9190614998565b61020e610f80565b61027261026d366004614c0d565b610f8a565b6040516101dd9190614ce3565b6102a67f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b6040519081526020016101dd565b6101d1611597565b6101d16102ca366004614907565b61160e565b6101f96102dd366004614cf8565b611aff565b6101f96102f0366004614d29565b611c49565b6001546001600160a01b03165b6040516001600160a01b0390911681526020016101dd565b61020e610328366004614d75565b611d45565b5f80516020615cff833981519152546001600160601b031661020e565b610352612082565b6040516001600160401b0390911681526020016101dd565b61037261210e565b60405160ff90911681526020016101dd565b6101f9610392366004614dd2565b612176565b6101f96103a5366004614f6e565b6126f4565b61030261277a565b6103ba6128ab565b6040516001600160e01b031990911681526020016101dd565b6102726103e1366004614f89565b6128e0565b6101f96103f4366004615033565b613386565b6102a65f80516020615cff83398151915281565b600e610372565b61030261361a565b61042f61042a366004615050565b613635565b604080516001600160a01b03909316835260ff9091166020830152016101dd565b61045c335b5f3661393b565b81600e6104698282613a39565b610473848461160e565b1561072f575f73__$fb599632d08395912d9d70eb2f0f93b5e2$__63ce64d2816104a56001546001600160a01b031690565b876040518363ffffffff1660e01b81526004016104c392919061506c565b602060405180830381865af41580156104de573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610502919061508e565b90505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610541573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610565919061508e565b6001600160a01b0316631d3be477866040518263ffffffff1660e01b81526004016105909190614ce3565b5f60405180830381865afa1580156105aa573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526105d19190810190615124565b90506001816060018181516105e69190615233565b63ffffffff1690525060408051631a99b41b60e31b815290516001600160a01b0384169163d4cda0d89160048083019260209291908290030181865afa158015610632573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610656919061508e565b6001600160a01b03166396260559868360ff6040518463ffffffff1660e01b815260040161068693929190615319565b5f604051808303815f87803b15801561069d575f80fd5b505af11580156106af573d5f803e3d5ffd5b505050507fd0fb19cbe3e6c7666a69cce6e9e84c1d4d23353bb2023d89040efa1ce3e5a82e86826020015187846060015160405161072494939291906001600160601b0394851681529290931660208301526001600160c01b031916604082015263ffffffff91909116606082015260800190565b60405180910390a150505b50505050565b5f61073f33610455565b82601761074c8282613a39565b5f80610756613b6d565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610797573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107bb919061508e565b60405163f0ea17c360e01b81526001600160601b03851660048201529091505f906001600160a01b0383169063f0ea17c3906024015f60405180830381865afa15801561080a573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526108319190810190615350565b604051630232ca4960e01b81526001600160601b038b1660048201529091505f906001600160a01b03841690630232ca4990602401602060405180830381865afa158015610881573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108a591906153f7565b905088975061091e8873__$3bac17678db7ae928afa209f2f44deec9c$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af41580156108f5573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061091991906153f7565b613c19565b1561092b5780975061096b565b6109358882613ca7565b1561096b576040516322d98b0960e11b81526001600160601b03808a166004830152821660248201526044015b60405180910390fd5b5f846001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156109a8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109cc919061508e565b905060025f9054906101000a90046001600160a01b03166001600160a01b03166311a1467782888c73__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610a3b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a5f91906153f7565b6040518563ffffffff1660e01b8152600401610a7e9493929190615412565b5f604051808303815f87803b158015610a95575f80fd5b505af1158015610aa7573d5f803e3d5ffd5b5050505060025f9054906101000a90046001600160a01b03166001600160a01b03166366101781828d73__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610b17573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b3b91906153f7565b8d6040518563ffffffff1660e01b8152600401610b5b9493929190615412565b5f604051808303815f87803b158015610b72575f80fd5b505af1158015610b84573d5f803e3d5ffd5b50505050505f610b9c6001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b038d1660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015610be9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c0d919061508e565b90507f81c27687c85b82d25896110abb95c71bcbe0f90ff15274c4f0dbc5710a43ec3f8b8285602001516001600160a01b03166382bfefc86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c72573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c96919061508e565b604080516001600160601b0394851681526001600160a01b0393841660208201529290911690820152908b16606082015260800160405180910390a182602001516001600160a01b03166367ed5f36828b6040518363ffffffff1660e01b8152600401610d0492919061506c565b5f604051808303815f87803b158015610d1b575f80fd5b505af1158015610d2d573d5f803e3d5ffd5b50505050505050505050505092915050565b604051632efe011360e01b8152600360048201525f60248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af4158015610d9d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610dc19190615444565b905090565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820152907f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610e72573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e9691906153f7565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a001610ede61277a565b6001600160a01b03168152602001826001018054610efb90615466565b80601f0160208091040260200160405190810160405280929190818152602001828054610f2790615466565b8015610f725780601f10610f4957610100808354040283529160200191610f72565b820191905f5260205f20905b815481529060010190602001808311610f5557829003601f168201915b505050505081525091505090565b5f610dc130613cf1565b5f610f9433610455565b5f80610f9e613b6d565b915091505f610fb56001546001600160a01b031690565b60405163677d3feb60e11b81526001600160601b03851660048201526001600160a01b03919091169063cefa7fd690602401602060405180830381865afa158015611002573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061102691906153f7565b90505f826001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611065573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611089919061508e565b604051636a05a41360e01b81526001600160601b03841660048201526001600160a01b039190911690636a05a413906024016101c060405180830381865afa1580156110d7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110fb9190615500565b604081015151606082015151919250905f90611117908e613eea565b90506001600160a01b03808316908216111561124357604051632ffa8f7f60e11b81526001600160a01b038316600482015273__$bf7bc340cbb9229ef1de2c568356e67902$__90635ff51efe90602401602060405180830381865af4158015611183573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111a791906155ba565b604051632ffa8f7f60e11b81526001600160a01b038316600482015273__$bf7bc340cbb9229ef1de2c568356e67902$__90635ff51efe90602401602060405180830381865af41580156111fd573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061122191906155ba565b604051632d8d32a560e21b815260048101929092526024820152604401610962565b5f61124e8383613ef5565b90506112668f826001600160a01b0390811691161190565b15611397578e6001600160a01b031673__$bf7bc340cbb9229ef1de2c568356e67902$__635ff51efe90916040518263ffffffff1660e01b81526004016112bc91906001600160a01b0391909116815260200190565b602060405180830381865af41580156112d7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112fb91906155ba565b604051632ffa8f7f60e11b81526001600160a01b038316600482015273__$bf7bc340cbb9229ef1de2c568356e67902$__90635ff51efe90602401602060405180830381865af4158015611351573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061137591906155ba565b6040516306990c9f60e11b815260048101929092526024820152604401610962565b505050505073__$1919c6d2c69d787ccb2653a371d7e5737d$__63578c3039838e6040518363ffffffff1660e01b81526004016113d59291906155d1565b602060405180830381865af41580156113f0573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061141491906155f2565b92505f6040518061014001604052808d6001600160a01b03168152602001846001600160601b031681526020018c6001600160a01b031681526020018a63ffffffff1681526020018964ffffffffff168152602001881515815260200187151581526020018b6001600160a01b031681526020018e8152602001868152509050816001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156114d0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114f4919061508e565b6001600160a01b0316634bb2d19785836040518363ffffffff1660e01b815260040161152192919061560d565b5f604051808303815f87803b158015611538575f80fd5b505af115801561154a573d5f803e3d5ffd5b505050507fcd159579c9776c25aaa89df3e9e0e273cbd95c8827ec72a5e8c28aa21c34c01b838e60405161157f9291906155d1565b60405180910390a15050509998505050505050505050565b5f6115a061361a565b60405163a166aa8960e01b81523060048201526001600160a01b03919091169063a166aa8990602401602060405180830381865afa1580156115e4573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611608919061570a565b15905090565b5f82600e61161c8282613a39565b604051630a4d29dd60e31b81526001600160601b038616600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906352694ee890602401602060405180830381865af4158015611672573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611696919061570a565b8061171c5750604051637bc32ecf60e01b815273__$05887d5853069c88bcd4c0a2107db45f29$__90637bc32ecf906116dd906001600160c01b0319881690600401614ce3565b602060405180830381865af41580156116f8573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061171c919061570a565b15611729575f9250611af7565b5f73__$fb599632d08395912d9d70eb2f0f93b5e2$__63ce64d2816117566001546001600160a01b031690565b886040518363ffffffff1660e01b815260040161177492919061506c565b602060405180830381865af415801561178f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117b3919061508e565b90505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156117f2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611816919061508e565b6001600160a01b0316631d3be477876040518263ffffffff1660e01b81526004016118419190614ce3565b5f60405180830381865afa15801561185b573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526118829190810190615124565b6020810151604051630a4d29dd60e31b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906352694ee890602401602060405180830381865af41580156118e1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611905919061570a565b15611914575f94505050611af7565b80516119209088613f2d565b1561194457805160405163232e27d560e21b81526109629188918a90600401615725565b60a081015160405163790a38ad60e01b815264ffffffffff909116600482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9063790a38ad90602401602060405180830381865af415801561199e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119c2919061570a565b80611ad0575060a0810151604051638d38cd4b60e01b815264ffffffffff909116600482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__90638d38cd4b90602401602060405180830381865af4158015611a22573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a46919061570a565b8015611ad05750611ad073__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015611a97573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611abb9190615750565b8260a0015164ffffffffff9081169116111590565b9450848015611af25750806040015163ffffffff16816060015163ffffffff16105b945050505b505092915050565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c611b21610d3f565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015611b5f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b83919061577f565b5f80516020615d3f8339815191528054600160401b900460ff1680611bb5575080546001600160401b03808416911610155b15611bd35760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155611bfd83613f77565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b5f80516020615d3f8339815191528054600160401b810460ff1615906001600160401b03165f81158015611c7a5750825b90505f826001600160401b03166001148015611c955750303b155b905081158015611ca3575080155b15611cc15760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315611ceb57845460ff60401b1916600160401b1785555b611cf58787613f7f565b8315611d3c57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15b50505050505050565b5f611d4f33610455565b5f80611d59613b6d565b91509150611dc7816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611d9c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611dc0919061508e565b8684614142565b60055f9054906101000a90046001600160a01b03166001600160a01b03166357a8fba76040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015611e3c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e6091906153f7565b6001600160601b03168152602001856001600160601b03168152602001611e85601790565b60ff1681526020016001151581526020015f6001600160a01b03168152602001896001600160a01b0316815260200160405180602001604052805f8152508152506040518263ffffffff1660e01b8152600401611ee29190614998565b6020604051808303815f875af1158015611efe573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f2291906153f7565b92505f6040518060800160405280876001600160c01b03191681526020016001151581526020015f63ffffffff168152602001868152509050816001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f97573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611fbb919061508e565b6001600160a01b031663f9b3fe3c85836040518363ffffffff1660e01b8152600401611fe89291906157e0565b5f604051808303815f87803b158015611fff575f80fd5b505af1158015612011573d5f803e3d5ffd5b5050604080516001600160601b038781168252881660208201526001600160c01b03198a16818301526001600160a01b038b16606082015290517f4a9178ebf2691f0cc04ca591663061f3c23c8b96b53097cfa0289437162c992e9350908190036080019150a15050509392505050565b5f73__$1d92393fa9ccd763988368ce8a1cb90d26$__63645ceefe600e6120a761210e565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865af41580156120ea573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610dc1919061577f565b5f61211761361a565b6001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015612152573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610dc19190615801565b61217f33610455565b82600e61218c8282613a39565b5f73__$fb599632d08395912d9d70eb2f0f93b5e2$__63ce64d2816121b96001546001600160a01b031690565b886040518363ffffffff1660e01b81526004016121d792919061506c565b602060405180830381865af41580156121f2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612216919061508e565b90505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015612255573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612279919061508e565b90505f826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156122b8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122dc919061508e565b90505f6122f3876101c00151886101e001516141e5565b90506122ff898961160e565b156125c0576102008701516002546040516374933c2f60e01b81526001600160a01b03909116906374933c2f906123409086908e9086908890600401615412565b5f604051808303815f87803b158015612357575f80fd5b505af1158015612369573d5f803e3d5ffd5b5050604051631d3be47760e01b81525f92506001600160a01b0387169150631d3be4779061239b908d90600401614ce3565b5f60405180830381865afa1580156123b5573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526123dc9190810190615124565b905060025f9054906101000a90046001600160a01b03166001600160a01b031663d165cb6485836020015173__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af415801561244e573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061247291906153f7565b866040518563ffffffff1660e01b81526004016124929493929190615412565b5f604051808303815f87803b1580156124a9575f80fd5b505af11580156124bb573d5f803e3d5ffd5b5050505060208101516040516313d8ebc960e11b81526001600160601b0390911660048201525f906001600160a01b038716906327b1d792906024015f60405180830381865afa158015612511573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526125389190810190615821565b905060018160400181815161254d9190615233565b63ffffffff169052506020820151604051630af38b5f60e21b81526001600160a01b03871691632bce2d7c9161258b9190859060ff906004016158c4565b5f604051808303815f87803b1580156125a2575f80fd5b505af11580156125b4573d5f803e3d5ffd5b5050505050505061269e565b60025f9054906101000a90046001600160a01b03166001600160a01b03166374933c2f838b73__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af415801561262c573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061265091906153f7565b856040518563ffffffff1660e01b81526004016126709493929190615412565b5f604051808303815f87803b158015612687575f80fd5b505af1158015612699573d5f803e3d5ffd5b505050505b604080516001600160601b038b1681526001600160c01b03198a1660208201527f1ada02426ee529031fdddc0d25489621c399116f75cb4bbf31ec18c7c7c3e3ef910160405180910390a1505050505050505050565b336126fd61361a565b6001600160a01b0316816001600160a01b0316146127385760405162d1953b60e31b81526001600160a01b0382166004820152602401610962565b816001600160a01b03163b5f0361276d576040516361798f2f60e11b81526001600160a01b0383166004820152602401610962565b61277682614269565b5050565b5f805f80516020615cff83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156127e6573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061280a919061570a565b15612895576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa15801561286b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061288f919061508e565b91505090565b54600160601b90046001600160a01b0316919050565b5f80516020615d1f83398151915280545f9190600160a01b900460ff166128d2575f61288f565b638fb3603760e01b91505090565b5f6128ea33610455565b8660176128f78282613a39565b5f80612901613b6d565b9150915089515f0361292857896040516337b67ced60e01b815260040161096291906158e5565b60405163790a38ad60e01b815264ffffffffff8816600482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9063790a38ad90602401602060405180830381865af415801561297c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906129a0919061570a565b80612aa057508664ffffffffff1673__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__6394335b1a909173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015612a11573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612a359190615750565b6040516001600160e01b031960e085901b16815264ffffffffff928316600482015291166024820152604401602060405180830381865af4158015612a7c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612aa0919061570a565b15612ac75760405163186399e560e31b815264ffffffffff88166004820152602401610962565b5f612ada6001546001600160a01b031690565b60405163677d3feb60e11b81526001600160601b038e1660048201526001600160a01b03919091169063cefa7fd690602401602060405180830381865afa158015612b27573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b4b91906153f7565b9050612b578184613f2d565b15612b905760405163e172170d60e01b81526001600160601b03808e166004830152808316602483015284166044820152606401610962565b5f826001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015612bcd573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612bf1919061508e565b6040516313d8ebc960e11b81526001600160601b038f1660048201529091505f906001600160a01b038316906327b1d792906024015f60405180830381865afa158015612c40573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612c679190810190615821565b516040516368322c6360e11b81529091505f906001600160a01b0384169063d06458c690612c99908590600401614ce3565b5f60405180830381865afa158015612cb3573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612cda91908101906158f7565b90508b63ffffffff16816060015163ffffffff161015612d1b576060810151604051631bdd82b160e31b815263ffffffff9091166004820152602401610962565b80516001600160a01b03808f1691161115612e4957805160405163e2eb023b60e01b81526001600160a01b03909116600482015273__$bf7bc340cbb9229ef1de2c568356e67902$__9063e2eb023b90602401602060405180830381865af4158015612d89573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612dad91906155ba565b60405163e2eb023b60e01b81526001600160a01b038f16600482015273__$bf7bc340cbb9229ef1de2c568356e67902$__9063e2eb023b90602401602060405180830381865af4158015612e03573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612e2791906155ba565b604051637025bb8d60e11b815260048101929092526024820152604401610962565b60408101516001600160a01b03808f1691161015612f7d57604081810151905163e2eb023b60e01b81526001600160a01b03909116600482015273__$bf7bc340cbb9229ef1de2c568356e67902$__9063e2eb023b90602401602060405180830381865af4158015612ebd573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612ee191906155ba565b60405163e2eb023b60e01b81526001600160a01b038f16600482015273__$bf7bc340cbb9229ef1de2c568356e67902$__9063e2eb023b90602401602060405180830381865af4158015612f37573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612f5b91906155ba565b60405163d80ce0cf60e01b815260048101929092526024820152604401610962565b6080810151604051633682752160e21b815264ffffffffff909116600482015273__$71e292c09eace9601b3e21e68a1278917a$__9063da09d48490602401602060405180830381865af4158015612fd7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612ffb91906155ba565b73__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015613042573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906130669190615750565b604051633682752160e21b815264ffffffffff909116600482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9063da09d48490602401602060405180830381865af41580156130bb573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906130df91906155ba565b604051633682752160e21b815264ffffffffff8e16600482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9063da09d48490602401602060405180830381865af4158015613133573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061315791906155ba565b6131619190615a18565b111561319757608081015160405163941185d360e01b815264ffffffffff9182166004820152908c166024820152604401610962565b5050604051631f849e6b60e11b815273__$05887d5853069c88bcd4c0a2107db45f29$__9150633f093cd6906131d39086908f906004016155d1565b602060405180830381865af41580156131ee573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061321291906155f2565b95505f604051806101000160405280856001600160601b031681526020018e6001600160601b031681526020018b63ffffffff1681526020015f63ffffffff1681526020018c6001600160a01b031681526020018a64ffffffffff1681526020018d8152602001898152509050826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156132bb573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906132df919061508e565b6001600160a01b0316634a82439288836040518363ffffffff1660e01b815260040161330c929190615a2b565b5f604051808303815f87803b158015613323575f80fd5b505af1158015613335573d5f803e3d5ffd5b505050507f75877f30372d5d5274d26a87127a9dcb9944f7fc094a00f5e126ea90220d46e0848e898f60405161336e9493929190615a4f565b60405180910390a15050505050509695505050505050565b61338f33610455565b61339a836017613a39565b5f806133a4613b6d565b91509150613412816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156133e7573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061340b919061508e565b8584614142565b5f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa15801561344f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613473919061508e565b6040516313d8ebc960e11b81526001600160601b03881660048201526001600160a01b0391909116906327b1d792906024015f60405180830381865afa1580156134bf573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526134e69190810190615821565b80516001600160c01b0319871682526060820186905260408051631a99b41b60e31b8152905192935090916001600160a01b0385169163d4cda0d89160048083019260209291908290030181865afa158015613544573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613568919061508e565b6001600160a01b0316632bce2d7c888460ff6040518463ffffffff1660e01b8152600401613598939291906158c4565b5f604051808303815f87803b1580156135af575f80fd5b505af11580156135c1573d5f803e3d5ffd5b5050604080516001600160601b038b1681526001600160c01b031980861660208301528a16918101919091527fbc91a707be82165c58e12c3cdd805449dbceec4592db04a692e68b120a4daa7792506060019050611d33565b5f80516020615d1f833981519152546001600160a01b031690565b5f805f846001600160a01b0316631d3be477856040518263ffffffff1660e01b81526004016136649190614ce3565b5f60405180830381865afa15801561367e573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526136a59190810190615124565b60a081015160405163790a38ad60e01b815264ffffffffff909116600482015290915073__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9063790a38ad90602401602060405180830381865af4158015613702573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613726919061570a565b156137a35773__$bf7bc340cbb9229ef1de2c568356e67902$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015613772573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613796919061508e565b60645b9250925050613934565b6138258160a0015173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af41580156137f2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906138169190615750565b64ffffffffff90811691161090565b1561389c5773__$bf7bc340cbb9229ef1de2c568356e67902$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015613871573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613895919061508e565b606e613799565b806040015163ffffffff16816060015163ffffffff16106139295773__$bf7bc340cbb9229ef1de2c568356e67902$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af41580156138fe573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613922919061508e565b6078613799565b608001519150600a90505b9250929050565b5f80516020615d1f8339815191525f8061397361395661361a565b873061396560045f8a8c615a91565b61396e91615ab8565b6142c9565b9150915081613a315763ffffffff811615613a0e57825460ff60a01b1916600160a01b1783556139a161361a565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b81526004016139d093929190615af0565b5f604051808303815f87803b1580156139e7575f80fd5b505af11580156139f9573d5f803e3d5ffd5b5050845460ff60a01b1916855550613a319050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401610962565b505050505050565b60405163037c8cb160e51b815260ff8216600482015273__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636f91962090602401602060405180830381865af4158015613a89573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613aad919061570a565b80613b3b57506001546001600160a01b0316604051635b12715d60e11b81526001600160601b038416600482015260ff831660248201526001600160a01b03919091169063b624e2ba90604401602060405180830381865afa158015613b15573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613b39919061570a565b155b156127765760405163d711af7560e01b81526001600160601b038316600482015260ff82166024820152604401610962565b5f8073__$19db5f0436f9beab06d91aaebdafaf50ff$__63ed352647613b9b6001546001600160a01b031690565b6040805160e084901b6001600160e01b03191681526001600160a01b03929092166004830152336024830152600e604483015280516064808401938290030181865af4158015613bed573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613c119190615b2f565b915091509091565b604051631315996960e11b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063262b32d2906044015b602060405180830381865af4158015613c7a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613c9e919061570a565b90505b92915050565b604051632601631360e21b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__906398058c4c90604401613c5f565b5f805f80516020615cff83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015613d5d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613d81919061570a565b15613dad5780546040516301ab8b6760e21b81526001600160601b039091166004820152602401610962565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa158015613dff573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613e23919061570a565b613e4b5760405163b9304b0d60e01b81526001600160a01b0384166004820152602401610962565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b0385811660048301529190911690635e546bee90602401602060405180830381865afa158015613e9d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613ec191906153f7565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b5f613c9e8284615b5c565b5f6001600160a01b038083169084161015613f235760405163117efe6d60e31b815260040160405180910390fd5b613c9e8284615b7b565b6040516399009c5160e01b81526001600160601b038084166004830152821660248201525f9073__$94a2c899be079b00d952d0d84fffaa5c34$__906399009c5190604401613c5f565b6101a16143d1565b5f80516020615d3f8339815191528054600160401b810460ff1615906001600160401b03165f81158015613fb05750825b90505f826001600160401b03166001148015613fcb5750303b155b905081158015613fd9575080155b15613ff75760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561402157845460ff60401b1916600160401b1785555b5f80878060200190518101906140379190615b9a565b9150915061404682828b614409565b61405060286144ab565b600280546001600160a01b0319166001600160a01b039290921691909117905561407a600b6144ab565b600380546001600160a01b0319166001600160a01b03929092169190911790556140a4600a6144ab565b600480546001600160a01b0319166001600160a01b03929092169190911790556140ce60026144ab565b600580546001600160a01b0319166001600160a01b03929092169190911790556140fe63c7f9373d60e01b61453c565b50508315611d3c57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001611d33565b6040516368322c6360e11b81525f906001600160a01b0385169063d06458c690614170908690600401614ce3565b5f60405180830381865afa15801561418a573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526141b191908101906158f7565b6020015190506141c18183613f2d565b1561072f578281836040516313bf6c4560e21b815260040161096293929190615725565b60405163274acb3560e01b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063274acb3590604401602060405180830381865af4158015614245573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613c9e91906153f7565b5f80516020615d1f83398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b179052516143379190615bb6565b5f60405180830381855afa9150503d805f811461436f576040519150601f19603f3d011682016040523d82523d5f602084013e614374565b606091505b509150915081156143c65760408151106143a6578080602001905181019061439c9190615bcc565b90945092506143c6565b60208151106143c657808060200190518101906143c3919061570a565b93505b505094509492505050565b5f80516020615d3f83398151915254600160401b900460ff1661440757604051631afcd79f60e31b815260040160405180910390fd5b565b6144116143d1565b61441961456f565b6144968383846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa15801561445a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061447e91906153f7565b60085f8660405180602001604052805f81525061457f565b6144a663daf9067160e01b61453c565b505050565b5f6144be6001546001600160a01b031690565b6001600160a01b031663d39e6043836144d561210e565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa158015614518573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613ca1919061508e565b6145446143d1565b61456c816001600160e01b0319165f908152602081905260409020805460ff19166001179055565b50565b6145776143d1565b6144076146c6565b6145876143d1565b604051632330f24760e01b81526001600160a01b038816600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90632330f24790602401602060405180830381865af41580156145dd573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190614601919061570a565b6146295760405163cf6935e560e01b81526001600160a01b0388166004820152602401610962565b614632876146f4565b61463c8683614705565b5f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b861515021781559050600181016146ab8382615c44565b506146bc634a531f3360e01b61453c565b5050505050505050565b6146ce6143d1565b60017f9b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f0055565b6146fc6143d1565b61456c8161477b565b61470d6143d1565b61471561478c565b61471e826147d4565b6001600160a01b0381166147455760405163f17ef42d60e01b815260040160405180910390fd5b5f80516020615cff83398151915280546001600160601b0316600160601b6001600160a01b039093169290920291909117905550565b6147836143d1565b61456c81614269565b6147946143d1565b6144076301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b6147dc6143d1565b604051633334d16b60e01b81526001600160a01b038216600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90633334d16b90602401602060405180830381865af4158015614832573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190614856919061570a565b61487e5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610962565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b5f602082840312156148b0575f80fd5b81356001600160e01b0319811681146148c7575f80fd5b9392505050565b6001600160601b038116811461456c575f80fd5b80356148ed816148ce565b919050565b6001600160c01b03198116811461456c575f80fd5b5f8060408385031215614918575f80fd5b8235614923816148ce565b91506020830135614933816148f2565b809150509250929050565b5f806040838503121561494f575f80fd5b823561495a816148ce565b91506020830135614933816148ce565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f60608301516149e0608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e080840152614a2461010084018261496a565b949350505050565b634e487b7160e01b5f52604160045260245ffd5b60405161024081016001600160401b0381118282101715614a6357614a63614a2c565b60405290565b60405161010081016001600160401b0381118282101715614a6357614a63614a2c565b604051606081016001600160401b0381118282101715614a6357614a63614a2c565b604051608081016001600160401b0381118282101715614a6357614a63614a2c565b60405161014081016001600160401b0381118282101715614a6357614a63614a2c565b604051601f8201601f191681016001600160401b0381118282101715614b1b57614b1b614a2c565b604052919050565b5f6001600160401b03821115614b3b57614b3b614a2c565b50601f01601f191660200190565b5f82601f830112614b58575f80fd5b8135602083015f614b70614b6b84614b23565b614af3565b9050828152858383011115614b83575f80fd5b828260208301375f92810160200192909252509392505050565b6001600160a01b038116811461456c575f80fd5b80356148ed81614b9d565b63ffffffff8116811461456c575f80fd5b80356148ed81614bbc565b64ffffffffff8116811461456c575f80fd5b80356148ed81614bd8565b801515811461456c575f80fd5b80356148ed81614bf5565b5f805f805f805f805f6101208a8c031215614c26575f80fd5b89356001600160401b03811115614c3b575f80fd5b614c478c828d01614b49565b99505060208a0135614c5881614b9d565b9750614c6660408b01614bb1565b9650614c7460608b01614bb1565b9550614c8260808b01614bcd565b9450614c9060a08b01614bea565b9350614c9e60c08b01614c02565b9250614cac60e08b01614c02565b91506101008a01356001600160401b03811115614cc7575f80fd5b614cd38c828d01614b49565b9150509295985092959850929598565b6001600160c01b031991909116815260200190565b5f60208284031215614d08575f80fd5b81356001600160401b03811115614d1d575f80fd5b614a2484828501614b49565b5f8060408385031215614d3a575f80fd5b8235614d4581614b9d565b915060208301356001600160401b03811115614d5f575f80fd5b614d6b85828601614b49565b9150509250929050565b5f805f60608486031215614d87575f80fd5b8335614d9281614b9d565b92506020840135614da2816148f2565b915060408401356001600160401b03811115614dbc575f80fd5b614dc886828701614b49565b9150509250925092565b5f805f838503610280811215614de6575f80fd5b8435614df1816148ce565b93506020850135614e01816148f2565b9250610240603f1982011215614e15575f80fd5b50614e1e614a40565b614e2a604086016148e2565b8152614e38606086016148e2565b6020820152614e49608086016148e2565b6040820152614e5a60a086016148e2565b6060820152614e6b60c086016148e2565b6080820152614e7c60e086016148e2565b60a0820152614e8e61010086016148e2565b60c0820152614ea061012086016148e2565b60e0820152614eb261014086016148e2565b610100820152614ec561016086016148e2565b610120820152614ed861018086016148e2565b610140820152614eeb6101a086016148e2565b610160820152614efe6101c086016148e2565b610180820152614f116101e086016148e2565b6101a0820152614f2461020086016148e2565b6101c0820152614f3761022086016148e2565b6101e0820152614f4a61024086016148e2565b610200820152614f5d61026086016148e2565b610220820152809150509250925092565b5f60208284031215614f7e575f80fd5b81356148c781614b9d565b5f805f805f8060c08789031215614f9e575f80fd5b8635614fa9816148ce565b955060208701356001600160401b03811115614fc3575f80fd5b614fcf89828a01614b49565b9550506040870135614fe081614b9d565b93506060870135614ff081614bbc565b9250608087013561500081614bd8565b915060a08701356001600160401b0381111561501a575f80fd5b61502689828a01614b49565b9150509295509295509295565b5f805f60608486031215615045575f80fd5b8335614d92816148ce565b5f8060408385031215615061575f80fd5b823561492381614b9d565b6001600160a01b039290921682526001600160601b0316602082015260400190565b5f6020828403121561509e575f80fd5b81516148c781614b9d565b80516148ed816148ce565b80516148ed81614bbc565b80516148ed81614b9d565b80516148ed81614bd8565b5f82601f8301126150e4575f80fd5b8151602083015f6150f7614b6b84614b23565b905082815285838301111561510a575f80fd5b8282602083015e5f92810160200192909252509392505050565b5f60208284031215615134575f80fd5b81516001600160401b03811115615149575f80fd5b8201610100818503121561515b575f80fd5b615163614a69565b61516c826150a9565b815261517a602083016150a9565b602082015261518b604083016150b4565b604082015261519c606083016150b4565b60608201526151ad608083016150bf565b60808201526151be60a083016150ca565b60a082015260c08201516001600160401b038111156151db575f80fd5b6151e7868285016150d5565b60c08301525060e08201516001600160401b03811115615205575f80fd5b615211868285016150d5565b60e083015250949350505050565b634e487b7160e01b5f52601160045260245ffd5b63ffffffff8181168382160190811115613ca157613ca161521f565b6001600160601b0381511682525f602082015161527760208501826001600160601b03169052565b50604082015161528f604085018263ffffffff169052565b5060608201516152a7606085018263ffffffff169052565b5060808201516152c260808501826001600160a01b03169052565b5060a08201516152db60a085018264ffffffffff169052565b5060c082015161010060c08501526152f761010085018261496a565b905060e083015184820360e0860152615310828261496a565b95945050505050565b6001600160401b0360c01b84168152606060208201525f61533d606083018561524f565b905060ff83166040830152949350505050565b5f60208284031215615360575f80fd5b81516001600160401b03811115615375575f80fd5b820160608185031215615386575f80fd5b61538e614a8c565b81516001600160401b038111156153a3575f80fd5b6153af868285016150d5565b82525060208201516153c081614b9d565b602082015260408201516001600160401b038111156153dd575f80fd5b6153e9868285016150d5565b604083015250949350505050565b5f60208284031215615407575f80fd5b81516148c7816148ce565b6001600160a01b039490941684526001600160601b039283166020850152908216604084015216606082015260800190565b5f60208284031215615454575f80fd5b815162ffffff811681146148c7575f80fd5b600181811c9082168061547a57607f821691505b60208210810361549857634e487b7160e01b5f52602260045260245ffd5b50919050565b5f604082840312156154ae575f80fd5b604080519081016001600160401b03811182821017156154d0576154d0614a2c565b806040525080915082516154e381614b9d565b815260208301516154f3816148ce565b6020919091015292915050565b5f6101c0828403128015615512575f80fd5b5060405160e081016001600160401b038111828210171561553557615535614a2c565b604052615542848461549e565b8152615551846040850161549e565b6020820152615563846080850161549e565b60408201526155758460c0850161549e565b606082015261558884610100850161549e565b608082015261559b84610140850161549e565b60a08201526155ae84610180850161549e565b60c08201529392505050565b5f602082840312156155ca575f80fd5b5051919050565b6001600160601b0383168152604060208201525f614a24604083018461496a565b5f60208284031215615602575f80fd5b81516148c7816148f2565b6001600160c01b03198316815260406020820181905282516001600160a01b0316908201525f602083015161564d60608401826001600160601b03169052565b5060408301516001600160a01b038116608084015250606083015163ffffffff811660a084015250608083015164ffffffffff811660c08401525060a083015180151560e08401525060c08301518015156101008401525060e08301516001600160a01b03811661012084015250610100830151610140808401526156d661018084018261496a565b9050610120840151603f19848303016101608501526156f5828261496a565b9695505050505050565b80516148ed81614bf5565b5f6020828403121561571a575f80fd5b81516148c781614bf5565b6001600160c01b03199390931683526001600160601b03918216602084015216604082015260600190565b5f60208284031215615760575f80fd5b81516148c781614bd8565b6001600160401b038116811461456c575f80fd5b5f6020828403121561578f575f80fd5b81516148c78161576b565b6001600160401b0360c01b815116825260208101511515602083015263ffffffff60408201511660408301525f606082015160806060850152614a24608085018261496a565b6001600160601b0383168152604060208201525f614a24604083018461579a565b5f60208284031215615811575f80fd5b815160ff811681146148c7575f80fd5b5f60208284031215615831575f80fd5b81516001600160401b03811115615846575f80fd5b820160808185031215615857575f80fd5b61585f614aae565b815161586a816148f2565b8152602082015161587a81614bf5565b6020820152604082015161588d81614bbc565b604082015260608201516001600160401b038111156158aa575f80fd5b6158b6868285016150d5565b606083015250949350505050565b6001600160601b0384168152606060208201525f61533d606083018561579a565b602081525f613c9e602083018461496a565b5f60208284031215615907575f80fd5b81516001600160401b0381111561591c575f80fd5b8201610140818503121561592e575f80fd5b615936614ad0565b61593f826150bf565b815261594d602083016150a9565b602082015261595e604083016150bf565b604082015261596f606083016150b4565b6060820152615980608083016150ca565b608082015261599160a083016156ff565b60a08201526159a260c083016156ff565b60c08201526159b360e083016150bf565b60e08201526101008201516001600160401b038111156159d1575f80fd5b6159dd868285016150d5565b610100830152506101208201516001600160401b038111156159fd575f80fd5b615a09868285016150d5565b61012083015250949350505050565b81810381811115613ca157613ca161521f565b6001600160401b0360c01b83168152604060208201525f614a24604083018461524f565b6001600160601b03851681526001600160601b03841660208201526001600160401b0360c01b83166040820152608060608201525f6156f5608083018461496a565b5f8085851115615a9f575f80fd5b83861115615aab575f80fd5b5050820193919092039150565b80356001600160e01b03198116906004841015615ae9576001600160e01b0319600485900360031b81901b82161691505b5092915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b5f8060408385031215615b40575f80fd5b8251615b4b816148ce565b602084015190925061493381614b9d565b6001600160a01b038181168382160190811115613ca157613ca161521f565b6001600160a01b038281168282160390811115613ca157613ca161521f565b5f8060408385031215615bab575f80fd5b8251615b4b81614b9d565b5f82518060208501845e5f920191825250919050565b5f8060408385031215615bdd575f80fd5b8251615be881614bf5565b602084015190925061493381614bbc565b601f8211156144a657805f5260205f20601f840160051c81016020851015615c1e5750805b601f840160051c820191505b81811015615c3d575f8155600101615c2a565b5050505050565b81516001600160401b03811115615c5d57615c5d614a2c565b615c7181615c6b8454615466565b84615bf9565b6020601f821160018114615ca3575f8315615c8c5750848201515b5f19600385901b1c1916600184901b178455615c3d565b5f84815260208120601f198516915b82811015615cd25787850151825560209485019460019092019101615cb2565b5084821015615cef57868401515f19600387901b60f8161c191681555b50505050600190811b0190555056fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a2646970667358221220ac3d2e432c984baf0fa92afc4a270b2b105f7f9f973694f2b7eb561e34c4513d64736f6c634300081a0033",
1312
+ "deployedBytecode": "0x608060405234801561000f575f80fd5b50600436106101a1575f3560e01c80635dcb3bae116100f35780638fb3603711610093578063ada9652e1161006e578063ada9652e146103f9578063b68d18091461040d578063bf7e214f14610414578063eed283151461041c575f80fd5b80638fb36037146103b2578063987cb161146103d3578063ab3fc75f146103e6575f80fd5b806376b707b7116100ce57806376b707b71461036a5780637950d0e2146103845780637a9e5e4b14610397578063893d20e8146103aa575f80fd5b80635dcb3bae1461031a578063644c45e01461032d5780636c741e781461034a575f80fd5b80631bda5efa1161015e57806325d073841161013957806325d07384146102bc578063329d6e74146102cf57806349bb9e4b146102e25780635ab1bd53146102f5575f80fd5b80631bda5efa1461025f5780631eff4b221461027f57806322f3e2d4146102b4575f80fd5b806301ffc9a7146101a5578063071e1e4a146101e657806307e71a6e146101fb5780630d8e6e2c146102265780630fec111c14610242578063138461e014610257575b5f80fd5b6101d16101b33660046148a0565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6101f96101f4366004614907565b610450565b005b61020e61020936600461493e565b610735565b6040516001600160601b0390911681526020016101dd565b61022e610d3f565b60405162ffffff90911681526020016101dd565b61024a610dc6565b6040516101dd9190614998565b61020e610f80565b61027261026d366004614c0d565b610f8a565b6040516101dd9190614ce3565b6102a67f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b6040519081526020016101dd565b6101d1611597565b6101d16102ca366004614907565b61160e565b6101f96102dd366004614cf8565b611aff565b6101f96102f0366004614d29565b611c49565b6001546001600160a01b03165b6040516001600160a01b0390911681526020016101dd565b61020e610328366004614d75565b611d45565b5f80516020615cff833981519152546001600160601b031661020e565b610352612082565b6040516001600160401b0390911681526020016101dd565b61037261210e565b60405160ff90911681526020016101dd565b6101f9610392366004614dd2565b612176565b6101f96103a5366004614f6e565b6126f4565b61030261277a565b6103ba6128ab565b6040516001600160e01b031990911681526020016101dd565b6102726103e1366004614f89565b6128e0565b6101f96103f4366004615033565b613386565b6102a65f80516020615cff83398151915281565b600e610372565b61030261361a565b61042f61042a366004615050565b613635565b604080516001600160a01b03909316835260ff9091166020830152016101dd565b61045c335b5f3661393b565b81600e6104698282613a39565b610473848461160e565b1561072f575f73__$fb599632d08395912d9d70eb2f0f93b5e2$__63ce64d2816104a56001546001600160a01b031690565b876040518363ffffffff1660e01b81526004016104c392919061506c565b602060405180830381865af41580156104de573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610502919061508e565b90505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610541573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610565919061508e565b6001600160a01b0316631d3be477866040518263ffffffff1660e01b81526004016105909190614ce3565b5f60405180830381865afa1580156105aa573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526105d19190810190615124565b90506001816060018181516105e69190615233565b63ffffffff1690525060408051631a99b41b60e31b815290516001600160a01b0384169163d4cda0d89160048083019260209291908290030181865afa158015610632573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610656919061508e565b6001600160a01b03166396260559868360ff6040518463ffffffff1660e01b815260040161068693929190615319565b5f604051808303815f87803b15801561069d575f80fd5b505af11580156106af573d5f803e3d5ffd5b505050507fd0fb19cbe3e6c7666a69cce6e9e84c1d4d23353bb2023d89040efa1ce3e5a82e86826020015187846060015160405161072494939291906001600160601b0394851681529290931660208301526001600160c01b031916604082015263ffffffff91909116606082015260800190565b60405180910390a150505b50505050565b5f61073f33610455565b82601761074c8282613a39565b5f80610756613b6d565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610797573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107bb919061508e565b60405163f0ea17c360e01b81526001600160601b03851660048201529091505f906001600160a01b0383169063f0ea17c3906024015f60405180830381865afa15801561080a573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526108319190810190615350565b604051630232ca4960e01b81526001600160601b038b1660048201529091505f906001600160a01b03841690630232ca4990602401602060405180830381865afa158015610881573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108a591906153f7565b905088975061091e8873__$3bac17678db7ae928afa209f2f44deec9c$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af41580156108f5573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061091991906153f7565b613c19565b1561092b5780975061096b565b6109358882613ca7565b1561096b576040516322d98b0960e11b81526001600160601b03808a166004830152821660248201526044015b60405180910390fd5b5f846001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156109a8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109cc919061508e565b905060025f9054906101000a90046001600160a01b03166001600160a01b03166311a1467782888c73__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610a3b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a5f91906153f7565b6040518563ffffffff1660e01b8152600401610a7e9493929190615412565b5f604051808303815f87803b158015610a95575f80fd5b505af1158015610aa7573d5f803e3d5ffd5b5050505060025f9054906101000a90046001600160a01b03166001600160a01b03166366101781828d73__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610b17573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b3b91906153f7565b8d6040518563ffffffff1660e01b8152600401610b5b9493929190615412565b5f604051808303815f87803b158015610b72575f80fd5b505af1158015610b84573d5f803e3d5ffd5b50505050505f610b9c6001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b038d1660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015610be9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c0d919061508e565b90507f81c27687c85b82d25896110abb95c71bcbe0f90ff15274c4f0dbc5710a43ec3f8b8285602001516001600160a01b03166382bfefc86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c72573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c96919061508e565b604080516001600160601b0394851681526001600160a01b0393841660208201529290911690820152908b16606082015260800160405180910390a182602001516001600160a01b03166367ed5f36828b6040518363ffffffff1660e01b8152600401610d0492919061506c565b5f604051808303815f87803b158015610d1b575f80fd5b505af1158015610d2d573d5f803e3d5ffd5b50505050505050505050505092915050565b604051632efe011360e01b8152600360048201525f60248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af4158015610d9d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610dc19190615444565b905090565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820152907f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610e72573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e9691906153f7565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a001610ede61277a565b6001600160a01b03168152602001826001018054610efb90615466565b80601f0160208091040260200160405190810160405280929190818152602001828054610f2790615466565b8015610f725780601f10610f4957610100808354040283529160200191610f72565b820191905f5260205f20905b815481529060010190602001808311610f5557829003601f168201915b505050505081525091505090565b5f610dc130613cf1565b5f610f9433610455565b5f80610f9e613b6d565b915091505f610fb56001546001600160a01b031690565b60405163677d3feb60e11b81526001600160601b03851660048201526001600160a01b03919091169063cefa7fd690602401602060405180830381865afa158015611002573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061102691906153f7565b90505f826001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611065573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611089919061508e565b604051636a05a41360e01b81526001600160601b03841660048201526001600160a01b039190911690636a05a413906024016101c060405180830381865afa1580156110d7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110fb9190615500565b604081015151606082015151919250905f90611117908e613eea565b90506001600160a01b03808316908216111561124357604051632ffa8f7f60e11b81526001600160a01b038316600482015273__$bf7bc340cbb9229ef1de2c568356e67902$__90635ff51efe90602401602060405180830381865af4158015611183573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111a791906155ba565b604051632ffa8f7f60e11b81526001600160a01b038316600482015273__$bf7bc340cbb9229ef1de2c568356e67902$__90635ff51efe90602401602060405180830381865af41580156111fd573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061122191906155ba565b604051632d8d32a560e21b815260048101929092526024820152604401610962565b5f61124e8383613ef5565b90506112668f826001600160a01b0390811691161190565b15611397578e6001600160a01b031673__$bf7bc340cbb9229ef1de2c568356e67902$__635ff51efe90916040518263ffffffff1660e01b81526004016112bc91906001600160a01b0391909116815260200190565b602060405180830381865af41580156112d7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112fb91906155ba565b604051632ffa8f7f60e11b81526001600160a01b038316600482015273__$bf7bc340cbb9229ef1de2c568356e67902$__90635ff51efe90602401602060405180830381865af4158015611351573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061137591906155ba565b6040516306990c9f60e11b815260048101929092526024820152604401610962565b505050505073__$1919c6d2c69d787ccb2653a371d7e5737d$__63578c3039838e6040518363ffffffff1660e01b81526004016113d59291906155d1565b602060405180830381865af41580156113f0573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061141491906155f2565b92505f6040518061014001604052808d6001600160a01b03168152602001846001600160601b031681526020018c6001600160a01b031681526020018a63ffffffff1681526020018964ffffffffff168152602001881515815260200187151581526020018b6001600160a01b031681526020018e8152602001868152509050816001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156114d0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114f4919061508e565b6001600160a01b0316634bb2d19785836040518363ffffffff1660e01b815260040161152192919061560d565b5f604051808303815f87803b158015611538575f80fd5b505af115801561154a573d5f803e3d5ffd5b505050507fcd159579c9776c25aaa89df3e9e0e273cbd95c8827ec72a5e8c28aa21c34c01b838e60405161157f9291906155d1565b60405180910390a15050509998505050505050505050565b5f6115a061361a565b60405163a166aa8960e01b81523060048201526001600160a01b03919091169063a166aa8990602401602060405180830381865afa1580156115e4573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611608919061570a565b15905090565b5f82600e61161c8282613a39565b604051630a4d29dd60e31b81526001600160601b038616600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906352694ee890602401602060405180830381865af4158015611672573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611696919061570a565b8061171c5750604051637bc32ecf60e01b815273__$05887d5853069c88bcd4c0a2107db45f29$__90637bc32ecf906116dd906001600160c01b0319881690600401614ce3565b602060405180830381865af41580156116f8573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061171c919061570a565b15611729575f9250611af7565b5f73__$fb599632d08395912d9d70eb2f0f93b5e2$__63ce64d2816117566001546001600160a01b031690565b886040518363ffffffff1660e01b815260040161177492919061506c565b602060405180830381865af415801561178f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117b3919061508e565b90505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156117f2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611816919061508e565b6001600160a01b0316631d3be477876040518263ffffffff1660e01b81526004016118419190614ce3565b5f60405180830381865afa15801561185b573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526118829190810190615124565b6020810151604051630a4d29dd60e31b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906352694ee890602401602060405180830381865af41580156118e1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611905919061570a565b15611914575f94505050611af7565b80516119209088613f2d565b1561194457805160405163232e27d560e21b81526109629188918a90600401615725565b60a081015160405163790a38ad60e01b815264ffffffffff909116600482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9063790a38ad90602401602060405180830381865af415801561199e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119c2919061570a565b80611ad0575060a0810151604051638d38cd4b60e01b815264ffffffffff909116600482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__90638d38cd4b90602401602060405180830381865af4158015611a22573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a46919061570a565b8015611ad05750611ad073__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015611a97573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611abb9190615750565b8260a0015164ffffffffff9081169116111590565b9450848015611af25750806040015163ffffffff16816060015163ffffffff16105b945050505b505092915050565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c611b21610d3f565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015611b5f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b83919061577f565b5f80516020615d3f8339815191528054600160401b900460ff1680611bb5575080546001600160401b03808416911610155b15611bd35760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155611bfd83613f77565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b5f80516020615d3f8339815191528054600160401b810460ff1615906001600160401b03165f81158015611c7a5750825b90505f826001600160401b03166001148015611c955750303b155b905081158015611ca3575080155b15611cc15760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315611ceb57845460ff60401b1916600160401b1785555b611cf58787613f7f565b8315611d3c57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15b50505050505050565b5f611d4f33610455565b5f80611d59613b6d565b91509150611dc7816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611d9c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611dc0919061508e565b8684614142565b60055f9054906101000a90046001600160a01b03166001600160a01b03166357a8fba76040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015611e3c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e6091906153f7565b6001600160601b03168152602001856001600160601b03168152602001611e85601790565b60ff1681526020016001151581526020015f6001600160a01b03168152602001896001600160a01b0316815260200160405180602001604052805f8152508152506040518263ffffffff1660e01b8152600401611ee29190614998565b6020604051808303815f875af1158015611efe573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611f2291906153f7565b92505f6040518060800160405280876001600160c01b03191681526020016001151581526020015f63ffffffff168152602001868152509050816001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f97573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611fbb919061508e565b6001600160a01b031663f9b3fe3c85836040518363ffffffff1660e01b8152600401611fe89291906157e0565b5f604051808303815f87803b158015611fff575f80fd5b505af1158015612011573d5f803e3d5ffd5b5050604080516001600160601b038781168252881660208201526001600160c01b03198a16818301526001600160a01b038b16606082015290517f4a9178ebf2691f0cc04ca591663061f3c23c8b96b53097cfa0289437162c992e9350908190036080019150a15050509392505050565b5f73__$1d92393fa9ccd763988368ce8a1cb90d26$__63645ceefe600e6120a761210e565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865af41580156120ea573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610dc1919061577f565b5f61211761361a565b6001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015612152573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610dc19190615801565b61217f33610455565b82600e61218c8282613a39565b5f73__$fb599632d08395912d9d70eb2f0f93b5e2$__63ce64d2816121b96001546001600160a01b031690565b886040518363ffffffff1660e01b81526004016121d792919061506c565b602060405180830381865af41580156121f2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612216919061508e565b90505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015612255573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612279919061508e565b90505f826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156122b8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122dc919061508e565b90505f6122f3876101c00151886101e001516141e5565b90506122ff898961160e565b156125c0576102008701516002546040516374933c2f60e01b81526001600160a01b03909116906374933c2f906123409086908e9086908890600401615412565b5f604051808303815f87803b158015612357575f80fd5b505af1158015612369573d5f803e3d5ffd5b5050604051631d3be47760e01b81525f92506001600160a01b0387169150631d3be4779061239b908d90600401614ce3565b5f60405180830381865afa1580156123b5573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526123dc9190810190615124565b905060025f9054906101000a90046001600160a01b03166001600160a01b031663d165cb6485836020015173__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af415801561244e573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061247291906153f7565b866040518563ffffffff1660e01b81526004016124929493929190615412565b5f604051808303815f87803b1580156124a9575f80fd5b505af11580156124bb573d5f803e3d5ffd5b5050505060208101516040516313d8ebc960e11b81526001600160601b0390911660048201525f906001600160a01b038716906327b1d792906024015f60405180830381865afa158015612511573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526125389190810190615821565b905060018160400181815161254d9190615233565b63ffffffff169052506020820151604051630af38b5f60e21b81526001600160a01b03871691632bce2d7c9161258b9190859060ff906004016158c4565b5f604051808303815f87803b1580156125a2575f80fd5b505af11580156125b4573d5f803e3d5ffd5b5050505050505061269e565b60025f9054906101000a90046001600160a01b03166001600160a01b03166374933c2f838b73__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af415801561262c573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061265091906153f7565b856040518563ffffffff1660e01b81526004016126709493929190615412565b5f604051808303815f87803b158015612687575f80fd5b505af1158015612699573d5f803e3d5ffd5b505050505b604080516001600160601b038b1681526001600160c01b03198a1660208201527f1ada02426ee529031fdddc0d25489621c399116f75cb4bbf31ec18c7c7c3e3ef910160405180910390a1505050505050505050565b336126fd61361a565b6001600160a01b0316816001600160a01b0316146127385760405162d1953b60e31b81526001600160a01b0382166004820152602401610962565b816001600160a01b03163b5f0361276d576040516361798f2f60e11b81526001600160a01b0383166004820152602401610962565b61277682614269565b5050565b5f805f80516020615cff83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156127e6573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061280a919061570a565b15612895576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa15801561286b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061288f919061508e565b91505090565b54600160601b90046001600160a01b0316919050565b5f80516020615d1f83398151915280545f9190600160a01b900460ff166128d2575f61288f565b638fb3603760e01b91505090565b5f6128ea33610455565b8660176128f78282613a39565b5f80612901613b6d565b9150915089515f0361292857896040516337b67ced60e01b815260040161096291906158e5565b60405163790a38ad60e01b815264ffffffffff8816600482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9063790a38ad90602401602060405180830381865af415801561297c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906129a0919061570a565b80612aa057508664ffffffffff1673__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__6394335b1a909173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015612a11573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612a359190615750565b6040516001600160e01b031960e085901b16815264ffffffffff928316600482015291166024820152604401602060405180830381865af4158015612a7c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612aa0919061570a565b15612ac75760405163186399e560e31b815264ffffffffff88166004820152602401610962565b5f612ada6001546001600160a01b031690565b60405163677d3feb60e11b81526001600160601b038e1660048201526001600160a01b03919091169063cefa7fd690602401602060405180830381865afa158015612b27573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b4b91906153f7565b9050612b578184613f2d565b15612b905760405163e172170d60e01b81526001600160601b03808e166004830152808316602483015284166044820152606401610962565b5f826001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015612bcd573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612bf1919061508e565b6040516313d8ebc960e11b81526001600160601b038f1660048201529091505f906001600160a01b038316906327b1d792906024015f60405180830381865afa158015612c40573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612c679190810190615821565b516040516368322c6360e11b81529091505f906001600160a01b0384169063d06458c690612c99908590600401614ce3565b5f60405180830381865afa158015612cb3573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612cda91908101906158f7565b90508b63ffffffff16816060015163ffffffff161015612d1b576060810151604051631bdd82b160e31b815263ffffffff9091166004820152602401610962565b80516001600160a01b03808f1691161115612e4957805160405163e2eb023b60e01b81526001600160a01b03909116600482015273__$bf7bc340cbb9229ef1de2c568356e67902$__9063e2eb023b90602401602060405180830381865af4158015612d89573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612dad91906155ba565b60405163e2eb023b60e01b81526001600160a01b038f16600482015273__$bf7bc340cbb9229ef1de2c568356e67902$__9063e2eb023b90602401602060405180830381865af4158015612e03573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612e2791906155ba565b604051637025bb8d60e11b815260048101929092526024820152604401610962565b60408101516001600160a01b03808f1691161015612f7d57604081810151905163e2eb023b60e01b81526001600160a01b03909116600482015273__$bf7bc340cbb9229ef1de2c568356e67902$__9063e2eb023b90602401602060405180830381865af4158015612ebd573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612ee191906155ba565b60405163e2eb023b60e01b81526001600160a01b038f16600482015273__$bf7bc340cbb9229ef1de2c568356e67902$__9063e2eb023b90602401602060405180830381865af4158015612f37573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612f5b91906155ba565b60405163d80ce0cf60e01b815260048101929092526024820152604401610962565b6080810151604051633682752160e21b815264ffffffffff909116600482015273__$71e292c09eace9601b3e21e68a1278917a$__9063da09d48490602401602060405180830381865af4158015612fd7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612ffb91906155ba565b73__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015613042573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906130669190615750565b604051633682752160e21b815264ffffffffff909116600482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9063da09d48490602401602060405180830381865af41580156130bb573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906130df91906155ba565b604051633682752160e21b815264ffffffffff8e16600482015273__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9063da09d48490602401602060405180830381865af4158015613133573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061315791906155ba565b6131619190615a18565b111561319757608081015160405163941185d360e01b815264ffffffffff9182166004820152908c166024820152604401610962565b5050604051631f849e6b60e11b815273__$05887d5853069c88bcd4c0a2107db45f29$__9150633f093cd6906131d39086908f906004016155d1565b602060405180830381865af41580156131ee573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061321291906155f2565b95505f604051806101000160405280856001600160601b031681526020018e6001600160601b031681526020018b63ffffffff1681526020015f63ffffffff1681526020018c6001600160a01b031681526020018a64ffffffffff1681526020018d8152602001898152509050826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156132bb573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906132df919061508e565b6001600160a01b0316634a82439288836040518363ffffffff1660e01b815260040161330c929190615a2b565b5f604051808303815f87803b158015613323575f80fd5b505af1158015613335573d5f803e3d5ffd5b505050507f75877f30372d5d5274d26a87127a9dcb9944f7fc094a00f5e126ea90220d46e0848e898f60405161336e9493929190615a4f565b60405180910390a15050505050509695505050505050565b61338f33610455565b61339a836017613a39565b5f806133a4613b6d565b91509150613412816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156133e7573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061340b919061508e565b8584614142565b5f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa15801561344f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613473919061508e565b6040516313d8ebc960e11b81526001600160601b03881660048201526001600160a01b0391909116906327b1d792906024015f60405180830381865afa1580156134bf573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526134e69190810190615821565b80516001600160c01b0319871682526060820186905260408051631a99b41b60e31b8152905192935090916001600160a01b0385169163d4cda0d89160048083019260209291908290030181865afa158015613544573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613568919061508e565b6001600160a01b0316632bce2d7c888460ff6040518463ffffffff1660e01b8152600401613598939291906158c4565b5f604051808303815f87803b1580156135af575f80fd5b505af11580156135c1573d5f803e3d5ffd5b5050604080516001600160601b038b1681526001600160c01b031980861660208301528a16918101919091527fbc91a707be82165c58e12c3cdd805449dbceec4592db04a692e68b120a4daa7792506060019050611d33565b5f80516020615d1f833981519152546001600160a01b031690565b5f805f846001600160a01b0316631d3be477856040518263ffffffff1660e01b81526004016136649190614ce3565b5f60405180830381865afa15801561367e573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526136a59190810190615124565b60a081015160405163790a38ad60e01b815264ffffffffff909116600482015290915073__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__9063790a38ad90602401602060405180830381865af4158015613702573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613726919061570a565b156137a35773__$bf7bc340cbb9229ef1de2c568356e67902$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015613772573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613796919061508e565b60645b9250925050613934565b6138258160a0015173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af41580156137f2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906138169190615750565b64ffffffffff90811691161090565b1561389c5773__$bf7bc340cbb9229ef1de2c568356e67902$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015613871573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613895919061508e565b606e613799565b806040015163ffffffff16816060015163ffffffff16106139295773__$bf7bc340cbb9229ef1de2c568356e67902$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af41580156138fe573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613922919061508e565b6078613799565b608001519150600a90505b9250929050565b5f80516020615d1f8339815191525f8061397361395661361a565b873061396560045f8a8c615a91565b61396e91615ab8565b6142c9565b9150915081613a315763ffffffff811615613a0e57825460ff60a01b1916600160a01b1783556139a161361a565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b81526004016139d093929190615af0565b5f604051808303815f87803b1580156139e7575f80fd5b505af11580156139f9573d5f803e3d5ffd5b5050845460ff60a01b1916855550613a319050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401610962565b505050505050565b60405163037c8cb160e51b815260ff8216600482015273__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636f91962090602401602060405180830381865af4158015613a89573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613aad919061570a565b80613b3b57506001546001600160a01b0316604051635b12715d60e11b81526001600160601b038416600482015260ff831660248201526001600160a01b03919091169063b624e2ba90604401602060405180830381865afa158015613b15573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613b39919061570a565b155b156127765760405163d711af7560e01b81526001600160601b038316600482015260ff82166024820152604401610962565b5f8073__$19db5f0436f9beab06d91aaebdafaf50ff$__63ed352647613b9b6001546001600160a01b031690565b6040805160e084901b6001600160e01b03191681526001600160a01b03929092166004830152336024830152600e604483015280516064808401938290030181865af4158015613bed573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613c119190615b2f565b915091509091565b604051631315996960e11b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063262b32d2906044015b602060405180830381865af4158015613c7a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613c9e919061570a565b90505b92915050565b604051632601631360e21b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__906398058c4c90604401613c5f565b5f805f80516020615cff83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015613d5d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613d81919061570a565b15613dad5780546040516301ab8b6760e21b81526001600160601b039091166004820152602401610962565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa158015613dff573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613e23919061570a565b613e4b5760405163b9304b0d60e01b81526001600160a01b0384166004820152602401610962565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b0385811660048301529190911690635e546bee90602401602060405180830381865afa158015613e9d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613ec191906153f7565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b5f613c9e8284615b5c565b5f6001600160a01b038083169084161015613f235760405163117efe6d60e31b815260040160405180910390fd5b613c9e8284615b7b565b6040516399009c5160e01b81526001600160601b038084166004830152821660248201525f9073__$94a2c899be079b00d952d0d84fffaa5c34$__906399009c5190604401613c5f565b6101a16143d1565b5f80516020615d3f8339815191528054600160401b810460ff1615906001600160401b03165f81158015613fb05750825b90505f826001600160401b03166001148015613fcb5750303b155b905081158015613fd9575080155b15613ff75760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561402157845460ff60401b1916600160401b1785555b5f80878060200190518101906140379190615b9a565b9150915061404682828b614409565b61405060286144ab565b600280546001600160a01b0319166001600160a01b039290921691909117905561407a600b6144ab565b600380546001600160a01b0319166001600160a01b03929092169190911790556140a4600a6144ab565b600480546001600160a01b0319166001600160a01b03929092169190911790556140ce60026144ab565b600580546001600160a01b0319166001600160a01b03929092169190911790556140fe63c7f9373d60e01b61453c565b50508315611d3c57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001611d33565b6040516368322c6360e11b81525f906001600160a01b0385169063d06458c690614170908690600401614ce3565b5f60405180830381865afa15801561418a573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526141b191908101906158f7565b6020015190506141c18183613f2d565b1561072f578281836040516313bf6c4560e21b815260040161096293929190615725565b60405163274acb3560e01b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063274acb3590604401602060405180830381865af4158015614245573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613c9e91906153f7565b5f80516020615d1f83398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b179052516143379190615bb6565b5f60405180830381855afa9150503d805f811461436f576040519150601f19603f3d011682016040523d82523d5f602084013e614374565b606091505b509150915081156143c65760408151106143a6578080602001905181019061439c9190615bcc565b90945092506143c6565b60208151106143c657808060200190518101906143c3919061570a565b93505b505094509492505050565b5f80516020615d3f83398151915254600160401b900460ff1661440757604051631afcd79f60e31b815260040160405180910390fd5b565b6144116143d1565b61441961456f565b6144968383846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa15801561445a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061447e91906153f7565b60085f8660405180602001604052805f81525061457f565b6144a663daf9067160e01b61453c565b505050565b5f6144be6001546001600160a01b031690565b6001600160a01b031663d39e6043836144d561210e565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa158015614518573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613ca1919061508e565b6145446143d1565b61456c816001600160e01b0319165f908152602081905260409020805460ff19166001179055565b50565b6145776143d1565b6144076146c6565b6145876143d1565b604051632330f24760e01b81526001600160a01b038816600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90632330f24790602401602060405180830381865af41580156145dd573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190614601919061570a565b6146295760405163cf6935e560e01b81526001600160a01b0388166004820152602401610962565b614632876146f4565b61463c8683614705565b5f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b861515021781559050600181016146ab8382615c44565b506146bc634a531f3360e01b61453c565b5050505050505050565b6146ce6143d1565b60017f9b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f0055565b6146fc6143d1565b61456c8161477b565b61470d6143d1565b61471561478c565b61471e826147d4565b6001600160a01b0381166147455760405163f17ef42d60e01b815260040160405180910390fd5b5f80516020615cff83398151915280546001600160601b0316600160601b6001600160a01b039093169290920291909117905550565b6147836143d1565b61456c81614269565b6147946143d1565b6144076301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b6147dc6143d1565b604051633334d16b60e01b81526001600160a01b038216600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90633334d16b90602401602060405180830381865af4158015614832573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190614856919061570a565b61487e5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610962565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b5f602082840312156148b0575f80fd5b81356001600160e01b0319811681146148c7575f80fd5b9392505050565b6001600160601b038116811461456c575f80fd5b80356148ed816148ce565b919050565b6001600160c01b03198116811461456c575f80fd5b5f8060408385031215614918575f80fd5b8235614923816148ce565b91506020830135614933816148f2565b809150509250929050565b5f806040838503121561494f575f80fd5b823561495a816148ce565b91506020830135614933816148ce565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f60608301516149e0608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e080840152614a2461010084018261496a565b949350505050565b634e487b7160e01b5f52604160045260245ffd5b60405161024081016001600160401b0381118282101715614a6357614a63614a2c565b60405290565b60405161010081016001600160401b0381118282101715614a6357614a63614a2c565b604051606081016001600160401b0381118282101715614a6357614a63614a2c565b604051608081016001600160401b0381118282101715614a6357614a63614a2c565b60405161014081016001600160401b0381118282101715614a6357614a63614a2c565b604051601f8201601f191681016001600160401b0381118282101715614b1b57614b1b614a2c565b604052919050565b5f6001600160401b03821115614b3b57614b3b614a2c565b50601f01601f191660200190565b5f82601f830112614b58575f80fd5b8135602083015f614b70614b6b84614b23565b614af3565b9050828152858383011115614b83575f80fd5b828260208301375f92810160200192909252509392505050565b6001600160a01b038116811461456c575f80fd5b80356148ed81614b9d565b63ffffffff8116811461456c575f80fd5b80356148ed81614bbc565b64ffffffffff8116811461456c575f80fd5b80356148ed81614bd8565b801515811461456c575f80fd5b80356148ed81614bf5565b5f805f805f805f805f6101208a8c031215614c26575f80fd5b89356001600160401b03811115614c3b575f80fd5b614c478c828d01614b49565b99505060208a0135614c5881614b9d565b9750614c6660408b01614bb1565b9650614c7460608b01614bb1565b9550614c8260808b01614bcd565b9450614c9060a08b01614bea565b9350614c9e60c08b01614c02565b9250614cac60e08b01614c02565b91506101008a01356001600160401b03811115614cc7575f80fd5b614cd38c828d01614b49565b9150509295985092959850929598565b6001600160c01b031991909116815260200190565b5f60208284031215614d08575f80fd5b81356001600160401b03811115614d1d575f80fd5b614a2484828501614b49565b5f8060408385031215614d3a575f80fd5b8235614d4581614b9d565b915060208301356001600160401b03811115614d5f575f80fd5b614d6b85828601614b49565b9150509250929050565b5f805f60608486031215614d87575f80fd5b8335614d9281614b9d565b92506020840135614da2816148f2565b915060408401356001600160401b03811115614dbc575f80fd5b614dc886828701614b49565b9150509250925092565b5f805f838503610280811215614de6575f80fd5b8435614df1816148ce565b93506020850135614e01816148f2565b9250610240603f1982011215614e15575f80fd5b50614e1e614a40565b614e2a604086016148e2565b8152614e38606086016148e2565b6020820152614e49608086016148e2565b6040820152614e5a60a086016148e2565b6060820152614e6b60c086016148e2565b6080820152614e7c60e086016148e2565b60a0820152614e8e61010086016148e2565b60c0820152614ea061012086016148e2565b60e0820152614eb261014086016148e2565b610100820152614ec561016086016148e2565b610120820152614ed861018086016148e2565b610140820152614eeb6101a086016148e2565b610160820152614efe6101c086016148e2565b610180820152614f116101e086016148e2565b6101a0820152614f2461020086016148e2565b6101c0820152614f3761022086016148e2565b6101e0820152614f4a61024086016148e2565b610200820152614f5d61026086016148e2565b610220820152809150509250925092565b5f60208284031215614f7e575f80fd5b81356148c781614b9d565b5f805f805f8060c08789031215614f9e575f80fd5b8635614fa9816148ce565b955060208701356001600160401b03811115614fc3575f80fd5b614fcf89828a01614b49565b9550506040870135614fe081614b9d565b93506060870135614ff081614bbc565b9250608087013561500081614bd8565b915060a08701356001600160401b0381111561501a575f80fd5b61502689828a01614b49565b9150509295509295509295565b5f805f60608486031215615045575f80fd5b8335614d92816148ce565b5f8060408385031215615061575f80fd5b823561492381614b9d565b6001600160a01b039290921682526001600160601b0316602082015260400190565b5f6020828403121561509e575f80fd5b81516148c781614b9d565b80516148ed816148ce565b80516148ed81614bbc565b80516148ed81614b9d565b80516148ed81614bd8565b5f82601f8301126150e4575f80fd5b8151602083015f6150f7614b6b84614b23565b905082815285838301111561510a575f80fd5b8282602083015e5f92810160200192909252509392505050565b5f60208284031215615134575f80fd5b81516001600160401b03811115615149575f80fd5b8201610100818503121561515b575f80fd5b615163614a69565b61516c826150a9565b815261517a602083016150a9565b602082015261518b604083016150b4565b604082015261519c606083016150b4565b60608201526151ad608083016150bf565b60808201526151be60a083016150ca565b60a082015260c08201516001600160401b038111156151db575f80fd5b6151e7868285016150d5565b60c08301525060e08201516001600160401b03811115615205575f80fd5b615211868285016150d5565b60e083015250949350505050565b634e487b7160e01b5f52601160045260245ffd5b63ffffffff8181168382160190811115613ca157613ca161521f565b6001600160601b0381511682525f602082015161527760208501826001600160601b03169052565b50604082015161528f604085018263ffffffff169052565b5060608201516152a7606085018263ffffffff169052565b5060808201516152c260808501826001600160a01b03169052565b5060a08201516152db60a085018264ffffffffff169052565b5060c082015161010060c08501526152f761010085018261496a565b905060e083015184820360e0860152615310828261496a565b95945050505050565b6001600160401b0360c01b84168152606060208201525f61533d606083018561524f565b905060ff83166040830152949350505050565b5f60208284031215615360575f80fd5b81516001600160401b03811115615375575f80fd5b820160608185031215615386575f80fd5b61538e614a8c565b81516001600160401b038111156153a3575f80fd5b6153af868285016150d5565b82525060208201516153c081614b9d565b602082015260408201516001600160401b038111156153dd575f80fd5b6153e9868285016150d5565b604083015250949350505050565b5f60208284031215615407575f80fd5b81516148c7816148ce565b6001600160a01b039490941684526001600160601b039283166020850152908216604084015216606082015260800190565b5f60208284031215615454575f80fd5b815162ffffff811681146148c7575f80fd5b600181811c9082168061547a57607f821691505b60208210810361549857634e487b7160e01b5f52602260045260245ffd5b50919050565b5f604082840312156154ae575f80fd5b604080519081016001600160401b03811182821017156154d0576154d0614a2c565b806040525080915082516154e381614b9d565b815260208301516154f3816148ce565b6020919091015292915050565b5f6101c0828403128015615512575f80fd5b5060405160e081016001600160401b038111828210171561553557615535614a2c565b604052615542848461549e565b8152615551846040850161549e565b6020820152615563846080850161549e565b60408201526155758460c0850161549e565b606082015261558884610100850161549e565b608082015261559b84610140850161549e565b60a08201526155ae84610180850161549e565b60c08201529392505050565b5f602082840312156155ca575f80fd5b5051919050565b6001600160601b0383168152604060208201525f614a24604083018461496a565b5f60208284031215615602575f80fd5b81516148c7816148f2565b6001600160c01b03198316815260406020820181905282516001600160a01b0316908201525f602083015161564d60608401826001600160601b03169052565b5060408301516001600160a01b038116608084015250606083015163ffffffff811660a084015250608083015164ffffffffff811660c08401525060a083015180151560e08401525060c08301518015156101008401525060e08301516001600160a01b03811661012084015250610100830151610140808401526156d661018084018261496a565b9050610120840151603f19848303016101608501526156f5828261496a565b9695505050505050565b80516148ed81614bf5565b5f6020828403121561571a575f80fd5b81516148c781614bf5565b6001600160c01b03199390931683526001600160601b03918216602084015216604082015260600190565b5f60208284031215615760575f80fd5b81516148c781614bd8565b6001600160401b038116811461456c575f80fd5b5f6020828403121561578f575f80fd5b81516148c78161576b565b6001600160401b0360c01b815116825260208101511515602083015263ffffffff60408201511660408301525f606082015160806060850152614a24608085018261496a565b6001600160601b0383168152604060208201525f614a24604083018461579a565b5f60208284031215615811575f80fd5b815160ff811681146148c7575f80fd5b5f60208284031215615831575f80fd5b81516001600160401b03811115615846575f80fd5b820160808185031215615857575f80fd5b61585f614aae565b815161586a816148f2565b8152602082015161587a81614bf5565b6020820152604082015161588d81614bbc565b604082015260608201516001600160401b038111156158aa575f80fd5b6158b6868285016150d5565b606083015250949350505050565b6001600160601b0384168152606060208201525f61533d606083018561579a565b602081525f613c9e602083018461496a565b5f60208284031215615907575f80fd5b81516001600160401b0381111561591c575f80fd5b8201610140818503121561592e575f80fd5b615936614ad0565b61593f826150bf565b815261594d602083016150a9565b602082015261595e604083016150bf565b604082015261596f606083016150b4565b6060820152615980608083016150ca565b608082015261599160a083016156ff565b60a08201526159a260c083016156ff565b60c08201526159b360e083016150bf565b60e08201526101008201516001600160401b038111156159d1575f80fd5b6159dd868285016150d5565b610100830152506101208201516001600160401b038111156159fd575f80fd5b615a09868285016150d5565b61012083015250949350505050565b81810381811115613ca157613ca161521f565b6001600160401b0360c01b83168152604060208201525f614a24604083018461524f565b6001600160601b03851681526001600160601b03841660208201526001600160401b0360c01b83166040820152608060608201525f6156f5608083018461496a565b5f8085851115615a9f575f80fd5b83861115615aab575f80fd5b5050820193919092039150565b80356001600160e01b03198116906004841015615ae9576001600160e01b0319600485900360031b81901b82161691505b5092915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b5f8060408385031215615b40575f80fd5b8251615b4b816148ce565b602084015190925061493381614b9d565b6001600160a01b038181168382160190811115613ca157613ca161521f565b6001600160a01b038281168282160390811115613ca157613ca161521f565b5f8060408385031215615bab575f80fd5b8251615b4b81614b9d565b5f82518060208501845e5f920191825250919050565b5f8060408385031215615bdd575f80fd5b8251615be881614bf5565b602084015190925061493381614bbc565b601f8211156144a657805f5260205f20601f840160051c81016020851015615c1e5750805b601f840160051c820191505b81811015615c3d575f8155600101615c2a565b5050505050565b81516001600160401b03811115615c5d57615c5d614a2c565b615c7181615c6b8454615466565b84615bf9565b6020601f821160018114615ca3575f8315615c8c5750848201515b5f19600385901b1c1916600184901b178455615c3d565b5f84815260208120601f198516915b82811015615cd25787850151825560209485019460019092019101615cb2565b5084821015615cef57868401515f19600387901b60f8161c191681555b50505050600190811b0190555056fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a2646970667358221220ac3d2e432c984baf0fa92afc4a270b2b105f7f9f973694f2b7eb561e34c4513d64736f6c634300081a0033",
1313
+ "linkReferences": {
1314
+ "contracts/pool/PoolLib.sol": {
1315
+ "PoolLib": [
1316
+ {
1317
+ "length": 20,
1318
+ "start": 15431
1319
+ }
1320
+ ]
1321
+ },
1322
+ "contracts/shared/ContractLib.sol": {
1323
+ "ContractLib": [
1324
+ {
1325
+ "length": 20,
1326
+ "start": 1361
1327
+ },
1328
+ {
1329
+ "length": 20,
1330
+ "start": 6146
1331
+ },
1332
+ {
1333
+ "length": 20,
1334
+ "start": 8805
1335
+ },
1336
+ {
1337
+ "length": 20,
1338
+ "start": 18043
1339
+ },
1340
+ {
1341
+ "length": 20,
1342
+ "start": 18640
1343
+ }
1344
+ ]
1345
+ },
1346
+ "contracts/type/Amount.sol": {
1347
+ "AmountLib": [
1348
+ {
1349
+ "length": 20,
1350
+ "start": 2438
1351
+ },
1352
+ {
1353
+ "length": 20,
1354
+ "start": 2764
1355
+ },
1356
+ {
1357
+ "length": 20,
1358
+ "start": 2984
1359
+ },
1360
+ {
1361
+ "length": 20,
1362
+ "start": 9439
1363
+ },
1364
+ {
1365
+ "length": 20,
1366
+ "start": 9917
1367
+ },
1368
+ {
1369
+ "length": 20,
1370
+ "start": 15639
1371
+ },
1372
+ {
1373
+ "length": 20,
1374
+ "start": 15781
1375
+ },
1376
+ {
1377
+ "length": 20,
1378
+ "start": 17123
1379
+ }
1380
+ ]
1381
+ },
1382
+ "contracts/type/DistributorType.sol": {
1383
+ "DistributorTypeLib": [
1384
+ {
1385
+ "length": 20,
1386
+ "start": 5236
1387
+ }
1388
+ ]
1389
+ },
1390
+ "contracts/type/NftId.sol": {
1391
+ "NftIdLib": [
1392
+ {
1393
+ "length": 20,
1394
+ "start": 3843
1395
+ },
1396
+ {
1397
+ "length": 20,
1398
+ "start": 5904
1399
+ },
1400
+ {
1401
+ "length": 20,
1402
+ "start": 6527
1403
+ },
1404
+ {
1405
+ "length": 20,
1406
+ "start": 7885
1407
+ },
1408
+ {
1409
+ "length": 20,
1410
+ "start": 10372
1411
+ },
1412
+ {
1413
+ "length": 20,
1414
+ "start": 15867
1415
+ },
1416
+ {
1417
+ "length": 20,
1418
+ "start": 16427
1419
+ }
1420
+ ]
1421
+ },
1422
+ "contracts/type/ObjectType.sol": {
1423
+ "ObjectTypeLib": [
1424
+ {
1425
+ "length": 20,
1426
+ "start": 15143
1427
+ }
1428
+ ]
1429
+ },
1430
+ "contracts/type/Referral.sol": {
1431
+ "ReferralLib": [
1432
+ {
1433
+ "length": 20,
1434
+ "start": 6017
1435
+ },
1436
+ {
1437
+ "length": 20,
1438
+ "start": 12926
1439
+ }
1440
+ ]
1441
+ },
1442
+ "contracts/type/RoleId.sol": {
1443
+ "RoleIdLib": [
1444
+ {
1445
+ "length": 20,
1446
+ "start": 8539
1447
+ }
1448
+ ]
1449
+ },
1450
+ "contracts/type/Seconds.sol": {
1451
+ "SecondsLib": [
1452
+ {
1453
+ "length": 20,
1454
+ "start": 12405
1455
+ }
1456
+ ]
1457
+ },
1458
+ "contracts/type/Timestamp.sol": {
1459
+ "TimestampLib": [
1460
+ {
1461
+ "length": 20,
1462
+ "start": 6716
1463
+ },
1464
+ {
1465
+ "length": 20,
1466
+ "start": 6848
1467
+ },
1468
+ {
1469
+ "length": 20,
1470
+ "start": 6952
1471
+ },
1472
+ {
1473
+ "length": 20,
1474
+ "start": 10778
1475
+ },
1476
+ {
1477
+ "length": 20,
1478
+ "start": 10886
1479
+ },
1480
+ {
1481
+ "length": 20,
1482
+ "start": 10914
1483
+ },
1484
+ {
1485
+ "length": 20,
1486
+ "start": 12499
1487
+ },
1488
+ {
1489
+ "length": 20,
1490
+ "start": 12633
1491
+ },
1492
+ {
1493
+ "length": 20,
1494
+ "start": 12753
1495
+ },
1496
+ {
1497
+ "length": 20,
1498
+ "start": 14240
1499
+ },
1500
+ {
1501
+ "length": 20,
1502
+ "start": 14467
1503
+ }
1504
+ ]
1505
+ },
1506
+ "contracts/type/UFixed.sol": {
1507
+ "UFixedLib": [
1508
+ {
1509
+ "length": 20,
1510
+ "start": 4641
1511
+ },
1512
+ {
1513
+ "length": 20,
1514
+ "start": 4763
1515
+ },
1516
+ {
1517
+ "length": 20,
1518
+ "start": 4941
1519
+ },
1520
+ {
1521
+ "length": 20,
1522
+ "start": 5103
1523
+ },
1524
+ {
1525
+ "length": 20,
1526
+ "start": 11815
1527
+ },
1528
+ {
1529
+ "length": 20,
1530
+ "start": 11937
1531
+ },
1532
+ {
1533
+ "length": 20,
1534
+ "start": 12123
1535
+ },
1536
+ {
1537
+ "length": 20,
1538
+ "start": 12245
1539
+ },
1540
+ {
1541
+ "length": 20,
1542
+ "start": 14339
1543
+ },
1544
+ {
1545
+ "length": 20,
1546
+ "start": 14594
1547
+ },
1548
+ {
1549
+ "length": 20,
1550
+ "start": 14735
1551
+ }
1552
+ ]
1553
+ },
1554
+ "contracts/type/Version.sol": {
1555
+ "VersionLib": [
1556
+ {
1557
+ "length": 20,
1558
+ "start": 3643
1559
+ },
1560
+ {
1561
+ "length": 20,
1562
+ "start": 7127
1563
+ }
1564
+ ]
1565
+ }
1566
+ },
1567
+ "deployedLinkReferences": {
1568
+ "contracts/pool/PoolLib.sol": {
1569
+ "PoolLib": [
1570
+ {
1571
+ "length": 20,
1572
+ "start": 15217
1573
+ }
1574
+ ]
1575
+ },
1576
+ "contracts/shared/ContractLib.sol": {
1577
+ "ContractLib": [
1578
+ {
1579
+ "length": 20,
1580
+ "start": 1147
1581
+ },
1582
+ {
1583
+ "length": 20,
1584
+ "start": 5932
1585
+ },
1586
+ {
1587
+ "length": 20,
1588
+ "start": 8591
1589
+ },
1590
+ {
1591
+ "length": 20,
1592
+ "start": 17829
1593
+ },
1594
+ {
1595
+ "length": 20,
1596
+ "start": 18426
1597
+ }
1598
+ ]
1599
+ },
1600
+ "contracts/type/Amount.sol": {
1601
+ "AmountLib": [
1602
+ {
1603
+ "length": 20,
1604
+ "start": 2224
1605
+ },
1606
+ {
1607
+ "length": 20,
1608
+ "start": 2550
1609
+ },
1610
+ {
1611
+ "length": 20,
1612
+ "start": 2770
1613
+ },
1614
+ {
1615
+ "length": 20,
1616
+ "start": 9225
1617
+ },
1618
+ {
1619
+ "length": 20,
1620
+ "start": 9703
1621
+ },
1622
+ {
1623
+ "length": 20,
1624
+ "start": 15425
1625
+ },
1626
+ {
1627
+ "length": 20,
1628
+ "start": 15567
1629
+ },
1630
+ {
1631
+ "length": 20,
1632
+ "start": 16909
1633
+ }
1634
+ ]
1635
+ },
1636
+ "contracts/type/DistributorType.sol": {
1637
+ "DistributorTypeLib": [
1638
+ {
1639
+ "length": 20,
1640
+ "start": 5022
1641
+ }
1642
+ ]
1643
+ },
1644
+ "contracts/type/NftId.sol": {
1645
+ "NftIdLib": [
1646
+ {
1647
+ "length": 20,
1648
+ "start": 3629
1649
+ },
1650
+ {
1651
+ "length": 20,
1652
+ "start": 5690
1653
+ },
1654
+ {
1655
+ "length": 20,
1656
+ "start": 6313
1657
+ },
1658
+ {
1659
+ "length": 20,
1660
+ "start": 7671
1661
+ },
1662
+ {
1663
+ "length": 20,
1664
+ "start": 10158
1665
+ },
1666
+ {
1667
+ "length": 20,
1668
+ "start": 15653
1669
+ },
1670
+ {
1671
+ "length": 20,
1672
+ "start": 16213
1673
+ }
1674
+ ]
1675
+ },
1676
+ "contracts/type/ObjectType.sol": {
1677
+ "ObjectTypeLib": [
1678
+ {
1679
+ "length": 20,
1680
+ "start": 14929
1681
+ }
1682
+ ]
1683
+ },
1684
+ "contracts/type/Referral.sol": {
1685
+ "ReferralLib": [
1686
+ {
1687
+ "length": 20,
1688
+ "start": 5803
1689
+ },
1690
+ {
1691
+ "length": 20,
1692
+ "start": 12712
1693
+ }
1694
+ ]
1695
+ },
1696
+ "contracts/type/RoleId.sol": {
1697
+ "RoleIdLib": [
1698
+ {
1699
+ "length": 20,
1700
+ "start": 8325
1701
+ }
1702
+ ]
1703
+ },
1704
+ "contracts/type/Seconds.sol": {
1705
+ "SecondsLib": [
1706
+ {
1707
+ "length": 20,
1708
+ "start": 12191
1709
+ }
1710
+ ]
1711
+ },
1712
+ "contracts/type/Timestamp.sol": {
1713
+ "TimestampLib": [
1714
+ {
1715
+ "length": 20,
1716
+ "start": 6502
1717
+ },
1718
+ {
1719
+ "length": 20,
1720
+ "start": 6634
1721
+ },
1722
+ {
1723
+ "length": 20,
1724
+ "start": 6738
1725
+ },
1726
+ {
1727
+ "length": 20,
1728
+ "start": 10564
1729
+ },
1730
+ {
1731
+ "length": 20,
1732
+ "start": 10672
1733
+ },
1734
+ {
1735
+ "length": 20,
1736
+ "start": 10700
1737
+ },
1738
+ {
1739
+ "length": 20,
1740
+ "start": 12285
1741
+ },
1742
+ {
1743
+ "length": 20,
1744
+ "start": 12419
1745
+ },
1746
+ {
1747
+ "length": 20,
1748
+ "start": 12539
1749
+ },
1750
+ {
1751
+ "length": 20,
1752
+ "start": 14026
1753
+ },
1754
+ {
1755
+ "length": 20,
1756
+ "start": 14253
1757
+ }
1758
+ ]
1759
+ },
1760
+ "contracts/type/UFixed.sol": {
1761
+ "UFixedLib": [
1762
+ {
1763
+ "length": 20,
1764
+ "start": 4427
1765
+ },
1766
+ {
1767
+ "length": 20,
1768
+ "start": 4549
1769
+ },
1770
+ {
1771
+ "length": 20,
1772
+ "start": 4727
1773
+ },
1774
+ {
1775
+ "length": 20,
1776
+ "start": 4889
1777
+ },
1778
+ {
1779
+ "length": 20,
1780
+ "start": 11601
1781
+ },
1782
+ {
1783
+ "length": 20,
1784
+ "start": 11723
1785
+ },
1786
+ {
1787
+ "length": 20,
1788
+ "start": 11909
1789
+ },
1790
+ {
1791
+ "length": 20,
1792
+ "start": 12031
1793
+ },
1794
+ {
1795
+ "length": 20,
1796
+ "start": 14125
1797
+ },
1798
+ {
1799
+ "length": 20,
1800
+ "start": 14380
1801
+ },
1802
+ {
1803
+ "length": 20,
1804
+ "start": 14521
1805
+ }
1806
+ ]
1807
+ },
1808
+ "contracts/type/Version.sol": {
1809
+ "VersionLib": [
1810
+ {
1811
+ "length": 20,
1812
+ "start": 3429
1813
+ },
1814
+ {
1815
+ "length": 20,
1816
+ "start": 6913
1817
+ }
1818
+ ]
1819
+ }
1820
+ }
1821
+ }