@etherisc/gif-next 0.0.2-a25e4b8-781 → 0.0.2-a307d03-692

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 (760) hide show
  1. package/README.md +85 -23
  2. package/artifacts/contracts/accounting/AccountingService.sol/AccountingService.dbg.json +4 -0
  3. package/artifacts/contracts/accounting/AccountingService.sol/AccountingService.json +1007 -0
  4. package/artifacts/contracts/accounting/AccountingServiceManager.sol/AccountingServiceManager.dbg.json +4 -0
  5. package/artifacts/contracts/accounting/AccountingServiceManager.sol/AccountingServiceManager.json +744 -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 +1379 -0
  10. package/artifacts/contracts/authorization/AccessAdmin.sol/IAccessManagedChecker.dbg.json +4 -0
  11. package/artifacts/contracts/authorization/AccessAdmin.sol/IAccessManagedChecker.json +24 -0
  12. package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.dbg.json +4 -0
  13. package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.json +1434 -0
  14. package/artifacts/contracts/authorization/Authorization.sol/Authorization.dbg.json +4 -0
  15. package/artifacts/contracts/authorization/Authorization.sol/Authorization.json +542 -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 +1130 -0
  20. package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.dbg.json +4 -0
  21. package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.json +350 -0
  22. package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.dbg.json +4 -0
  23. package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.json +167 -0
  24. package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.dbg.json +4 -0
  25. package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.json +253 -0
  26. package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.dbg.json +4 -0
  27. package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.json +1322 -0
  28. package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.dbg.json +4 -0
  29. package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.json +589 -0
  30. package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +4 -0
  31. package/artifacts/contracts/distribution/Distribution.sol/Distribution.json +1016 -0
  32. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +4 -0
  33. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +1509 -0
  34. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
  35. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +864 -0
  36. package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
  37. package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.json +915 -0
  38. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +4 -0
  39. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.json +1008 -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 +1475 -0
  44. package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.dbg.json +4 -0
  45. package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.json +589 -0
  46. package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.dbg.json +4 -0
  47. package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.json +2040 -0
  48. package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.dbg.json +4 -0
  49. package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.json +589 -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 +1479 -0
  54. package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.dbg.json +4 -0
  55. package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.json +589 -0
  56. package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.dbg.json +4 -0
  57. package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.json +1195 -0
  58. package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.dbg.json +4 -0
  59. package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.json +1655 -0
  60. package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.dbg.json +4 -0
  61. package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.json +589 -0
  62. package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.dbg.json +4 -0
  63. package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.json +2426 -0
  64. package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.dbg.json +4 -0
  65. package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.json +589 -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 +316 -1517
  70. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
  71. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +387 -198
  72. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  73. package/artifacts/contracts/instance/Instance.sol/Instance.json +467 -2462
  74. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +4 -0
  75. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +1940 -0
  76. package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.dbg.json +4 -0
  77. package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.json +661 -0
  78. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
  79. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1617 -569
  80. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
  81. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +468 -399
  82. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
  83. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +376 -92
  84. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
  85. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +3718 -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/{Cloneable.sol → base/Cloneable.sol}/Cloneable.json +1 -49
  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 +959 -0
  110. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.dbg.json +4 -0
  111. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.json +569 -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/{components/Distribution.sol/Distribution.json → oracle/IOracleComponent.sol/IOracleComponent.json} +273 -280
  116. package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +4 -0
  117. package/artifacts/contracts/{instance/service/IPolicyService.sol/IPolicyService.json → oracle/IOracleService.sol/IOracleService.json} +310 -348
  118. package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +4 -0
  119. package/artifacts/contracts/oracle/Oracle.sol/Oracle.json +875 -0
  120. package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +4 -0
  121. package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +997 -0
  122. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +4 -0
  123. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +764 -0
  124. package/artifacts/contracts/pool/BasicPool.sol/BasicPool.dbg.json +4 -0
  125. package/artifacts/contracts/pool/BasicPool.sol/BasicPool.json +1252 -0
  126. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.dbg.json +4 -0
  127. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.json +589 -0
  128. package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +4 -0
  129. package/artifacts/contracts/pool/BundleService.sol/BundleService.json +1261 -0
  130. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
  131. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +800 -0
  132. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +4 -0
  133. package/artifacts/contracts/{instance/service → pool}/IBundleService.sol/IBundleService.json +437 -277
  134. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
  135. package/artifacts/contracts/{components/Pool.sol/Pool.json → pool/IPoolComponent.sol/IPoolComponent.json} +347 -388
  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 +1027 -0
  140. package/artifacts/contracts/pool/PoolLib.sol/PoolLib.dbg.json +4 -0
  141. package/artifacts/contracts/pool/PoolLib.sol/PoolLib.json +456 -0
  142. package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +4 -0
  143. package/artifacts/contracts/pool/PoolService.sol/PoolService.json +1574 -0
  144. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
  145. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +808 -0
  146. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +4 -0
  147. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +813 -0
  148. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
  149. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +728 -0
  150. package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.dbg.json +4 -0
  151. package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.json +1161 -0
  152. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.dbg.json +4 -0
  153. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.json +589 -0
  154. package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +4 -0
  155. package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +1496 -0
  156. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
  157. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +848 -0
  158. package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +4 -0
  159. package/artifacts/contracts/{instance/base/ComponentService.sol/ComponentService.json → product/IApplicationService.sol/IApplicationService.json} +234 -232
  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/IProductService.sol/IProductService.json → product/IPricingService.sol/IPricingService.json} +297 -231
  166. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +4 -0
  167. package/artifacts/contracts/{components/Product.sol/Product.json → product/IProductComponent.sol/IProductComponent.json} +455 -318
  168. package/artifacts/contracts/product/IRiskService.sol/IRiskService.dbg.json +4 -0
  169. package/artifacts/contracts/{instance/service/IDistributionService.sol/IDistributionService.json → product/IRiskService.sol/IRiskService.json} +169 -162
  170. package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +4 -0
  171. package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +1333 -0
  172. package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.dbg.json +4 -0
  173. package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.json +293 -0
  174. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
  175. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +808 -0
  176. package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +4 -0
  177. package/artifacts/contracts/product/PricingService.sol/PricingService.json +930 -0
  178. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
  179. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +784 -0
  180. package/artifacts/contracts/product/Product.sol/Product.dbg.json +4 -0
  181. package/artifacts/contracts/product/Product.sol/Product.json +1119 -0
  182. package/artifacts/contracts/product/RiskService.sol/RiskService.dbg.json +4 -0
  183. package/artifacts/contracts/product/RiskService.sol/RiskService.json +637 -0
  184. package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.dbg.json +4 -0
  185. package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.json +724 -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 +513 -27
  190. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
  191. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +282 -220
  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 +996 -119
  198. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +4 -0
  199. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +1928 -0
  200. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
  201. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +346 -264
  202. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
  203. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +362 -78
  204. package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.dbg.json +4 -0
  205. package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.json +1849 -0
  206. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.dbg.json +4 -0
  207. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.json +205 -0
  208. package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.dbg.json +4 -0
  209. package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.json +1333 -0
  210. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.dbg.json +4 -0
  211. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.json +272 -0
  212. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
  213. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +361 -81
  214. package/artifacts/contracts/shared/Component.sol/Component.dbg.json +4 -0
  215. package/artifacts/contracts/shared/Component.sol/Component.json +707 -0
  216. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +4 -0
  217. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +1410 -0
  218. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +4 -0
  219. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +808 -0
  220. package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.dbg.json +4 -0
  221. package/artifacts/contracts/{instance/service/IPoolService.sol/IPoolService.json → shared/ComponentVerifyingService.sol/ComponentVerifyingService.json} +200 -214
  222. package/artifacts/contracts/shared/ContractLib.sol/ContractLib.dbg.json +4 -0
  223. package/artifacts/contracts/shared/ContractLib.sol/ContractLib.json +541 -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/{components/Component.sol/Component.json → shared/IComponent.sol/IComponent.json} +217 -173
  232. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +4 -0
  233. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +1066 -0
  234. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +4 -0
  235. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +709 -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 +124 -146
  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 +797 -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 +144 -159
  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 +1447 -0
  278. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +4 -0
  279. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +1096 -0
  280. package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.dbg.json +4 -0
  281. package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.json +440 -0
  282. package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +4 -0
  283. package/artifacts/contracts/staking/Staking.sol/Staking.json +1849 -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 +788 -0
  288. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +4 -0
  289. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +587 -0
  290. package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +4 -0
  291. package/artifacts/contracts/staking/StakingService.sol/StakingService.json +1301 -0
  292. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +4 -0
  293. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +732 -0
  294. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +4 -0
  295. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +2283 -0
  296. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +4 -0
  297. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +607 -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 +317 -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 +239 -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 +199 -0
  328. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +4 -0
  329. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +433 -0
  330. package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +4 -0
  331. package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +246 -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 +132 -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 +548 -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 +113 -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 +129 -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 +262 -0
  357. package/contracts/accounting/AccountingServiceManager.sol +38 -0
  358. package/contracts/accounting/IAccountingService.sol +45 -0
  359. package/contracts/authorization/AccessAdmin.sol +689 -0
  360. package/contracts/authorization/AccessManagerCloneable.sol +149 -0
  361. package/contracts/authorization/Authorization.sol +337 -0
  362. package/contracts/authorization/IAccess.sol +49 -0
  363. package/contracts/authorization/IAccessAdmin.sol +143 -0
  364. package/contracts/authorization/IAuthorization.sol +74 -0
  365. package/contracts/authorization/IServiceAuthorization.sol +40 -0
  366. package/contracts/authorization/ServiceAuthorization.sol +106 -0
  367. package/contracts/distribution/BasicDistribution.sol +141 -0
  368. package/contracts/distribution/BasicDistributionAuthorization.sol +60 -0
  369. package/contracts/distribution/Distribution.sol +289 -0
  370. package/contracts/distribution/DistributionService.sol +358 -0
  371. package/contracts/distribution/DistributionServiceManager.sol +39 -0
  372. package/contracts/distribution/IDistributionComponent.sol +52 -0
  373. package/contracts/distribution/IDistributionService.sol +101 -0
  374. package/contracts/examples/fire/DamageLevel.sol +59 -0
  375. package/contracts/examples/fire/FirePool.sol +90 -0
  376. package/contracts/examples/fire/FirePoolAuthorization.sol +35 -0
  377. package/contracts/examples/fire/FireProduct.sol +438 -0
  378. package/contracts/examples/fire/FireProductAuthorization.sol +45 -0
  379. package/contracts/examples/fire/FireUSD.sol +26 -0
  380. package/contracts/examples/unpermissioned/SimpleDistribution.sol +57 -0
  381. package/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol +28 -0
  382. package/contracts/examples/unpermissioned/SimpleOracle.sol +137 -0
  383. package/contracts/examples/unpermissioned/SimplePool.sol +106 -0
  384. package/contracts/examples/unpermissioned/SimplePoolAuthorization.sol +28 -0
  385. package/contracts/examples/unpermissioned/SimpleProduct.sol +377 -0
  386. package/contracts/examples/unpermissioned/SimpleProductAuthorization.sol +28 -0
  387. package/contracts/instance/BundleSet.sol +130 -0
  388. package/contracts/instance/IInstance.sol +51 -46
  389. package/contracts/instance/IInstanceService.sol +54 -22
  390. package/contracts/instance/Instance.sol +188 -185
  391. package/contracts/instance/InstanceAdmin.sol +449 -0
  392. package/contracts/instance/InstanceAuthorizationV3.sol +216 -0
  393. package/contracts/instance/InstanceReader.sol +408 -64
  394. package/contracts/instance/InstanceService.sol +311 -269
  395. package/contracts/instance/InstanceServiceManager.sol +14 -29
  396. package/contracts/instance/InstanceStore.sol +298 -0
  397. package/contracts/instance/RiskSet.sol +118 -0
  398. package/contracts/instance/base/BalanceStore.sol +123 -0
  399. package/contracts/instance/{Cloneable.sol → base/Cloneable.sol} +4 -22
  400. package/contracts/instance/base/ObjectCounter.sol +20 -0
  401. package/contracts/instance/base/ObjectLifecycle.sol +113 -0
  402. package/contracts/instance/base/ObjectSet.sol +77 -0
  403. package/contracts/instance/base/ObjectSetHelperLib.sol +30 -0
  404. package/contracts/instance/module/IBundle.sol +8 -8
  405. package/contracts/instance/module/IComponents.sol +51 -0
  406. package/contracts/instance/module/IDistribution.sol +8 -5
  407. package/contracts/instance/module/IPolicy.sol +59 -19
  408. package/contracts/instance/module/IRisk.sol +4 -1
  409. package/contracts/{test/TestToken.sol → mock/Dip.sol} +6 -6
  410. package/contracts/oracle/BasicOracle.sol +47 -0
  411. package/contracts/oracle/BasicOracleAuthorization.sol +37 -0
  412. package/contracts/oracle/IOracle.sol +36 -0
  413. package/contracts/oracle/IOracleComponent.sol +33 -0
  414. package/contracts/oracle/IOracleService.sol +66 -0
  415. package/contracts/oracle/Oracle.sol +156 -0
  416. package/contracts/oracle/OracleService.sol +310 -0
  417. package/contracts/oracle/OracleServiceManager.sol +39 -0
  418. package/contracts/pool/BasicPool.sol +175 -0
  419. package/contracts/pool/BasicPoolAuthorization.sol +76 -0
  420. package/contracts/pool/BundleService.sol +395 -0
  421. package/contracts/pool/BundleServiceManager.sol +39 -0
  422. package/contracts/pool/IBundleService.sol +115 -0
  423. package/contracts/pool/IPoolComponent.sol +62 -0
  424. package/contracts/pool/IPoolService.sol +165 -0
  425. package/contracts/pool/Pool.sol +345 -0
  426. package/contracts/pool/PoolLib.sol +216 -0
  427. package/contracts/pool/PoolService.sol +757 -0
  428. package/contracts/pool/PoolServiceManager.sol +39 -0
  429. package/contracts/product/ApplicationService.sol +259 -0
  430. package/contracts/product/ApplicationServiceManager.sol +38 -0
  431. package/contracts/product/BasicProduct.sol +51 -0
  432. package/contracts/product/BasicProductAuthorization.sol +56 -0
  433. package/contracts/product/ClaimService.sol +632 -0
  434. package/contracts/product/ClaimServiceManager.sol +38 -0
  435. package/contracts/product/IApplicationService.sol +66 -0
  436. package/contracts/product/IClaimService.sol +135 -0
  437. package/contracts/product/IPolicyService.sol +95 -0
  438. package/contracts/product/IPricingService.sol +39 -0
  439. package/contracts/product/IProductComponent.sol +62 -0
  440. package/contracts/product/IRiskService.sol +33 -0
  441. package/contracts/product/PolicyService.sol +682 -0
  442. package/contracts/product/PolicyServiceLib.sol +65 -0
  443. package/contracts/product/PolicyServiceManager.sol +39 -0
  444. package/contracts/product/PricingService.sol +304 -0
  445. package/contracts/product/PricingServiceManager.sol +39 -0
  446. package/contracts/product/Product.sol +478 -0
  447. package/contracts/product/RiskService.sol +145 -0
  448. package/contracts/product/RiskServiceManager.sol +39 -0
  449. package/contracts/registry/ChainNft.sol +83 -36
  450. package/contracts/registry/IRegistry.sol +98 -30
  451. package/contracts/registry/IRegistryService.sol +39 -34
  452. package/contracts/registry/IRelease.sol +26 -0
  453. package/contracts/registry/ITransferInterceptor.sol +1 -1
  454. package/contracts/registry/Registry.sol +485 -207
  455. package/contracts/registry/RegistryAdmin.sol +354 -0
  456. package/contracts/registry/RegistryService.sol +120 -191
  457. package/contracts/registry/RegistryServiceManager.sol +24 -33
  458. package/contracts/registry/ReleaseAdmin.sol +245 -0
  459. package/contracts/registry/ReleaseLifecycle.sol +32 -0
  460. package/contracts/registry/ReleaseRegistry.sol +511 -0
  461. package/contracts/registry/ServiceAuthorizationV3.sol +326 -0
  462. package/contracts/registry/TokenRegistry.sol +263 -62
  463. package/contracts/shared/Component.sol +226 -0
  464. package/contracts/shared/ComponentService.sol +624 -0
  465. package/contracts/shared/ComponentServiceManager.sol +38 -0
  466. package/contracts/shared/ComponentVerifyingService.sol +128 -0
  467. package/contracts/shared/ContractLib.sol +253 -0
  468. package/contracts/shared/IComponent.sol +61 -0
  469. package/contracts/shared/IComponentService.sol +100 -0
  470. package/contracts/shared/IInstanceLinkedComponent.sol +30 -0
  471. package/contracts/{instance/base → shared}/IKeyValueStore.sol +16 -11
  472. package/contracts/{instance/base → shared}/ILifecycle.sol +5 -4
  473. package/contracts/shared/INftOwnable.sol +15 -12
  474. package/contracts/shared/IPolicyHolder.sol +35 -0
  475. package/contracts/shared/IRegisterable.sol +25 -3
  476. package/contracts/shared/IRegistryLinked.sol +11 -0
  477. package/contracts/shared/IService.sol +12 -5
  478. package/contracts/shared/InitializableERC165.sol +27 -0
  479. package/contracts/shared/InstanceLinkedComponent.sol +197 -0
  480. package/contracts/shared/KeyValueStore.sol +131 -0
  481. package/contracts/shared/Lifecycle.sol +88 -0
  482. package/contracts/shared/NftIdSet.sol +65 -0
  483. package/contracts/shared/NftOwnable.sol +75 -84
  484. package/contracts/shared/PolicyHolder.sol +62 -0
  485. package/contracts/shared/Registerable.sol +57 -38
  486. package/contracts/shared/RegistryLinked.sol +38 -0
  487. package/contracts/shared/Service.sol +39 -34
  488. package/contracts/shared/TokenHandler.sol +326 -12
  489. package/contracts/shared/TokenHandlerDeployerLib.sol +20 -0
  490. package/contracts/staking/IStaking.sol +165 -0
  491. package/contracts/staking/IStakingService.sol +165 -0
  492. package/contracts/staking/StakeManagerLib.sol +224 -0
  493. package/contracts/staking/Staking.sol +526 -0
  494. package/contracts/staking/StakingLifecycle.sol +23 -0
  495. package/contracts/staking/StakingManager.sol +52 -0
  496. package/contracts/staking/StakingReader.sol +190 -0
  497. package/contracts/staking/StakingService.sol +430 -0
  498. package/contracts/staking/StakingServiceManager.sol +45 -0
  499. package/contracts/staking/StakingStore.sol +605 -0
  500. package/contracts/staking/TargetManagerLib.sol +211 -0
  501. package/contracts/{types → type}/AddressSet.sol +1 -1
  502. package/contracts/type/Amount.sol +150 -0
  503. package/contracts/{types → type}/Blocknumber.sol +27 -3
  504. package/contracts/type/ClaimId.sol +80 -0
  505. package/contracts/{types → type}/DistributorType.sol +2 -2
  506. package/contracts/{types → type}/Fee.sol +33 -23
  507. package/contracts/{types → type}/Key32.sol +2 -2
  508. package/contracts/type/Key32Set.sol +62 -0
  509. package/contracts/{types → type}/NftId.sol +28 -15
  510. package/contracts/{types → type}/NftIdSet.sol +2 -2
  511. package/contracts/type/ObjectType.sol +303 -0
  512. package/contracts/type/PayoutId.sol +82 -0
  513. package/contracts/{types → type}/Referral.sol +6 -1
  514. package/contracts/type/RequestId.sol +75 -0
  515. package/contracts/type/RiskId.sol +74 -0
  516. package/contracts/type/RoleId.sol +182 -0
  517. package/contracts/type/Seconds.sol +101 -0
  518. package/contracts/type/Selector.sol +107 -0
  519. package/contracts/{types → type}/StateId.sol +48 -4
  520. package/contracts/type/String.sol +53 -0
  521. package/contracts/{types → type}/Timestamp.sol +33 -19
  522. package/contracts/{types → type}/UFixed.sol +41 -121
  523. package/contracts/{types → type}/Version.sol +20 -7
  524. package/contracts/{shared → upgradeability}/IVersionable.sol +5 -48
  525. package/contracts/upgradeability/ProxyManager.sol +232 -0
  526. package/contracts/{shared → upgradeability}/UpgradableProxyWithAdmin.sol +1 -3
  527. package/contracts/upgradeability/Versionable.sol +59 -0
  528. package/package.json +11 -7
  529. package/artifacts/contracts/components/Component.sol/Component.dbg.json +0 -4
  530. package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +0 -4
  531. package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +0 -4
  532. package/artifacts/contracts/components/IComponent.sol/IComponent.json +0 -413
  533. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +0 -4
  534. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +0 -152
  535. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +0 -4
  536. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +0 -275
  537. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +0 -4
  538. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +0 -157
  539. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +0 -4
  540. package/artifacts/contracts/components/Product.sol/Product.dbg.json +0 -4
  541. package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.dbg.json +0 -4
  542. package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.json +0 -66
  543. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.dbg.json +0 -4
  544. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.json +0 -24
  545. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.dbg.json +0 -4
  546. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.json +0 -42
  547. package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +0 -4
  548. package/artifacts/contracts/experiment/errors/Require.sol/Require.json +0 -105
  549. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +0 -4
  550. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +0 -105
  551. package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +0 -4
  552. package/artifacts/contracts/experiment/inheritance/A.sol/A.json +0 -128
  553. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +0 -4
  554. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +0 -42
  555. package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +0 -4
  556. package/artifacts/contracts/experiment/inheritance/B.sol/B.json +0 -76
  557. package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +0 -4
  558. package/artifacts/contracts/experiment/inheritance/C.sol/C.json +0 -89
  559. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +0 -4
  560. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.json +0 -128
  561. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +0 -4
  562. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +0 -4
  563. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.json +0 -50
  564. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +0 -4
  565. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.json +0 -63
  566. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +0 -4
  567. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +0 -59
  568. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +0 -4
  569. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.json +0 -124
  570. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +0 -4
  571. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.json +0 -74
  572. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +0 -4
  573. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +0 -124
  574. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +0 -4
  575. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +0 -207
  576. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +0 -4
  577. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +0 -10
  578. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +0 -4
  579. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +0 -10
  580. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +0 -4
  581. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +0 -764
  582. package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +0 -4
  583. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +0 -4
  584. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +0 -1034
  585. package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +0 -4
  586. package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +0 -261
  587. package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.dbg.json +0 -4
  588. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +0 -4
  589. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +0 -100
  590. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +0 -4
  591. package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +0 -4
  592. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +0 -4
  593. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +0 -502
  594. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +0 -4
  595. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +0 -169
  596. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +0 -4
  597. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +0 -254
  598. package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +0 -4
  599. package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +0 -4
  600. package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +0 -4
  601. package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +0 -1094
  602. package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +0 -4
  603. package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +0 -436
  604. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +0 -4
  605. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +0 -764
  606. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +0 -4
  607. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +0 -424
  608. package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +0 -4
  609. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +0 -4
  610. package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +0 -4
  611. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +0 -4
  612. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +0 -4
  613. package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +0 -4
  614. package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +0 -1219
  615. package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +0 -4
  616. package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +0 -492
  617. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +0 -4
  618. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +0 -798
  619. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +0 -4
  620. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +0 -424
  621. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +0 -4
  622. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +0 -848
  623. package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +0 -4
  624. package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +0 -424
  625. package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +0 -4
  626. package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +0 -285
  627. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +0 -4
  628. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +0 -547
  629. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +0 -4
  630. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.json +0 -107
  631. package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +0 -4
  632. package/artifacts/contracts/shared/ERC165.sol/ERC165.json +0 -35
  633. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +0 -4
  634. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +0 -205
  635. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +0 -4
  636. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +0 -349
  637. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +0 -4
  638. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +0 -129
  639. package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +0 -4
  640. package/artifacts/contracts/shared/Versionable.sol/Versionable.json +0 -228
  641. package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +0 -4
  642. package/artifacts/contracts/test/TestFee.sol/TestFee.json +0 -119
  643. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +0 -4
  644. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +0 -305
  645. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +0 -4
  646. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +0 -116
  647. package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +0 -4
  648. package/artifacts/contracts/test/TestService.sol/TestService.json +0 -600
  649. package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +0 -4
  650. package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +0 -376
  651. package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +0 -4
  652. package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +0 -218
  653. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +0 -4
  654. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +0 -286
  655. package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +0 -4
  656. package/artifacts/contracts/test/Usdc.sol/USDC.json +0 -376
  657. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +0 -4
  658. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.json +0 -10
  659. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +0 -4
  660. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +0 -174
  661. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +0 -4
  662. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +0 -10
  663. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +0 -4
  664. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +0 -104
  665. package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +0 -4
  666. package/artifacts/contracts/types/Fee.sol/FeeLib.json +0 -257
  667. package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +0 -4
  668. package/artifacts/contracts/types/Key32.sol/Key32Lib.json +0 -125
  669. package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +0 -4
  670. package/artifacts/contracts/types/NftId.sol/NftIdLib.json +0 -153
  671. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +0 -4
  672. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +0 -33
  673. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +0 -4
  674. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.json +0 -100
  675. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +0 -4
  676. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +0 -92
  677. package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +0 -4
  678. package/artifacts/contracts/types/Referral.sol/ReferralLib.json +0 -123
  679. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +0 -4
  680. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +0 -86
  681. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +0 -4
  682. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +0 -156
  683. package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +0 -4
  684. package/artifacts/contracts/types/StateId.sol/StateIdLib.json +0 -92
  685. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +0 -4
  686. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +0 -249
  687. package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +0 -4
  688. package/artifacts/contracts/types/UFixed.sol/MathLib.json +0 -10
  689. package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +0 -4
  690. package/artifacts/contracts/types/UFixed.sol/UFixedLib.json +0 -479
  691. package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +0 -4
  692. package/artifacts/contracts/types/Version.sol/VersionLib.json +0 -177
  693. package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +0 -4
  694. package/artifacts/contracts/types/Version.sol/VersionPartLib.json +0 -49
  695. package/contracts/components/Component.sol +0 -179
  696. package/contracts/components/Distribution.sol +0 -154
  697. package/contracts/components/IComponent.sol +0 -37
  698. package/contracts/components/IDistributionComponent.sol +0 -44
  699. package/contracts/components/IPoolComponent.sol +0 -66
  700. package/contracts/components/IProductComponent.sol +0 -35
  701. package/contracts/components/Pool.sol +0 -258
  702. package/contracts/components/Product.sol +0 -297
  703. package/contracts/experiment/cloning/Cloner.sol +0 -47
  704. package/contracts/experiment/errors/Require.sol +0 -38
  705. package/contracts/experiment/errors/Revert.sol +0 -44
  706. package/contracts/experiment/inheritance/A.sol +0 -53
  707. package/contracts/experiment/inheritance/B.sol +0 -28
  708. package/contracts/experiment/inheritance/C.sol +0 -34
  709. package/contracts/experiment/inheritance/IA.sol +0 -13
  710. package/contracts/experiment/inheritance/IB.sol +0 -10
  711. package/contracts/experiment/inheritance/IC.sol +0 -12
  712. package/contracts/experiment/statemachine/Dummy.sol +0 -27
  713. package/contracts/experiment/statemachine/ISM.sol +0 -25
  714. package/contracts/experiment/statemachine/SM.sol +0 -57
  715. package/contracts/experiment/statemachine/SimpleStateMachine.sol +0 -31
  716. package/contracts/experiment/types/TypeA.sol +0 -47
  717. package/contracts/experiment/types/TypeB.sol +0 -29
  718. package/contracts/instance/BundleManager.sol +0 -125
  719. package/contracts/instance/InstanceAccessManager.sol +0 -298
  720. package/contracts/instance/ObjectManager.sol +0 -84
  721. package/contracts/instance/base/ComponentService.sol +0 -133
  722. package/contracts/instance/base/IInstanceBase.sol +0 -21
  723. package/contracts/instance/base/KeyValueStore.sol +0 -172
  724. package/contracts/instance/base/Lifecycle.sol +0 -100
  725. package/contracts/instance/module/IAccess.sol +0 -48
  726. package/contracts/instance/module/ISetup.sol +0 -46
  727. package/contracts/instance/module/ITreasury.sol +0 -23
  728. package/contracts/instance/service/BundleService.sol +0 -293
  729. package/contracts/instance/service/BundleServiceManager.sol +0 -51
  730. package/contracts/instance/service/DistributionService.sol +0 -115
  731. package/contracts/instance/service/DistributionServiceManager.sol +0 -51
  732. package/contracts/instance/service/IBundleService.sol +0 -44
  733. package/contracts/instance/service/IDistributionService.sol +0 -12
  734. package/contracts/instance/service/IPolicyService.sol +0 -94
  735. package/contracts/instance/service/IPoolService.sol +0 -20
  736. package/contracts/instance/service/IProductService.sol +0 -40
  737. package/contracts/instance/service/PolicyService.sol +0 -538
  738. package/contracts/instance/service/PolicyServiceManager.sol +0 -54
  739. package/contracts/instance/service/PoolService.sol +0 -142
  740. package/contracts/instance/service/PoolServiceManager.sol +0 -51
  741. package/contracts/instance/service/ProductService.sol +0 -241
  742. package/contracts/instance/service/ProductServiceManager.sol +0 -54
  743. package/contracts/registry/RegistryAccessManager.sol +0 -216
  744. package/contracts/registry/ReleaseManager.sol +0 -352
  745. package/contracts/shared/ContractDeployerLib.sol +0 -72
  746. package/contracts/shared/ERC165.sol +0 -25
  747. package/contracts/shared/ProxyManager.sol +0 -94
  748. package/contracts/shared/Versionable.sol +0 -147
  749. package/contracts/test/TestFee.sol +0 -25
  750. package/contracts/test/TestRegisterable.sol +0 -18
  751. package/contracts/test/TestRoleId.sol +0 -14
  752. package/contracts/test/TestService.sol +0 -25
  753. package/contracts/test/TestVersion.sol +0 -44
  754. package/contracts/test/TestVersionable.sol +0 -17
  755. package/contracts/test/Usdc.sol +0 -26
  756. package/contracts/types/ChainId.sol +0 -38
  757. package/contracts/types/NumberId.sol +0 -52
  758. package/contracts/types/ObjectType.sol +0 -152
  759. package/contracts/types/RiskId.sol +0 -43
  760. package/contracts/types/RoleId.sol +0 -90
@@ -0,0 +1,1410 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "ComponentService",
4
+ "sourceName": "contracts/shared/ComponentService.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": "component",
60
+ "type": "address"
61
+ }
62
+ ],
63
+ "name": "ErrorComponentServiceComponentAlreadyRegistered",
64
+ "type": "error"
65
+ },
66
+ {
67
+ "inputs": [
68
+ {
69
+ "internalType": "address",
70
+ "name": "component",
71
+ "type": "address"
72
+ },
73
+ {
74
+ "internalType": "NftId",
75
+ "name": "required",
76
+ "type": "uint96"
77
+ },
78
+ {
79
+ "internalType": "NftId",
80
+ "name": "actual",
81
+ "type": "uint96"
82
+ }
83
+ ],
84
+ "name": "ErrorComponentServiceComponentParentInvalid",
85
+ "type": "error"
86
+ },
87
+ {
88
+ "inputs": [
89
+ {
90
+ "internalType": "address",
91
+ "name": "component",
92
+ "type": "address"
93
+ },
94
+ {
95
+ "internalType": "VersionPart",
96
+ "name": "serviceRelease",
97
+ "type": "uint8"
98
+ },
99
+ {
100
+ "internalType": "VersionPart",
101
+ "name": "componentRelease",
102
+ "type": "uint8"
103
+ }
104
+ ],
105
+ "name": "ErrorComponentServiceComponentReleaseMismatch",
106
+ "type": "error"
107
+ },
108
+ {
109
+ "inputs": [
110
+ {
111
+ "internalType": "address",
112
+ "name": "component",
113
+ "type": "address"
114
+ },
115
+ {
116
+ "internalType": "ObjectType",
117
+ "name": "invalid",
118
+ "type": "uint8"
119
+ }
120
+ ],
121
+ "name": "ErrorComponentServiceComponentTypeNotSupported",
122
+ "type": "error"
123
+ },
124
+ {
125
+ "inputs": [],
126
+ "name": "ErrorComponentServiceNewWalletAddressZero",
127
+ "type": "error"
128
+ },
129
+ {
130
+ "inputs": [
131
+ {
132
+ "internalType": "address",
133
+ "name": "component",
134
+ "type": "address"
135
+ }
136
+ ],
137
+ "name": "ErrorComponentServiceNotInstanceLinkedComponent",
138
+ "type": "error"
139
+ },
140
+ {
141
+ "inputs": [],
142
+ "name": "ErrorComponentServiceWalletAddressIsSameAsCurrent",
143
+ "type": "error"
144
+ },
145
+ {
146
+ "inputs": [],
147
+ "name": "ErrorComponentServiceWalletAddressZero",
148
+ "type": "error"
149
+ },
150
+ {
151
+ "inputs": [
152
+ {
153
+ "internalType": "address",
154
+ "name": "wallet",
155
+ "type": "address"
156
+ },
157
+ {
158
+ "internalType": "address",
159
+ "name": "spender",
160
+ "type": "address"
161
+ },
162
+ {
163
+ "internalType": "uint256",
164
+ "name": "allowance",
165
+ "type": "uint256"
166
+ },
167
+ {
168
+ "internalType": "uint256",
169
+ "name": "amount",
170
+ "type": "uint256"
171
+ }
172
+ ],
173
+ "name": "ErrorComponentServiceWalletAllowanceTooSmall",
174
+ "type": "error"
175
+ },
176
+ {
177
+ "inputs": [
178
+ {
179
+ "internalType": "Amount",
180
+ "name": "withdrawnAmount",
181
+ "type": "uint96"
182
+ },
183
+ {
184
+ "internalType": "Amount",
185
+ "name": "withdrawLimit",
186
+ "type": "uint96"
187
+ }
188
+ ],
189
+ "name": "ErrorComponentServiceWithdrawAmountExceedsLimit",
190
+ "type": "error"
191
+ },
192
+ {
193
+ "inputs": [],
194
+ "name": "ErrorComponentServiceWithdrawAmountIsZero",
195
+ "type": "error"
196
+ },
197
+ {
198
+ "inputs": [
199
+ {
200
+ "internalType": "NftId",
201
+ "name": "nftId",
202
+ "type": "uint96"
203
+ }
204
+ ],
205
+ "name": "ErrorNftOwnableAlreadyLinked",
206
+ "type": "error"
207
+ },
208
+ {
209
+ "inputs": [
210
+ {
211
+ "internalType": "address",
212
+ "name": "contractAddress",
213
+ "type": "address"
214
+ }
215
+ ],
216
+ "name": "ErrorNftOwnableContractNotRegistered",
217
+ "type": "error"
218
+ },
219
+ {
220
+ "inputs": [],
221
+ "name": "ErrorNftOwnableInitialOwnerZero",
222
+ "type": "error"
223
+ },
224
+ {
225
+ "inputs": [
226
+ {
227
+ "internalType": "NftId",
228
+ "name": "nftId",
229
+ "type": "uint96"
230
+ },
231
+ {
232
+ "internalType": "ObjectType",
233
+ "name": "expectedObjectType",
234
+ "type": "uint8"
235
+ }
236
+ ],
237
+ "name": "ErrorNftOwnableInvalidType",
238
+ "type": "error"
239
+ },
240
+ {
241
+ "inputs": [
242
+ {
243
+ "internalType": "address",
244
+ "name": "account",
245
+ "type": "address"
246
+ }
247
+ ],
248
+ "name": "ErrorNftOwnableNotOwner",
249
+ "type": "error"
250
+ },
251
+ {
252
+ "inputs": [
253
+ {
254
+ "internalType": "address",
255
+ "name": "registryAddress",
256
+ "type": "address"
257
+ }
258
+ ],
259
+ "name": "ErrorNotRegistry",
260
+ "type": "error"
261
+ },
262
+ {
263
+ "inputs": [
264
+ {
265
+ "internalType": "NftId",
266
+ "name": "productNftId",
267
+ "type": "uint96"
268
+ },
269
+ {
270
+ "internalType": "NftId",
271
+ "name": "distributionNftId",
272
+ "type": "uint96"
273
+ }
274
+ ],
275
+ "name": "ErrorProductServiceDistributionAlreadyRegistered",
276
+ "type": "error"
277
+ },
278
+ {
279
+ "inputs": [
280
+ {
281
+ "internalType": "NftId",
282
+ "name": "productNftId",
283
+ "type": "uint96"
284
+ }
285
+ ],
286
+ "name": "ErrorProductServiceNoDistributionExpected",
287
+ "type": "error"
288
+ },
289
+ {
290
+ "inputs": [
291
+ {
292
+ "internalType": "NftId",
293
+ "name": "productNftId",
294
+ "type": "uint96"
295
+ }
296
+ ],
297
+ "name": "ErrorProductServiceNoOraclesExpected",
298
+ "type": "error"
299
+ },
300
+ {
301
+ "inputs": [
302
+ {
303
+ "internalType": "NftId",
304
+ "name": "productNftId",
305
+ "type": "uint96"
306
+ },
307
+ {
308
+ "internalType": "uint8",
309
+ "name": "expectedOracles",
310
+ "type": "uint8"
311
+ }
312
+ ],
313
+ "name": "ErrorProductServiceOraclesAlreadyRegistered",
314
+ "type": "error"
315
+ },
316
+ {
317
+ "inputs": [
318
+ {
319
+ "internalType": "NftId",
320
+ "name": "productNftId",
321
+ "type": "uint96"
322
+ },
323
+ {
324
+ "internalType": "NftId",
325
+ "name": "poolNftId",
326
+ "type": "uint96"
327
+ }
328
+ ],
329
+ "name": "ErrorProductServicePoolAlreadyRegistered",
330
+ "type": "error"
331
+ },
332
+ {
333
+ "inputs": [],
334
+ "name": "ErrorRegisterableNotActive",
335
+ "type": "error"
336
+ },
337
+ {
338
+ "inputs": [],
339
+ "name": "InvalidInitialization",
340
+ "type": "error"
341
+ },
342
+ {
343
+ "inputs": [],
344
+ "name": "NotInitializing",
345
+ "type": "error"
346
+ },
347
+ {
348
+ "inputs": [],
349
+ "name": "ReentrancyGuardReentrantCall",
350
+ "type": "error"
351
+ },
352
+ {
353
+ "anonymous": false,
354
+ "inputs": [
355
+ {
356
+ "indexed": false,
357
+ "internalType": "address",
358
+ "name": "authority",
359
+ "type": "address"
360
+ }
361
+ ],
362
+ "name": "AuthorityUpdated",
363
+ "type": "event"
364
+ },
365
+ {
366
+ "anonymous": false,
367
+ "inputs": [
368
+ {
369
+ "indexed": false,
370
+ "internalType": "uint64",
371
+ "name": "version",
372
+ "type": "uint64"
373
+ }
374
+ ],
375
+ "name": "Initialized",
376
+ "type": "event"
377
+ },
378
+ {
379
+ "anonymous": false,
380
+ "inputs": [
381
+ {
382
+ "indexed": false,
383
+ "internalType": "NftId",
384
+ "name": "componentNftId",
385
+ "type": "uint96"
386
+ },
387
+ {
388
+ "indexed": false,
389
+ "internalType": "address",
390
+ "name": "recipient",
391
+ "type": "address"
392
+ },
393
+ {
394
+ "indexed": false,
395
+ "internalType": "address",
396
+ "name": "token",
397
+ "type": "address"
398
+ },
399
+ {
400
+ "indexed": false,
401
+ "internalType": "Amount",
402
+ "name": "withdrawnAmount",
403
+ "type": "uint96"
404
+ }
405
+ ],
406
+ "name": "LogComponentServiceComponentFeesWithdrawn",
407
+ "type": "event"
408
+ },
409
+ {
410
+ "anonymous": false,
411
+ "inputs": [
412
+ {
413
+ "indexed": false,
414
+ "internalType": "NftId",
415
+ "name": "distributionNftId",
416
+ "type": "uint96"
417
+ }
418
+ ],
419
+ "name": "LogComponentServiceDistributionFeesUpdated",
420
+ "type": "event"
421
+ },
422
+ {
423
+ "anonymous": false,
424
+ "inputs": [
425
+ {
426
+ "indexed": false,
427
+ "internalType": "NftId",
428
+ "name": "poolNftId",
429
+ "type": "uint96"
430
+ }
431
+ ],
432
+ "name": "LogComponentServicePoolFeesUpdated",
433
+ "type": "event"
434
+ },
435
+ {
436
+ "anonymous": false,
437
+ "inputs": [
438
+ {
439
+ "indexed": false,
440
+ "internalType": "NftId",
441
+ "name": "productNftId",
442
+ "type": "uint96"
443
+ }
444
+ ],
445
+ "name": "LogComponentServiceProductFeesUpdated",
446
+ "type": "event"
447
+ },
448
+ {
449
+ "anonymous": false,
450
+ "inputs": [
451
+ {
452
+ "indexed": false,
453
+ "internalType": "NftId",
454
+ "name": "componentNftId",
455
+ "type": "uint96"
456
+ },
457
+ {
458
+ "indexed": false,
459
+ "internalType": "ObjectType",
460
+ "name": "componentType",
461
+ "type": "uint8"
462
+ },
463
+ {
464
+ "indexed": false,
465
+ "internalType": "address",
466
+ "name": "component",
467
+ "type": "address"
468
+ },
469
+ {
470
+ "indexed": false,
471
+ "internalType": "address",
472
+ "name": "token",
473
+ "type": "address"
474
+ },
475
+ {
476
+ "indexed": false,
477
+ "internalType": "address",
478
+ "name": "initialOwner",
479
+ "type": "address"
480
+ }
481
+ ],
482
+ "name": "LogComponentServiceRegistered",
483
+ "type": "event"
484
+ },
485
+ {
486
+ "anonymous": false,
487
+ "inputs": [
488
+ {
489
+ "indexed": false,
490
+ "internalType": "NftId",
491
+ "name": "nftId",
492
+ "type": "uint96"
493
+ },
494
+ {
495
+ "indexed": false,
496
+ "internalType": "string",
497
+ "name": "feeName",
498
+ "type": "string"
499
+ },
500
+ {
501
+ "indexed": false,
502
+ "internalType": "UFixed",
503
+ "name": "previousFractionalFee",
504
+ "type": "uint256"
505
+ },
506
+ {
507
+ "indexed": false,
508
+ "internalType": "uint256",
509
+ "name": "previousFixedFee",
510
+ "type": "uint256"
511
+ },
512
+ {
513
+ "indexed": false,
514
+ "internalType": "UFixed",
515
+ "name": "newFractionalFee",
516
+ "type": "uint256"
517
+ },
518
+ {
519
+ "indexed": false,
520
+ "internalType": "uint256",
521
+ "name": "newFixedFee",
522
+ "type": "uint256"
523
+ }
524
+ ],
525
+ "name": "LogComponentServiceUpdateFee",
526
+ "type": "event"
527
+ },
528
+ {
529
+ "anonymous": false,
530
+ "inputs": [
531
+ {
532
+ "indexed": false,
533
+ "internalType": "NftId",
534
+ "name": "componentNftId",
535
+ "type": "uint96"
536
+ },
537
+ {
538
+ "indexed": false,
539
+ "internalType": "address",
540
+ "name": "currentWallet",
541
+ "type": "address"
542
+ },
543
+ {
544
+ "indexed": false,
545
+ "internalType": "address",
546
+ "name": "newWallet",
547
+ "type": "address"
548
+ }
549
+ ],
550
+ "name": "LogComponentServiceWalletAddressChanged",
551
+ "type": "event"
552
+ },
553
+ {
554
+ "anonymous": false,
555
+ "inputs": [
556
+ {
557
+ "indexed": false,
558
+ "internalType": "NftId",
559
+ "name": "componentNftId",
560
+ "type": "uint96"
561
+ },
562
+ {
563
+ "indexed": false,
564
+ "internalType": "address",
565
+ "name": "currentWallet",
566
+ "type": "address"
567
+ },
568
+ {
569
+ "indexed": false,
570
+ "internalType": "address",
571
+ "name": "newWallet",
572
+ "type": "address"
573
+ },
574
+ {
575
+ "indexed": false,
576
+ "internalType": "uint256",
577
+ "name": "currentBalance",
578
+ "type": "uint256"
579
+ }
580
+ ],
581
+ "name": "LogComponentServiceWalletTokensTransferred",
582
+ "type": "event"
583
+ },
584
+ {
585
+ "inputs": [],
586
+ "name": "NFT_OWNABLE_STORAGE_LOCATION_V1",
587
+ "outputs": [
588
+ {
589
+ "internalType": "bytes32",
590
+ "name": "",
591
+ "type": "bytes32"
592
+ }
593
+ ],
594
+ "stateMutability": "view",
595
+ "type": "function"
596
+ },
597
+ {
598
+ "inputs": [],
599
+ "name": "REGISTERABLE_LOCATION_V1",
600
+ "outputs": [
601
+ {
602
+ "internalType": "bytes32",
603
+ "name": "",
604
+ "type": "bytes32"
605
+ }
606
+ ],
607
+ "stateMutability": "view",
608
+ "type": "function"
609
+ },
610
+ {
611
+ "inputs": [
612
+ {
613
+ "internalType": "contract IERC20Metadata",
614
+ "name": "token",
615
+ "type": "address"
616
+ },
617
+ {
618
+ "internalType": "Amount",
619
+ "name": "amount",
620
+ "type": "uint96"
621
+ }
622
+ ],
623
+ "name": "approveTokenHandler",
624
+ "outputs": [],
625
+ "stateMutability": "nonpayable",
626
+ "type": "function"
627
+ },
628
+ {
629
+ "inputs": [],
630
+ "name": "authority",
631
+ "outputs": [
632
+ {
633
+ "internalType": "address",
634
+ "name": "",
635
+ "type": "address"
636
+ }
637
+ ],
638
+ "stateMutability": "view",
639
+ "type": "function"
640
+ },
641
+ {
642
+ "inputs": [],
643
+ "name": "getDomain",
644
+ "outputs": [
645
+ {
646
+ "internalType": "ObjectType",
647
+ "name": "serviceDomain",
648
+ "type": "uint8"
649
+ }
650
+ ],
651
+ "stateMutability": "pure",
652
+ "type": "function"
653
+ },
654
+ {
655
+ "inputs": [],
656
+ "name": "getInitialInfo",
657
+ "outputs": [
658
+ {
659
+ "components": [
660
+ {
661
+ "internalType": "NftId",
662
+ "name": "nftId",
663
+ "type": "uint96"
664
+ },
665
+ {
666
+ "internalType": "NftId",
667
+ "name": "parentNftId",
668
+ "type": "uint96"
669
+ },
670
+ {
671
+ "internalType": "ObjectType",
672
+ "name": "objectType",
673
+ "type": "uint8"
674
+ },
675
+ {
676
+ "internalType": "bool",
677
+ "name": "isInterceptor",
678
+ "type": "bool"
679
+ },
680
+ {
681
+ "internalType": "address",
682
+ "name": "objectAddress",
683
+ "type": "address"
684
+ },
685
+ {
686
+ "internalType": "address",
687
+ "name": "initialOwner",
688
+ "type": "address"
689
+ },
690
+ {
691
+ "internalType": "bytes",
692
+ "name": "data",
693
+ "type": "bytes"
694
+ }
695
+ ],
696
+ "internalType": "struct IRegistry.ObjectInfo",
697
+ "name": "info",
698
+ "type": "tuple"
699
+ }
700
+ ],
701
+ "stateMutability": "view",
702
+ "type": "function"
703
+ },
704
+ {
705
+ "inputs": [],
706
+ "name": "getNftId",
707
+ "outputs": [
708
+ {
709
+ "internalType": "NftId",
710
+ "name": "",
711
+ "type": "uint96"
712
+ }
713
+ ],
714
+ "stateMutability": "view",
715
+ "type": "function"
716
+ },
717
+ {
718
+ "inputs": [],
719
+ "name": "getOwner",
720
+ "outputs": [
721
+ {
722
+ "internalType": "address",
723
+ "name": "",
724
+ "type": "address"
725
+ }
726
+ ],
727
+ "stateMutability": "view",
728
+ "type": "function"
729
+ },
730
+ {
731
+ "inputs": [],
732
+ "name": "getRegistry",
733
+ "outputs": [
734
+ {
735
+ "internalType": "contract IRegistry",
736
+ "name": "",
737
+ "type": "address"
738
+ }
739
+ ],
740
+ "stateMutability": "view",
741
+ "type": "function"
742
+ },
743
+ {
744
+ "inputs": [],
745
+ "name": "getRelease",
746
+ "outputs": [
747
+ {
748
+ "internalType": "VersionPart",
749
+ "name": "release",
750
+ "type": "uint8"
751
+ }
752
+ ],
753
+ "stateMutability": "view",
754
+ "type": "function"
755
+ },
756
+ {
757
+ "inputs": [],
758
+ "name": "getRoleId",
759
+ "outputs": [
760
+ {
761
+ "internalType": "RoleId",
762
+ "name": "serviceRoleId",
763
+ "type": "uint64"
764
+ }
765
+ ],
766
+ "stateMutability": "view",
767
+ "type": "function"
768
+ },
769
+ {
770
+ "inputs": [],
771
+ "name": "getVersion",
772
+ "outputs": [
773
+ {
774
+ "internalType": "Version",
775
+ "name": "",
776
+ "type": "uint24"
777
+ }
778
+ ],
779
+ "stateMutability": "pure",
780
+ "type": "function"
781
+ },
782
+ {
783
+ "inputs": [
784
+ {
785
+ "internalType": "address",
786
+ "name": "activatedBy",
787
+ "type": "address"
788
+ },
789
+ {
790
+ "internalType": "bytes",
791
+ "name": "data",
792
+ "type": "bytes"
793
+ }
794
+ ],
795
+ "name": "initializeVersionable",
796
+ "outputs": [],
797
+ "stateMutability": "nonpayable",
798
+ "type": "function"
799
+ },
800
+ {
801
+ "inputs": [],
802
+ "name": "isActive",
803
+ "outputs": [
804
+ {
805
+ "internalType": "bool",
806
+ "name": "active",
807
+ "type": "bool"
808
+ }
809
+ ],
810
+ "stateMutability": "view",
811
+ "type": "function"
812
+ },
813
+ {
814
+ "inputs": [],
815
+ "name": "isConsumingScheduledOp",
816
+ "outputs": [
817
+ {
818
+ "internalType": "bytes4",
819
+ "name": "",
820
+ "type": "bytes4"
821
+ }
822
+ ],
823
+ "stateMutability": "view",
824
+ "type": "function"
825
+ },
826
+ {
827
+ "inputs": [],
828
+ "name": "linkToRegisteredNftId",
829
+ "outputs": [
830
+ {
831
+ "internalType": "NftId",
832
+ "name": "nftId",
833
+ "type": "uint96"
834
+ }
835
+ ],
836
+ "stateMutability": "nonpayable",
837
+ "type": "function"
838
+ },
839
+ {
840
+ "inputs": [
841
+ {
842
+ "internalType": "address",
843
+ "name": "componentAddress",
844
+ "type": "address"
845
+ }
846
+ ],
847
+ "name": "registerComponent",
848
+ "outputs": [
849
+ {
850
+ "internalType": "NftId",
851
+ "name": "componentNftId",
852
+ "type": "uint96"
853
+ }
854
+ ],
855
+ "stateMutability": "nonpayable",
856
+ "type": "function"
857
+ },
858
+ {
859
+ "inputs": [
860
+ {
861
+ "internalType": "address",
862
+ "name": "productAddress",
863
+ "type": "address"
864
+ }
865
+ ],
866
+ "name": "registerProduct",
867
+ "outputs": [
868
+ {
869
+ "internalType": "NftId",
870
+ "name": "productNftId",
871
+ "type": "uint96"
872
+ }
873
+ ],
874
+ "stateMutability": "nonpayable",
875
+ "type": "function"
876
+ },
877
+ {
878
+ "inputs": [
879
+ {
880
+ "internalType": "address",
881
+ "name": "newAuthority",
882
+ "type": "address"
883
+ }
884
+ ],
885
+ "name": "setAuthority",
886
+ "outputs": [],
887
+ "stateMutability": "nonpayable",
888
+ "type": "function"
889
+ },
890
+ {
891
+ "inputs": [
892
+ {
893
+ "internalType": "address",
894
+ "name": "componentAddress",
895
+ "type": "address"
896
+ },
897
+ {
898
+ "internalType": "bool",
899
+ "name": "locked",
900
+ "type": "bool"
901
+ }
902
+ ],
903
+ "name": "setComponentLocked",
904
+ "outputs": [],
905
+ "stateMutability": "nonpayable",
906
+ "type": "function"
907
+ },
908
+ {
909
+ "inputs": [
910
+ {
911
+ "components": [
912
+ {
913
+ "internalType": "UFixed",
914
+ "name": "fractionalFee",
915
+ "type": "uint256"
916
+ },
917
+ {
918
+ "internalType": "uint256",
919
+ "name": "fixedFee",
920
+ "type": "uint256"
921
+ }
922
+ ],
923
+ "internalType": "struct Fee",
924
+ "name": "distributionFee",
925
+ "type": "tuple"
926
+ },
927
+ {
928
+ "components": [
929
+ {
930
+ "internalType": "UFixed",
931
+ "name": "fractionalFee",
932
+ "type": "uint256"
933
+ },
934
+ {
935
+ "internalType": "uint256",
936
+ "name": "fixedFee",
937
+ "type": "uint256"
938
+ }
939
+ ],
940
+ "internalType": "struct Fee",
941
+ "name": "minDistributionOwnerFee",
942
+ "type": "tuple"
943
+ }
944
+ ],
945
+ "name": "setDistributionFees",
946
+ "outputs": [],
947
+ "stateMutability": "nonpayable",
948
+ "type": "function"
949
+ },
950
+ {
951
+ "inputs": [
952
+ {
953
+ "components": [
954
+ {
955
+ "internalType": "UFixed",
956
+ "name": "fractionalFee",
957
+ "type": "uint256"
958
+ },
959
+ {
960
+ "internalType": "uint256",
961
+ "name": "fixedFee",
962
+ "type": "uint256"
963
+ }
964
+ ],
965
+ "internalType": "struct Fee",
966
+ "name": "poolFee",
967
+ "type": "tuple"
968
+ },
969
+ {
970
+ "components": [
971
+ {
972
+ "internalType": "UFixed",
973
+ "name": "fractionalFee",
974
+ "type": "uint256"
975
+ },
976
+ {
977
+ "internalType": "uint256",
978
+ "name": "fixedFee",
979
+ "type": "uint256"
980
+ }
981
+ ],
982
+ "internalType": "struct Fee",
983
+ "name": "stakingFee",
984
+ "type": "tuple"
985
+ },
986
+ {
987
+ "components": [
988
+ {
989
+ "internalType": "UFixed",
990
+ "name": "fractionalFee",
991
+ "type": "uint256"
992
+ },
993
+ {
994
+ "internalType": "uint256",
995
+ "name": "fixedFee",
996
+ "type": "uint256"
997
+ }
998
+ ],
999
+ "internalType": "struct Fee",
1000
+ "name": "performanceFee",
1001
+ "type": "tuple"
1002
+ }
1003
+ ],
1004
+ "name": "setPoolFees",
1005
+ "outputs": [],
1006
+ "stateMutability": "nonpayable",
1007
+ "type": "function"
1008
+ },
1009
+ {
1010
+ "inputs": [
1011
+ {
1012
+ "components": [
1013
+ {
1014
+ "internalType": "UFixed",
1015
+ "name": "fractionalFee",
1016
+ "type": "uint256"
1017
+ },
1018
+ {
1019
+ "internalType": "uint256",
1020
+ "name": "fixedFee",
1021
+ "type": "uint256"
1022
+ }
1023
+ ],
1024
+ "internalType": "struct Fee",
1025
+ "name": "productFee",
1026
+ "type": "tuple"
1027
+ },
1028
+ {
1029
+ "components": [
1030
+ {
1031
+ "internalType": "UFixed",
1032
+ "name": "fractionalFee",
1033
+ "type": "uint256"
1034
+ },
1035
+ {
1036
+ "internalType": "uint256",
1037
+ "name": "fixedFee",
1038
+ "type": "uint256"
1039
+ }
1040
+ ],
1041
+ "internalType": "struct Fee",
1042
+ "name": "processingFee",
1043
+ "type": "tuple"
1044
+ }
1045
+ ],
1046
+ "name": "setProductFees",
1047
+ "outputs": [],
1048
+ "stateMutability": "nonpayable",
1049
+ "type": "function"
1050
+ },
1051
+ {
1052
+ "inputs": [
1053
+ {
1054
+ "internalType": "address",
1055
+ "name": "newWallet",
1056
+ "type": "address"
1057
+ }
1058
+ ],
1059
+ "name": "setWallet",
1060
+ "outputs": [],
1061
+ "stateMutability": "nonpayable",
1062
+ "type": "function"
1063
+ },
1064
+ {
1065
+ "inputs": [
1066
+ {
1067
+ "internalType": "bytes4",
1068
+ "name": "interfaceId",
1069
+ "type": "bytes4"
1070
+ }
1071
+ ],
1072
+ "name": "supportsInterface",
1073
+ "outputs": [
1074
+ {
1075
+ "internalType": "bool",
1076
+ "name": "",
1077
+ "type": "bool"
1078
+ }
1079
+ ],
1080
+ "stateMutability": "view",
1081
+ "type": "function"
1082
+ },
1083
+ {
1084
+ "inputs": [
1085
+ {
1086
+ "internalType": "bytes",
1087
+ "name": "data",
1088
+ "type": "bytes"
1089
+ }
1090
+ ],
1091
+ "name": "upgradeVersionable",
1092
+ "outputs": [],
1093
+ "stateMutability": "nonpayable",
1094
+ "type": "function"
1095
+ },
1096
+ {
1097
+ "inputs": [
1098
+ {
1099
+ "internalType": "Amount",
1100
+ "name": "amount",
1101
+ "type": "uint96"
1102
+ }
1103
+ ],
1104
+ "name": "withdrawFees",
1105
+ "outputs": [
1106
+ {
1107
+ "internalType": "Amount",
1108
+ "name": "withdrawnAmount",
1109
+ "type": "uint96"
1110
+ }
1111
+ ],
1112
+ "stateMutability": "nonpayable",
1113
+ "type": "function"
1114
+ }
1115
+ ],
1116
+ "bytecode": "0x6080604052348015600e575f80fd5b5060156019565b60c9565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff161560685760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b039081161460c65780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b6155fc806100d65f395ff3fe608060405234801561000f575f80fd5b50600436106101a1575f3560e01c80635ab1bd53116100f3578063893d20e811610093578063b68d18091161006e578063b68d1809146103da578063bf7e214f146103e1578063c142a303146103e9578063deaa59df146103fc575f80fd5b8063893d20e81461039d5780638fb36037146103a5578063ada9652e146103c6575f80fd5b806367ba1c10116100ce57806367ba1c101461033d5780636c741e781461035057806376b707b7146103705780637a9e5e4b1461038a575f80fd5b80635ab1bd53146102e85780636078a3b21461030d578063644c45e014610320575f80fd5b80631eff4b221161015e578063329d6e7411610139578063329d6e741461029c57806337a897ee146102af578063419197fe146102c257806349bb9e4b146102d5575f80fd5b80631eff4b221461025f57806322f3e2d4146102815780632d46f5df14610289575f80fd5b806301ffc9a7146101a55780630d8e6e2c146101e65780630d996331146102025780630fec111c14610217578063138461e01461022c5780631c6b21901461024c575b5f80fd5b6101d16101b33660046145bd565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6101ee61040f565b60405162ffffff90911681526020016101dd565b610215610210366004614605565b610496565b005b61021f610516565b6040516101dd919061466a565b61023461068f565b6040516001600160601b0390911681526020016101dd565b61023461025a36600461470a565b610699565b6102735f8051602061556783398151915281565b6040519081526020016101dd565b6101d1610bf9565b610234610297366004614725565b610c70565b6102156102aa36600461488b565b61111b565b6102156102bd3660046148eb565b611265565b6102156102d0366004614915565b611586565b6102156102e3366004614941565b6116e8565b6001546001600160a01b03165b6040516001600160a01b0390911681526020016101dd565b61023461031b366004614725565b6117d6565b5f80516020615527833981519152546001600160601b0316610234565b61021561034b3660046148eb565b6118a6565b610358611c2e565b6040516001600160401b0390911681526020016101dd565b610378611cba565b60405160ff90911681526020016101dd565b610215610398366004614725565b611cd6565b6102f5611d58565b6103ad611e89565b6040516001600160e01b031990911681526020016101dd565b6102735f8051602061552783398151915281565b600b610378565b6102f5611ebe565b6102156103f736600461498d565b611ed9565b61021561040a366004614725565b612276565b604051632efe011360e01b8152600360048201525f60248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af415801561046d573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061049191906149d0565b905090565b6104a2335b5f366123be565b5f6104ae600b5f6124bc565b604051632c8d779360e11b81526001600160a01b0386811660048301528515156024830152919350908316915063591aef26906044015f604051808303815f87803b1580156104fb575f80fd5b505af115801561050d573d5f803e3d5ffd5b50505050505050565b61051e61449c565b5f5f8051602061556783398151915290506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610581573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105a591906149fd565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160701b909104161515606082015230608082015260a0016105ed611d58565b6001600160a01b0316815260200182600101805461060a90614a18565b80601f016020809104026020016040519081016040528092919081815260200182805461063690614a18565b80156106815780601f1061065857610100808354040283529160200191610681565b820191905f5260205f20905b81548152906001019060200180831161066457829003601f168201915b505050505081525091505090565b5f61049130612640565b5f6106a33361049b565b5f806106af600b612839565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156106f0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107149190614a50565b604051630232ca4960e01b81526001600160601b03851660048201529091505f906001600160a01b03831690630232ca4990602401602060405180830381865afa158015610764573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061078891906149fd565b90508594506108018673__$3bac17678db7ae928afa209f2f44deec9c$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af41580156107d8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107fc91906149fd565b61284f565b1561080a578094505b604051630a4d29dd60e31b81526001600160601b038616600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906352694ee890602401602060405180830381865af4158015610860573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108849190614a76565b156108a25760405163b079ec2b60e01b815260040160405180910390fd5b6108ac85826128db565b156108e25760405163151dbb3f60e01b81526001600160601b038087166004830152821660248201526044015b60405180910390fd5b60025f9054906101000a90046001600160a01b03166001600160a01b031663346696cc846001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610941573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109659190614a50565b6040516001600160e01b031960e084901b1681526001600160a01b0390911660048201526001600160601b038088166024830152881660448201526064015f604051808303815f87803b1580156109ba575f80fd5b505af11580156109cc573d5f803e3d5ffd5b505050505f6109e36001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03871660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015610a30573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a549190614a50565b60405163a310e2a360e01b81526001600160601b03871660048201529091505f906001600160a01b0385169063a310e2a390602401602060405180830381865afa158015610aa4573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ac89190614a50565b90507f694f0f8f2682e6c05697feed9065540f51c00d4510b16dbdb60606c6e5abfde98683836001600160a01b03166382bfefc86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b29573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b4d9190614a50565b604080516001600160601b0394851681526001600160a01b0393841660208201529290911690820152908916606082015260800160405180910390a1604051633fd3433360e01b81526001600160a01b0383811660048301526001600160601b0389166024830152821690633fd34333906044015f604051808303815f87803b158015610bd8575f80fd5b505af1158015610bea573d5f803e3d5ffd5b50505050505050505050919050565b5f610c02611ebe565b60405163a166aa8960e01b81523060048201526001600160a01b03919091169063a166aa8990602401602060405180830381865afa158015610c46573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c6a9190614a76565b15905090565b5f610c7a3361049b565b610c82612925565b5f610c956001546001600160a01b031690565b604051632f2a35f760e11b81523360048201526001600160a01b039190911690635e546bee90602401602060405180830381865afa158015610cd9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cfd91906149fd565b9050335f610d0b858461295c565b915050610d2a8160400151610d1e600c90565b60ff9081169116141590565b15610d6257604080820151905163f0b751ab60e01b81526001600160a01b038716600482015260ff90911660248201526044016108d9565b5f826001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d9f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610dc39190614a50565b90505f836001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e02573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e269190614a50565b905086610e3583838387612cfe565b96505f816001600160a01b031663c108bd4c6040518163ffffffff1660e01b81526004015f60405180830381865afa158015610e73573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610e9a9190810190614b3d565b905073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610ee3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f0791906149fd565b6001600160601b031660a08201526040805163bc1b392d60e01b8152905173__$94a2c899be079b00d952d0d84fffaa5c34$__9163bc1b392d9160048083019260209291908290030181865af4158015610f63573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f8791906149fd565b6001600160601b031660c0820152606081015160ff166001600160401b03811115610fb457610fb4614740565b604051908082528060200260200182016040528015610fdd578160200160208202803683370190505b5060e0820152604051637f1773c960e11b81526001600160a01b0384169063fe2ee79290611011908b908590600401614d04565b5f604051808303815f87803b158015611028575f80fd5b505af115801561103a573d5f803e3d5ffd5b50505050826001600160a01b031663bedaa84689846001600160a01b031663844e0f206040518163ffffffff1660e01b81526004016101c060405180830381865afa15801561108b573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110af9190614d54565b6040518363ffffffff1660e01b81526004016110cc929190614df1565b5f604051808303815f87803b1580156110e3575f80fd5b505af11580156110f5573d5f803e3d5ffd5b505050505050505050505061111660015f8051602061558783398151915255565b919050565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c61113d61040f565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af415801561117b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061119f9190614ec2565b5f805160206155a78339815191528054600160401b900460ff16806111d1575080546001600160401b03808416911610155b156111ef5760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b17815561121983613143565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b61126e3361049b565b5f8061127a600e612839565b915091505f806112e9836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156112bf573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112e39190614a50565b8561314b565b915091505f73__$58e11c6004c5796aaa8c56e718245e69a2$__632b324dc08360400151896040518363ffffffff1660e01b815260040161132b929190614edd565b602060405180830381865af4158015611346573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061136a9190614a76565b6113b0576113a5836040518060400160405280600f81526020016e446973747269627574696f6e46656560881b81525084604001518a61324d565b506040810186905260015b606082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc0916113ec91908a90600401614edd565b602060405180830381865af4158015611407573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061142b9190614a76565b61147f57611474836040518060400160405280601781526020017f4d696e446973747269627574696f6e4f776e657246656500000000000000000081525084606001518961324d565b506060810185905260015b801561050d57836001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156114c1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114e59190614a50565b6001600160a01b031663462d5a8484846040518363ffffffff1660e01b8152600401611512929190614df1565b5f604051808303815f87803b158015611529575f80fd5b505af115801561153b573d5f803e3d5ffd5b50506040516001600160601b03881681527f37bea7afe3960b639e98d9161b22f53a172300df8ec6ee71fd0a5321dcecd59b925060200190505b60405180910390a150505050505050565b61158f3361049b565b5f8061159b600b612839565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156115dc573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116009190614a50565b60405163f0ea17c360e01b81526001600160601b03851660048201526001600160a01b03919091169063f0ea17c3906024015f60405180830381865afa15801561164c573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526116739190810190614f57565b604090810151905163ea0b3c7360e01b81526001600160a01b0387811660048301526001600160601b03871660248301529192509082169063ea0b3c73906044015f604051808303815f87803b1580156116cb575f80fd5b505af11580156116dd573d5f803e3d5ffd5b505050505050505050565b5f805160206155a78339815191528054600160401b810460ff1615906001600160401b03165f811580156117195750825b90505f826001600160401b031660011480156117345750303b155b905081158015611742575080155b156117605760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561178a57845460ff60401b1916600160401b1785555b61179487876132a0565b831561050d57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001611575565b5f6117e03361049b565b5f806117ec600b612839565b915091505f806117fc868561295c565b6040810151919350915061181881600f5b60ff90811691161490565b15611836578661182a85878386613438565b98975050505050505050565b61184181600e61180d565b1561185d5761185284868585613829565b979650505050505050565b61186881600d61180d565b156118795761185284868585613b52565b60405163f0b751ab60e01b81526001600160a01b038816600482015260ff821660248201526044016108d9565b6118af3361049b565b6118b7612925565b5f806118c3600c612839565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611904573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119289190614a50565b604051636a05a41360e01b81526001600160601b03851660048201526001600160a01b039190911690636a05a413906024016101c060405180830381865afa158015611976573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061199a9190614d54565b805160405162acc93760e61b81529192505f9173__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc0916119d891908a90600401614edd565b602060405180830381865af41580156119f3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a179190614a76565b611a5357611a4c846040518060400160405280600a81526020016950726f6475637446656560b01b815250845f01518961324d565b5084815260015b602082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc091611a8f91908990600401614edd565b602060405180830381865af4158015611aaa573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ace9190614a76565b611b1257611b07846040518060400160405280600d81526020016c50726f63657373696e6746656560981b81525084602001518861324d565b506020810184905260015b8015611c1057826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b54573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b789190614a50565b6001600160a01b031663462d5a8485846040518363ffffffff1660e01b8152600401611ba5929190614df1565b5f604051808303815f87803b158015611bbc575f80fd5b505af1158015611bce573d5f803e3d5ffd5b50506040516001600160601b03871681527f385da3b17e82d72dd7e4cbe895c7d7d3fbb4c8768e0866dd69f44581a0ded2bc9250602001905060405180910390a15b50505050611c2a60015f8051602061558783398151915255565b5050565b5f73__$1d92393fa9ccd763988368ce8a1cb90d26$__63dda777d3600b611c53611cba565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865af4158015611c96573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104919190614ec2565b5f8051602061556783398151915254600160681b900460ff1690565b33611cdf611ebe565b6001600160a01b0316816001600160a01b031614611d1a5760405162d1953b60e31b81526001600160a01b03821660048201526024016108d9565b816001600160a01b03163b5f03611d4f576040516361798f2f60e11b81526001600160a01b03831660048201526024016108d9565b611c2a82613ddf565b5f805f8051602061552783398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015611dc4573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611de89190614a76565b15611e73576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611e49573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e6d9190614a50565b91505090565b54600160601b90046001600160a01b0316919050565b5f8051602061554783398151915280545f9190600160a01b900460ff16611eb0575f611e6d565b638fb3603760e01b91505090565b5f80516020615547833981519152546001600160a01b031690565b611ee23361049b565b5f80611eee600f612839565b915091505f80611f33836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156112bf573d5f803e3d5ffd5b915091505f73__$58e11c6004c5796aaa8c56e718245e69a2$__632b324dc083608001518a6040518363ffffffff1660e01b8152600401611f75929190614edd565b602060405180830381865af4158015611f90573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611fb49190614a76565b611ff257611fe78360405180604001604052806007815260200166506f6f6c46656560c81b81525084608001518b61324d565b506080810187905260015b60a082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc09161202e91908b90600401614edd565b602060405180830381865af4158015612049573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061206d9190614a76565b6120ae576120a3836040518060400160405280600a8152602001695374616b696e6746656560b01b8152508460a001518a61324d565b5060a0810186905260015b60c082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc0916120ea91908a90600401614edd565b602060405180830381865af4158015612105573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121299190614a76565b61216e57612163836040518060400160405280600e81526020016d506572666f726d616e636546656560901b8152508460c001518961324d565b5060c0810185905260015b801561226c57836001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156121b0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121d49190614a50565b6001600160a01b031663462d5a8484846040518363ffffffff1660e01b8152600401612201929190614df1565b5f604051808303815f87803b158015612218575f80fd5b505af115801561222a573d5f803e3d5ffd5b50506040516001600160601b03881681527f7a446b749117c015e0932e31190fc133582c9c5151e31209479cc9d21941f0359250602001905060405180910390a15b5050505050505050565b61227f3361049b565b5f8061228b600b612839565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156122cc573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122f09190614a50565b60405163f0ea17c360e01b81526001600160601b03851660048201526001600160a01b03919091169063f0ea17c3906024015f60405180830381865afa15801561233c573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526123639190810190614f57565b604090810151905163deaa59df60e01b81526001600160a01b0386811660048301529192509082169063deaa59df906024015f604051808303815f87803b1580156123ac575f80fd5b505af115801561226c573d5f803e3d5ffd5b5f805160206155478339815191525f806123f66123d9611ebe565b87306123e860045f8a8c615020565b6123f191615047565b613e3f565b91509150816124b45763ffffffff81161561249157825460ff60a01b1916600160a01b178355612424611ebe565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b81526004016124539392919061507f565b5f604051808303815f87803b15801561246a575f80fd5b505af115801561247c573d5f803e3d5ffd5b5050845460ff60a01b19168555506124b49050565b60405162d1953b60e31b81526001600160a01b03871660048201526024016108d9565b505050505050565b5f806124c661449c565b5f6124d286600b610d1e565b1561258c5773__$fb599632d08395912d9d70eb2f0f93b5e2$__635c990ed36125036001546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015233602482015260ff8916604482015287151560648201526084015f60405180830381865af415801561255b573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526125829190810190615168565b9092509050612634565b73__$fb599632d08395912d9d70eb2f0f93b5e2$__63aa13a9886125b86001546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015233602482015287151560448201526064015f60405180830381865af4158015612607573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261262e9190810190615168565b90925090505b90519590945092505050565b5f805f8051602061552783398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156126ac573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126d09190614a76565b156126fc5780546040516301ab8b6760e21b81526001600160601b0390911660048201526024016108d9565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa15801561274e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127729190614a76565b61279a5760405163b9304b0d60e01b81526001600160a01b03841660048201526024016108d9565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b0385811660048301529190911690635e546bee90602401602060405180830381865afa1580156127ec573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061281091906149fd565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b5f806128468360016124bc565b91509150915091565b60405163c4cade9d60e01b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063c4cade9d906044015b602060405180830381865af41580156128b0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128d49190614a76565b9392505050565b604051632601631360e21b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__906398058c4c90604401612895565b5f8051602061558783398151915280546001190161295657604051633ee5aeb560e01b815260040160405180910390fd5b60029055565b5f61296561449c565b60405163d905700760e01b81526001600160a01b038516600482015263a9c1bc6f60e01b602482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__9063d905700790604401602060405180830381865af41580156129c8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906129ec9190614a76565b612a145760405163b03d8c4360e01b81526001600160a01b03851660048201526024016108d9565b839150816001600160a01b0316630fec111c6040518163ffffffff1660e01b81526004015f60405180830381865afa158015612a52573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612a7991908101906151ab565b9050612a89816020015184613f47565b15612acf57602081015160405163953133f160e01b81526001600160a01b03861660048201526001600160601b03808616602483015290911660448201526064016108d9565b612b3a826001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015612b0e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b3291906151dc565b610d1e611cba565b15612bdd5783612b48611cba565b836001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015612b84573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612ba891906151dc565b60405163459d07b760e11b81526001600160a01b03909316600484015260ff91821660248401521660448201526064016108d9565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b0386811660048301529190911690635e546bee90602401602060405180830381865afa158015612c2f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c5391906149fd565b6040516330b8415f60e01b81526001600160601b03909116600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015612caa573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612cce9190614a76565b15612cf757604051632176772160e11b81526001600160a01b03851660048201526024016108d9565b9250929050565b5f612d0f826040015161180d600c90565b612da45760035460408381015160a08501519151631fa14e4960e11b81526001600160a01b03878116600483015260ff9092166024820152918116604483015290911690633f429c92906064015f604051808303815f875af1158015612d77573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612d9e91908101906151ab565b51612e21565b60035460a0830151604051635d96628960e01b81526001600160a01b0386811660048301529182166024820152911690635d966289906044015f604051808303815f875af1158015612df8573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612e1f91908101906151ab565b515b90505f836001600160a01b031663b423086c6040518163ffffffff1660e01b81526004015f60405180830381865afa158015612e5f573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612e869190810190614f57565b602081015190915073__$51089c37ca0df1177a910c640c8c5f8165$__6350c6470d612eba6001546001600160a01b031690565b87848b6001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612ef8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612f1c9190614a50565b60405160e086901b6001600160e01b03191681526001600160a01b039485166004820152928416602484015290831660448301529091166064820152608401602060405180830381865af4158015612f76573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612f9a9190614a50565b6001600160a01b03908116604080850191909152516328f72e8760e01b8152908716906328f72e8790612fd390869086906004016151f7565b5f604051808303815f87803b158015612fea575f80fd5b505af1158015612ffc573d5f803e3d5ffd5b50505050846001600160a01b031663138461e06040518163ffffffff1660e01b81526004016020604051808303815f875af115801561303d573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061306191906149fd565b506040516392e2a62f60e01b81526001600160a01b0386811660048301528816906392e2a62f906024015f604051808303815f87803b1580156130a2575f80fd5b505af11580156130b4573d5f803e3d5ffd5b5050505060408481015160a08087015183516001600160601b038816815260ff90931660208401526001600160a01b0389811684860152858116606085015216608083015291517f51007d5babab22cf2beac27f1d50bb63f052eb2948904e9afee33fde1f2c5d46929181900390910190a15050949350505050565b60015f8051602061558783398151915255565b6101a1613f91565b5f6131546144d9565b6001546001600160a01b031660405163677d3feb60e11b81526001600160601b03851660048201526001600160a01b03919091169063cefa7fd690602401602060405180830381865afa1580156131ad573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906131d191906149fd565b604051636a05a41360e01b81526001600160601b03821660048201529092506001600160a01b03851690636a05a413906024016101c060405180830381865afa158015613220573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906132449190614d54565b90509250929050565b81516020808401518351918401516040517f52d1fb99d890f3b2be95c262d870f89c22614249751b9fe6124d341bedbd70db94613292948a948a949293909290615263565b60405180910390a150505050565b5f805160206155a78339815191528054600160401b810460ff1615906001600160401b03165f811580156132d15750825b90505f826001600160401b031660011480156132ec5750303b155b9050811580156132fa575080155b156133185760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561334257845460ff60401b1916600160401b1785555b5f808780602001905181019061335891906152a9565b9150915061336782828b613fc9565b613371602861406b565b600280546001600160a01b0319166001600160a01b039290921691909117815561339a9061406b565b600380546001600160a01b0319166001600160a01b03929092169190911790556133c4600a61406b565b600480546001600160a01b0319166001600160a01b03929092169190911790556133f463052a7f2160e41b614102565b5050831561050d57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001611575565b5f80856001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015613476573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061349a9190614a50565b90505f866001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa1580156134d9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906134fd9190614a50565b90505f876001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa15801561353c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906135609190614a50565b905061356e82828888612cfe565b6040516302d764c760e21b81526001600160601b03891660048201529094505f906001600160a01b03851690630b5d931c906024015f60405180830381865afa1580156135bd573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526135e49190810190614b3d565b60a08101516040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015613643573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906136679190614a76565b1561369e5760a08101516040516397f129bf60e01b81526001600160601b03808b16600483015290911660248201526044016108d9565b816001600160a01b031663fe7fc94186896001600160a01b03166385ba83446040518163ffffffff1660e01b815260040160e060405180830381865afa1580156136ea573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061370e91906152d6565b604080516001600160e01b031960e086901b1681526001600160601b03938416600482015282519093166024840152602082015115156044840152810151151560648301526060810151151560848301526080810151151560a483015260a081015160c483015260c0015160e4820152610104015f604051808303815f87803b158015613799575f80fd5b505af11580156137ab573d5f803e3d5ffd5b505050506001600160601b03851660a08201526001600160a01b03821663cb2e87d2898360ff5b6040518463ffffffff1660e01b81526004016137f093929190615364565b5f604051808303815f87803b158015613807575f80fd5b505af1158015613819573d5f803e3d5ffd5b5050505050505050949350505050565b5f613832612925565b5f856001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa15801561386f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906138939190614a50565b90505f866001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa1580156138d2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906138f69190614a50565b90505f876001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015613935573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906139599190614a50565b905061396782828888612cfe565b6040516302d764c760e21b81526001600160601b03891660048201529094505f906001600160a01b03851690630b5d931c906024015f60405180830381865afa1580156139b6573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526139dd9190810190614b3d565b90508060400151613a0c5760405163931d421760e01b81526001600160601b03891660048201526024016108d9565b60c08101516040516330b8415f60e01b81526001600160601b03909116600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015613a68573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613a8c9190614a76565b15613ac35760c08101516040516323a0cc7160e11b81526001600160601b03808b16600483015290911660248201526044016108d9565b6001600160601b03851660c082015260405163659743e960e11b81526001600160a01b0383169063cb2e87d290613b03908b90859060ff90600401615364565b5f604051808303815f87803b158015613b1a575f80fd5b505af1158015613b2c573d5f803e3d5ffd5b5050505050505050613b4a60015f8051602061558783398151915255565b949350505050565b5f80856001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015613b90573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613bb49190614a50565b90505f866001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015613bf3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613c179190614a50565b90505f876001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015613c56573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613c7a9190614a50565b9050613c8882828888612cfe565b6040516302d764c760e21b81526001600160601b03891660048201529094505f906001600160a01b03851690630b5d931c906024015f60405180830381865afa158015613cd7573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613cfe9190810190614b3d565b9050806060015160ff165f03613d3257604051634435e56b60e01b81526001600160601b03891660048201526024016108d9565b806060015160ff16816080015160ff1603613d7a5760608101516040516379060d1360e11b81526001600160601b038a16600482015260ff90911660248201526044016108d9565b848160e00151826080015160ff1681518110613d9857613d98615398565b6001600160601b039092166020928302919091019091015260808101805190613dc0826153ac565b60ff169052506001600160a01b03821663cb2e87d289836137d260ff90565b5f8051602061554783398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b17905251613ead91906153d6565b5f60405180830381855afa9150503d805f8114613ee5576040519150601f19603f3d011682016040523d82523d5f602084013e613eea565b606091505b50915091508115613f3c576040815110613f1c5780806020019051810190613f1291906153ec565b9094509250613f3c565b6020815110613f3c5780806020019051810190613f399190614a76565b93505b505094509492505050565b6040516399009c5160e01b81526001600160601b038084166004830152821660248201525f9073__$94a2c899be079b00d952d0d84fffaa5c34$__906399009c5190604401612895565b5f805160206155a783398151915254600160401b900460ff16613fc757604051631afcd79f60e31b815260040160405180910390fd5b565b613fd1613f91565b613fd961412e565b6140568383846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa15801561401a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061403e91906149fd565b60085f8660405180602001604052805f81525061413e565b61406663daf9067160e01b614102565b505050565b5f61407e6001546001600160a01b031690565b6001600160a01b031663d39e604383614095611cba565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa1580156140d8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906140fc9190614a50565b92915050565b61410a613f91565b6001600160e01b0319165f908152602081905260409020805460ff19166001179055565b614136613f91565b613fc76142e8565b614146613f91565b604051632330f24760e01b81526001600160a01b038816600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90632330f24790602401602060405180830381865af415801561419c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906141c09190614a76565b6141e85760405163cf6935e560e01b81526001600160a01b03881660048201526024016108d9565b6141f1876142f0565b6141fb8683614304565b5f8051602061556783398151915280546001600160601b0387166cffffffffffffffffffffffffff1990911617600160601b60ff871602178155604080516376b707b760e01b815290516001600160a01b038a16916376b707b79160048083019260209291908290030181865afa158015614278573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061429c91906151dc565b815461ffff60681b1916600160681b60ff929092169190910260ff60701b191617600160701b85151502178155600181016142d7838261546c565b5061226c634a531f3360e01b614102565b613130613f91565b6142f8613f91565b6143018161437a565b50565b61430c613f91565b6143158261438b565b61431d614457565b6001600160a01b0381166143445760405163f17ef42d60e01b815260040160405180910390fd5b5f8051602061552783398151915280546001600160601b0316600160601b6001600160a01b039093169290920291909117905550565b614382613f91565b61430181613ddf565b614393613f91565b604051633334d16b60e01b81526001600160a01b038216600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90633334d16b90602401602060405180830381865af41580156143e9573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061440d9190614a76565b6144355760405163fdeac91f60e01b81526001600160a01b03821660048201526024016108d9565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b61445f613f91565b6301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915290565b6040805161012081019091525f60e082018181526101008301919091528190815260200161451860405180604001604052805f81526020015f81525090565b815260200161453860405180604001604052805f81526020015f81525090565b815260200161455860405180604001604052805f81526020015f81525090565b815260200161457860405180604001604052805f81526020015f81525090565b815260200161459860405180604001604052805f81526020015f81525090565b81526020016145b860405180604001604052805f81526020015f81525090565b905290565b5f602082840312156145cd575f80fd5b81356001600160e01b0319811681146128d4575f80fd5b6001600160a01b0381168114614301575f80fd5b8015158114614301575f80fd5b5f8060408385031215614616575f80fd5b8235614621816145e4565b91506020830135614631816145f8565b809150509250929050565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f60608301516146b2608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e080840152613b4a61010084018261463c565b6001600160601b0381168114614301575f80fd5b5f6020828403121561471a575f80fd5b81356128d4816146f6565b5f60208284031215614735575f80fd5b81356128d4816145e4565b634e487b7160e01b5f52604160045260245ffd5b604080519081016001600160401b038111828210171561477657614776614740565b60405290565b60405161010081016001600160401b038111828210171561477657614776614740565b60405160e081016001600160401b038111828210171561477657614776614740565b604051608081016001600160401b038111828210171561477657614776614740565b604051601f8201601f191681016001600160401b038111828210171561480b5761480b614740565b604052919050565b5f6001600160401b0382111561482b5761482b614740565b50601f01601f191660200190565b5f82601f830112614848575f80fd5b813561485b61485682614813565b6147e3565b81815284602083860101111561486f575f80fd5b816020850160208301375f918101602001919091529392505050565b5f6020828403121561489b575f80fd5b81356001600160401b038111156148b0575f80fd5b613b4a84828501614839565b5f604082840312156148cc575f80fd5b6148d4614754565b823581526020928301359281019290925250919050565b5f80608083850312156148fc575f80fd5b61490684846148bc565b915061324484604085016148bc565b5f8060408385031215614926575f80fd5b8235614931816145e4565b91506020830135614631816146f6565b5f8060408385031215614952575f80fd5b823561495d816145e4565b915060208301356001600160401b03811115614977575f80fd5b61498385828601614839565b9150509250929050565b5f805f60c0848603121561499f575f80fd5b6149a985856148bc565b92506149b885604086016148bc565b91506149c785608086016148bc565b90509250925092565b5f602082840312156149e0575f80fd5b815162ffffff811681146128d4575f80fd5b8051611116816146f6565b5f60208284031215614a0d575f80fd5b81516128d4816146f6565b600181811c90821680614a2c57607f821691505b602082108103614a4a57634e487b7160e01b5f52602260045260245ffd5b50919050565b5f60208284031215614a60575f80fd5b81516128d4816145e4565b8051611116816145f8565b5f60208284031215614a86575f80fd5b81516128d4816145f8565b8051611116816145e4565b60ff81168114614301575f80fd5b805161111681614a9c565b5f82601f830112614ac4575f80fd5b81516001600160401b03811115614add57614add614740565b8060051b614aed602082016147e3565b91825260208185018101929081019086841115614b08575f80fd5b6020860192505b83831015614b33578251614b22816146f6565b825260209283019290910190614b0f565b9695505050505050565b5f60208284031215614b4d575f80fd5b81516001600160401b03811115614b62575f80fd5b82016101008185031215614b74575f80fd5b614b7c61477c565b614b8582614a6b565b8152614b9360208301614a6b565b6020820152614ba460408301614a6b565b6040820152614bb560608301614aaa565b6060820152614bc660808301614aaa565b6080820152614bd760a083016149f2565b60a0820152614be860c083016149f2565b60c082015260e08201516001600160401b03811115614c05575f80fd5b614c1186828501614ab5565b60e083015250949350505050565b5f8151808452602084019350602083015f5b82811015614c585781516001600160601b0316865260209586019590910190600101614c31565b5093949350505050565b8051151582526020810151151560208301525f6040820151614c88604085018215159052565b506060820151614c9d606085018260ff169052565b506080820151614cb2608085018260ff169052565b5060a0820151614ccd60a08501826001600160601b03169052565b5060c0820151614ce860c08501826001600160601b03169052565b5060e082015161010060e0850152613b4a610100850182614c1f565b6001600160601b0383168152604060208201525f613b4a6040830184614c62565b5f60408284031215614d35575f80fd5b614d3d614754565b825181526020928301519281019290925250919050565b5f6101c0828403128015614d66575f80fd5b50614d6f61479f565b614d798484614d25565b8152614d888460408501614d25565b6020820152614d9a8460808501614d25565b6040820152614dac8460c08501614d25565b6060820152614dbf846101008501614d25565b6080820152614dd2846101408501614d25565b60a0820152614de5846101808501614d25565b60c08201529392505050565b6001600160601b038316815281518051602080840191909152015160408201526101e0810160208381015180516060850152908101516080840152506040830151805160a0840152602081015160c0840152506060830151805160e08401526020810151610100840152506080830151805161012084015260208101516101408401525060a0830151805161016084015260208101516101808401525060c083015180516101a084015260208101516101c0840152509392505050565b6001600160401b0381168114614301575f80fd5b5f60208284031215614ed2575f80fd5b81516128d481614eae565b8251815260208084015181830152825160408301528201516060820152608081016128d4565b5f614f1061485684614813565b9050828152838383011115614f23575f80fd5b8282602083015e5f602084830101529392505050565b5f82601f830112614f48575f80fd5b6128d483835160208501614f03565b5f60208284031215614f67575f80fd5b81516001600160401b03811115614f7c575f80fd5b820160808185031215614f8d575f80fd5b614f956147c1565b81516001600160401b03811115614faa575f80fd5b8201601f81018613614fba575f80fd5b614fc986825160208401614f03565b825250614fd860208301614a91565b6020820152614fe960408301614a91565b604082015260608201516001600160401b03811115615006575f80fd5b61501286828501614f39565b606083015250949350505050565b5f808585111561502e575f80fd5b8386111561503a575f80fd5b5050820193919092039150565b80356001600160e01b03198116906004841015615078576001600160e01b0319600485900360031b81901b82161691505b5092915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b5f60e082840312156150ce575f80fd5b6150d661479f565b90506150e1826149f2565b81526150ef602083016149f2565b602082015261510060408301614aaa565b604082015261511160608301614a6b565b606082015261512260808301614a91565b608082015261513360a08301614a91565b60a082015260c08201516001600160401b03811115615150575f80fd5b61515c84828501614f39565b60c08301525092915050565b5f8060408385031215615179575f80fd5b82516001600160401b0381111561518e575f80fd5b61519a858286016150be565b9250506020830151614631816145e4565b5f602082840312156151bb575f80fd5b81516001600160401b038111156151d0575f80fd5b613b4a848285016150be565b5f602082840312156151ec575f80fd5b81516128d481614a9c565b6001600160601b0383168152604060208201525f82516080604084015261522160c084018261463c565b60208501516001600160a01b0390811660608681019190915260408701519091166080860152850151848203603f190160a0860152909150614b33828261463c565b6001600160601b038716815260c060208201525f61528460c083018861463c565b90508560408301528460608301528360808301528260a0830152979650505050505050565b5f80604083850312156152ba575f80fd5b82516152c5816145e4565b6020840151909250614631816145e4565b5f60e08284031280156152e7575f80fd5b506152f061479f565b82516152fb816146f6565b8152602083015161530b816145f8565b6020820152604083015161531e816145f8565b60408201526060830151615331816145f8565b606082015261534260808401614a6b565b608082015260a0838101519082015260c0928301519281019290925250919050565b6001600160601b0384168152606060208201525f6153856060830185614c62565b905060ff83166040830152949350505050565b634e487b7160e01b5f52603260045260245ffd5b5f60ff821660ff81036153cd57634e487b7160e01b5f52601160045260245ffd5b60010192915050565b5f82518060208501845e5f920191825250919050565b5f80604083850312156153fd575f80fd5b8251615408816145f8565b602084015190925063ffffffff81168114614631575f80fd5b601f82111561406657805f5260205f20601f840160051c810160208510156154465750805b601f840160051c820191505b81811015615465575f8155600101615452565b5050505050565b81516001600160401b0381111561548557615485614740565b615499816154938454614a18565b84615421565b6020601f8211600181146154cb575f83156154b45750848201515b5f19600385901b1c1916600184901b178455615465565b5f84815260208120601f198516915b828110156154fa57878501518255602094850194600190920191016154da565b508482101561551757868401515f19600387901b60f8161c191681555b50505050600190811b0190555056fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a006548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa3009b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a26469706673582212203e7d31f73bab0f77ae7cc229e84ca2abda54b1d625a965ba058d1e4c80cb2e7064736f6c634300081a0033",
1117
+ "deployedBytecode": "0x608060405234801561000f575f80fd5b50600436106101a1575f3560e01c80635ab1bd53116100f3578063893d20e811610093578063b68d18091161006e578063b68d1809146103da578063bf7e214f146103e1578063c142a303146103e9578063deaa59df146103fc575f80fd5b8063893d20e81461039d5780638fb36037146103a5578063ada9652e146103c6575f80fd5b806367ba1c10116100ce57806367ba1c101461033d5780636c741e781461035057806376b707b7146103705780637a9e5e4b1461038a575f80fd5b80635ab1bd53146102e85780636078a3b21461030d578063644c45e014610320575f80fd5b80631eff4b221161015e578063329d6e7411610139578063329d6e741461029c57806337a897ee146102af578063419197fe146102c257806349bb9e4b146102d5575f80fd5b80631eff4b221461025f57806322f3e2d4146102815780632d46f5df14610289575f80fd5b806301ffc9a7146101a55780630d8e6e2c146101e65780630d996331146102025780630fec111c14610217578063138461e01461022c5780631c6b21901461024c575b5f80fd5b6101d16101b33660046145bd565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6101ee61040f565b60405162ffffff90911681526020016101dd565b610215610210366004614605565b610496565b005b61021f610516565b6040516101dd919061466a565b61023461068f565b6040516001600160601b0390911681526020016101dd565b61023461025a36600461470a565b610699565b6102735f8051602061556783398151915281565b6040519081526020016101dd565b6101d1610bf9565b610234610297366004614725565b610c70565b6102156102aa36600461488b565b61111b565b6102156102bd3660046148eb565b611265565b6102156102d0366004614915565b611586565b6102156102e3366004614941565b6116e8565b6001546001600160a01b03165b6040516001600160a01b0390911681526020016101dd565b61023461031b366004614725565b6117d6565b5f80516020615527833981519152546001600160601b0316610234565b61021561034b3660046148eb565b6118a6565b610358611c2e565b6040516001600160401b0390911681526020016101dd565b610378611cba565b60405160ff90911681526020016101dd565b610215610398366004614725565b611cd6565b6102f5611d58565b6103ad611e89565b6040516001600160e01b031990911681526020016101dd565b6102735f8051602061552783398151915281565b600b610378565b6102f5611ebe565b6102156103f736600461498d565b611ed9565b61021561040a366004614725565b612276565b604051632efe011360e01b8152600360048201525f60248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af415801561046d573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061049191906149d0565b905090565b6104a2335b5f366123be565b5f6104ae600b5f6124bc565b604051632c8d779360e11b81526001600160a01b0386811660048301528515156024830152919350908316915063591aef26906044015f604051808303815f87803b1580156104fb575f80fd5b505af115801561050d573d5f803e3d5ffd5b50505050505050565b61051e61449c565b5f5f8051602061556783398151915290506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610581573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105a591906149fd565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160701b909104161515606082015230608082015260a0016105ed611d58565b6001600160a01b0316815260200182600101805461060a90614a18565b80601f016020809104026020016040519081016040528092919081815260200182805461063690614a18565b80156106815780601f1061065857610100808354040283529160200191610681565b820191905f5260205f20905b81548152906001019060200180831161066457829003601f168201915b505050505081525091505090565b5f61049130612640565b5f6106a33361049b565b5f806106af600b612839565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156106f0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107149190614a50565b604051630232ca4960e01b81526001600160601b03851660048201529091505f906001600160a01b03831690630232ca4990602401602060405180830381865afa158015610764573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061078891906149fd565b90508594506108018673__$3bac17678db7ae928afa209f2f44deec9c$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af41580156107d8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107fc91906149fd565b61284f565b1561080a578094505b604051630a4d29dd60e31b81526001600160601b038616600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906352694ee890602401602060405180830381865af4158015610860573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108849190614a76565b156108a25760405163b079ec2b60e01b815260040160405180910390fd5b6108ac85826128db565b156108e25760405163151dbb3f60e01b81526001600160601b038087166004830152821660248201526044015b60405180910390fd5b60025f9054906101000a90046001600160a01b03166001600160a01b031663346696cc846001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610941573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109659190614a50565b6040516001600160e01b031960e084901b1681526001600160a01b0390911660048201526001600160601b038088166024830152881660448201526064015f604051808303815f87803b1580156109ba575f80fd5b505af11580156109cc573d5f803e3d5ffd5b505050505f6109e36001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03871660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015610a30573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a549190614a50565b60405163a310e2a360e01b81526001600160601b03871660048201529091505f906001600160a01b0385169063a310e2a390602401602060405180830381865afa158015610aa4573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ac89190614a50565b90507f694f0f8f2682e6c05697feed9065540f51c00d4510b16dbdb60606c6e5abfde98683836001600160a01b03166382bfefc86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b29573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b4d9190614a50565b604080516001600160601b0394851681526001600160a01b0393841660208201529290911690820152908916606082015260800160405180910390a1604051633fd3433360e01b81526001600160a01b0383811660048301526001600160601b0389166024830152821690633fd34333906044015f604051808303815f87803b158015610bd8575f80fd5b505af1158015610bea573d5f803e3d5ffd5b50505050505050505050919050565b5f610c02611ebe565b60405163a166aa8960e01b81523060048201526001600160a01b03919091169063a166aa8990602401602060405180830381865afa158015610c46573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c6a9190614a76565b15905090565b5f610c7a3361049b565b610c82612925565b5f610c956001546001600160a01b031690565b604051632f2a35f760e11b81523360048201526001600160a01b039190911690635e546bee90602401602060405180830381865afa158015610cd9573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cfd91906149fd565b9050335f610d0b858461295c565b915050610d2a8160400151610d1e600c90565b60ff9081169116141590565b15610d6257604080820151905163f0b751ab60e01b81526001600160a01b038716600482015260ff90911660248201526044016108d9565b5f826001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d9f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610dc39190614a50565b90505f836001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e02573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e269190614a50565b905086610e3583838387612cfe565b96505f816001600160a01b031663c108bd4c6040518163ffffffff1660e01b81526004015f60405180830381865afa158015610e73573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610e9a9190810190614b3d565b905073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610ee3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f0791906149fd565b6001600160601b031660a08201526040805163bc1b392d60e01b8152905173__$94a2c899be079b00d952d0d84fffaa5c34$__9163bc1b392d9160048083019260209291908290030181865af4158015610f63573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f8791906149fd565b6001600160601b031660c0820152606081015160ff166001600160401b03811115610fb457610fb4614740565b604051908082528060200260200182016040528015610fdd578160200160208202803683370190505b5060e0820152604051637f1773c960e11b81526001600160a01b0384169063fe2ee79290611011908b908590600401614d04565b5f604051808303815f87803b158015611028575f80fd5b505af115801561103a573d5f803e3d5ffd5b50505050826001600160a01b031663bedaa84689846001600160a01b031663844e0f206040518163ffffffff1660e01b81526004016101c060405180830381865afa15801561108b573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110af9190614d54565b6040518363ffffffff1660e01b81526004016110cc929190614df1565b5f604051808303815f87803b1580156110e3575f80fd5b505af11580156110f5573d5f803e3d5ffd5b505050505050505050505061111660015f8051602061558783398151915255565b919050565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c61113d61040f565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af415801561117b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061119f9190614ec2565b5f805160206155a78339815191528054600160401b900460ff16806111d1575080546001600160401b03808416911610155b156111ef5760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b17815561121983613143565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b61126e3361049b565b5f8061127a600e612839565b915091505f806112e9836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156112bf573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112e39190614a50565b8561314b565b915091505f73__$58e11c6004c5796aaa8c56e718245e69a2$__632b324dc08360400151896040518363ffffffff1660e01b815260040161132b929190614edd565b602060405180830381865af4158015611346573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061136a9190614a76565b6113b0576113a5836040518060400160405280600f81526020016e446973747269627574696f6e46656560881b81525084604001518a61324d565b506040810186905260015b606082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc0916113ec91908a90600401614edd565b602060405180830381865af4158015611407573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061142b9190614a76565b61147f57611474836040518060400160405280601781526020017f4d696e446973747269627574696f6e4f776e657246656500000000000000000081525084606001518961324d565b506060810185905260015b801561050d57836001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156114c1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114e59190614a50565b6001600160a01b031663462d5a8484846040518363ffffffff1660e01b8152600401611512929190614df1565b5f604051808303815f87803b158015611529575f80fd5b505af115801561153b573d5f803e3d5ffd5b50506040516001600160601b03881681527f37bea7afe3960b639e98d9161b22f53a172300df8ec6ee71fd0a5321dcecd59b925060200190505b60405180910390a150505050505050565b61158f3361049b565b5f8061159b600b612839565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156115dc573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116009190614a50565b60405163f0ea17c360e01b81526001600160601b03851660048201526001600160a01b03919091169063f0ea17c3906024015f60405180830381865afa15801561164c573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526116739190810190614f57565b604090810151905163ea0b3c7360e01b81526001600160a01b0387811660048301526001600160601b03871660248301529192509082169063ea0b3c73906044015f604051808303815f87803b1580156116cb575f80fd5b505af11580156116dd573d5f803e3d5ffd5b505050505050505050565b5f805160206155a78339815191528054600160401b810460ff1615906001600160401b03165f811580156117195750825b90505f826001600160401b031660011480156117345750303b155b905081158015611742575080155b156117605760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561178a57845460ff60401b1916600160401b1785555b61179487876132a0565b831561050d57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001611575565b5f6117e03361049b565b5f806117ec600b612839565b915091505f806117fc868561295c565b6040810151919350915061181881600f5b60ff90811691161490565b15611836578661182a85878386613438565b98975050505050505050565b61184181600e61180d565b1561185d5761185284868585613829565b979650505050505050565b61186881600d61180d565b156118795761185284868585613b52565b60405163f0b751ab60e01b81526001600160a01b038816600482015260ff821660248201526044016108d9565b6118af3361049b565b6118b7612925565b5f806118c3600c612839565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611904573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906119289190614a50565b604051636a05a41360e01b81526001600160601b03851660048201526001600160a01b039190911690636a05a413906024016101c060405180830381865afa158015611976573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061199a9190614d54565b805160405162acc93760e61b81529192505f9173__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc0916119d891908a90600401614edd565b602060405180830381865af41580156119f3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a179190614a76565b611a5357611a4c846040518060400160405280600a81526020016950726f6475637446656560b01b815250845f01518961324d565b5084815260015b602082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc091611a8f91908990600401614edd565b602060405180830381865af4158015611aaa573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ace9190614a76565b611b1257611b07846040518060400160405280600d81526020016c50726f63657373696e6746656560981b81525084602001518861324d565b506020810184905260015b8015611c1057826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b54573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b789190614a50565b6001600160a01b031663462d5a8485846040518363ffffffff1660e01b8152600401611ba5929190614df1565b5f604051808303815f87803b158015611bbc575f80fd5b505af1158015611bce573d5f803e3d5ffd5b50506040516001600160601b03871681527f385da3b17e82d72dd7e4cbe895c7d7d3fbb4c8768e0866dd69f44581a0ded2bc9250602001905060405180910390a15b50505050611c2a60015f8051602061558783398151915255565b5050565b5f73__$1d92393fa9ccd763988368ce8a1cb90d26$__63dda777d3600b611c53611cba565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865af4158015611c96573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104919190614ec2565b5f8051602061556783398151915254600160681b900460ff1690565b33611cdf611ebe565b6001600160a01b0316816001600160a01b031614611d1a5760405162d1953b60e31b81526001600160a01b03821660048201526024016108d9565b816001600160a01b03163b5f03611d4f576040516361798f2f60e11b81526001600160a01b03831660048201526024016108d9565b611c2a82613ddf565b5f805f8051602061552783398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015611dc4573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611de89190614a76565b15611e73576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611e49573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e6d9190614a50565b91505090565b54600160601b90046001600160a01b0316919050565b5f8051602061554783398151915280545f9190600160a01b900460ff16611eb0575f611e6d565b638fb3603760e01b91505090565b5f80516020615547833981519152546001600160a01b031690565b611ee23361049b565b5f80611eee600f612839565b915091505f80611f33836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156112bf573d5f803e3d5ffd5b915091505f73__$58e11c6004c5796aaa8c56e718245e69a2$__632b324dc083608001518a6040518363ffffffff1660e01b8152600401611f75929190614edd565b602060405180830381865af4158015611f90573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611fb49190614a76565b611ff257611fe78360405180604001604052806007815260200166506f6f6c46656560c81b81525084608001518b61324d565b506080810187905260015b60a082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc09161202e91908b90600401614edd565b602060405180830381865af4158015612049573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061206d9190614a76565b6120ae576120a3836040518060400160405280600a8152602001695374616b696e6746656560b01b8152508460a001518a61324d565b5060a0810186905260015b60c082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc0916120ea91908a90600401614edd565b602060405180830381865af4158015612105573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121299190614a76565b61216e57612163836040518060400160405280600e81526020016d506572666f726d616e636546656560901b8152508460c001518961324d565b5060c0810185905260015b801561226c57836001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156121b0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121d49190614a50565b6001600160a01b031663462d5a8484846040518363ffffffff1660e01b8152600401612201929190614df1565b5f604051808303815f87803b158015612218575f80fd5b505af115801561222a573d5f803e3d5ffd5b50506040516001600160601b03881681527f7a446b749117c015e0932e31190fc133582c9c5151e31209479cc9d21941f0359250602001905060405180910390a15b5050505050505050565b61227f3361049b565b5f8061228b600b612839565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa1580156122cc573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122f09190614a50565b60405163f0ea17c360e01b81526001600160601b03851660048201526001600160a01b03919091169063f0ea17c3906024015f60405180830381865afa15801561233c573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526123639190810190614f57565b604090810151905163deaa59df60e01b81526001600160a01b0386811660048301529192509082169063deaa59df906024015f604051808303815f87803b1580156123ac575f80fd5b505af115801561226c573d5f803e3d5ffd5b5f805160206155478339815191525f806123f66123d9611ebe565b87306123e860045f8a8c615020565b6123f191615047565b613e3f565b91509150816124b45763ffffffff81161561249157825460ff60a01b1916600160a01b178355612424611ebe565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b81526004016124539392919061507f565b5f604051808303815f87803b15801561246a575f80fd5b505af115801561247c573d5f803e3d5ffd5b5050845460ff60a01b19168555506124b49050565b60405162d1953b60e31b81526001600160a01b03871660048201526024016108d9565b505050505050565b5f806124c661449c565b5f6124d286600b610d1e565b1561258c5773__$fb599632d08395912d9d70eb2f0f93b5e2$__635c990ed36125036001546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015233602482015260ff8916604482015287151560648201526084015f60405180830381865af415801561255b573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526125829190810190615168565b9092509050612634565b73__$fb599632d08395912d9d70eb2f0f93b5e2$__63aa13a9886125b86001546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015233602482015287151560448201526064015f60405180830381865af4158015612607573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261262e9190810190615168565b90925090505b90519590945092505050565b5f805f8051602061552783398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156126ac573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126d09190614a76565b156126fc5780546040516301ab8b6760e21b81526001600160601b0390911660048201526024016108d9565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa15801561274e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906127729190614a76565b61279a5760405163b9304b0d60e01b81526001600160a01b03841660048201526024016108d9565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b0385811660048301529190911690635e546bee90602401602060405180830381865afa1580156127ec573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061281091906149fd565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b5f806128468360016124bc565b91509150915091565b60405163c4cade9d60e01b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063c4cade9d906044015b602060405180830381865af41580156128b0573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128d49190614a76565b9392505050565b604051632601631360e21b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__906398058c4c90604401612895565b5f8051602061558783398151915280546001190161295657604051633ee5aeb560e01b815260040160405180910390fd5b60029055565b5f61296561449c565b60405163d905700760e01b81526001600160a01b038516600482015263a9c1bc6f60e01b602482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__9063d905700790604401602060405180830381865af41580156129c8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906129ec9190614a76565b612a145760405163b03d8c4360e01b81526001600160a01b03851660048201526024016108d9565b839150816001600160a01b0316630fec111c6040518163ffffffff1660e01b81526004015f60405180830381865afa158015612a52573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612a7991908101906151ab565b9050612a89816020015184613f47565b15612acf57602081015160405163953133f160e01b81526001600160a01b03861660048201526001600160601b03808616602483015290911660448201526064016108d9565b612b3a826001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015612b0e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b3291906151dc565b610d1e611cba565b15612bdd5783612b48611cba565b836001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015612b84573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612ba891906151dc565b60405163459d07b760e11b81526001600160a01b03909316600484015260ff91821660248401521660448201526064016108d9565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b0386811660048301529190911690635e546bee90602401602060405180830381865afa158015612c2f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c5391906149fd565b6040516330b8415f60e01b81526001600160601b03909116600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015612caa573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612cce9190614a76565b15612cf757604051632176772160e11b81526001600160a01b03851660048201526024016108d9565b9250929050565b5f612d0f826040015161180d600c90565b612da45760035460408381015160a08501519151631fa14e4960e11b81526001600160a01b03878116600483015260ff9092166024820152918116604483015290911690633f429c92906064015f604051808303815f875af1158015612d77573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612d9e91908101906151ab565b51612e21565b60035460a0830151604051635d96628960e01b81526001600160a01b0386811660048301529182166024820152911690635d966289906044015f604051808303815f875af1158015612df8573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612e1f91908101906151ab565b515b90505f836001600160a01b031663b423086c6040518163ffffffff1660e01b81526004015f60405180830381865afa158015612e5f573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612e869190810190614f57565b602081015190915073__$51089c37ca0df1177a910c640c8c5f8165$__6350c6470d612eba6001546001600160a01b031690565b87848b6001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612ef8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612f1c9190614a50565b60405160e086901b6001600160e01b03191681526001600160a01b039485166004820152928416602484015290831660448301529091166064820152608401602060405180830381865af4158015612f76573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612f9a9190614a50565b6001600160a01b03908116604080850191909152516328f72e8760e01b8152908716906328f72e8790612fd390869086906004016151f7565b5f604051808303815f87803b158015612fea575f80fd5b505af1158015612ffc573d5f803e3d5ffd5b50505050846001600160a01b031663138461e06040518163ffffffff1660e01b81526004016020604051808303815f875af115801561303d573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061306191906149fd565b506040516392e2a62f60e01b81526001600160a01b0386811660048301528816906392e2a62f906024015f604051808303815f87803b1580156130a2575f80fd5b505af11580156130b4573d5f803e3d5ffd5b5050505060408481015160a08087015183516001600160601b038816815260ff90931660208401526001600160a01b0389811684860152858116606085015216608083015291517f51007d5babab22cf2beac27f1d50bb63f052eb2948904e9afee33fde1f2c5d46929181900390910190a15050949350505050565b60015f8051602061558783398151915255565b6101a1613f91565b5f6131546144d9565b6001546001600160a01b031660405163677d3feb60e11b81526001600160601b03851660048201526001600160a01b03919091169063cefa7fd690602401602060405180830381865afa1580156131ad573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906131d191906149fd565b604051636a05a41360e01b81526001600160601b03821660048201529092506001600160a01b03851690636a05a413906024016101c060405180830381865afa158015613220573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906132449190614d54565b90509250929050565b81516020808401518351918401516040517f52d1fb99d890f3b2be95c262d870f89c22614249751b9fe6124d341bedbd70db94613292948a948a949293909290615263565b60405180910390a150505050565b5f805160206155a78339815191528054600160401b810460ff1615906001600160401b03165f811580156132d15750825b90505f826001600160401b031660011480156132ec5750303b155b9050811580156132fa575080155b156133185760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561334257845460ff60401b1916600160401b1785555b5f808780602001905181019061335891906152a9565b9150915061336782828b613fc9565b613371602861406b565b600280546001600160a01b0319166001600160a01b039290921691909117815561339a9061406b565b600380546001600160a01b0319166001600160a01b03929092169190911790556133c4600a61406b565b600480546001600160a01b0319166001600160a01b03929092169190911790556133f463052a7f2160e41b614102565b5050831561050d57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001611575565b5f80856001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015613476573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061349a9190614a50565b90505f866001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa1580156134d9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906134fd9190614a50565b90505f876001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa15801561353c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906135609190614a50565b905061356e82828888612cfe565b6040516302d764c760e21b81526001600160601b03891660048201529094505f906001600160a01b03851690630b5d931c906024015f60405180830381865afa1580156135bd573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526135e49190810190614b3d565b60a08101516040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015613643573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906136679190614a76565b1561369e5760a08101516040516397f129bf60e01b81526001600160601b03808b16600483015290911660248201526044016108d9565b816001600160a01b031663fe7fc94186896001600160a01b03166385ba83446040518163ffffffff1660e01b815260040160e060405180830381865afa1580156136ea573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061370e91906152d6565b604080516001600160e01b031960e086901b1681526001600160601b03938416600482015282519093166024840152602082015115156044840152810151151560648301526060810151151560848301526080810151151560a483015260a081015160c483015260c0015160e4820152610104015f604051808303815f87803b158015613799575f80fd5b505af11580156137ab573d5f803e3d5ffd5b505050506001600160601b03851660a08201526001600160a01b03821663cb2e87d2898360ff5b6040518463ffffffff1660e01b81526004016137f093929190615364565b5f604051808303815f87803b158015613807575f80fd5b505af1158015613819573d5f803e3d5ffd5b5050505050505050949350505050565b5f613832612925565b5f856001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa15801561386f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906138939190614a50565b90505f866001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa1580156138d2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906138f69190614a50565b90505f876001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015613935573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906139599190614a50565b905061396782828888612cfe565b6040516302d764c760e21b81526001600160601b03891660048201529094505f906001600160a01b03851690630b5d931c906024015f60405180830381865afa1580156139b6573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526139dd9190810190614b3d565b90508060400151613a0c5760405163931d421760e01b81526001600160601b03891660048201526024016108d9565b60c08101516040516330b8415f60e01b81526001600160601b03909116600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015613a68573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613a8c9190614a76565b15613ac35760c08101516040516323a0cc7160e11b81526001600160601b03808b16600483015290911660248201526044016108d9565b6001600160601b03851660c082015260405163659743e960e11b81526001600160a01b0383169063cb2e87d290613b03908b90859060ff90600401615364565b5f604051808303815f87803b158015613b1a575f80fd5b505af1158015613b2c573d5f803e3d5ffd5b5050505050505050613b4a60015f8051602061558783398151915255565b949350505050565b5f80856001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015613b90573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613bb49190614a50565b90505f866001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015613bf3573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613c179190614a50565b90505f876001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015613c56573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613c7a9190614a50565b9050613c8882828888612cfe565b6040516302d764c760e21b81526001600160601b03891660048201529094505f906001600160a01b03851690630b5d931c906024015f60405180830381865afa158015613cd7573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613cfe9190810190614b3d565b9050806060015160ff165f03613d3257604051634435e56b60e01b81526001600160601b03891660048201526024016108d9565b806060015160ff16816080015160ff1603613d7a5760608101516040516379060d1360e11b81526001600160601b038a16600482015260ff90911660248201526044016108d9565b848160e00151826080015160ff1681518110613d9857613d98615398565b6001600160601b039092166020928302919091019091015260808101805190613dc0826153ac565b60ff169052506001600160a01b03821663cb2e87d289836137d260ff90565b5f8051602061554783398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b17905251613ead91906153d6565b5f60405180830381855afa9150503d805f8114613ee5576040519150601f19603f3d011682016040523d82523d5f602084013e613eea565b606091505b50915091508115613f3c576040815110613f1c5780806020019051810190613f1291906153ec565b9094509250613f3c565b6020815110613f3c5780806020019051810190613f399190614a76565b93505b505094509492505050565b6040516399009c5160e01b81526001600160601b038084166004830152821660248201525f9073__$94a2c899be079b00d952d0d84fffaa5c34$__906399009c5190604401612895565b5f805160206155a783398151915254600160401b900460ff16613fc757604051631afcd79f60e31b815260040160405180910390fd5b565b613fd1613f91565b613fd961412e565b6140568383846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa15801561401a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061403e91906149fd565b60085f8660405180602001604052805f81525061413e565b61406663daf9067160e01b614102565b505050565b5f61407e6001546001600160a01b031690565b6001600160a01b031663d39e604383614095611cba565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa1580156140d8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906140fc9190614a50565b92915050565b61410a613f91565b6001600160e01b0319165f908152602081905260409020805460ff19166001179055565b614136613f91565b613fc76142e8565b614146613f91565b604051632330f24760e01b81526001600160a01b038816600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90632330f24790602401602060405180830381865af415801561419c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906141c09190614a76565b6141e85760405163cf6935e560e01b81526001600160a01b03881660048201526024016108d9565b6141f1876142f0565b6141fb8683614304565b5f8051602061556783398151915280546001600160601b0387166cffffffffffffffffffffffffff1990911617600160601b60ff871602178155604080516376b707b760e01b815290516001600160a01b038a16916376b707b79160048083019260209291908290030181865afa158015614278573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061429c91906151dc565b815461ffff60681b1916600160681b60ff929092169190910260ff60701b191617600160701b85151502178155600181016142d7838261546c565b5061226c634a531f3360e01b614102565b613130613f91565b6142f8613f91565b6143018161437a565b50565b61430c613f91565b6143158261438b565b61431d614457565b6001600160a01b0381166143445760405163f17ef42d60e01b815260040160405180910390fd5b5f8051602061552783398151915280546001600160601b0316600160601b6001600160a01b039093169290920291909117905550565b614382613f91565b61430181613ddf565b614393613f91565b604051633334d16b60e01b81526001600160a01b038216600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90633334d16b90602401602060405180830381865af41580156143e9573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061440d9190614a76565b6144355760405163fdeac91f60e01b81526001600160a01b03821660048201526024016108d9565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b61445f613f91565b6301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915290565b6040805161012081019091525f60e082018181526101008301919091528190815260200161451860405180604001604052805f81526020015f81525090565b815260200161453860405180604001604052805f81526020015f81525090565b815260200161455860405180604001604052805f81526020015f81525090565b815260200161457860405180604001604052805f81526020015f81525090565b815260200161459860405180604001604052805f81526020015f81525090565b81526020016145b860405180604001604052805f81526020015f81525090565b905290565b5f602082840312156145cd575f80fd5b81356001600160e01b0319811681146128d4575f80fd5b6001600160a01b0381168114614301575f80fd5b8015158114614301575f80fd5b5f8060408385031215614616575f80fd5b8235614621816145e4565b91506020830135614631816145f8565b809150509250929050565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f60608301516146b2608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e080840152613b4a61010084018261463c565b6001600160601b0381168114614301575f80fd5b5f6020828403121561471a575f80fd5b81356128d4816146f6565b5f60208284031215614735575f80fd5b81356128d4816145e4565b634e487b7160e01b5f52604160045260245ffd5b604080519081016001600160401b038111828210171561477657614776614740565b60405290565b60405161010081016001600160401b038111828210171561477657614776614740565b60405160e081016001600160401b038111828210171561477657614776614740565b604051608081016001600160401b038111828210171561477657614776614740565b604051601f8201601f191681016001600160401b038111828210171561480b5761480b614740565b604052919050565b5f6001600160401b0382111561482b5761482b614740565b50601f01601f191660200190565b5f82601f830112614848575f80fd5b813561485b61485682614813565b6147e3565b81815284602083860101111561486f575f80fd5b816020850160208301375f918101602001919091529392505050565b5f6020828403121561489b575f80fd5b81356001600160401b038111156148b0575f80fd5b613b4a84828501614839565b5f604082840312156148cc575f80fd5b6148d4614754565b823581526020928301359281019290925250919050565b5f80608083850312156148fc575f80fd5b61490684846148bc565b915061324484604085016148bc565b5f8060408385031215614926575f80fd5b8235614931816145e4565b91506020830135614631816146f6565b5f8060408385031215614952575f80fd5b823561495d816145e4565b915060208301356001600160401b03811115614977575f80fd5b61498385828601614839565b9150509250929050565b5f805f60c0848603121561499f575f80fd5b6149a985856148bc565b92506149b885604086016148bc565b91506149c785608086016148bc565b90509250925092565b5f602082840312156149e0575f80fd5b815162ffffff811681146128d4575f80fd5b8051611116816146f6565b5f60208284031215614a0d575f80fd5b81516128d4816146f6565b600181811c90821680614a2c57607f821691505b602082108103614a4a57634e487b7160e01b5f52602260045260245ffd5b50919050565b5f60208284031215614a60575f80fd5b81516128d4816145e4565b8051611116816145f8565b5f60208284031215614a86575f80fd5b81516128d4816145f8565b8051611116816145e4565b60ff81168114614301575f80fd5b805161111681614a9c565b5f82601f830112614ac4575f80fd5b81516001600160401b03811115614add57614add614740565b8060051b614aed602082016147e3565b91825260208185018101929081019086841115614b08575f80fd5b6020860192505b83831015614b33578251614b22816146f6565b825260209283019290910190614b0f565b9695505050505050565b5f60208284031215614b4d575f80fd5b81516001600160401b03811115614b62575f80fd5b82016101008185031215614b74575f80fd5b614b7c61477c565b614b8582614a6b565b8152614b9360208301614a6b565b6020820152614ba460408301614a6b565b6040820152614bb560608301614aaa565b6060820152614bc660808301614aaa565b6080820152614bd760a083016149f2565b60a0820152614be860c083016149f2565b60c082015260e08201516001600160401b03811115614c05575f80fd5b614c1186828501614ab5565b60e083015250949350505050565b5f8151808452602084019350602083015f5b82811015614c585781516001600160601b0316865260209586019590910190600101614c31565b5093949350505050565b8051151582526020810151151560208301525f6040820151614c88604085018215159052565b506060820151614c9d606085018260ff169052565b506080820151614cb2608085018260ff169052565b5060a0820151614ccd60a08501826001600160601b03169052565b5060c0820151614ce860c08501826001600160601b03169052565b5060e082015161010060e0850152613b4a610100850182614c1f565b6001600160601b0383168152604060208201525f613b4a6040830184614c62565b5f60408284031215614d35575f80fd5b614d3d614754565b825181526020928301519281019290925250919050565b5f6101c0828403128015614d66575f80fd5b50614d6f61479f565b614d798484614d25565b8152614d888460408501614d25565b6020820152614d9a8460808501614d25565b6040820152614dac8460c08501614d25565b6060820152614dbf846101008501614d25565b6080820152614dd2846101408501614d25565b60a0820152614de5846101808501614d25565b60c08201529392505050565b6001600160601b038316815281518051602080840191909152015160408201526101e0810160208381015180516060850152908101516080840152506040830151805160a0840152602081015160c0840152506060830151805160e08401526020810151610100840152506080830151805161012084015260208101516101408401525060a0830151805161016084015260208101516101808401525060c083015180516101a084015260208101516101c0840152509392505050565b6001600160401b0381168114614301575f80fd5b5f60208284031215614ed2575f80fd5b81516128d481614eae565b8251815260208084015181830152825160408301528201516060820152608081016128d4565b5f614f1061485684614813565b9050828152838383011115614f23575f80fd5b8282602083015e5f602084830101529392505050565b5f82601f830112614f48575f80fd5b6128d483835160208501614f03565b5f60208284031215614f67575f80fd5b81516001600160401b03811115614f7c575f80fd5b820160808185031215614f8d575f80fd5b614f956147c1565b81516001600160401b03811115614faa575f80fd5b8201601f81018613614fba575f80fd5b614fc986825160208401614f03565b825250614fd860208301614a91565b6020820152614fe960408301614a91565b604082015260608201516001600160401b03811115615006575f80fd5b61501286828501614f39565b606083015250949350505050565b5f808585111561502e575f80fd5b8386111561503a575f80fd5b5050820193919092039150565b80356001600160e01b03198116906004841015615078576001600160e01b0319600485900360031b81901b82161691505b5092915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b5f60e082840312156150ce575f80fd5b6150d661479f565b90506150e1826149f2565b81526150ef602083016149f2565b602082015261510060408301614aaa565b604082015261511160608301614a6b565b606082015261512260808301614a91565b608082015261513360a08301614a91565b60a082015260c08201516001600160401b03811115615150575f80fd5b61515c84828501614f39565b60c08301525092915050565b5f8060408385031215615179575f80fd5b82516001600160401b0381111561518e575f80fd5b61519a858286016150be565b9250506020830151614631816145e4565b5f602082840312156151bb575f80fd5b81516001600160401b038111156151d0575f80fd5b613b4a848285016150be565b5f602082840312156151ec575f80fd5b81516128d481614a9c565b6001600160601b0383168152604060208201525f82516080604084015261522160c084018261463c565b60208501516001600160a01b0390811660608681019190915260408701519091166080860152850151848203603f190160a0860152909150614b33828261463c565b6001600160601b038716815260c060208201525f61528460c083018861463c565b90508560408301528460608301528360808301528260a0830152979650505050505050565b5f80604083850312156152ba575f80fd5b82516152c5816145e4565b6020840151909250614631816145e4565b5f60e08284031280156152e7575f80fd5b506152f061479f565b82516152fb816146f6565b8152602083015161530b816145f8565b6020820152604083015161531e816145f8565b60408201526060830151615331816145f8565b606082015261534260808401614a6b565b608082015260a0838101519082015260c0928301519281019290925250919050565b6001600160601b0384168152606060208201525f6153856060830185614c62565b905060ff83166040830152949350505050565b634e487b7160e01b5f52603260045260245ffd5b5f60ff821660ff81036153cd57634e487b7160e01b5f52601160045260245ffd5b60010192915050565b5f82518060208501845e5f920191825250919050565b5f80604083850312156153fd575f80fd5b8251615408816145f8565b602084015190925063ffffffff81168114614631575f80fd5b601f82111561406657805f5260205f20601f840160051c810160208510156154465750805b601f840160051c820191505b81811015615465575f8155600101615452565b5050505050565b81516001600160401b0381111561548557615485614740565b615499816154938454614a18565b84615421565b6020601f8211600181146154cb575f83156154b45750848201515b5f19600385901b1c1916600184901b178455615465565b5f84815260208120601f198516915b828110156154fa57878501518255602094850194600190920191016154da565b508482101561551757868401515f19600387901b60f8161c191681555b50505050600190811b0190555056fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a006548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa3009b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a26469706673582212203e7d31f73bab0f77ae7cc229e84ca2abda54b1d625a965ba058d1e4c80cb2e7064736f6c634300081a0033",
1118
+ "linkReferences": {
1119
+ "contracts/shared/ContractLib.sol": {
1120
+ "ContractLib": [
1121
+ {
1122
+ "length": 20,
1123
+ "start": 9647
1124
+ },
1125
+ {
1126
+ "length": 20,
1127
+ "start": 9828
1128
+ },
1129
+ {
1130
+ "length": 20,
1131
+ "start": 10854
1132
+ },
1133
+ {
1134
+ "length": 20,
1135
+ "start": 16954
1136
+ },
1137
+ {
1138
+ "length": 20,
1139
+ "start": 17543
1140
+ }
1141
+ ]
1142
+ },
1143
+ "contracts/shared/TokenHandlerDeployerLib.sol": {
1144
+ "TokenHandlerDeployerLib": [
1145
+ {
1146
+ "length": 20,
1147
+ "start": 12134
1148
+ }
1149
+ ]
1150
+ },
1151
+ "contracts/type/Amount.sol": {
1152
+ "AmountLib": [
1153
+ {
1154
+ "length": 20,
1155
+ "start": 2153
1156
+ },
1157
+ {
1158
+ "length": 20,
1159
+ "start": 2302
1160
+ },
1161
+ {
1162
+ "length": 20,
1163
+ "start": 10573
1164
+ },
1165
+ {
1166
+ "length": 20,
1167
+ "start": 10713
1168
+ }
1169
+ ]
1170
+ },
1171
+ "contracts/type/Fee.sol": {
1172
+ "FeeLib": [
1173
+ {
1174
+ "length": 20,
1175
+ "start": 5062
1176
+ },
1177
+ {
1178
+ "length": 20,
1179
+ "start": 5273
1180
+ },
1181
+ {
1182
+ "length": 20,
1183
+ "start": 6789
1184
+ },
1185
+ {
1186
+ "length": 20,
1187
+ "start": 6972
1188
+ },
1189
+ {
1190
+ "length": 20,
1191
+ "start": 8208
1192
+ },
1193
+ {
1194
+ "length": 20,
1195
+ "start": 8411
1196
+ },
1197
+ {
1198
+ "length": 20,
1199
+ "start": 8599
1200
+ }
1201
+ ]
1202
+ },
1203
+ "contracts/type/NftId.sol": {
1204
+ "NftIdLib": [
1205
+ {
1206
+ "length": 20,
1207
+ "start": 1554
1208
+ },
1209
+ {
1210
+ "length": 20,
1211
+ "start": 3956
1212
+ },
1213
+ {
1214
+ "length": 20,
1215
+ "start": 4093
1216
+ },
1217
+ {
1218
+ "length": 20,
1219
+ "start": 7778
1220
+ },
1221
+ {
1222
+ "length": 20,
1223
+ "start": 10058
1224
+ },
1225
+ {
1226
+ "length": 20,
1227
+ "start": 11592
1228
+ },
1229
+ {
1230
+ "length": 20,
1231
+ "start": 14049
1232
+ },
1233
+ {
1234
+ "length": 20,
1235
+ "start": 15110
1236
+ },
1237
+ {
1238
+ "length": 20,
1239
+ "start": 16453
1240
+ }
1241
+ ]
1242
+ },
1243
+ "contracts/type/RoleId.sol": {
1244
+ "RoleIdLib": [
1245
+ {
1246
+ "length": 20,
1247
+ "start": 7431
1248
+ }
1249
+ ]
1250
+ },
1251
+ "contracts/type/Version.sol": {
1252
+ "VersionLib": [
1253
+ {
1254
+ "length": 20,
1255
+ "start": 1291
1256
+ },
1257
+ {
1258
+ "length": 20,
1259
+ "start": 4595
1260
+ }
1261
+ ]
1262
+ }
1263
+ },
1264
+ "deployedLinkReferences": {
1265
+ "contracts/shared/ContractLib.sol": {
1266
+ "ContractLib": [
1267
+ {
1268
+ "length": 20,
1269
+ "start": 9433
1270
+ },
1271
+ {
1272
+ "length": 20,
1273
+ "start": 9614
1274
+ },
1275
+ {
1276
+ "length": 20,
1277
+ "start": 10640
1278
+ },
1279
+ {
1280
+ "length": 20,
1281
+ "start": 16740
1282
+ },
1283
+ {
1284
+ "length": 20,
1285
+ "start": 17329
1286
+ }
1287
+ ]
1288
+ },
1289
+ "contracts/shared/TokenHandlerDeployerLib.sol": {
1290
+ "TokenHandlerDeployerLib": [
1291
+ {
1292
+ "length": 20,
1293
+ "start": 11920
1294
+ }
1295
+ ]
1296
+ },
1297
+ "contracts/type/Amount.sol": {
1298
+ "AmountLib": [
1299
+ {
1300
+ "length": 20,
1301
+ "start": 1939
1302
+ },
1303
+ {
1304
+ "length": 20,
1305
+ "start": 2088
1306
+ },
1307
+ {
1308
+ "length": 20,
1309
+ "start": 10359
1310
+ },
1311
+ {
1312
+ "length": 20,
1313
+ "start": 10499
1314
+ }
1315
+ ]
1316
+ },
1317
+ "contracts/type/Fee.sol": {
1318
+ "FeeLib": [
1319
+ {
1320
+ "length": 20,
1321
+ "start": 4848
1322
+ },
1323
+ {
1324
+ "length": 20,
1325
+ "start": 5059
1326
+ },
1327
+ {
1328
+ "length": 20,
1329
+ "start": 6575
1330
+ },
1331
+ {
1332
+ "length": 20,
1333
+ "start": 6758
1334
+ },
1335
+ {
1336
+ "length": 20,
1337
+ "start": 7994
1338
+ },
1339
+ {
1340
+ "length": 20,
1341
+ "start": 8197
1342
+ },
1343
+ {
1344
+ "length": 20,
1345
+ "start": 8385
1346
+ }
1347
+ ]
1348
+ },
1349
+ "contracts/type/NftId.sol": {
1350
+ "NftIdLib": [
1351
+ {
1352
+ "length": 20,
1353
+ "start": 1340
1354
+ },
1355
+ {
1356
+ "length": 20,
1357
+ "start": 3742
1358
+ },
1359
+ {
1360
+ "length": 20,
1361
+ "start": 3879
1362
+ },
1363
+ {
1364
+ "length": 20,
1365
+ "start": 7564
1366
+ },
1367
+ {
1368
+ "length": 20,
1369
+ "start": 9844
1370
+ },
1371
+ {
1372
+ "length": 20,
1373
+ "start": 11378
1374
+ },
1375
+ {
1376
+ "length": 20,
1377
+ "start": 13835
1378
+ },
1379
+ {
1380
+ "length": 20,
1381
+ "start": 14896
1382
+ },
1383
+ {
1384
+ "length": 20,
1385
+ "start": 16239
1386
+ }
1387
+ ]
1388
+ },
1389
+ "contracts/type/RoleId.sol": {
1390
+ "RoleIdLib": [
1391
+ {
1392
+ "length": 20,
1393
+ "start": 7217
1394
+ }
1395
+ ]
1396
+ },
1397
+ "contracts/type/Version.sol": {
1398
+ "VersionLib": [
1399
+ {
1400
+ "length": 20,
1401
+ "start": 1077
1402
+ },
1403
+ {
1404
+ "length": 20,
1405
+ "start": 4381
1406
+ }
1407
+ ]
1408
+ }
1409
+ }
1410
+ }