@etherisc/gif-next 0.0.2-ffba655 → 3.0.0-05a0348-829

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 (709) hide show
  1. package/README.md +285 -68
  2. package/artifacts/contracts/accounting/AccountingService.sol/AccountingService.dbg.json +4 -0
  3. package/artifacts/contracts/accounting/AccountingService.sol/AccountingService.json +1061 -0
  4. package/artifacts/contracts/accounting/AccountingServiceManager.sol/AccountingServiceManager.dbg.json +4 -0
  5. package/artifacts/contracts/accounting/AccountingServiceManager.sol/AccountingServiceManager.json +806 -0
  6. package/artifacts/contracts/accounting/IAccountingService.sol/IAccountingService.dbg.json +4 -0
  7. package/artifacts/contracts/accounting/IAccountingService.sol/IAccountingService.json +837 -0
  8. package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.dbg.json +4 -0
  9. package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.json +1735 -0
  10. package/artifacts/contracts/authorization/AccessAdminLib.sol/AccessAdminLib.dbg.json +4 -0
  11. package/artifacts/contracts/authorization/AccessAdminLib.sol/AccessAdminLib.json +2053 -0
  12. package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.dbg.json +4 -0
  13. package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.json +1416 -0
  14. package/artifacts/contracts/authorization/Authorization.sol/Authorization.dbg.json +4 -0
  15. package/artifacts/contracts/authorization/Authorization.sol/Authorization.json +817 -0
  16. package/artifacts/contracts/authorization/IAccess.sol/IAccess.dbg.json +4 -0
  17. package/artifacts/contracts/{instance/access → authorization}/IAccess.sol/IAccess.json +1 -1
  18. package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.dbg.json +4 -0
  19. package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.json +1412 -0
  20. package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.dbg.json +4 -0
  21. package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.json +465 -0
  22. package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.dbg.json +4 -0
  23. package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.json +407 -0
  24. package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.dbg.json +4 -0
  25. package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.json +652 -0
  26. package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.dbg.json +4 -0
  27. package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.json +1140 -0
  28. package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.dbg.json +4 -0
  29. package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.json +844 -0
  30. package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +4 -0
  31. package/artifacts/contracts/distribution/Distribution.sol/Distribution.json +845 -0
  32. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +4 -0
  33. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +1882 -0
  34. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
  35. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +950 -0
  36. package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
  37. package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.json +744 -0
  38. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +4 -0
  39. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.json +1357 -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 +1399 -0
  44. package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.dbg.json +4 -0
  45. package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.json +844 -0
  46. package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.dbg.json +4 -0
  47. package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.json +1963 -0
  48. package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.dbg.json +4 -0
  49. package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.json +844 -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/flight/FlightLib.sol/FlightLib.dbg.json +4 -0
  53. package/artifacts/contracts/examples/flight/FlightLib.sol/FlightLib.json +799 -0
  54. package/artifacts/contracts/examples/flight/FlightMessageVerifier.sol/FlightMessageVerifier.dbg.json +4 -0
  55. package/artifacts/contracts/examples/flight/FlightMessageVerifier.sol/FlightMessageVerifier.json +229 -0
  56. package/artifacts/contracts/examples/flight/FlightNft.sol/FlightNft.dbg.json +4 -0
  57. package/artifacts/contracts/examples/flight/FlightNft.sol/FlightNft.json +801 -0
  58. package/artifacts/contracts/examples/flight/FlightOracle.sol/FlightOracle.dbg.json +4 -0
  59. package/artifacts/contracts/examples/flight/FlightOracle.sol/FlightOracle.json +1278 -0
  60. package/artifacts/contracts/examples/flight/FlightOracleAuthorization.sol/FlightOracleAuthorization.dbg.json +4 -0
  61. package/artifacts/contracts/examples/flight/FlightOracleAuthorization.sol/FlightOracleAuthorization.json +896 -0
  62. package/artifacts/contracts/examples/flight/FlightPool.sol/FlightPool.dbg.json +4 -0
  63. package/artifacts/contracts/examples/flight/FlightPool.sol/FlightPool.json +1391 -0
  64. package/artifacts/contracts/examples/flight/FlightPoolAuthorization.sol/FlightPoolAuthorization.dbg.json +4 -0
  65. package/artifacts/contracts/examples/flight/FlightPoolAuthorization.sol/FlightPoolAuthorization.json +844 -0
  66. package/artifacts/contracts/examples/flight/FlightProduct.sol/FlightProduct.dbg.json +4 -0
  67. package/artifacts/contracts/examples/flight/FlightProduct.sol/FlightProduct.json +2214 -0
  68. package/artifacts/contracts/examples/flight/FlightProductAuthorization.sol/FlightProductAuthorization.dbg.json +4 -0
  69. package/artifacts/contracts/examples/flight/FlightProductAuthorization.sol/FlightProductAuthorization.json +891 -0
  70. package/artifacts/contracts/examples/flight/FlightProductManager.sol/FlightProductManager.dbg.json +4 -0
  71. package/artifacts/contracts/examples/flight/FlightProductManager.sol/FlightProductManager.json +711 -0
  72. package/artifacts/contracts/examples/flight/FlightUSD.sol/FlightUSD.dbg.json +4 -0
  73. package/artifacts/contracts/examples/flight/FlightUSD.sol/FlightUSD.json +586 -0
  74. package/artifacts/contracts/examples/flight/originalV1.sol/FlightDelayChainlink.dbg.json +4 -0
  75. package/artifacts/contracts/examples/flight/originalV1.sol/FlightDelayChainlink.json +901 -0
  76. package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.dbg.json +4 -0
  77. package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.json +1335 -0
  78. package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.dbg.json +4 -0
  79. package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.json +844 -0
  80. package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.dbg.json +4 -0
  81. package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.json +1086 -0
  82. package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.dbg.json +4 -0
  83. package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.json +1562 -0
  84. package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.dbg.json +4 -0
  85. package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.json +844 -0
  86. package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.dbg.json +4 -0
  87. package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.json +2500 -0
  88. package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.dbg.json +4 -0
  89. package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.json +844 -0
  90. package/artifacts/contracts/instance/BaseStore.sol/BaseStore.dbg.json +4 -0
  91. package/artifacts/contracts/instance/BaseStore.sol/BaseStore.json +382 -0
  92. package/artifacts/contracts/instance/BundleSet.sol/BundleSet.dbg.json +4 -0
  93. package/artifacts/contracts/instance/BundleSet.sol/BundleSet.json +851 -0
  94. package/artifacts/contracts/instance/IBaseStore.sol/IBaseStore.dbg.json +4 -0
  95. package/artifacts/contracts/instance/IBaseStore.sol/IBaseStore.json +354 -0
  96. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
  97. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +734 -451
  98. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +4 -0
  99. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +1175 -0
  100. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  101. package/artifacts/contracts/instance/Instance.sol/Instance.json +810 -530
  102. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +4 -0
  103. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +2400 -0
  104. package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.dbg.json +4 -0
  105. package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.json +872 -0
  106. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +4 -0
  107. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +2687 -0
  108. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +4 -0
  109. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +1437 -0
  110. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +4 -0
  111. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +792 -0
  112. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
  113. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +3089 -0
  114. package/artifacts/contracts/instance/ProductStore.sol/ProductStore.dbg.json +4 -0
  115. package/artifacts/contracts/instance/ProductStore.sol/ProductStore.json +3477 -0
  116. package/artifacts/contracts/instance/RiskSet.sol/RiskSet.dbg.json +4 -0
  117. package/artifacts/contracts/instance/RiskSet.sol/RiskSet.json +866 -0
  118. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.dbg.json +4 -0
  119. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.json +318 -0
  120. package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.dbg.json +4 -0
  121. package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.json +137 -0
  122. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.dbg.json +4 -0
  123. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.json +10 -0
  124. package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.dbg.json +4 -0
  125. package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.json +223 -0
  126. package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.dbg.json +4 -0
  127. package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.json +192 -0
  128. package/artifacts/contracts/instance/base/ObjectSetHelperLib.sol/ObjectSetHelperLib.dbg.json +4 -0
  129. package/artifacts/contracts/instance/base/ObjectSetHelperLib.sol/ObjectSetHelperLib.json +168 -0
  130. package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +4 -0
  131. package/artifacts/contracts/instance/{pool/IPoolModule.sol/IPool.json → module/IBundle.sol/IBundle.json} +2 -2
  132. package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +4 -0
  133. package/artifacts/contracts/instance/{component/IComponent.sol/IComponent.json → module/IComponents.sol/IComponents.json} +2 -2
  134. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +4 -0
  135. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.json +10 -0
  136. package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +4 -0
  137. package/artifacts/contracts/instance/{policy → module}/IPolicy.sol/IPolicy.json +1 -1
  138. package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +4 -0
  139. package/artifacts/contracts/instance/module/IRisk.sol/IRisk.json +10 -0
  140. package/artifacts/contracts/mock/Dip.sol/Dip.dbg.json +4 -0
  141. package/artifacts/contracts/mock/Dip.sol/Dip.json +376 -0
  142. package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.dbg.json +4 -0
  143. package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.json +872 -0
  144. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.dbg.json +4 -0
  145. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.json +849 -0
  146. package/artifacts/contracts/oracle/IOracle.sol/IOracle.dbg.json +4 -0
  147. package/artifacts/contracts/oracle/IOracle.sol/IOracle.json +52 -0
  148. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.dbg.json +4 -0
  149. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.json +687 -0
  150. package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +4 -0
  151. package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.json +768 -0
  152. package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +4 -0
  153. package/artifacts/contracts/oracle/Oracle.sol/Oracle.json +788 -0
  154. package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +4 -0
  155. package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +1048 -0
  156. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +4 -0
  157. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +830 -0
  158. package/artifacts/contracts/pool/BasicPool.sol/BasicPool.dbg.json +4 -0
  159. package/artifacts/contracts/pool/BasicPool.sol/BasicPool.json +1157 -0
  160. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.dbg.json +4 -0
  161. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.json +844 -0
  162. package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +4 -0
  163. package/artifacts/contracts/pool/BundleService.sol/BundleService.json +1450 -0
  164. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
  165. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +886 -0
  166. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +4 -0
  167. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.json +1045 -0
  168. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
  169. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.json +820 -0
  170. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +4 -0
  171. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +1461 -0
  172. package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +4 -0
  173. package/artifacts/contracts/pool/Pool.sol/Pool.json +940 -0
  174. package/artifacts/contracts/pool/PoolLib.sol/PoolLib.dbg.json +4 -0
  175. package/artifacts/contracts/pool/PoolLib.sol/PoolLib.json +517 -0
  176. package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +4 -0
  177. package/artifacts/contracts/pool/PoolService.sol/PoolService.json +1845 -0
  178. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
  179. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +886 -0
  180. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +4 -0
  181. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +1036 -0
  182. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
  183. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +810 -0
  184. package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.dbg.json +4 -0
  185. package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.json +1074 -0
  186. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.dbg.json +4 -0
  187. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.json +844 -0
  188. package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +4 -0
  189. package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +1542 -0
  190. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
  191. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +906 -0
  192. package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +4 -0
  193. package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.json +804 -0
  194. package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +4 -0
  195. package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +1110 -0
  196. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +4 -0
  197. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +1048 -0
  198. package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +4 -0
  199. package/artifacts/contracts/product/IPricingService.sol/IPricingService.json +652 -0
  200. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +4 -0
  201. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +931 -0
  202. package/artifacts/contracts/product/IRiskService.sol/IRiskService.dbg.json +4 -0
  203. package/artifacts/contracts/product/IRiskService.sol/IRiskService.json +665 -0
  204. package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +4 -0
  205. package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +1416 -0
  206. package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.dbg.json +4 -0
  207. package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.json +791 -0
  208. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
  209. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +874 -0
  210. package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +4 -0
  211. package/artifacts/contracts/product/PricingService.sol/PricingService.json +932 -0
  212. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
  213. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +834 -0
  214. package/artifacts/contracts/product/Product.sol/Product.dbg.json +4 -0
  215. package/artifacts/contracts/product/Product.sol/Product.json +1032 -0
  216. package/artifacts/contracts/product/RiskService.sol/RiskService.dbg.json +4 -0
  217. package/artifacts/contracts/product/RiskService.sol/RiskService.json +873 -0
  218. package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.dbg.json +4 -0
  219. package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.json +794 -0
  220. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
  221. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +295 -2
  222. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  223. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +1061 -113
  224. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +4 -0
  225. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +1072 -0
  226. package/artifacts/contracts/registry/IRelease.sol/IRelease.dbg.json +4 -0
  227. package/artifacts/contracts/{instance/component/IComponent.sol/IInstanceLinked.json → registry/IRelease.sol/IRelease.json} +6 -6
  228. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +4 -0
  229. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +39 -0
  230. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  231. package/artifacts/contracts/registry/Registry.sol/Registry.json +1553 -176
  232. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +4 -0
  233. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +2255 -0
  234. package/artifacts/contracts/registry/RegistryAuthorization.sol/RegistryAuthorization.dbg.json +4 -0
  235. package/artifacts/contracts/registry/RegistryAuthorization.sol/RegistryAuthorization.json +1112 -0
  236. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +4 -0
  237. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +1298 -0
  238. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +4 -0
  239. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +793 -0
  240. package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.dbg.json +4 -0
  241. package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.json +2271 -0
  242. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.dbg.json +4 -0
  243. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.json +205 -0
  244. package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.dbg.json +4 -0
  245. package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.json +1411 -0
  246. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.dbg.json +4 -0
  247. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.json +705 -0
  248. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +4 -0
  249. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +721 -0
  250. package/artifacts/contracts/shared/Component.sol/Component.dbg.json +4 -0
  251. package/artifacts/contracts/shared/Component.sol/Component.json +620 -0
  252. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +4 -0
  253. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +1767 -0
  254. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +4 -0
  255. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +882 -0
  256. package/artifacts/contracts/shared/ContractLib.sol/ContractLib.dbg.json +4 -0
  257. package/artifacts/contracts/shared/ContractLib.sol/ContractLib.json +632 -0
  258. package/artifacts/contracts/shared/ContractLib.sol/IInstanceAdminHelper.dbg.json +4 -0
  259. package/artifacts/contracts/{registry/IRegistry.sol/IOwnable.json → shared/ContractLib.sol/IInstanceAdminHelper.json} +5 -5
  260. package/artifacts/contracts/shared/ContractLib.sol/ITargetHelper.dbg.json +4 -0
  261. package/artifacts/contracts/{instance/access/IAccess.sol/IAccessCheckRole.json → shared/ContractLib.sol/ITargetHelper.json} +4 -9
  262. package/artifacts/contracts/shared/ContractLib.sol/ITokenRegistryHelper.dbg.json +4 -0
  263. package/artifacts/contracts/shared/ContractLib.sol/ITokenRegistryHelper.json +40 -0
  264. package/artifacts/contracts/shared/IAuthorizedComponent.sol/IAuthorizedComponent.dbg.json +4 -0
  265. package/artifacts/contracts/shared/IAuthorizedComponent.sol/IAuthorizedComponent.json +558 -0
  266. package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +4 -0
  267. package/artifacts/contracts/shared/IComponent.sol/IComponent.json +545 -0
  268. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +4 -0
  269. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +1391 -0
  270. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +4 -0
  271. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +622 -0
  272. package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +4 -0
  273. package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.json +146 -0
  274. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +4 -0
  275. package/artifacts/contracts/{registry/IRegistry.sol/IRegisterable.json → shared/INftOwnable.sol/INftOwnable.json} +72 -72
  276. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +4 -0
  277. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +175 -0
  278. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +4 -0
  279. package/artifacts/contracts/{instance/component/ComponentModule.sol/ComponentModule.json → shared/IRegisterable.sol/IRegisterable.json} +179 -158
  280. package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
  281. package/artifacts/contracts/{registry/IRegistry.sol → shared/IRegistryLinked.sol}/IRegistryLinked.json +5 -19
  282. package/artifacts/contracts/shared/IService.sol/IService.dbg.json +4 -0
  283. package/artifacts/contracts/shared/IService.sol/IService.json +428 -0
  284. package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.dbg.json +4 -0
  285. package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.json +53 -0
  286. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +4 -0
  287. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +710 -0
  288. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +4 -0
  289. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.json +174 -0
  290. package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.dbg.json +4 -0
  291. package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.json +306 -0
  292. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +4 -0
  293. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +228 -0
  294. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +4 -0
  295. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +198 -0
  296. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +4 -0
  297. package/artifacts/contracts/shared/Registerable.sol/Registerable.json +397 -0
  298. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +4 -0
  299. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +58 -0
  300. package/artifacts/contracts/shared/Service.sol/Service.dbg.json +4 -0
  301. package/artifacts/contracts/shared/Service.sol/Service.json +482 -0
  302. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +4 -0
  303. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +696 -0
  304. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.dbg.json +4 -0
  305. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.json +457 -0
  306. package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.dbg.json +4 -0
  307. package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.json +172 -0
  308. package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +4 -0
  309. package/artifacts/contracts/staking/IStaking.sol/IStaking.json +2697 -0
  310. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +4 -0
  311. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +947 -0
  312. package/artifacts/contracts/staking/ITargetLimitHandler.sol/ITargetLimitHandler.dbg.json +4 -0
  313. package/artifacts/contracts/staking/ITargetLimitHandler.sol/ITargetLimitHandler.json +50 -0
  314. package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +4 -0
  315. package/artifacts/contracts/staking/Staking.sol/Staking.json +3125 -0
  316. package/artifacts/contracts/staking/StakingLib.sol/StakingLib.dbg.json +4 -0
  317. package/artifacts/contracts/staking/StakingLib.sol/StakingLib.json +465 -0
  318. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +4 -0
  319. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +867 -0
  320. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +4 -0
  321. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +704 -0
  322. package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +4 -0
  323. package/artifacts/contracts/staking/StakingService.sol/StakingService.json +1144 -0
  324. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +4 -0
  325. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +786 -0
  326. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +4 -0
  327. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +3097 -0
  328. package/artifacts/contracts/staking/TargetHandler.sol/TargetHandler.dbg.json +4 -0
  329. package/artifacts/contracts/staking/TargetHandler.sol/TargetHandler.json +304 -0
  330. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +4 -0
  331. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +674 -0
  332. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +4 -0
  333. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.json +10 -0
  334. package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +4 -0
  335. package/artifacts/contracts/type/Amount.sol/AmountLib.json +393 -0
  336. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +4 -0
  337. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.json +270 -0
  338. package/artifacts/contracts/type/ChainId.sol/ChainIdLib.dbg.json +4 -0
  339. package/artifacts/contracts/type/ChainId.sol/ChainIdLib.json +193 -0
  340. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
  341. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.json +203 -0
  342. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
  343. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.json +104 -0
  344. package/artifacts/contracts/type/Fee.sol/FeeLib.dbg.json +4 -0
  345. package/artifacts/contracts/type/Fee.sol/FeeLib.json +368 -0
  346. package/artifacts/contracts/type/Key32.sol/Key32Lib.dbg.json +4 -0
  347. package/artifacts/contracts/type/Key32.sol/Key32Lib.json +125 -0
  348. package/artifacts/contracts/type/Key32Set.sol/LibKey32Set.dbg.json +4 -0
  349. package/artifacts/contracts/type/Key32Set.sol/LibKey32Set.json +33 -0
  350. package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +4 -0
  351. package/artifacts/contracts/type/NftId.sol/NftIdLib.json +228 -0
  352. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
  353. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.json +33 -0
  354. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
  355. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.json +238 -0
  356. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
  357. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.json +209 -0
  358. package/artifacts/contracts/type/Referral.sol/ReferralLib.dbg.json +4 -0
  359. package/artifacts/contracts/type/Referral.sol/ReferralLib.json +161 -0
  360. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.dbg.json +4 -0
  361. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.json +204 -0
  362. package/artifacts/contracts/type/RequestIdSet.sol/LibRequestIdSet.dbg.json +4 -0
  363. package/artifacts/contracts/type/RequestIdSet.sol/LibRequestIdSet.json +33 -0
  364. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +4 -0
  365. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.json +204 -0
  366. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +4 -0
  367. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +254 -0
  368. package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +4 -0
  369. package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +308 -0
  370. package/artifacts/contracts/type/Selector.sol/SelectorLib.dbg.json +4 -0
  371. package/artifacts/contracts/type/Selector.sol/SelectorLib.json +148 -0
  372. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.dbg.json +4 -0
  373. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.json +10 -0
  374. package/artifacts/contracts/type/StateId.sol/StateIdLib.dbg.json +4 -0
  375. package/artifacts/contracts/type/StateId.sol/StateIdLib.json +105 -0
  376. package/artifacts/contracts/type/String.sol/StrLib.dbg.json +4 -0
  377. package/artifacts/contracts/type/String.sol/StrLib.json +199 -0
  378. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +4 -0
  379. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.json +344 -0
  380. package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +4 -0
  381. package/artifacts/contracts/type/UFixed.sol/UFixedLib.json +567 -0
  382. package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +4 -0
  383. package/artifacts/contracts/type/Version.sol/VersionLib.json +158 -0
  384. package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +4 -0
  385. package/artifacts/contracts/type/Version.sol/VersionPartLib.json +167 -0
  386. package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.dbg.json +4 -0
  387. package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.json +65 -0
  388. package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.dbg.json +4 -0
  389. package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.json +672 -0
  390. package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
  391. package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +142 -0
  392. package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.dbg.json +4 -0
  393. package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.json +88 -0
  394. package/contracts/accounting/AccountingService.sol +262 -0
  395. package/contracts/accounting/AccountingServiceManager.sol +38 -0
  396. package/contracts/accounting/IAccountingService.sol +46 -0
  397. package/contracts/authorization/AccessAdmin.sol +662 -0
  398. package/contracts/authorization/AccessAdminLib.sol +695 -0
  399. package/contracts/authorization/AccessManagerCloneable.sol +144 -0
  400. package/contracts/authorization/Authorization.sol +190 -0
  401. package/contracts/authorization/IAccess.sol +66 -0
  402. package/contracts/authorization/IAccessAdmin.sol +143 -0
  403. package/contracts/authorization/IAuthorization.sol +26 -0
  404. package/contracts/authorization/IServiceAuthorization.sol +78 -0
  405. package/contracts/authorization/ServiceAuthorization.sol +300 -0
  406. package/contracts/distribution/BasicDistribution.sol +140 -0
  407. package/contracts/distribution/BasicDistributionAuthorization.sol +67 -0
  408. package/contracts/distribution/Distribution.sol +245 -0
  409. package/contracts/distribution/DistributionService.sol +453 -0
  410. package/contracts/distribution/DistributionServiceManager.sol +39 -0
  411. package/contracts/distribution/IDistributionComponent.sol +43 -0
  412. package/contracts/distribution/IDistributionService.sol +116 -0
  413. package/contracts/examples/fire/DamageLevel.sol +59 -0
  414. package/contracts/examples/fire/FirePool.sol +86 -0
  415. package/contracts/examples/fire/FirePoolAuthorization.sol +35 -0
  416. package/contracts/examples/fire/FireProduct.sol +433 -0
  417. package/contracts/examples/fire/FireProductAuthorization.sol +45 -0
  418. package/contracts/examples/fire/FireUSD.sol +26 -0
  419. package/contracts/examples/flight/FlightLib.sol +337 -0
  420. package/contracts/examples/flight/FlightMessageVerifier.sol +128 -0
  421. package/contracts/examples/flight/FlightNft.sol +234 -0
  422. package/contracts/examples/flight/FlightOracle.sol +226 -0
  423. package/contracts/examples/flight/FlightOracleAuthorization.sol +57 -0
  424. package/contracts/examples/flight/FlightPool.sol +89 -0
  425. package/contracts/examples/flight/FlightPoolAuthorization.sol +37 -0
  426. package/contracts/examples/flight/FlightProduct.sol +687 -0
  427. package/contracts/examples/flight/FlightProductAuthorization.sol +70 -0
  428. package/contracts/examples/flight/FlightProductManager.sol +49 -0
  429. package/contracts/examples/flight/FlightUSD.sol +28 -0
  430. package/contracts/examples/flight/originalV1.sol +396 -0
  431. package/contracts/examples/unpermissioned/SimpleDistribution.sol +81 -0
  432. package/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol +28 -0
  433. package/contracts/examples/unpermissioned/SimpleOracle.sol +133 -0
  434. package/contracts/examples/unpermissioned/SimplePool.sol +102 -0
  435. package/contracts/examples/unpermissioned/SimplePoolAuthorization.sol +28 -0
  436. package/contracts/examples/unpermissioned/SimpleProduct.sol +437 -0
  437. package/contracts/examples/unpermissioned/SimpleProductAuthorization.sol +28 -0
  438. package/contracts/instance/BaseStore.sol +97 -0
  439. package/contracts/instance/BundleSet.sol +130 -0
  440. package/contracts/instance/IBaseStore.sol +45 -0
  441. package/contracts/instance/IInstance.sol +151 -15
  442. package/contracts/instance/IInstanceService.sol +121 -0
  443. package/contracts/instance/Instance.sol +332 -45
  444. package/contracts/instance/InstanceAdmin.sol +306 -0
  445. package/contracts/instance/InstanceAuthorizationV3.sol +275 -0
  446. package/contracts/instance/InstanceReader.sol +642 -0
  447. package/contracts/instance/InstanceService.sol +522 -0
  448. package/contracts/instance/InstanceServiceManager.sol +39 -0
  449. package/contracts/instance/InstanceStore.sol +323 -0
  450. package/contracts/instance/ProductStore.sol +290 -0
  451. package/contracts/instance/RiskSet.sol +126 -0
  452. package/contracts/instance/TargetNames.sol +10 -0
  453. package/contracts/instance/base/BalanceStore.sol +121 -0
  454. package/contracts/instance/base/Cloneable.sol +28 -0
  455. package/contracts/instance/base/ObjectCounter.sol +20 -0
  456. package/contracts/instance/base/ObjectLifecycle.sol +109 -0
  457. package/contracts/instance/base/ObjectSet.sol +77 -0
  458. package/contracts/instance/base/ObjectSetHelperLib.sol +30 -0
  459. package/contracts/instance/module/IBundle.sol +21 -0
  460. package/contracts/instance/module/IComponents.sol +60 -0
  461. package/contracts/instance/module/IDistribution.sol +54 -0
  462. package/contracts/instance/module/IPolicy.sol +105 -0
  463. package/contracts/instance/module/IRisk.sol +16 -0
  464. package/contracts/mock/Dip.sol +26 -0
  465. package/contracts/oracle/BasicOracle.sol +45 -0
  466. package/contracts/oracle/BasicOracleAuthorization.sol +53 -0
  467. package/contracts/oracle/IOracle.sol +41 -0
  468. package/contracts/oracle/IOracleComponent.sol +33 -0
  469. package/contracts/oracle/IOracleService.sol +66 -0
  470. package/contracts/oracle/Oracle.sol +152 -0
  471. package/contracts/oracle/OracleService.sol +310 -0
  472. package/contracts/oracle/OracleServiceManager.sol +39 -0
  473. package/contracts/pool/BasicPool.sol +161 -0
  474. package/contracts/pool/BasicPoolAuthorization.sol +81 -0
  475. package/contracts/pool/BundleService.sol +386 -0
  476. package/contracts/pool/BundleServiceManager.sol +39 -0
  477. package/contracts/pool/IBundleService.sol +116 -0
  478. package/contracts/pool/IPoolComponent.sol +62 -0
  479. package/contracts/pool/IPoolService.sol +170 -0
  480. package/contracts/pool/Pool.sol +331 -0
  481. package/contracts/pool/PoolLib.sol +341 -0
  482. package/contracts/pool/PoolService.sol +614 -0
  483. package/contracts/pool/PoolServiceManager.sol +39 -0
  484. package/contracts/product/ApplicationService.sol +327 -0
  485. package/contracts/product/ApplicationServiceManager.sol +38 -0
  486. package/contracts/product/BasicProduct.sol +48 -0
  487. package/contracts/product/BasicProductAuthorization.sol +64 -0
  488. package/contracts/product/ClaimService.sol +626 -0
  489. package/contracts/product/ClaimServiceManager.sol +38 -0
  490. package/contracts/product/IApplicationService.sol +88 -0
  491. package/contracts/product/IClaimService.sol +136 -0
  492. package/contracts/product/IPolicyService.sol +102 -0
  493. package/contracts/product/IPricingService.sol +40 -0
  494. package/contracts/product/IProductComponent.sol +62 -0
  495. package/contracts/product/IRiskService.sol +48 -0
  496. package/contracts/product/PolicyService.sol +645 -0
  497. package/contracts/product/PolicyServiceLib.sol +141 -0
  498. package/contracts/product/PolicyServiceManager.sol +39 -0
  499. package/contracts/product/PricingService.sol +306 -0
  500. package/contracts/product/PricingServiceManager.sol +39 -0
  501. package/contracts/product/Product.sol +491 -0
  502. package/contracts/product/RiskService.sol +189 -0
  503. package/contracts/product/RiskServiceManager.sol +39 -0
  504. package/contracts/registry/ChainNft.sol +176 -100
  505. package/contracts/registry/IRegistry.sol +149 -47
  506. package/contracts/registry/IRegistryService.sol +62 -0
  507. package/contracts/registry/IRelease.sol +29 -0
  508. package/contracts/registry/ITransferInterceptor.sol +6 -0
  509. package/contracts/registry/Registry.sol +673 -117
  510. package/contracts/registry/RegistryAdmin.sol +179 -0
  511. package/contracts/registry/RegistryAuthorization.sol +335 -0
  512. package/contracts/registry/RegistryService.sol +241 -0
  513. package/contracts/registry/RegistryServiceManager.sol +53 -0
  514. package/contracts/registry/ReleaseAdmin.sol +206 -0
  515. package/contracts/registry/ReleaseLifecycle.sol +32 -0
  516. package/contracts/registry/ReleaseRegistry.sol +525 -0
  517. package/contracts/registry/ServiceAuthorizationV3.sol +342 -0
  518. package/contracts/registry/TokenRegistry.sol +317 -0
  519. package/contracts/shared/Component.sol +210 -0
  520. package/contracts/shared/ComponentService.sol +725 -0
  521. package/contracts/shared/ComponentServiceManager.sol +38 -0
  522. package/contracts/shared/ContractLib.sol +312 -0
  523. package/contracts/shared/EcdsaChecker.sol +5 -0
  524. package/contracts/shared/IAuthorizedComponent.sol +15 -0
  525. package/contracts/shared/IComponent.sol +54 -0
  526. package/contracts/shared/IComponentService.sol +133 -0
  527. package/contracts/shared/IInstanceLinkedComponent.sol +27 -0
  528. package/contracts/shared/ILifecycle.sol +31 -0
  529. package/contracts/shared/INftOwnable.sol +27 -0
  530. package/contracts/shared/IPolicyHolder.sol +35 -0
  531. package/contracts/shared/IRegisterable.sol +36 -0
  532. package/contracts/shared/IRegistryLinked.sol +11 -0
  533. package/contracts/shared/IService.sol +23 -0
  534. package/contracts/shared/InitializableERC165.sol +35 -0
  535. package/contracts/shared/InstanceLinkedComponent.sol +233 -0
  536. package/contracts/shared/Lifecycle.sol +88 -0
  537. package/contracts/shared/NftIdSet.sol +65 -0
  538. package/contracts/shared/NftOwnable.sol +129 -0
  539. package/contracts/shared/PolicyHolder.sol +63 -0
  540. package/contracts/shared/Registerable.sol +106 -0
  541. package/contracts/shared/RegistryLinked.sol +38 -0
  542. package/contracts/shared/Service.sol +67 -0
  543. package/contracts/shared/TokenHandler.sol +342 -0
  544. package/contracts/shared/TokenHandlerDeployerLib.sol +20 -0
  545. package/contracts/staking/IStaking.sol +368 -0
  546. package/contracts/staking/IStakingService.sol +118 -0
  547. package/contracts/staking/ITargetLimitHandler.sol +17 -0
  548. package/contracts/staking/Staking.sol +798 -0
  549. package/contracts/staking/StakingLib.sol +195 -0
  550. package/contracts/staking/StakingManager.sol +53 -0
  551. package/contracts/staking/StakingReader.sol +171 -0
  552. package/contracts/staking/StakingService.sol +321 -0
  553. package/contracts/staking/StakingServiceManager.sol +46 -0
  554. package/contracts/staking/StakingStore.sol +1368 -0
  555. package/contracts/staking/TargetHandler.sol +132 -0
  556. package/contracts/staking/TargetManagerLib.sol +234 -0
  557. package/contracts/type/AddressSet.sol +58 -0
  558. package/contracts/type/Amount.sol +154 -0
  559. package/contracts/type/Blocknumber.sol +137 -0
  560. package/contracts/type/ChainId.sol +101 -0
  561. package/contracts/type/ClaimId.sol +80 -0
  562. package/contracts/type/DistributorType.sol +55 -0
  563. package/contracts/type/Fee.sol +66 -0
  564. package/contracts/type/Key32.sol +50 -0
  565. package/contracts/type/Key32Set.sol +62 -0
  566. package/contracts/type/NftId.sol +85 -0
  567. package/contracts/type/NftIdSet.sol +62 -0
  568. package/contracts/type/ObjectType.sol +278 -0
  569. package/contracts/type/PayoutId.sol +82 -0
  570. package/contracts/type/Referral.sol +96 -0
  571. package/contracts/type/RequestId.sol +75 -0
  572. package/contracts/type/RequestIdSet.sol +62 -0
  573. package/contracts/type/RiskId.sol +75 -0
  574. package/contracts/type/RoleId.sol +180 -0
  575. package/contracts/type/Seconds.sol +124 -0
  576. package/contracts/type/Selector.sol +107 -0
  577. package/contracts/type/StateId.sol +149 -0
  578. package/contracts/type/String.sol +95 -0
  579. package/contracts/type/Timestamp.sol +152 -0
  580. package/contracts/type/UFixed.sol +263 -0
  581. package/contracts/type/Version.sol +159 -0
  582. package/contracts/upgradeability/IVersionable.sol +56 -0
  583. package/contracts/upgradeability/ProxyManager.sol +246 -0
  584. package/contracts/upgradeability/UpgradableProxyWithAdmin.sol +24 -0
  585. package/contracts/upgradeability/Versionable.sol +62 -0
  586. package/package.json +27 -7
  587. package/artifacts/contracts/components/Component.sol/Component.dbg.json +0 -4
  588. package/artifacts/contracts/components/Component.sol/Component.json +0 -179
  589. package/artifacts/contracts/components/Component.sol/InstanceLinked.dbg.json +0 -4
  590. package/artifacts/contracts/components/Component.sol/InstanceLinked.json +0 -35
  591. package/artifacts/contracts/components/IPool.sol/IPoolComponent.dbg.json +0 -4
  592. package/artifacts/contracts/components/IPool.sol/IPoolComponent.json +0 -179
  593. package/artifacts/contracts/components/IProduct.sol/IProductComponent.dbg.json +0 -4
  594. package/artifacts/contracts/components/IProduct.sol/IProductComponent.json +0 -192
  595. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +0 -4
  596. package/artifacts/contracts/components/Pool.sol/Pool.json +0 -213
  597. package/artifacts/contracts/components/Product.sol/Product.dbg.json +0 -4
  598. package/artifacts/contracts/components/Product.sol/Product.json +0 -231
  599. package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +0 -4
  600. package/artifacts/contracts/experiment/errors/Require.sol/Require.json +0 -105
  601. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +0 -4
  602. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +0 -105
  603. package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +0 -4
  604. package/artifacts/contracts/experiment/inheritance/A.sol/A.json +0 -128
  605. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +0 -4
  606. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +0 -42
  607. package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +0 -4
  608. package/artifacts/contracts/experiment/inheritance/B.sol/B.json +0 -76
  609. package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +0 -4
  610. package/artifacts/contracts/experiment/inheritance/C.sol/C.json +0 -89
  611. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +0 -4
  612. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.json +0 -128
  613. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +0 -4
  614. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.json +0 -37
  615. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +0 -4
  616. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.json +0 -50
  617. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +0 -4
  618. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.json +0 -63
  619. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +0 -4
  620. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +0 -10
  621. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +0 -4
  622. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +0 -10
  623. package/artifacts/contracts/instance/access/Access.sol/AccessModule.dbg.json +0 -4
  624. package/artifacts/contracts/instance/access/Access.sol/AccessModule.json +0 -400
  625. package/artifacts/contracts/instance/access/IAccess.sol/IAccess.dbg.json +0 -4
  626. package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.dbg.json +0 -4
  627. package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.dbg.json +0 -4
  628. package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.json +0 -50
  629. package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.dbg.json +0 -4
  630. package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.json +0 -336
  631. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
  632. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.dbg.json +0 -4
  633. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.json +0 -147
  634. package/artifacts/contracts/instance/component/IComponent.sol/IComponent.dbg.json +0 -4
  635. package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.dbg.json +0 -4
  636. package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.json +0 -179
  637. package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.dbg.json +0 -4
  638. package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.json +0 -245
  639. package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.dbg.json +0 -4
  640. package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.json +0 -94
  641. package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.dbg.json +0 -4
  642. package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicy.dbg.json +0 -4
  643. package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.dbg.json +0 -4
  644. package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.json +0 -231
  645. package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.dbg.json +0 -4
  646. package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.json +0 -231
  647. package/artifacts/contracts/instance/pool/IPoolModule.sol/IPool.dbg.json +0 -4
  648. package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.dbg.json +0 -4
  649. package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.json +0 -149
  650. package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.dbg.json +0 -4
  651. package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.json +0 -162
  652. package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.dbg.json +0 -4
  653. package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.json +0 -75
  654. package/artifacts/contracts/instance/product/IProductService.sol/IProductService.dbg.json +0 -4
  655. package/artifacts/contracts/instance/product/IProductService.sol/IProductService.json +0 -114
  656. package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.dbg.json +0 -4
  657. package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.json +0 -75
  658. package/artifacts/contracts/instance/product/ProductService.sol/ProductService.dbg.json +0 -4
  659. package/artifacts/contracts/instance/product/ProductService.sol/ProductService.json +0 -167
  660. package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +0 -4
  661. package/artifacts/contracts/registry/IChainNft.sol/IChainNft.json +0 -452
  662. package/artifacts/contracts/registry/IRegistry.sol/IOwnable.dbg.json +0 -4
  663. package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.dbg.json +0 -4
  664. package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.dbg.json +0 -4
  665. package/artifacts/contracts/registry/Registry.sol/Registerable.dbg.json +0 -4
  666. package/artifacts/contracts/registry/Registry.sol/Registerable.json +0 -166
  667. package/artifacts/contracts/registry/Registry.sol/RegistryLinked.dbg.json +0 -4
  668. package/artifacts/contracts/registry/Registry.sol/RegistryLinked.json +0 -60
  669. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +0 -4
  670. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +0 -174
  671. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +0 -4
  672. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +0 -10
  673. package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +0 -4
  674. package/artifacts/contracts/types/NftId.sol/NftIdLib.json +0 -92
  675. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +0 -4
  676. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +0 -174
  677. package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +0 -4
  678. package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.json +0 -453
  679. package/contracts/components/Component.sol +0 -62
  680. package/contracts/components/IPool.sol +0 -9
  681. package/contracts/components/IProduct.sol +0 -12
  682. package/contracts/components/Pool.sol +0 -29
  683. package/contracts/components/Product.sol +0 -66
  684. package/contracts/experiment/errors/Require.sol +0 -33
  685. package/contracts/experiment/errors/Revert.sol +0 -39
  686. package/contracts/experiment/inheritance/A.sol +0 -56
  687. package/contracts/experiment/inheritance/B.sol +0 -23
  688. package/contracts/experiment/inheritance/C.sol +0 -28
  689. package/contracts/experiment/inheritance/IA.sol +0 -18
  690. package/contracts/experiment/inheritance/IB.sol +0 -9
  691. package/contracts/experiment/inheritance/IC.sol +0 -11
  692. package/contracts/experiment/types/TypeA.sol +0 -42
  693. package/contracts/experiment/types/TypeB.sol +0 -24
  694. package/contracts/instance/access/Access.sol +0 -218
  695. package/contracts/instance/access/IAccess.sol +0 -83
  696. package/contracts/instance/component/ComponentModule.sol +0 -248
  697. package/contracts/instance/component/IComponent.sol +0 -95
  698. package/contracts/instance/policy/IPolicy.sol +0 -66
  699. package/contracts/instance/policy/PolicyModule.sol +0 -107
  700. package/contracts/instance/pool/IPoolModule.sol +0 -41
  701. package/contracts/instance/pool/PoolModule.sol +0 -86
  702. package/contracts/instance/product/IProductService.sol +0 -46
  703. package/contracts/instance/product/ProductService.sol +0 -108
  704. package/contracts/registry/IChainNft.sol +0 -18
  705. package/contracts/types/Blocknumber.sol +0 -60
  706. package/contracts/types/ChainId.sol +0 -30
  707. package/contracts/types/NftId.sol +0 -35
  708. package/contracts/types/Timestamp.sol +0 -55
  709. package/contracts/types/UFixed.sol +0 -211
@@ -0,0 +1,1767 @@
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": "caller",
60
+ "type": "address"
61
+ }
62
+ ],
63
+ "name": "ErrorComponentServiceCallerNotInstance",
64
+ "type": "error"
65
+ },
66
+ {
67
+ "inputs": [
68
+ {
69
+ "internalType": "address",
70
+ "name": "caller",
71
+ "type": "address"
72
+ }
73
+ ],
74
+ "name": "ErrorComponentServiceCallerNotProduct",
75
+ "type": "error"
76
+ },
77
+ {
78
+ "inputs": [
79
+ {
80
+ "internalType": "address",
81
+ "name": "component",
82
+ "type": "address"
83
+ }
84
+ ],
85
+ "name": "ErrorComponentServiceComponentAlreadyRegistered",
86
+ "type": "error"
87
+ },
88
+ {
89
+ "inputs": [
90
+ {
91
+ "internalType": "address",
92
+ "name": "component",
93
+ "type": "address"
94
+ },
95
+ {
96
+ "internalType": "NftId",
97
+ "name": "required",
98
+ "type": "uint96"
99
+ },
100
+ {
101
+ "internalType": "NftId",
102
+ "name": "actual",
103
+ "type": "uint96"
104
+ }
105
+ ],
106
+ "name": "ErrorComponentServiceComponentParentInvalid",
107
+ "type": "error"
108
+ },
109
+ {
110
+ "inputs": [
111
+ {
112
+ "internalType": "address",
113
+ "name": "component",
114
+ "type": "address"
115
+ },
116
+ {
117
+ "internalType": "VersionPart",
118
+ "name": "serviceRelease",
119
+ "type": "uint8"
120
+ },
121
+ {
122
+ "internalType": "VersionPart",
123
+ "name": "componentRelease",
124
+ "type": "uint8"
125
+ }
126
+ ],
127
+ "name": "ErrorComponentServiceComponentReleaseMismatch",
128
+ "type": "error"
129
+ },
130
+ {
131
+ "inputs": [
132
+ {
133
+ "internalType": "address",
134
+ "name": "component",
135
+ "type": "address"
136
+ },
137
+ {
138
+ "internalType": "ObjectType",
139
+ "name": "invalid",
140
+ "type": "uint8"
141
+ }
142
+ ],
143
+ "name": "ErrorComponentServiceComponentTypeNotSupported",
144
+ "type": "error"
145
+ },
146
+ {
147
+ "inputs": [],
148
+ "name": "ErrorComponentServiceNewWalletAddressZero",
149
+ "type": "error"
150
+ },
151
+ {
152
+ "inputs": [
153
+ {
154
+ "internalType": "address",
155
+ "name": "component",
156
+ "type": "address"
157
+ }
158
+ ],
159
+ "name": "ErrorComponentServiceNotComponent",
160
+ "type": "error"
161
+ },
162
+ {
163
+ "inputs": [
164
+ {
165
+ "internalType": "address",
166
+ "name": "component",
167
+ "type": "address"
168
+ }
169
+ ],
170
+ "name": "ErrorComponentServiceNotInstanceLinkedComponent",
171
+ "type": "error"
172
+ },
173
+ {
174
+ "inputs": [
175
+ {
176
+ "internalType": "address",
177
+ "name": "product",
178
+ "type": "address"
179
+ }
180
+ ],
181
+ "name": "ErrorComponentServiceNotProduct",
182
+ "type": "error"
183
+ },
184
+ {
185
+ "inputs": [
186
+ {
187
+ "internalType": "address",
188
+ "name": "token",
189
+ "type": "address"
190
+ }
191
+ ],
192
+ "name": "ErrorComponentServiceTokenInvalid",
193
+ "type": "error"
194
+ },
195
+ {
196
+ "inputs": [],
197
+ "name": "ErrorComponentServiceWalletAddressIsSameAsCurrent",
198
+ "type": "error"
199
+ },
200
+ {
201
+ "inputs": [],
202
+ "name": "ErrorComponentServiceWalletAddressZero",
203
+ "type": "error"
204
+ },
205
+ {
206
+ "inputs": [
207
+ {
208
+ "internalType": "address",
209
+ "name": "wallet",
210
+ "type": "address"
211
+ },
212
+ {
213
+ "internalType": "address",
214
+ "name": "spender",
215
+ "type": "address"
216
+ },
217
+ {
218
+ "internalType": "uint256",
219
+ "name": "allowance",
220
+ "type": "uint256"
221
+ },
222
+ {
223
+ "internalType": "uint256",
224
+ "name": "amount",
225
+ "type": "uint256"
226
+ }
227
+ ],
228
+ "name": "ErrorComponentServiceWalletAllowanceTooSmall",
229
+ "type": "error"
230
+ },
231
+ {
232
+ "inputs": [
233
+ {
234
+ "internalType": "Amount",
235
+ "name": "withdrawnAmount",
236
+ "type": "uint96"
237
+ },
238
+ {
239
+ "internalType": "Amount",
240
+ "name": "withdrawLimit",
241
+ "type": "uint96"
242
+ }
243
+ ],
244
+ "name": "ErrorComponentServiceWithdrawAmountExceedsLimit",
245
+ "type": "error"
246
+ },
247
+ {
248
+ "inputs": [],
249
+ "name": "ErrorComponentServiceWithdrawAmountIsZero",
250
+ "type": "error"
251
+ },
252
+ {
253
+ "inputs": [
254
+ {
255
+ "internalType": "NftId",
256
+ "name": "nftId",
257
+ "type": "uint96"
258
+ }
259
+ ],
260
+ "name": "ErrorNftOwnableAlreadyLinked",
261
+ "type": "error"
262
+ },
263
+ {
264
+ "inputs": [
265
+ {
266
+ "internalType": "address",
267
+ "name": "contractAddress",
268
+ "type": "address"
269
+ }
270
+ ],
271
+ "name": "ErrorNftOwnableContractNotRegistered",
272
+ "type": "error"
273
+ },
274
+ {
275
+ "inputs": [],
276
+ "name": "ErrorNftOwnableInitialOwnerZero",
277
+ "type": "error"
278
+ },
279
+ {
280
+ "inputs": [
281
+ {
282
+ "internalType": "NftId",
283
+ "name": "nftId",
284
+ "type": "uint96"
285
+ },
286
+ {
287
+ "internalType": "ObjectType",
288
+ "name": "expectedObjectType",
289
+ "type": "uint8"
290
+ }
291
+ ],
292
+ "name": "ErrorNftOwnableInvalidType",
293
+ "type": "error"
294
+ },
295
+ {
296
+ "inputs": [
297
+ {
298
+ "internalType": "address",
299
+ "name": "account",
300
+ "type": "address"
301
+ }
302
+ ],
303
+ "name": "ErrorNftOwnableNotOwner",
304
+ "type": "error"
305
+ },
306
+ {
307
+ "inputs": [
308
+ {
309
+ "internalType": "address",
310
+ "name": "registryAddress",
311
+ "type": "address"
312
+ }
313
+ ],
314
+ "name": "ErrorNotRegistry",
315
+ "type": "error"
316
+ },
317
+ {
318
+ "inputs": [
319
+ {
320
+ "internalType": "NftId",
321
+ "name": "productNftId",
322
+ "type": "uint96"
323
+ },
324
+ {
325
+ "internalType": "NftId",
326
+ "name": "distributionNftId",
327
+ "type": "uint96"
328
+ }
329
+ ],
330
+ "name": "ErrorProductServiceDistributionAlreadyRegistered",
331
+ "type": "error"
332
+ },
333
+ {
334
+ "inputs": [
335
+ {
336
+ "internalType": "NftId",
337
+ "name": "productNftId",
338
+ "type": "uint96"
339
+ }
340
+ ],
341
+ "name": "ErrorProductServiceNoDistributionExpected",
342
+ "type": "error"
343
+ },
344
+ {
345
+ "inputs": [
346
+ {
347
+ "internalType": "NftId",
348
+ "name": "productNftId",
349
+ "type": "uint96"
350
+ }
351
+ ],
352
+ "name": "ErrorProductServiceNoOraclesExpected",
353
+ "type": "error"
354
+ },
355
+ {
356
+ "inputs": [
357
+ {
358
+ "internalType": "NftId",
359
+ "name": "productNftId",
360
+ "type": "uint96"
361
+ },
362
+ {
363
+ "internalType": "uint8",
364
+ "name": "expectedOracles",
365
+ "type": "uint8"
366
+ }
367
+ ],
368
+ "name": "ErrorProductServiceOraclesAlreadyRegistered",
369
+ "type": "error"
370
+ },
371
+ {
372
+ "inputs": [
373
+ {
374
+ "internalType": "NftId",
375
+ "name": "productNftId",
376
+ "type": "uint96"
377
+ },
378
+ {
379
+ "internalType": "NftId",
380
+ "name": "poolNftId",
381
+ "type": "uint96"
382
+ }
383
+ ],
384
+ "name": "ErrorProductServicePoolAlreadyRegistered",
385
+ "type": "error"
386
+ },
387
+ {
388
+ "inputs": [],
389
+ "name": "ErrorRegisterableNotActive",
390
+ "type": "error"
391
+ },
392
+ {
393
+ "inputs": [],
394
+ "name": "ErrorVersionableInitializeNotImplemented",
395
+ "type": "error"
396
+ },
397
+ {
398
+ "inputs": [],
399
+ "name": "ErrorVersionableUpgradeNotImplemented",
400
+ "type": "error"
401
+ },
402
+ {
403
+ "inputs": [],
404
+ "name": "InvalidInitialization",
405
+ "type": "error"
406
+ },
407
+ {
408
+ "inputs": [],
409
+ "name": "NotInitializing",
410
+ "type": "error"
411
+ },
412
+ {
413
+ "inputs": [],
414
+ "name": "ReentrancyGuardReentrantCall",
415
+ "type": "error"
416
+ },
417
+ {
418
+ "anonymous": false,
419
+ "inputs": [
420
+ {
421
+ "indexed": false,
422
+ "internalType": "address",
423
+ "name": "authority",
424
+ "type": "address"
425
+ }
426
+ ],
427
+ "name": "AuthorityUpdated",
428
+ "type": "event"
429
+ },
430
+ {
431
+ "anonymous": false,
432
+ "inputs": [
433
+ {
434
+ "indexed": false,
435
+ "internalType": "uint64",
436
+ "name": "version",
437
+ "type": "uint64"
438
+ }
439
+ ],
440
+ "name": "Initialized",
441
+ "type": "event"
442
+ },
443
+ {
444
+ "anonymous": false,
445
+ "inputs": [
446
+ {
447
+ "indexed": false,
448
+ "internalType": "NftId",
449
+ "name": "componentNftId",
450
+ "type": "uint96"
451
+ },
452
+ {
453
+ "indexed": false,
454
+ "internalType": "address",
455
+ "name": "recipient",
456
+ "type": "address"
457
+ },
458
+ {
459
+ "indexed": false,
460
+ "internalType": "address",
461
+ "name": "token",
462
+ "type": "address"
463
+ },
464
+ {
465
+ "indexed": false,
466
+ "internalType": "Amount",
467
+ "name": "withdrawnAmount",
468
+ "type": "uint96"
469
+ }
470
+ ],
471
+ "name": "LogComponentServiceComponentFeesWithdrawn",
472
+ "type": "event"
473
+ },
474
+ {
475
+ "anonymous": false,
476
+ "inputs": [
477
+ {
478
+ "indexed": false,
479
+ "internalType": "address",
480
+ "name": "component",
481
+ "type": "address"
482
+ },
483
+ {
484
+ "indexed": false,
485
+ "internalType": "bool",
486
+ "name": "locked",
487
+ "type": "bool"
488
+ }
489
+ ],
490
+ "name": "LogComponentServiceComponentLocked",
491
+ "type": "event"
492
+ },
493
+ {
494
+ "anonymous": false,
495
+ "inputs": [
496
+ {
497
+ "indexed": true,
498
+ "internalType": "NftId",
499
+ "name": "distributionNftId",
500
+ "type": "uint96"
501
+ },
502
+ {
503
+ "indexed": true,
504
+ "internalType": "NftId",
505
+ "name": "productNftId",
506
+ "type": "uint96"
507
+ }
508
+ ],
509
+ "name": "LogComponentServiceDistributionCreated",
510
+ "type": "event"
511
+ },
512
+ {
513
+ "anonymous": false,
514
+ "inputs": [
515
+ {
516
+ "indexed": false,
517
+ "internalType": "NftId",
518
+ "name": "distributionNftId",
519
+ "type": "uint96"
520
+ }
521
+ ],
522
+ "name": "LogComponentServiceDistributionFeesUpdated",
523
+ "type": "event"
524
+ },
525
+ {
526
+ "anonymous": false,
527
+ "inputs": [
528
+ {
529
+ "indexed": true,
530
+ "internalType": "NftId",
531
+ "name": "oracleNftId",
532
+ "type": "uint96"
533
+ },
534
+ {
535
+ "indexed": true,
536
+ "internalType": "NftId",
537
+ "name": "productNftId",
538
+ "type": "uint96"
539
+ }
540
+ ],
541
+ "name": "LogComponentServiceOracleCreated",
542
+ "type": "event"
543
+ },
544
+ {
545
+ "anonymous": false,
546
+ "inputs": [
547
+ {
548
+ "indexed": true,
549
+ "internalType": "NftId",
550
+ "name": "poolNftId",
551
+ "type": "uint96"
552
+ },
553
+ {
554
+ "indexed": true,
555
+ "internalType": "NftId",
556
+ "name": "productNftId",
557
+ "type": "uint96"
558
+ },
559
+ {
560
+ "indexed": true,
561
+ "internalType": "address",
562
+ "name": "componentAddress",
563
+ "type": "address"
564
+ },
565
+ {
566
+ "indexed": false,
567
+ "internalType": "Amount",
568
+ "name": "maxBalanceAmount",
569
+ "type": "uint96"
570
+ },
571
+ {
572
+ "indexed": false,
573
+ "internalType": "UFixed",
574
+ "name": "collateralizationLevel",
575
+ "type": "uint160"
576
+ },
577
+ {
578
+ "indexed": false,
579
+ "internalType": "UFixed",
580
+ "name": "retentionLevel",
581
+ "type": "uint160"
582
+ },
583
+ {
584
+ "indexed": false,
585
+ "internalType": "bool",
586
+ "name": "isExternallyManaged",
587
+ "type": "bool"
588
+ },
589
+ {
590
+ "indexed": false,
591
+ "internalType": "bool",
592
+ "name": "isVerifyingApplications",
593
+ "type": "bool"
594
+ }
595
+ ],
596
+ "name": "LogComponentServicePoolCreated",
597
+ "type": "event"
598
+ },
599
+ {
600
+ "anonymous": false,
601
+ "inputs": [
602
+ {
603
+ "indexed": false,
604
+ "internalType": "NftId",
605
+ "name": "poolNftId",
606
+ "type": "uint96"
607
+ }
608
+ ],
609
+ "name": "LogComponentServicePoolFeesUpdated",
610
+ "type": "event"
611
+ },
612
+ {
613
+ "anonymous": false,
614
+ "inputs": [
615
+ {
616
+ "indexed": true,
617
+ "internalType": "NftId",
618
+ "name": "productNftId",
619
+ "type": "uint96"
620
+ },
621
+ {
622
+ "indexed": true,
623
+ "internalType": "address",
624
+ "name": "productAddress",
625
+ "type": "address"
626
+ },
627
+ {
628
+ "indexed": true,
629
+ "internalType": "bool",
630
+ "name": "hasDistribution",
631
+ "type": "bool"
632
+ },
633
+ {
634
+ "indexed": false,
635
+ "internalType": "uint8",
636
+ "name": "expectedNumberOfOracles",
637
+ "type": "uint8"
638
+ }
639
+ ],
640
+ "name": "LogComponentServiceProductCreated",
641
+ "type": "event"
642
+ },
643
+ {
644
+ "anonymous": false,
645
+ "inputs": [
646
+ {
647
+ "indexed": false,
648
+ "internalType": "NftId",
649
+ "name": "productNftId",
650
+ "type": "uint96"
651
+ }
652
+ ],
653
+ "name": "LogComponentServiceProductFeesUpdated",
654
+ "type": "event"
655
+ },
656
+ {
657
+ "anonymous": false,
658
+ "inputs": [
659
+ {
660
+ "indexed": true,
661
+ "internalType": "NftId",
662
+ "name": "productNftId",
663
+ "type": "uint96"
664
+ },
665
+ {
666
+ "indexed": true,
667
+ "internalType": "Amount",
668
+ "name": "distributionFeeFixed",
669
+ "type": "uint96"
670
+ },
671
+ {
672
+ "indexed": true,
673
+ "internalType": "UFixed",
674
+ "name": "distributionFeeFractional",
675
+ "type": "uint160"
676
+ },
677
+ {
678
+ "indexed": false,
679
+ "internalType": "Amount",
680
+ "name": "minDistributionOwnerFeeFixed",
681
+ "type": "uint96"
682
+ },
683
+ {
684
+ "indexed": false,
685
+ "internalType": "UFixed",
686
+ "name": "minDistributionOwnerFeeFractional",
687
+ "type": "uint160"
688
+ }
689
+ ],
690
+ "name": "LogComponentServiceProductInitialDistributionFeesSet",
691
+ "type": "event"
692
+ },
693
+ {
694
+ "anonymous": false,
695
+ "inputs": [
696
+ {
697
+ "indexed": true,
698
+ "internalType": "NftId",
699
+ "name": "productNftId",
700
+ "type": "uint96"
701
+ },
702
+ {
703
+ "indexed": true,
704
+ "internalType": "Amount",
705
+ "name": "poolFeeFixed",
706
+ "type": "uint96"
707
+ },
708
+ {
709
+ "indexed": true,
710
+ "internalType": "UFixed",
711
+ "name": "poolFeeFractional",
712
+ "type": "uint160"
713
+ },
714
+ {
715
+ "indexed": false,
716
+ "internalType": "Amount",
717
+ "name": "stakingFeeFixed",
718
+ "type": "uint96"
719
+ },
720
+ {
721
+ "indexed": false,
722
+ "internalType": "UFixed",
723
+ "name": "stakingFeeFractional",
724
+ "type": "uint160"
725
+ },
726
+ {
727
+ "indexed": false,
728
+ "internalType": "Amount",
729
+ "name": "performanceFeeFixed",
730
+ "type": "uint96"
731
+ },
732
+ {
733
+ "indexed": false,
734
+ "internalType": "UFixed",
735
+ "name": "performanceFeeFractional",
736
+ "type": "uint160"
737
+ }
738
+ ],
739
+ "name": "LogComponentServiceProductInitialPoolFeesSet",
740
+ "type": "event"
741
+ },
742
+ {
743
+ "anonymous": false,
744
+ "inputs": [
745
+ {
746
+ "indexed": true,
747
+ "internalType": "NftId",
748
+ "name": "productNftId",
749
+ "type": "uint96"
750
+ },
751
+ {
752
+ "indexed": true,
753
+ "internalType": "Amount",
754
+ "name": "productFeeFixed",
755
+ "type": "uint96"
756
+ },
757
+ {
758
+ "indexed": true,
759
+ "internalType": "UFixed",
760
+ "name": "productFeeFractional",
761
+ "type": "uint160"
762
+ },
763
+ {
764
+ "indexed": false,
765
+ "internalType": "Amount",
766
+ "name": "processingFeeFixed",
767
+ "type": "uint96"
768
+ },
769
+ {
770
+ "indexed": false,
771
+ "internalType": "UFixed",
772
+ "name": "processingFeeFractional",
773
+ "type": "uint160"
774
+ }
775
+ ],
776
+ "name": "LogComponentServiceProductInitialProductFeesSet",
777
+ "type": "event"
778
+ },
779
+ {
780
+ "anonymous": false,
781
+ "inputs": [
782
+ {
783
+ "indexed": false,
784
+ "internalType": "NftId",
785
+ "name": "instanceNftId",
786
+ "type": "uint96"
787
+ },
788
+ {
789
+ "indexed": false,
790
+ "internalType": "NftId",
791
+ "name": "componentNftId",
792
+ "type": "uint96"
793
+ },
794
+ {
795
+ "indexed": false,
796
+ "internalType": "ObjectType",
797
+ "name": "componentType",
798
+ "type": "uint8"
799
+ },
800
+ {
801
+ "indexed": false,
802
+ "internalType": "address",
803
+ "name": "component",
804
+ "type": "address"
805
+ },
806
+ {
807
+ "indexed": false,
808
+ "internalType": "address",
809
+ "name": "token",
810
+ "type": "address"
811
+ },
812
+ {
813
+ "indexed": false,
814
+ "internalType": "address",
815
+ "name": "initialOwner",
816
+ "type": "address"
817
+ }
818
+ ],
819
+ "name": "LogComponentServiceRegistered",
820
+ "type": "event"
821
+ },
822
+ {
823
+ "anonymous": false,
824
+ "inputs": [
825
+ {
826
+ "indexed": false,
827
+ "internalType": "NftId",
828
+ "name": "componentNftId",
829
+ "type": "uint96"
830
+ },
831
+ {
832
+ "indexed": false,
833
+ "internalType": "address",
834
+ "name": "tokenHandler",
835
+ "type": "address"
836
+ },
837
+ {
838
+ "indexed": false,
839
+ "internalType": "address",
840
+ "name": "token",
841
+ "type": "address"
842
+ }
843
+ ],
844
+ "name": "LogComponentServiceTokenHandlerDeployed",
845
+ "type": "event"
846
+ },
847
+ {
848
+ "anonymous": false,
849
+ "inputs": [
850
+ {
851
+ "indexed": false,
852
+ "internalType": "NftId",
853
+ "name": "nftId",
854
+ "type": "uint96"
855
+ },
856
+ {
857
+ "indexed": false,
858
+ "internalType": "string",
859
+ "name": "feeName",
860
+ "type": "string"
861
+ },
862
+ {
863
+ "indexed": false,
864
+ "internalType": "UFixed",
865
+ "name": "previousFractionalFee",
866
+ "type": "uint160"
867
+ },
868
+ {
869
+ "indexed": false,
870
+ "internalType": "Amount",
871
+ "name": "previousFixedFee",
872
+ "type": "uint96"
873
+ },
874
+ {
875
+ "indexed": false,
876
+ "internalType": "UFixed",
877
+ "name": "newFractionalFee",
878
+ "type": "uint160"
879
+ },
880
+ {
881
+ "indexed": false,
882
+ "internalType": "Amount",
883
+ "name": "newFixedFee",
884
+ "type": "uint96"
885
+ }
886
+ ],
887
+ "name": "LogComponentServiceUpdateFee",
888
+ "type": "event"
889
+ },
890
+ {
891
+ "anonymous": false,
892
+ "inputs": [
893
+ {
894
+ "indexed": false,
895
+ "internalType": "NftId",
896
+ "name": "nftId",
897
+ "type": "uint96"
898
+ },
899
+ {
900
+ "indexed": false,
901
+ "internalType": "address",
902
+ "name": "owner",
903
+ "type": "address"
904
+ }
905
+ ],
906
+ "name": "LogNftOwnableNftLinkedToAddress",
907
+ "type": "event"
908
+ },
909
+ {
910
+ "inputs": [],
911
+ "name": "NFT_OWNABLE_STORAGE_LOCATION_V1",
912
+ "outputs": [
913
+ {
914
+ "internalType": "bytes32",
915
+ "name": "",
916
+ "type": "bytes32"
917
+ }
918
+ ],
919
+ "stateMutability": "view",
920
+ "type": "function"
921
+ },
922
+ {
923
+ "inputs": [],
924
+ "name": "REGISTERABLE_LOCATION_V1",
925
+ "outputs": [
926
+ {
927
+ "internalType": "bytes32",
928
+ "name": "",
929
+ "type": "bytes32"
930
+ }
931
+ ],
932
+ "stateMutability": "view",
933
+ "type": "function"
934
+ },
935
+ {
936
+ "inputs": [
937
+ {
938
+ "internalType": "contract IERC20Metadata",
939
+ "name": "token",
940
+ "type": "address"
941
+ },
942
+ {
943
+ "internalType": "Amount",
944
+ "name": "amount",
945
+ "type": "uint96"
946
+ }
947
+ ],
948
+ "name": "approveTokenHandler",
949
+ "outputs": [],
950
+ "stateMutability": "nonpayable",
951
+ "type": "function"
952
+ },
953
+ {
954
+ "inputs": [],
955
+ "name": "authority",
956
+ "outputs": [
957
+ {
958
+ "internalType": "address",
959
+ "name": "",
960
+ "type": "address"
961
+ }
962
+ ],
963
+ "stateMutability": "view",
964
+ "type": "function"
965
+ },
966
+ {
967
+ "inputs": [],
968
+ "name": "getDomain",
969
+ "outputs": [
970
+ {
971
+ "internalType": "ObjectType",
972
+ "name": "serviceDomain",
973
+ "type": "uint8"
974
+ }
975
+ ],
976
+ "stateMutability": "pure",
977
+ "type": "function"
978
+ },
979
+ {
980
+ "inputs": [],
981
+ "name": "getInitialInfo",
982
+ "outputs": [
983
+ {
984
+ "components": [
985
+ {
986
+ "internalType": "NftId",
987
+ "name": "nftId",
988
+ "type": "uint96"
989
+ },
990
+ {
991
+ "internalType": "NftId",
992
+ "name": "parentNftId",
993
+ "type": "uint96"
994
+ },
995
+ {
996
+ "internalType": "ObjectType",
997
+ "name": "objectType",
998
+ "type": "uint8"
999
+ },
1000
+ {
1001
+ "internalType": "bool",
1002
+ "name": "isInterceptor",
1003
+ "type": "bool"
1004
+ },
1005
+ {
1006
+ "internalType": "address",
1007
+ "name": "objectAddress",
1008
+ "type": "address"
1009
+ },
1010
+ {
1011
+ "internalType": "address",
1012
+ "name": "initialOwner",
1013
+ "type": "address"
1014
+ },
1015
+ {
1016
+ "internalType": "bytes",
1017
+ "name": "data",
1018
+ "type": "bytes"
1019
+ }
1020
+ ],
1021
+ "internalType": "struct IRegistry.ObjectInfo",
1022
+ "name": "info",
1023
+ "type": "tuple"
1024
+ }
1025
+ ],
1026
+ "stateMutability": "view",
1027
+ "type": "function"
1028
+ },
1029
+ {
1030
+ "inputs": [],
1031
+ "name": "getNftId",
1032
+ "outputs": [
1033
+ {
1034
+ "internalType": "NftId",
1035
+ "name": "",
1036
+ "type": "uint96"
1037
+ }
1038
+ ],
1039
+ "stateMutability": "view",
1040
+ "type": "function"
1041
+ },
1042
+ {
1043
+ "inputs": [],
1044
+ "name": "getOwner",
1045
+ "outputs": [
1046
+ {
1047
+ "internalType": "address",
1048
+ "name": "",
1049
+ "type": "address"
1050
+ }
1051
+ ],
1052
+ "stateMutability": "view",
1053
+ "type": "function"
1054
+ },
1055
+ {
1056
+ "inputs": [],
1057
+ "name": "getRegistry",
1058
+ "outputs": [
1059
+ {
1060
+ "internalType": "contract IRegistry",
1061
+ "name": "",
1062
+ "type": "address"
1063
+ }
1064
+ ],
1065
+ "stateMutability": "view",
1066
+ "type": "function"
1067
+ },
1068
+ {
1069
+ "inputs": [],
1070
+ "name": "getRelease",
1071
+ "outputs": [
1072
+ {
1073
+ "internalType": "VersionPart",
1074
+ "name": "release",
1075
+ "type": "uint8"
1076
+ }
1077
+ ],
1078
+ "stateMutability": "view",
1079
+ "type": "function"
1080
+ },
1081
+ {
1082
+ "inputs": [],
1083
+ "name": "getRoleId",
1084
+ "outputs": [
1085
+ {
1086
+ "internalType": "RoleId",
1087
+ "name": "serviceRoleId",
1088
+ "type": "uint64"
1089
+ }
1090
+ ],
1091
+ "stateMutability": "view",
1092
+ "type": "function"
1093
+ },
1094
+ {
1095
+ "inputs": [],
1096
+ "name": "getVersion",
1097
+ "outputs": [
1098
+ {
1099
+ "internalType": "Version",
1100
+ "name": "",
1101
+ "type": "uint24"
1102
+ }
1103
+ ],
1104
+ "stateMutability": "pure",
1105
+ "type": "function"
1106
+ },
1107
+ {
1108
+ "inputs": [
1109
+ {
1110
+ "internalType": "address",
1111
+ "name": "activatedBy",
1112
+ "type": "address"
1113
+ },
1114
+ {
1115
+ "internalType": "bytes",
1116
+ "name": "data",
1117
+ "type": "bytes"
1118
+ }
1119
+ ],
1120
+ "name": "initializeVersionable",
1121
+ "outputs": [],
1122
+ "stateMutability": "nonpayable",
1123
+ "type": "function"
1124
+ },
1125
+ {
1126
+ "inputs": [],
1127
+ "name": "isActive",
1128
+ "outputs": [
1129
+ {
1130
+ "internalType": "bool",
1131
+ "name": "active",
1132
+ "type": "bool"
1133
+ }
1134
+ ],
1135
+ "stateMutability": "view",
1136
+ "type": "function"
1137
+ },
1138
+ {
1139
+ "inputs": [],
1140
+ "name": "isConsumingScheduledOp",
1141
+ "outputs": [
1142
+ {
1143
+ "internalType": "bytes4",
1144
+ "name": "",
1145
+ "type": "bytes4"
1146
+ }
1147
+ ],
1148
+ "stateMutability": "view",
1149
+ "type": "function"
1150
+ },
1151
+ {
1152
+ "inputs": [],
1153
+ "name": "linkToRegisteredNftId",
1154
+ "outputs": [
1155
+ {
1156
+ "internalType": "NftId",
1157
+ "name": "nftId",
1158
+ "type": "uint96"
1159
+ }
1160
+ ],
1161
+ "stateMutability": "nonpayable",
1162
+ "type": "function"
1163
+ },
1164
+ {
1165
+ "inputs": [
1166
+ {
1167
+ "internalType": "address",
1168
+ "name": "componentAddress",
1169
+ "type": "address"
1170
+ }
1171
+ ],
1172
+ "name": "registerComponent",
1173
+ "outputs": [
1174
+ {
1175
+ "internalType": "NftId",
1176
+ "name": "componentNftId",
1177
+ "type": "uint96"
1178
+ }
1179
+ ],
1180
+ "stateMutability": "nonpayable",
1181
+ "type": "function"
1182
+ },
1183
+ {
1184
+ "inputs": [
1185
+ {
1186
+ "internalType": "address",
1187
+ "name": "productAddress",
1188
+ "type": "address"
1189
+ },
1190
+ {
1191
+ "internalType": "address",
1192
+ "name": "token",
1193
+ "type": "address"
1194
+ }
1195
+ ],
1196
+ "name": "registerProduct",
1197
+ "outputs": [
1198
+ {
1199
+ "internalType": "NftId",
1200
+ "name": "productNftId",
1201
+ "type": "uint96"
1202
+ }
1203
+ ],
1204
+ "stateMutability": "nonpayable",
1205
+ "type": "function"
1206
+ },
1207
+ {
1208
+ "inputs": [
1209
+ {
1210
+ "internalType": "address",
1211
+ "name": "newAuthority",
1212
+ "type": "address"
1213
+ }
1214
+ ],
1215
+ "name": "setAuthority",
1216
+ "outputs": [],
1217
+ "stateMutability": "nonpayable",
1218
+ "type": "function"
1219
+ },
1220
+ {
1221
+ "inputs": [
1222
+ {
1223
+ "components": [
1224
+ {
1225
+ "internalType": "UFixed",
1226
+ "name": "fractionalFee",
1227
+ "type": "uint160"
1228
+ },
1229
+ {
1230
+ "internalType": "Amount",
1231
+ "name": "fixedFee",
1232
+ "type": "uint96"
1233
+ }
1234
+ ],
1235
+ "internalType": "struct Fee",
1236
+ "name": "distributionFee",
1237
+ "type": "tuple"
1238
+ },
1239
+ {
1240
+ "components": [
1241
+ {
1242
+ "internalType": "UFixed",
1243
+ "name": "fractionalFee",
1244
+ "type": "uint160"
1245
+ },
1246
+ {
1247
+ "internalType": "Amount",
1248
+ "name": "fixedFee",
1249
+ "type": "uint96"
1250
+ }
1251
+ ],
1252
+ "internalType": "struct Fee",
1253
+ "name": "minDistributionOwnerFee",
1254
+ "type": "tuple"
1255
+ }
1256
+ ],
1257
+ "name": "setDistributionFees",
1258
+ "outputs": [],
1259
+ "stateMutability": "nonpayable",
1260
+ "type": "function"
1261
+ },
1262
+ {
1263
+ "inputs": [
1264
+ {
1265
+ "internalType": "bool",
1266
+ "name": "locked",
1267
+ "type": "bool"
1268
+ }
1269
+ ],
1270
+ "name": "setLocked",
1271
+ "outputs": [],
1272
+ "stateMutability": "nonpayable",
1273
+ "type": "function"
1274
+ },
1275
+ {
1276
+ "inputs": [
1277
+ {
1278
+ "components": [
1279
+ {
1280
+ "internalType": "UFixed",
1281
+ "name": "fractionalFee",
1282
+ "type": "uint160"
1283
+ },
1284
+ {
1285
+ "internalType": "Amount",
1286
+ "name": "fixedFee",
1287
+ "type": "uint96"
1288
+ }
1289
+ ],
1290
+ "internalType": "struct Fee",
1291
+ "name": "poolFee",
1292
+ "type": "tuple"
1293
+ },
1294
+ {
1295
+ "components": [
1296
+ {
1297
+ "internalType": "UFixed",
1298
+ "name": "fractionalFee",
1299
+ "type": "uint160"
1300
+ },
1301
+ {
1302
+ "internalType": "Amount",
1303
+ "name": "fixedFee",
1304
+ "type": "uint96"
1305
+ }
1306
+ ],
1307
+ "internalType": "struct Fee",
1308
+ "name": "stakingFee",
1309
+ "type": "tuple"
1310
+ },
1311
+ {
1312
+ "components": [
1313
+ {
1314
+ "internalType": "UFixed",
1315
+ "name": "fractionalFee",
1316
+ "type": "uint160"
1317
+ },
1318
+ {
1319
+ "internalType": "Amount",
1320
+ "name": "fixedFee",
1321
+ "type": "uint96"
1322
+ }
1323
+ ],
1324
+ "internalType": "struct Fee",
1325
+ "name": "performanceFee",
1326
+ "type": "tuple"
1327
+ }
1328
+ ],
1329
+ "name": "setPoolFees",
1330
+ "outputs": [],
1331
+ "stateMutability": "nonpayable",
1332
+ "type": "function"
1333
+ },
1334
+ {
1335
+ "inputs": [
1336
+ {
1337
+ "components": [
1338
+ {
1339
+ "internalType": "UFixed",
1340
+ "name": "fractionalFee",
1341
+ "type": "uint160"
1342
+ },
1343
+ {
1344
+ "internalType": "Amount",
1345
+ "name": "fixedFee",
1346
+ "type": "uint96"
1347
+ }
1348
+ ],
1349
+ "internalType": "struct Fee",
1350
+ "name": "productFee",
1351
+ "type": "tuple"
1352
+ },
1353
+ {
1354
+ "components": [
1355
+ {
1356
+ "internalType": "UFixed",
1357
+ "name": "fractionalFee",
1358
+ "type": "uint160"
1359
+ },
1360
+ {
1361
+ "internalType": "Amount",
1362
+ "name": "fixedFee",
1363
+ "type": "uint96"
1364
+ }
1365
+ ],
1366
+ "internalType": "struct Fee",
1367
+ "name": "processingFee",
1368
+ "type": "tuple"
1369
+ }
1370
+ ],
1371
+ "name": "setProductFees",
1372
+ "outputs": [],
1373
+ "stateMutability": "nonpayable",
1374
+ "type": "function"
1375
+ },
1376
+ {
1377
+ "inputs": [
1378
+ {
1379
+ "internalType": "address",
1380
+ "name": "newWallet",
1381
+ "type": "address"
1382
+ }
1383
+ ],
1384
+ "name": "setWallet",
1385
+ "outputs": [],
1386
+ "stateMutability": "nonpayable",
1387
+ "type": "function"
1388
+ },
1389
+ {
1390
+ "inputs": [
1391
+ {
1392
+ "internalType": "bytes4",
1393
+ "name": "interfaceId",
1394
+ "type": "bytes4"
1395
+ }
1396
+ ],
1397
+ "name": "supportsInterface",
1398
+ "outputs": [
1399
+ {
1400
+ "internalType": "bool",
1401
+ "name": "",
1402
+ "type": "bool"
1403
+ }
1404
+ ],
1405
+ "stateMutability": "view",
1406
+ "type": "function"
1407
+ },
1408
+ {
1409
+ "inputs": [
1410
+ {
1411
+ "internalType": "bytes",
1412
+ "name": "data",
1413
+ "type": "bytes"
1414
+ }
1415
+ ],
1416
+ "name": "upgradeVersionable",
1417
+ "outputs": [],
1418
+ "stateMutability": "nonpayable",
1419
+ "type": "function"
1420
+ },
1421
+ {
1422
+ "inputs": [
1423
+ {
1424
+ "internalType": "Amount",
1425
+ "name": "amount",
1426
+ "type": "uint96"
1427
+ }
1428
+ ],
1429
+ "name": "withdrawFees",
1430
+ "outputs": [
1431
+ {
1432
+ "internalType": "Amount",
1433
+ "name": "withdrawnAmount",
1434
+ "type": "uint96"
1435
+ }
1436
+ ],
1437
+ "stateMutability": "nonpayable",
1438
+ "type": "function"
1439
+ }
1440
+ ],
1441
+ "bytecode": "0x6080604052348015600e575f5ffd5b5060156019565b60c9565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff161560685760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b039081161460c65780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b615fa4806100d65f395ff3fe608060405234801561000f575f5ffd5b50600436106101a1575f3560e01c80635d966289116100f35780638fb3603711610093578063bf7e214f1161006e578063bf7e214f146103e1578063cf2f3365146103e9578063deaa59df146103fc578063feff0c911461040f575f5ffd5b80638fb36037146103a5578063ada9652e146103c6578063b68d1809146103da575f5ffd5b80636c741e78116100ce5780636c741e781461035057806376b707b7146103705780637a9e5e4b1461038a578063893d20e81461039d575f5ffd5b80635d9662891461030d5780636078a3b214610320578063644c45e014610333575f5ffd5b8063211e28b61161015e578063419197fe11610139578063419197fe146102af5780634698bf11146102c257806349bb9e4b146102d55780635ab1bd53146102e8575f5ffd5b8063211e28b61461027f57806322f3e2d414610294578063329d6e741461029c575f5ffd5b806301ffc9a7146101a55780630d8e6e2c146101e65780630fec111c14610202578063138461e0146102175780631c6b2190146102375780631eff4b221461024a575b5f5ffd5b6101d16101b3366004614f07565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6101ee610422565b60405162ffffff90911681526020016101dd565b61020a6104a9565b6040516101dd9190614f5c565b61021f610635565b6040516001600160601b0390911681526020016101dd565b61021f610245366004615004565b61063f565b6102717f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b6040519081526020016101dd565b61029261028d36600461502c565b610ba5565b005b6101d1610ccb565b6102926102aa366004615170565b610d42565b6102926102bd3660046151b5565b610e84565b6102926102d036600461522c565b610fdf565b6102926102e3366004615256565b611367565b6001546001600160a01b03165b6040516001600160a01b0390911681526020016101dd565b61021f61031b3660046152a2565b611463565b61021f61032e3660046152ce565b611651565b5f516020615eef5f395f51905f52546001600160601b031661021f565b6103586118a1565b6040516001600160401b0390911681526020016101dd565b61037861192d565b60405160ff90911681526020016101dd565b6102926103983660046152ce565b611995565b6102f5611a17565b6103ad611b48565b6040516001600160e01b031990911681526020016101dd565b6102715f516020615eef5f395f51905f5281565b600b610378565b6102f5611b7d565b6102926103f73660046152e9565b611b98565b61029261040a3660046152ce565b611f61565b61029261041d36600461522c565b6120a2565b604051632efe011360e01b8152600360048201525f60248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af4158015610480573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104a4919061532c565b905090565b6104b1614df2565b5f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610527573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061054b919061535e565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a001610593611a17565b6001600160a01b031681526020018260010180546105b090615379565b80601f01602080910402602001604051908101604052809291908181526020018280546105dc90615379565b80156106275780601f106105fe57610100808354040283529160200191610627565b820191905f5260205f20905b81548152906001019060200180831161060a57829003601f168201915b505050505081525091505090565b5f6104a43061238e565b5f61064c335b5f366125d0565b5f8061065b600b5b60016126ce565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa15801561069c573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106c091906153b1565b604051630232ca4960e01b81526001600160601b03851660048201529091505f906001600160a01b03831690630232ca4990602401602060405180830381865afa158015610710573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610734919061535e565b90508594506107ad8673__$3bac17678db7ae928afa209f2f44deec9c$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af4158015610784573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107a8919061535e565b61285a565b156107b6578094505b604051630a4d29dd60e31b81526001600160601b038616600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906352694ee890602401602060405180830381865af415801561080c573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061083091906153d7565b1561084e5760405163b079ec2b60e01b815260040160405180910390fd5b61085885826128e6565b1561088e5760405163151dbb3f60e01b81526001600160601b038087166004830152821660248201526044015b60405180910390fd5b60025f9054906101000a90046001600160a01b03166001600160a01b031663346696cc846001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156108ed573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061091191906153b1565b6040516001600160e01b031960e084901b1681526001600160a01b0390911660048201526001600160601b038088166024830152881660448201526064015f604051808303815f87803b158015610966575f5ffd5b505af1158015610978573d5f5f3e3d5ffd5b505050505f61098f6001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03871660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa1580156109dc573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a0091906153b1565b60405163a310e2a360e01b81526001600160601b03871660048201529091505f906001600160a01b0385169063a310e2a390602401602060405180830381865afa158015610a50573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a7491906153b1565b90507f694f0f8f2682e6c05697feed9065540f51c00d4510b16dbdb60606c6e5abfde98683836001600160a01b03166382bfefc86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ad5573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610af991906153b1565b604080516001600160601b0394851681526001600160a01b0393841660208201529290911690820152908916606082015260800160405180910390a1604051633fd3433360e01b81526001600160a01b0383811660048301526001600160601b0389166024830152821690633fd34333906044015f604051808303815f87803b158015610b84575f5ffd5b505af1158015610b96573d5f5f3e3d5ffd5b50505050505050505050919050565b610bae33610645565b5f610bba600b5f6126ce565b9150505f339050816001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015610bfd573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c2191906153b1565b604051637170bbc560e01b81526001600160a01b03838116600483015285151560248301529190911690637170bbc5906044015f604051808303815f87803b158015610c6b575f5ffd5b505af1158015610c7d573d5f5f3e3d5ffd5b5050604080516001600160a01b038516815286151560208201527f79b8884bb9dd59f48de5c5e3be7f11aab42e012f88e92df62e05edc93bd5f26893500190505b60405180910390a1505050565b5f610cd4611b7d565b60405163a166aa8960e01b81523060048201526001600160a01b03919091169063a166aa8990602401602060405180830381865afa158015610d18573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d3c91906153d7565b15905090565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c610d64610422565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015610da2573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610dc69190615411565b5f516020615f4f5f395f51905f528054600160401b900460ff1680610df8575080546001600160401b03808416911610155b15610e165760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155610e4083612930565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001610cbe565b610e8d33610645565b5f80610e99600b610654565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610eda573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610efe91906153b1565b60405163a310e2a360e01b81526001600160601b03851660048201526001600160a01b03919091169063a310e2a390602401602060405180830381865afa158015610f4b573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f6f91906153b1565b60405163ea0b3c7360e01b81526001600160a01b0387811660048301526001600160601b03871660248301529192509082169063ea0b3c73906044015f604051808303815f87803b158015610fc2575f5ffd5b505af1158015610fd4573d5f5f3e3d5ffd5b505050505050505050565b610fe833610645565b610ff0612951565b5f80610ffc600c610654565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa15801561103d573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061106191906153b1565b604051636a05a41360e01b81526001600160601b03851660048201526001600160a01b039190911690636a05a413906024016101c060405180830381865afa1580156110af573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110d39190615461565b805160405162acc93760e61b81529192505f9173__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc09161111191908a9060040161551f565b602060405180830381865af415801561112c573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061115091906153d7565b61118c57611185846040518060400160405280600a81526020016950726f6475637446656560b01b815250845f015189612988565b5084815260015b602082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc0916111c89190899060040161551f565b602060405180830381865af41580156111e3573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061120791906153d7565b61124b57611240846040518060400160405280600d81526020016c50726f63657373696e6746656560981b815250846020015188612988565b506020810184905260015b801561134957826001600160a01b031663b7b02c4e6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561128d573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112b191906153b1565b6001600160a01b031663ebb41c0c85846040518363ffffffff1660e01b81526004016112de92919061553a565b5f604051808303815f87803b1580156112f5575f5ffd5b505af1158015611307573d5f5f3e3d5ffd5b50506040516001600160601b03871681527f385da3b17e82d72dd7e4cbe895c7d7d3fbb4c8768e0866dd69f44581a0ded2bc9250602001905060405180910390a15b5050505061136360015f516020615f2f5f395f51905f5255565b5050565b5f516020615f4f5f395f51905f528054600160401b810460ff1615906001600160401b03165f811580156113985750825b90505f826001600160401b031660011480156113b35750303b155b9050811580156113c1575080155b156113df5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561140957845460ff60401b1916600160401b1785555b61141387876129ee565b831561145a57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15b50505050505050565b5f61146d33610645565b611475612951565b5f6114886001546001600160a01b031690565b90506001600160a01b038116635c0e626433600a6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260ff166024820152604401602060405180830381865afa1580156114e6573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061150a91906153d7565b61152957604051630cfc489360e01b8152336004820152602401610885565b61153284612be4565b61155a57604051633d5ad29b60e01b81526001600160a01b0385166004820152602401610885565b604051632f2a35f760e11b81523360048201819052905f906001600160a01b03841690635e546bee90602401602060405180830381865afa1580156115a1573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115c5919061535e565b90506115d382878388612c6b565b6004805460405163a71bfbb760e01b81529296506001600160a01b03169163a71bfbb7916116059185918a91016155d8565b5f604051808303815f87803b15801561161c575f5ffd5b505af115801561162e573d5f5f3e3d5ffd5b5050505050505061164b60015f516020615f2f5f395f51905f5255565b92915050565b5f61165b33610645565b5f61166e6001546001600160a01b031690565b90506001600160a01b038116635c0e626433600c6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260ff166024820152604401602060405180830381865afa1580156116cc573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116f091906153d7565b61170f57604051633606d55160e01b8152336004820152602401610885565b611718836135e8565b611740576040516359bff0e360e11b81526001600160a01b0384166004820152602401610885565b604051632f2a35f760e11b81523360048201525f906001600160a01b03831690635e546bee90602401602060405180830381865afa158015611784573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117a8919061535e565b60405163677d3feb60e11b81526001600160601b03821660048201529091505f906001600160a01b0384169063bf8e179790829063cefa7fd690602401602060405180830381865afa158015611800573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611824919061535e565b6040516001600160e01b031960e084901b1681526001600160601b039091166004820152602401602060405180830381865afa158015611866573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061188a91906153b1565b90506118988186845f612c6b565b95945050505050565b5f73__$1d92393fa9ccd763988368ce8a1cb90d26$__63645ceefe600b6118c661192d565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865af4158015611909573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104a49190615411565b5f611936611b7d565b6001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015611971573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104a49190615613565b3361199e611b7d565b6001600160a01b0316816001600160a01b0316146119d95760405162d1953b60e31b81526001600160a01b0382166004820152602401610885565b816001600160a01b03163b5f03611a0e576040516361798f2f60e11b81526001600160a01b0383166004820152602401610885565b611363826136f6565b5f805f516020615eef5f395f51905f5280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015611a83573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611aa791906153d7565b15611b32576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611b08573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b2c91906153b1565b91505090565b54600160601b90046001600160a01b0316919050565b5f516020615f0f5f395f51905f5280545f9190600160a01b900460ff16611b6f575f611b2c565b638fb3603760e01b91505090565b5f516020615f0f5f395f51905f52546001600160a01b031690565b611ba133610645565b5f80611bad600f610654565b915091505f5f611c1c836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611bf2573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c1691906153b1565b85613756565b608081015160405162acc93760e61b81529294509092505f9173__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc091611c6091908c9060040161551f565b602060405180830381865af4158015611c7b573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c9f91906153d7565b611cdd57611cd28360405180604001604052806007815260200166506f6f6c46656560c81b81525084608001518b612988565b506080810187905260015b60a082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc091611d1991908b9060040161551f565b602060405180830381865af4158015611d34573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d5891906153d7565b611d9957611d8e836040518060400160405280600a8152602001695374616b696e6746656560b01b8152508460a001518a612988565b5060a0810186905260015b60c082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc091611dd591908a9060040161551f565b602060405180830381865af4158015611df0573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e1491906153d7565b611e5957611e4e836040518060400160405280600e81526020016d506572666f726d616e636546656560901b8152508460c0015189612988565b5060c0810185905260015b8015611f5757836001600160a01b031663b7b02c4e6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e9b573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ebf91906153b1565b6001600160a01b031663ebb41c0c84846040518363ffffffff1660e01b8152600401611eec92919061553a565b5f604051808303815f87803b158015611f03575f5ffd5b505af1158015611f15573d5f5f3e3d5ffd5b50506040516001600160601b03881681527f7a446b749117c015e0932e31190fc133582c9c5151e31209479cc9d21941f0359250602001905060405180910390a15b5050505050505050565b611f6a33610645565b5f80611f76600b610654565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611fb7573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611fdb91906153b1565b60405163a310e2a360e01b81526001600160601b03851660048201526001600160a01b03919091169063a310e2a390602401602060405180830381865afa158015612028573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061204c91906153b1565b60405163deaa59df60e01b81526001600160a01b0386811660048301529192509082169063deaa59df906024015f604051808303815f87803b158015612090575f5ffd5b505af1158015611f57573d5f5f3e3d5ffd5b6120ab33610645565b5f806120b7600e610654565b915091505f5f6120fc836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611bf2573d5f5f3e3d5ffd5b604080820151905162acc93760e61b81529294509092505f9173__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc09161214091908b9060040161551f565b602060405180830381865af415801561215b573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061217f91906153d7565b6121c5576121ba836040518060400160405280600f81526020016e446973747269627574696f6e46656560881b81525084604001518a612988565b506040810186905260015b606082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc09161220191908a9060040161551f565b602060405180830381865af415801561221c573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061224091906153d7565b61229457612289836040518060400160405280601781526020017f4d696e446973747269627574696f6e4f776e6572466565000000000000000000815250846060015189612988565b506060810185905260015b801561145a57836001600160a01b031663b7b02c4e6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156122d6573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122fa91906153b1565b6001600160a01b031663ebb41c0c84846040518363ffffffff1660e01b815260040161232792919061553a565b5f604051808303815f87803b15801561233e575f5ffd5b505af1158015612350573d5f5f3e3d5ffd5b50506040516001600160601b03881681527f37bea7afe3960b639e98d9161b22f53a172300df8ec6ee71fd0a5321dcecd59b92506020019050611451565b5f805f516020615eef5f395f51905f5280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156123fa573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061241e91906153d7565b1561244a5780546040516301ab8b6760e21b81526001600160601b039091166004820152602401610885565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa15801561249c573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906124c091906153d7565b6124e85760405163b9304b0d60e01b81526001600160a01b0384166004820152602401610885565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b0385811660048301529190911690635e546bee90602401602060405180830381865afa15801561253a573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061255e919061535e565b81546bffffffffffffffffffffffff19166001600160601b039190911690811782557f88857b75cbef7f257c9d5a473e28aaf6a91cc28f717f60f2cda3bcf5623d7b54906125aa611a17565b6040516125b89291906155d8565b60405180910390a1546001600160601b031692915050565b5f516020615f0f5f395f51905f525f806126086125eb611b7d565b87306125fa60045f8a8c61562e565b61260391615655565b613858565b91509150816126c65763ffffffff8116156126a357825460ff60a01b1916600160a01b178355612636611b7d565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b81526004016126659392919061568d565b5f604051808303815f87803b15801561267c575f5ffd5b505af115801561268e573d5f5f3e3d5ffd5b5050845460ff60a01b19168555506126c69050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401610885565b505050505050565b5f5f6126d8614df2565b5f6126ec86600b5b60ff9081169116141590565b156127a65773__$fb599632d08395912d9d70eb2f0f93b5e2$__635c990ed361271d6001546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015233602482015260ff8916604482015287151560648201526084015f60405180830381865af4158015612775573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261279c91908101906157ca565b909250905061284e565b73__$fb599632d08395912d9d70eb2f0f93b5e2$__63aa13a9886127d26001546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015233602482015287151560448201526064015f60405180830381865af4158015612821573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261284891908101906157ca565b90925090505b90519590945092505050565b60405163c4cade9d60e01b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063c4cade9d906044015b602060405180830381865af41580156128bb573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128df91906153d7565b9392505050565b604051632601631360e21b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__906398058c4c906044016128a0565b612938613960565b60405163502ec37160e01b815260040160405180910390fd5b5f516020615f2f5f395f51905f5280546001190161298257604051633ee5aeb560e01b815260040160405180910390fd5b60029055565b81516020808401518351918401516040517f17326f60f251bc425d57bf37b0630491536a1e7231c46d08b25915a90c59ee7c946129cd948a948a94929390929061580d565b60405180910390a150505050565b60015f516020615f2f5f395f51905f5255565b5f516020615f4f5f395f51905f528054600160401b810460ff1615906001600160401b03165f81158015612a1f5750825b90505f826001600160401b03166001148015612a3a5750303b155b905081158015612a48575080155b15612a665760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315612a9057845460ff60401b1916600160401b1785555b5f5f87806020019051810190612aa69190615869565b91509150612ab582828b613998565b612abf6028613a3a565b600280546001600160a01b0319166001600160a01b0392909216919091178155612ae890613a3a565b600380546001600160a01b0319166001600160a01b0392909216919091178155612b1190613a3a565b6001600160a01b0316637b1391a66040518163ffffffff1660e01b8152600401602060405180830381865afa158015612b4c573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b7091906153b1565b600480546001600160a01b0319166001600160a01b0392909216919091179055612ba063e8e886d960e01b613acb565b5050831561145a57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001611451565b5f612bee826135e8565b612bf957505f919050565b61164b826001600160a01b0316630fec111c6040518163ffffffff1660e01b81526004015f60405180830381865afa158015612c37573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612c5e9190810190615896565b6040015160ff16600c1490565b5f5f5f612c788686613afe565b915091505f876001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015612cb9573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612cdd91906153b1565b604083015190915060ff8116600c03612ddf5760035460a0840151604051635d96628960e01b81526001600160a01b0387811660048301529182166024820152911690635d966289906044015f604051808303815f875af1158015612d44573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612d6b9190810190615896565b5f01519450612dda896001600160a01b031663b7b02c4e6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612daf573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612dd391906153b1565b868a613df1565b6131b4565b60035460408481015160a08601519151631fa14e4960e11b81526001600160a01b03888116600483015260ff9092166024820152918116604483015290911690633f429c92906064015f604051808303815f875af1158015612e43573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612e6a9190810190615896565b5f015194505f896001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015612eac573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612ed091906153b1565b6040516302d764c760e21b81526001600160601b038a16600482015290915088905f906001600160a01b03841690630b5d931c906024015f60405180830381865afa158015612f21573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612f48919081019061594f565b905060ff8416600f03612fc757612fc2858d6001600160a01b031663b7b02c4e6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612f95573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612fb991906153b1565b848b8f8661428b565b6130e0565b60ff8416600e0361303d57612fc28c6001600160a01b031663b7b02c4e6040518163ffffffff1660e01b8152600401602060405180830381865afa158015613011573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061303591906153b1565b838a84614523565b60ff8416600d036130b357612fc28c6001600160a01b031663b7b02c4e6040518163ffffffff1660e01b8152600401602060405180830381865afa158015613087573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906130ab91906153b1565b838a846146cf565b60405163f0b751ab60e01b81526001600160a01b038c16600482015260ff85166024820152604401610885565b60405163a310e2a360e01b81526001600160601b03831660048201526001600160a01b0384169063a310e2a390602401602060405180830381865afa15801561312b573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061314f91906153b1565b6001600160a01b03166382bfefc86040518163ffffffff1660e01b8152600401602060405180830381865afa15801561318a573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906131ae91906153b1565b98505050505b6131be8987614836565b5f896001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa1580156131fb573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061321f91906153b1565b90505f856001600160a01b031663b423086c6040518163ffffffff1660e01b81526004015f60405180830381865afa15801561325d573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526132849190810190615a31565b905073__$51089c37ca0df1177a910c640c8c5f8165$__6350c6470d6132b26001546001600160a01b031690565b888b866001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156132f0573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061331491906153b1565b60405160e086901b6001600160e01b03191681526001600160a01b039485166004820152928416602484015290831660448301529091166064820152608401602060405180830381865af415801561336e573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061339291906153b1565b6001600160a01b039081166020838101829052604080516001600160601b038c16815291820192909252918a1682820152517f68ed15739e4025a077d4301a5a5894a91ebe66d38c5e861b5f2d325b26bb20549181900360600190a160405163163afaad60e31b81526001600160a01b0385169063b1d7d5689061341c908a908590600401615ac5565b5f604051808303815f87803b158015613433575f5ffd5b505af1158015613445573d5f5f3e3d5ffd5b50505050856001600160a01b031663138461e06040518163ffffffff1660e01b81526004016020604051808303815f875af1158015613486573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906134aa919061535e565b506040516366704a7d60e01b81526001600160a01b038b8116600483015260ff851660248301528316906366704a7d906044015f604051808303815f87803b1580156134f4575f5ffd5b505af1158015613506573d5f5f3e3d5ffd5b505050507f269a46dac9ba8227194b6513fdb68da07796b42aa1d111f1eaec8f2126aed6c68b6001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015613567573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061358b919061535e565b60a080880151604080516001600160601b039485168152938c16602085015260ff8816908401526001600160a01b03808b166060850152808d166080850152169082015260c00160405180910390a1505050505050949350505050565b604051631627905560e01b81526001600160a01b03821660048201525f9073__$fb599632d08395912d9d70eb2f0f93b5e2$__90631627905590602401602060405180830381865af4158015613640573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061366491906153d7565b61366f57505f919050565b60405163d905700760e01b81526001600160a01b03831660048201526330841f2160e21b602482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__9063d905700790604401602060405180830381865af41580156136d2573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061164b91906153d7565b5f516020615f0f5f395f51905f5280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b5f61375f614e2f565b6001546001600160a01b031660405163677d3feb60e11b81526001600160601b03851660048201526001600160a01b03919091169063cefa7fd690602401602060405180830381865afa1580156137b8573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906137dc919061535e565b604051636a05a41360e01b81526001600160601b03821660048201529092506001600160a01b03851690636a05a413906024016101c060405180830381865afa15801561382b573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061384f9190615461565b90509250929050565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b179052516138c69190615b10565b5f60405180830381855afa9150503d805f81146138fe576040519150601f19603f3d011682016040523d82523d5f602084013e613903565b606091505b50915091508115613955576040815110613935578080602001905181019061392b9190615b26565b9094509250613955565b6020815110613955578080602001905181019061395291906153d7565b93505b505094509492505050565b5f516020615f4f5f395f51905f5254600160401b900460ff1661399657604051631afcd79f60e31b815260040160405180910390fd5b565b6139a0613960565b6139a8614aa7565b613a258383846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa1580156139e9573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613a0d919061535e565b60085f8660405180602001604052805f815250614ab7565b613a3563daf9067160e01b613acb565b505050565b5f613a4d6001546001600160a01b031690565b6001600160a01b031663d39e604383613a6461192d565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa158015613aa7573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061164b91906153b1565b613ad3613960565b613afb816001600160e01b0319165f908152602081905260409020805460ff19166001179055565b50565b5f613b07614df2565b839150816001600160a01b0316630fec111c6040518163ffffffff1660e01b81526004015f60405180830381865afa158015613b45573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613b6c9190810190615896565b9050613b7c816020015184614bf4565b15613bc257602081015160405163953133f160e01b81526001600160a01b03861660048201526001600160601b0380861660248301529091166044820152606401610885565b613c2d826001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015613c01573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613c259190615613565b6126e061192d565b15613cd05783613c3b61192d565b836001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015613c77573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613c9b9190615613565b60405163459d07b760e11b81526001600160a01b03909316600484015260ff9182166024840152166044820152606401610885565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b0386811660048301529190911690635e546bee90602401602060405180830381865afa158015613d22573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613d46919061535e565b6040516330b8415f60e01b81526001600160601b03909116600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015613d9d573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613dc191906153d7565b15613dea57604051632176772160e11b81526001600160a01b0385166004820152602401610885565b9250929050565b5f8190505f816001600160a01b031663c108bd4c6040518163ffffffff1660e01b81526004015f60405180830381865afa158015613e31573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613e58919081019061594f565b905073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015613ea1573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613ec5919061535e565b6001600160601b031660a08201526040805163bc1b392d60e01b8152905173__$94a2c899be079b00d952d0d84fffaa5c34$__9163bc1b392d9160048083019260209291908290030181865af4158015613f21573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613f45919061535e565b6001600160601b031660c0820152606081015160ff166001600160401b03811115613f7257613f72615047565b604051908082528060200260200182016040528015613f9b578160200160208202803683370190505b5060e0820152604051637f1773c960e11b81526001600160a01b0386169063fe2ee79290613fcf9087908590600401615c40565b5f604051808303815f87803b158015613fe6575f5ffd5b505af1158015613ff8573d5f5f3e3d5ffd5b5050505080604001511515836001600160a01b0316856001600160601b03167f187a24316e6fa3df962223f52c7d8e4aafab3e8c3efa326d801e3ee30abb207a8460600151604051614053919060ff91909116815260200190565b60405180910390a45f826001600160a01b031663844e0f206040518163ffffffff1660e01b81526004016101c060405180830381865afa158015614099573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906140bd9190615461565b604051631aa4116360e01b81529091506001600160a01b03871690631aa41163906140ee908890859060040161553a565b5f604051808303815f87803b158015614105575f5ffd5b505af1158015614117573d5f5f3e3d5ffd5b505082518051602091820151828601519283015192516040516001600160a01b0390931695506001600160601b039182169450908a16927f5dfc15216b6099de44ac2177558b507cdd3485d84ab5a0dee0cbc89e1b728df79261417a92906155d8565b60405180910390a480604001515f01516001600160a01b03168160400151602001516001600160601b0316866001600160601b03167ffdd98185b5ca31e89da807e13e5d84cb62b98de45e431f34a682aa59bad0fac684606001516020015185606001515f01516040516141ef9291906155d8565b60405180910390a4608081810151805160209182015160a085015180840151905160c0870151808601519051604080516001600160601b0395861681526001600160a01b039485169881019890985291841687830152821660608701525193169491811693908a16927fdfe777372b3bed5aab98e2965d1b452f70cb4a1d0a4c9817d625204f77ea727c929181900390910190a4505050505050565b60a08101516040516330b8415f60e01b81526001600160601b03909116600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156142e7573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061430b91906153d7565b156143425760a08101516040516397f129bf60e01b81526001600160601b0380871660048301529091166024820152604401610885565b5f8290505f816001600160a01b03166385ba83446040518163ffffffff1660e01b815260040160e060405180830381865afa158015614383573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906143a79190615c61565b604051631242102d60e21b81529091506001600160a01b0389169063490840b4906143d89088908590600401615cef565b5f604051808303815f87803b1580156143ef575f5ffd5b505af1158015614401573d5f5f3e3d5ffd5b505050506001600160601b03851660a084015260405163659743e960e11b81526001600160a01b0388169063cb2e87d290614445908990879060ff90600401615d77565b5f604051808303815f87803b15801561445c575f5ffd5b505af115801561446e573d5f5f3e3d5ffd5b50505050836001600160a01b0316866001600160601b0316866001600160601b03167f870219e439f8a96192d059a6fc314341813eb2b75a5fdd3535510d681371dddb845f0151856020015186604001518760a001518860c001516040516145119594939291906001600160601b039590951685526001600160a01b03938416602086015291909216604084015290151560608301521515608082015260a00190565b60405180910390a45050505050505050565b61452b612951565b80604001516145585760405163931d421760e01b81526001600160601b0384166004820152602401610885565b60c08101516040516330b8415f60e01b81526001600160601b03909116600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156145b4573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906145d891906153d7565b1561460f5760c08101516040516323a0cc7160e11b81526001600160601b0380861660048301529091166024820152604401610885565b6001600160601b03821660c082015260405163659743e960e11b81526001600160a01b0385169063cb2e87d29061464f908690859060ff90600401615d77565b5f604051808303815f87803b158015614666575f5ffd5b505af1158015614678573d5f5f3e3d5ffd5b50506040516001600160601b038087169350851691507f2ad2913de4f3da4bd33eced2b93148c1036452b1a8641356ccd9947351bc1d76905f90a36146c960015f516020615f2f5f395f51905f5255565b50505050565b806060015160ff165f0361470157604051634435e56b60e01b81526001600160601b0384166004820152602401610885565b806060015160ff16816080015160ff16036147495760608101516040516379060d1360e11b81526001600160601b038516600482015260ff9091166024820152604401610885565b818160e00151826080015160ff168151811061476757614767615dab565b6001600160601b03909216602092830291909101909101526080810180519061478f82615dbf565b60ff169052506001600160a01b03841663cb2e87d284836147ae60ff90565b6040518463ffffffff1660e01b81526004016147cc93929190615d77565b5f604051808303815f87803b1580156147e3575f5ffd5b505af11580156147f5573d5f5f3e3d5ffd5b50506040516001600160601b038087169350851691507f46db867eadccc9f51350963958b3e103b57765a4a58eb1ad05ac4692253c9db7905f90a350505050565b816001600160a01b031663398e3d4c6040518163ffffffff1660e01b8152600401602060405180830381865afa158015614872573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061489691906153d7565b6113635773__$fb599632d08395912d9d70eb2f0f93b5e2$__632cb824586148c66001546001600160a01b031690565b6001600160a01b031663caed98976040518163ffffffff1660e01b8152600401602060405180830381865afa158015614901573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061492591906153b1565b73__$dacf551d137a232f87fa09e79113e25430$__639fa6a6e36040518163ffffffff1660e01b8152600401602060405180830381865af415801561496c573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190614990919061535e565b84614999611b7d565b6001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa1580156149d4573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906149f89190615613565b6040516001600160e01b031960e087901b1681526001600160a01b0394851660048201526001600160601b0390931660248401529216604482015260ff9091166064820152608401602060405180830381865af4158015614a5b573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190614a7f91906153d7565b61136357604051633acbdd6160e01b81526001600160a01b0382166004820152602401610885565b614aaf613960565b613996614c3e565b614abf613960565b604051632330f24760e01b81526001600160a01b038816600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90632330f24790602401602060405180830381865af4158015614b15573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190614b3991906153d7565b614b615760405163cf6935e560e01b81526001600160a01b0388166004820152602401610885565b614b6a87614c46565b614b748683614c57565b5f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b86151502178155905060018101614be38382615e34565b50611f57634a531f3360e01b613acb565b6040516399009c5160e01b81526001600160601b038084166004830152821660248201525f9073__$94a2c899be079b00d952d0d84fffaa5c34$__906399009c51906044016128a0565b6129db613960565b614c4e613960565b613afb81614ccd565b614c5f613960565b614c67614cde565b614c7082614d26565b6001600160a01b038116614c975760405163f17ef42d60e01b815260040160405180910390fd5b5f516020615eef5f395f51905f5280546001600160601b0316600160601b6001600160a01b039093169290920291909117905550565b614cd5613960565b613afb816136f6565b614ce6613960565b6139966301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b614d2e613960565b604051633334d16b60e01b81526001600160a01b038216600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90633334d16b90602401602060405180830381865af4158015614d84573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190614da891906153d7565b614dd05760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610885565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915290565b6040805161012081019091525f60e0820181815261010083019190915281908152602001614e6c604080518082019091525f808252602082015290565b8152602001614e8a604080518082019091525f808252602082015290565b8152602001614ea8604080518082019091525f808252602082015290565b8152602001614ec6604080518082019091525f808252602082015290565b8152602001614ee4604080518082019091525f808252602082015290565b8152602001614f02604080518082019091525f808252602082015290565b905290565b5f60208284031215614f17575f5ffd5b81356001600160e01b0319811681146128df575f5ffd5b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f6060830151614fa4608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e080840152614fe8610100840182614f2e565b949350505050565b6001600160601b0381168114613afb575f5ffd5b5f60208284031215615014575f5ffd5b81356128df81614ff0565b8015158114613afb575f5ffd5b5f6020828403121561503c575f5ffd5b81356128df8161501f565b634e487b7160e01b5f52604160045260245ffd5b604080519081016001600160401b038111828210171561507d5761507d615047565b60405290565b60405160e081016001600160401b038111828210171561507d5761507d615047565b60405161010081016001600160401b038111828210171561507d5761507d615047565b604051601f8201601f191681016001600160401b03811182821017156150f0576150f0615047565b604052919050565b5f6001600160401b0382111561511057615110615047565b50601f01601f191660200190565b5f82601f83011261512d575f5ffd5b813561514061513b826150f8565b6150c8565b818152846020838601011115615154575f5ffd5b816020850160208301375f918101602001919091529392505050565b5f60208284031215615180575f5ffd5b81356001600160401b03811115615195575f5ffd5b614fe88482850161511e565b6001600160a01b0381168114613afb575f5ffd5b5f5f604083850312156151c6575f5ffd5b82356151d1816151a1565b915060208301356151e181614ff0565b809150509250929050565b5f604082840312156151fc575f5ffd5b61520461505b565b90508135615211816151a1565b8152602082013561522181614ff0565b602082015292915050565b5f5f6080838503121561523d575f5ffd5b61524784846151ec565b915061384f84604085016151ec565b5f5f60408385031215615267575f5ffd5b8235615272816151a1565b915060208301356001600160401b0381111561528c575f5ffd5b6152988582860161511e565b9150509250929050565b5f5f604083850312156152b3575f5ffd5b82356152be816151a1565b915060208301356151e1816151a1565b5f602082840312156152de575f5ffd5b81356128df816151a1565b5f5f5f60c084860312156152fb575f5ffd5b61530585856151ec565b925061531485604086016151ec565b915061532385608086016151ec565b90509250925092565b5f6020828403121561533c575f5ffd5b815162ffffff811681146128df575f5ffd5b805161535981614ff0565b919050565b5f6020828403121561536e575f5ffd5b81516128df81614ff0565b600181811c9082168061538d57607f821691505b6020821081036153ab57634e487b7160e01b5f52602260045260245ffd5b50919050565b5f602082840312156153c1575f5ffd5b81516128df816151a1565b80516153598161501f565b5f602082840312156153e7575f5ffd5b81516128df8161501f565b8051615359816151a1565b6001600160401b0381168114613afb575f5ffd5b5f60208284031215615421575f5ffd5b81516128df816153fd565b5f6040828403121561543c575f5ffd5b61544461505b565b90508151615451816151a1565b8152602082015161522181614ff0565b5f6101c0828403128015615473575f5ffd5b5061547c615083565b615486848461542c565b8152615495846040850161542c565b60208201526154a7846080850161542c565b60408201526154b98460c0850161542c565b60608201526154cc84610100850161542c565b60808201526154df84610140850161542c565b60a08201526154f284610180850161542c565b60c08201529392505050565b80516001600160a01b031682526020908101516001600160601b0316910152565b6080810161552d82856154fe565b6128df60408301846154fe565b5f6101e0820190506001600160601b038416825261555c6020830184516154fe565b602083015161556e60608401826154fe565b50604083015161558160a08401826154fe565b50606083015161559460e08401826154fe565b5060808301516155a86101208401826154fe565b5060a08301516155bc6101608401826154fe565b5060c08301516155d06101a08401826154fe565b509392505050565b6001600160601b039290921682526001600160a01b0316602082015260400190565b60ff81168114613afb575f5ffd5b8051615359816155fa565b5f60208284031215615623575f5ffd5b81516128df816155fa565b5f5f8585111561563c575f5ffd5b83861115615648575f5ffd5b5050820193919092039150565b80356001600160e01b03198116906004841015615686576001600160e01b0319600485900360031b81901b82161691505b5092915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b5f6156d961513b846150f8565b90508281528383830111156156ec575f5ffd5b8282602083015e5f602084830101529392505050565b5f82601f830112615711575f5ffd5b6128df838351602085016156cc565b5f60e08284031215615730575f5ffd5b615738615083565b90506157438261534e565b81526157516020830161534e565b602082015261576260408301615608565b6040820152615773606083016153cc565b6060820152615784608083016153f2565b608082015261579560a083016153f2565b60a082015260c08201516001600160401b038111156157b2575f5ffd5b6157be84828501615702565b60c08301525092915050565b5f5f604083850312156157db575f5ffd5b82516001600160401b038111156157f0575f5ffd5b6157fc85828601615720565b92505060208301516151e1816151a1565b6001600160601b038716815260c060208201525f61582e60c0830188614f2e565b6001600160a01b0396871660408401526001600160601b039586166060840152939095166080820152921660a0909201919091529392505050565b5f5f6040838503121561587a575f5ffd5b8251615885816151a1565b60208401519092506151e1816151a1565b5f602082840312156158a6575f5ffd5b81516001600160401b038111156158bb575f5ffd5b614fe884828501615720565b5f82601f8301126158d6575f5ffd5b81516001600160401b038111156158ef576158ef615047565b8060051b6158ff602082016150c8565b9182526020818501810192908101908684111561591a575f5ffd5b6020860192505b8383101561594557825161593481614ff0565b825260209283019290910190615921565b9695505050505050565b5f6020828403121561595f575f5ffd5b81516001600160401b03811115615974575f5ffd5b82016101008185031215615986575f5ffd5b61598e6150a5565b615997826153cc565b81526159a5602083016153cc565b60208201526159b6604083016153cc565b60408201526159c760608301615608565b60608201526159d860808301615608565b60808201526159e960a0830161534e565b60a08201526159fa60c0830161534e565b60c082015260e08201516001600160401b03811115615a17575f5ffd5b615a23868285016158c7565b60e083015250949350505050565b5f60208284031215615a41575f5ffd5b81516001600160401b03811115615a56575f5ffd5b820160408185031215615a67575f5ffd5b615a6f61505b565b81516001600160401b03811115615a84575f5ffd5b8201601f81018613615a94575f5ffd5b615aa3868251602084016156cc565b82525060208201519150615ab6826151a1565b60208101919091529392505050565b6001600160601b0383168152604060208201525f8251604080840152615aee6080840182614f2e565b602094909401516001600160a01b031660609390930192909252509092915050565b5f82518060208501845e5f920191825250919050565b5f5f60408385031215615b37575f5ffd5b8251615b428161501f565b602084015190925063ffffffff811681146151e1575f5ffd5b5f8151808452602084019350602083015f5b82811015615b945781516001600160601b0316865260209586019590910190600101615b6d565b5093949350505050565b8051151582526020810151151560208301525f6040820151615bc4604085018215159052565b506060820151615bd9606085018260ff169052565b506080820151615bee608085018260ff169052565b5060a0820151615c0960a08501826001600160601b03169052565b5060c0820151615c2460c08501826001600160601b03169052565b5060e082015161010060e0850152614fe8610100850182615b5b565b6001600160601b0383168152604060208201525f614fe86040830184615b9e565b5f60e0828403128015615c72575f5ffd5b50615c7b615083565b8251615c8681614ff0565b81526020830151615c96816151a1565b60208201526040830151615ca9816151a1565b60408201526060830151615cbc8161501f565b6060820152615ccd608084016153cc565b6080820152615cde60a084016153cc565b60a08201526154f260c084016153cc565b5f610100820190506001600160601b03841682526001600160601b03835116602083015260018060a01b03602084015116604083015260018060a01b0360408401511660608301526060830151151560808301526080830151615d5660a084018215159052565b5060a083015180151560c08401525060c083015180151560e08401526155d0565b6001600160601b0384168152606060208201525f615d986060830185615b9e565b905060ff83166040830152949350505050565b634e487b7160e01b5f52603260045260245ffd5b5f60ff821660ff8103615de057634e487b7160e01b5f52601160045260245ffd5b60010192915050565b601f821115613a3557805f5260205f20601f840160051c81016020851015615e0e5750805b601f840160051c820191505b81811015615e2d575f8155600101615e1a565b5050505050565b81516001600160401b03811115615e4d57615e4d615047565b615e6181615e5b8454615379565b84615de9565b6020601f821160018114615e93575f8315615e7c5750848201515b5f19600385901b1c1916600184901b178455615e2d565b5f84815260208120601f198516915b82811015615ec25787850151825560209485019460019092019101615ea2565b5084821015615edf57868401515f19600387901b60f8161c191681555b50505050600190811b0190555056fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a009b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a26469706673582212201db769b06b19568740038ebe5540c847827a00f91ca55819d1a20a7bffc7f23264736f6c634300081b0033",
1442
+ "deployedBytecode": "0x608060405234801561000f575f5ffd5b50600436106101a1575f3560e01c80635d966289116100f35780638fb3603711610093578063bf7e214f1161006e578063bf7e214f146103e1578063cf2f3365146103e9578063deaa59df146103fc578063feff0c911461040f575f5ffd5b80638fb36037146103a5578063ada9652e146103c6578063b68d1809146103da575f5ffd5b80636c741e78116100ce5780636c741e781461035057806376b707b7146103705780637a9e5e4b1461038a578063893d20e81461039d575f5ffd5b80635d9662891461030d5780636078a3b214610320578063644c45e014610333575f5ffd5b8063211e28b61161015e578063419197fe11610139578063419197fe146102af5780634698bf11146102c257806349bb9e4b146102d55780635ab1bd53146102e8575f5ffd5b8063211e28b61461027f57806322f3e2d414610294578063329d6e741461029c575f5ffd5b806301ffc9a7146101a55780630d8e6e2c146101e65780630fec111c14610202578063138461e0146102175780631c6b2190146102375780631eff4b221461024a575b5f5ffd5b6101d16101b3366004614f07565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6101ee610422565b60405162ffffff90911681526020016101dd565b61020a6104a9565b6040516101dd9190614f5c565b61021f610635565b6040516001600160601b0390911681526020016101dd565b61021f610245366004615004565b61063f565b6102717f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b6040519081526020016101dd565b61029261028d36600461502c565b610ba5565b005b6101d1610ccb565b6102926102aa366004615170565b610d42565b6102926102bd3660046151b5565b610e84565b6102926102d036600461522c565b610fdf565b6102926102e3366004615256565b611367565b6001546001600160a01b03165b6040516001600160a01b0390911681526020016101dd565b61021f61031b3660046152a2565b611463565b61021f61032e3660046152ce565b611651565b5f516020615eef5f395f51905f52546001600160601b031661021f565b6103586118a1565b6040516001600160401b0390911681526020016101dd565b61037861192d565b60405160ff90911681526020016101dd565b6102926103983660046152ce565b611995565b6102f5611a17565b6103ad611b48565b6040516001600160e01b031990911681526020016101dd565b6102715f516020615eef5f395f51905f5281565b600b610378565b6102f5611b7d565b6102926103f73660046152e9565b611b98565b61029261040a3660046152ce565b611f61565b61029261041d36600461522c565b6120a2565b604051632efe011360e01b8152600360048201525f60248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af4158015610480573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104a4919061532c565b905090565b6104b1614df2565b5f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610527573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061054b919061535e565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a001610593611a17565b6001600160a01b031681526020018260010180546105b090615379565b80601f01602080910402602001604051908101604052809291908181526020018280546105dc90615379565b80156106275780601f106105fe57610100808354040283529160200191610627565b820191905f5260205f20905b81548152906001019060200180831161060a57829003601f168201915b505050505081525091505090565b5f6104a43061238e565b5f61064c335b5f366125d0565b5f8061065b600b5b60016126ce565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa15801561069c573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106c091906153b1565b604051630232ca4960e01b81526001600160601b03851660048201529091505f906001600160a01b03831690630232ca4990602401602060405180830381865afa158015610710573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610734919061535e565b90508594506107ad8673__$3bac17678db7ae928afa209f2f44deec9c$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af4158015610784573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107a8919061535e565b61285a565b156107b6578094505b604051630a4d29dd60e31b81526001600160601b038616600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906352694ee890602401602060405180830381865af415801561080c573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061083091906153d7565b1561084e5760405163b079ec2b60e01b815260040160405180910390fd5b61085885826128e6565b1561088e5760405163151dbb3f60e01b81526001600160601b038087166004830152821660248201526044015b60405180910390fd5b60025f9054906101000a90046001600160a01b03166001600160a01b031663346696cc846001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156108ed573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061091191906153b1565b6040516001600160e01b031960e084901b1681526001600160a01b0390911660048201526001600160601b038088166024830152881660448201526064015f604051808303815f87803b158015610966575f5ffd5b505af1158015610978573d5f5f3e3d5ffd5b505050505f61098f6001546001600160a01b031690565b604051631c5da14d60e11b81526001600160601b03871660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa1580156109dc573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a0091906153b1565b60405163a310e2a360e01b81526001600160601b03871660048201529091505f906001600160a01b0385169063a310e2a390602401602060405180830381865afa158015610a50573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a7491906153b1565b90507f694f0f8f2682e6c05697feed9065540f51c00d4510b16dbdb60606c6e5abfde98683836001600160a01b03166382bfefc86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ad5573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610af991906153b1565b604080516001600160601b0394851681526001600160a01b0393841660208201529290911690820152908916606082015260800160405180910390a1604051633fd3433360e01b81526001600160a01b0383811660048301526001600160601b0389166024830152821690633fd34333906044015f604051808303815f87803b158015610b84575f5ffd5b505af1158015610b96573d5f5f3e3d5ffd5b50505050505050505050919050565b610bae33610645565b5f610bba600b5f6126ce565b9150505f339050816001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa158015610bfd573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c2191906153b1565b604051637170bbc560e01b81526001600160a01b03838116600483015285151560248301529190911690637170bbc5906044015f604051808303815f87803b158015610c6b575f5ffd5b505af1158015610c7d573d5f5f3e3d5ffd5b5050604080516001600160a01b038516815286151560208201527f79b8884bb9dd59f48de5c5e3be7f11aab42e012f88e92df62e05edc93bd5f26893500190505b60405180910390a1505050565b5f610cd4611b7d565b60405163a166aa8960e01b81523060048201526001600160a01b03919091169063a166aa8990602401602060405180830381865afa158015610d18573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d3c91906153d7565b15905090565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c610d64610422565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af4158015610da2573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610dc69190615411565b5f516020615f4f5f395f51905f528054600160401b900460ff1680610df8575080546001600160401b03808416911610155b15610e165760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155610e4083612930565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001610cbe565b610e8d33610645565b5f80610e99600b610654565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015610eda573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610efe91906153b1565b60405163a310e2a360e01b81526001600160601b03851660048201526001600160a01b03919091169063a310e2a390602401602060405180830381865afa158015610f4b573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f6f91906153b1565b60405163ea0b3c7360e01b81526001600160a01b0387811660048301526001600160601b03871660248301529192509082169063ea0b3c73906044015f604051808303815f87803b158015610fc2575f5ffd5b505af1158015610fd4573d5f5f3e3d5ffd5b505050505050505050565b610fe833610645565b610ff0612951565b5f80610ffc600c610654565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa15801561103d573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061106191906153b1565b604051636a05a41360e01b81526001600160601b03851660048201526001600160a01b039190911690636a05a413906024016101c060405180830381865afa1580156110af573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110d39190615461565b805160405162acc93760e61b81529192505f9173__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc09161111191908a9060040161551f565b602060405180830381865af415801561112c573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061115091906153d7565b61118c57611185846040518060400160405280600a81526020016950726f6475637446656560b01b815250845f015189612988565b5084815260015b602082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc0916111c89190899060040161551f565b602060405180830381865af41580156111e3573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061120791906153d7565b61124b57611240846040518060400160405280600d81526020016c50726f63657373696e6746656560981b815250846020015188612988565b506020810184905260015b801561134957826001600160a01b031663b7b02c4e6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561128d573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112b191906153b1565b6001600160a01b031663ebb41c0c85846040518363ffffffff1660e01b81526004016112de92919061553a565b5f604051808303815f87803b1580156112f5575f5ffd5b505af1158015611307573d5f5f3e3d5ffd5b50506040516001600160601b03871681527f385da3b17e82d72dd7e4cbe895c7d7d3fbb4c8768e0866dd69f44581a0ded2bc9250602001905060405180910390a15b5050505061136360015f516020615f2f5f395f51905f5255565b5050565b5f516020615f4f5f395f51905f528054600160401b810460ff1615906001600160401b03165f811580156113985750825b90505f826001600160401b031660011480156113b35750303b155b9050811580156113c1575080155b156113df5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561140957845460ff60401b1916600160401b1785555b61141387876129ee565b831561145a57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2906020015b60405180910390a15b50505050505050565b5f61146d33610645565b611475612951565b5f6114886001546001600160a01b031690565b90506001600160a01b038116635c0e626433600a6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260ff166024820152604401602060405180830381865afa1580156114e6573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061150a91906153d7565b61152957604051630cfc489360e01b8152336004820152602401610885565b61153284612be4565b61155a57604051633d5ad29b60e01b81526001600160a01b0385166004820152602401610885565b604051632f2a35f760e11b81523360048201819052905f906001600160a01b03841690635e546bee90602401602060405180830381865afa1580156115a1573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115c5919061535e565b90506115d382878388612c6b565b6004805460405163a71bfbb760e01b81529296506001600160a01b03169163a71bfbb7916116059185918a91016155d8565b5f604051808303815f87803b15801561161c575f5ffd5b505af115801561162e573d5f5f3e3d5ffd5b5050505050505061164b60015f516020615f2f5f395f51905f5255565b92915050565b5f61165b33610645565b5f61166e6001546001600160a01b031690565b90506001600160a01b038116635c0e626433600c6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260ff166024820152604401602060405180830381865afa1580156116cc573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116f091906153d7565b61170f57604051633606d55160e01b8152336004820152602401610885565b611718836135e8565b611740576040516359bff0e360e11b81526001600160a01b0384166004820152602401610885565b604051632f2a35f760e11b81523360048201525f906001600160a01b03831690635e546bee90602401602060405180830381865afa158015611784573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906117a8919061535e565b60405163677d3feb60e11b81526001600160601b03821660048201529091505f906001600160a01b0384169063bf8e179790829063cefa7fd690602401602060405180830381865afa158015611800573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611824919061535e565b6040516001600160e01b031960e084901b1681526001600160601b039091166004820152602401602060405180830381865afa158015611866573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061188a91906153b1565b90506118988186845f612c6b565b95945050505050565b5f73__$1d92393fa9ccd763988368ce8a1cb90d26$__63645ceefe600b6118c661192d565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865af4158015611909573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104a49190615411565b5f611936611b7d565b6001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015611971573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104a49190615613565b3361199e611b7d565b6001600160a01b0316816001600160a01b0316146119d95760405162d1953b60e31b81526001600160a01b0382166004820152602401610885565b816001600160a01b03163b5f03611a0e576040516361798f2f60e11b81526001600160a01b0383166004820152602401610885565b611363826136f6565b5f805f516020615eef5f395f51905f5280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015611a83573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611aa791906153d7565b15611b32576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611b08573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b2c91906153b1565b91505090565b54600160601b90046001600160a01b0316919050565b5f516020615f0f5f395f51905f5280545f9190600160a01b900460ff16611b6f575f611b2c565b638fb3603760e01b91505090565b5f516020615f0f5f395f51905f52546001600160a01b031690565b611ba133610645565b5f80611bad600f610654565b915091505f5f611c1c836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611bf2573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c1691906153b1565b85613756565b608081015160405162acc93760e61b81529294509092505f9173__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc091611c6091908c9060040161551f565b602060405180830381865af4158015611c7b573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c9f91906153d7565b611cdd57611cd28360405180604001604052806007815260200166506f6f6c46656560c81b81525084608001518b612988565b506080810187905260015b60a082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc091611d1991908b9060040161551f565b602060405180830381865af4158015611d34573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d5891906153d7565b611d9957611d8e836040518060400160405280600a8152602001695374616b696e6746656560b01b8152508460a001518a612988565b5060a0810186905260015b60c082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc091611dd591908a9060040161551f565b602060405180830381865af4158015611df0573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e1491906153d7565b611e5957611e4e836040518060400160405280600e81526020016d506572666f726d616e636546656560901b8152508460c0015189612988565b5060c0810185905260015b8015611f5757836001600160a01b031663b7b02c4e6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e9b573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ebf91906153b1565b6001600160a01b031663ebb41c0c84846040518363ffffffff1660e01b8152600401611eec92919061553a565b5f604051808303815f87803b158015611f03575f5ffd5b505af1158015611f15573d5f5f3e3d5ffd5b50506040516001600160601b03881681527f7a446b749117c015e0932e31190fc133582c9c5151e31209479cc9d21941f0359250602001905060405180910390a15b5050505050505050565b611f6a33610645565b5f80611f76600b610654565b915091505f816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611fb7573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611fdb91906153b1565b60405163a310e2a360e01b81526001600160601b03851660048201526001600160a01b03919091169063a310e2a390602401602060405180830381865afa158015612028573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061204c91906153b1565b60405163deaa59df60e01b81526001600160a01b0386811660048301529192509082169063deaa59df906024015f604051808303815f87803b158015612090575f5ffd5b505af1158015611f57573d5f5f3e3d5ffd5b6120ab33610645565b5f806120b7600e610654565b915091505f5f6120fc836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015611bf2573d5f5f3e3d5ffd5b604080820151905162acc93760e61b81529294509092505f9173__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc09161214091908b9060040161551f565b602060405180830381865af415801561215b573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061217f91906153d7565b6121c5576121ba836040518060400160405280600f81526020016e446973747269627574696f6e46656560881b81525084604001518a612988565b506040810186905260015b606082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc09161220191908a9060040161551f565b602060405180830381865af415801561221c573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061224091906153d7565b61229457612289836040518060400160405280601781526020017f4d696e446973747269627574696f6e4f776e6572466565000000000000000000815250846060015189612988565b506060810185905260015b801561145a57836001600160a01b031663b7b02c4e6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156122d6573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122fa91906153b1565b6001600160a01b031663ebb41c0c84846040518363ffffffff1660e01b815260040161232792919061553a565b5f604051808303815f87803b15801561233e575f5ffd5b505af1158015612350573d5f5f3e3d5ffd5b50506040516001600160601b03881681527f37bea7afe3960b639e98d9161b22f53a172300df8ec6ee71fd0a5321dcecd59b92506020019050611451565b5f805f516020615eef5f395f51905f5280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156123fa573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061241e91906153d7565b1561244a5780546040516301ab8b6760e21b81526001600160601b039091166004820152602401610885565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa15801561249c573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906124c091906153d7565b6124e85760405163b9304b0d60e01b81526001600160a01b0384166004820152602401610885565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b0385811660048301529190911690635e546bee90602401602060405180830381865afa15801561253a573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061255e919061535e565b81546bffffffffffffffffffffffff19166001600160601b039190911690811782557f88857b75cbef7f257c9d5a473e28aaf6a91cc28f717f60f2cda3bcf5623d7b54906125aa611a17565b6040516125b89291906155d8565b60405180910390a1546001600160601b031692915050565b5f516020615f0f5f395f51905f525f806126086125eb611b7d565b87306125fa60045f8a8c61562e565b61260391615655565b613858565b91509150816126c65763ffffffff8116156126a357825460ff60a01b1916600160a01b178355612636611b7d565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b81526004016126659392919061568d565b5f604051808303815f87803b15801561267c575f5ffd5b505af115801561268e573d5f5f3e3d5ffd5b5050845460ff60a01b19168555506126c69050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401610885565b505050505050565b5f5f6126d8614df2565b5f6126ec86600b5b60ff9081169116141590565b156127a65773__$fb599632d08395912d9d70eb2f0f93b5e2$__635c990ed361271d6001546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015233602482015260ff8916604482015287151560648201526084015f60405180830381865af4158015612775573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261279c91908101906157ca565b909250905061284e565b73__$fb599632d08395912d9d70eb2f0f93b5e2$__63aa13a9886127d26001546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015233602482015287151560448201526064015f60405180830381865af4158015612821573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261284891908101906157ca565b90925090505b90519590945092505050565b60405163c4cade9d60e01b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__9063c4cade9d906044015b602060405180830381865af41580156128bb573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128df91906153d7565b9392505050565b604051632601631360e21b81526001600160601b038084166004830152821660248201525f9073__$3bac17678db7ae928afa209f2f44deec9c$__906398058c4c906044016128a0565b612938613960565b60405163502ec37160e01b815260040160405180910390fd5b5f516020615f2f5f395f51905f5280546001190161298257604051633ee5aeb560e01b815260040160405180910390fd5b60029055565b81516020808401518351918401516040517f17326f60f251bc425d57bf37b0630491536a1e7231c46d08b25915a90c59ee7c946129cd948a948a94929390929061580d565b60405180910390a150505050565b60015f516020615f2f5f395f51905f5255565b5f516020615f4f5f395f51905f528054600160401b810460ff1615906001600160401b03165f81158015612a1f5750825b90505f826001600160401b03166001148015612a3a5750303b155b905081158015612a48575080155b15612a665760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315612a9057845460ff60401b1916600160401b1785555b5f5f87806020019051810190612aa69190615869565b91509150612ab582828b613998565b612abf6028613a3a565b600280546001600160a01b0319166001600160a01b0392909216919091178155612ae890613a3a565b600380546001600160a01b0319166001600160a01b0392909216919091178155612b1190613a3a565b6001600160a01b0316637b1391a66040518163ffffffff1660e01b8152600401602060405180830381865afa158015612b4c573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612b7091906153b1565b600480546001600160a01b0319166001600160a01b0392909216919091179055612ba063e8e886d960e01b613acb565b5050831561145a57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001611451565b5f612bee826135e8565b612bf957505f919050565b61164b826001600160a01b0316630fec111c6040518163ffffffff1660e01b81526004015f60405180830381865afa158015612c37573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612c5e9190810190615896565b6040015160ff16600c1490565b5f5f5f612c788686613afe565b915091505f876001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015612cb9573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612cdd91906153b1565b604083015190915060ff8116600c03612ddf5760035460a0840151604051635d96628960e01b81526001600160a01b0387811660048301529182166024820152911690635d966289906044015f604051808303815f875af1158015612d44573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612d6b9190810190615896565b5f01519450612dda896001600160a01b031663b7b02c4e6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612daf573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612dd391906153b1565b868a613df1565b6131b4565b60035460408481015160a08601519151631fa14e4960e11b81526001600160a01b03888116600483015260ff9092166024820152918116604483015290911690633f429c92906064015f604051808303815f875af1158015612e43573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612e6a9190810190615896565b5f015194505f896001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015612eac573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612ed091906153b1565b6040516302d764c760e21b81526001600160601b038a16600482015290915088905f906001600160a01b03841690630b5d931c906024015f60405180830381865afa158015612f21573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052612f48919081019061594f565b905060ff8416600f03612fc757612fc2858d6001600160a01b031663b7b02c4e6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612f95573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612fb991906153b1565b848b8f8661428b565b6130e0565b60ff8416600e0361303d57612fc28c6001600160a01b031663b7b02c4e6040518163ffffffff1660e01b8152600401602060405180830381865afa158015613011573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061303591906153b1565b838a84614523565b60ff8416600d036130b357612fc28c6001600160a01b031663b7b02c4e6040518163ffffffff1660e01b8152600401602060405180830381865afa158015613087573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906130ab91906153b1565b838a846146cf565b60405163f0b751ab60e01b81526001600160a01b038c16600482015260ff85166024820152604401610885565b60405163a310e2a360e01b81526001600160601b03831660048201526001600160a01b0384169063a310e2a390602401602060405180830381865afa15801561312b573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061314f91906153b1565b6001600160a01b03166382bfefc86040518163ffffffff1660e01b8152600401602060405180830381865afa15801561318a573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906131ae91906153b1565b98505050505b6131be8987614836565b5f896001600160a01b031663311adb686040518163ffffffff1660e01b8152600401602060405180830381865afa1580156131fb573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061321f91906153b1565b90505f856001600160a01b031663b423086c6040518163ffffffff1660e01b81526004015f60405180830381865afa15801561325d573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526132849190810190615a31565b905073__$51089c37ca0df1177a910c640c8c5f8165$__6350c6470d6132b26001546001600160a01b031690565b888b866001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156132f0573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061331491906153b1565b60405160e086901b6001600160e01b03191681526001600160a01b039485166004820152928416602484015290831660448301529091166064820152608401602060405180830381865af415801561336e573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061339291906153b1565b6001600160a01b039081166020838101829052604080516001600160601b038c16815291820192909252918a1682820152517f68ed15739e4025a077d4301a5a5894a91ebe66d38c5e861b5f2d325b26bb20549181900360600190a160405163163afaad60e31b81526001600160a01b0385169063b1d7d5689061341c908a908590600401615ac5565b5f604051808303815f87803b158015613433575f5ffd5b505af1158015613445573d5f5f3e3d5ffd5b50505050856001600160a01b031663138461e06040518163ffffffff1660e01b81526004016020604051808303815f875af1158015613486573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906134aa919061535e565b506040516366704a7d60e01b81526001600160a01b038b8116600483015260ff851660248301528316906366704a7d906044015f604051808303815f87803b1580156134f4575f5ffd5b505af1158015613506573d5f5f3e3d5ffd5b505050507f269a46dac9ba8227194b6513fdb68da07796b42aa1d111f1eaec8f2126aed6c68b6001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015613567573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061358b919061535e565b60a080880151604080516001600160601b039485168152938c16602085015260ff8816908401526001600160a01b03808b166060850152808d166080850152169082015260c00160405180910390a1505050505050949350505050565b604051631627905560e01b81526001600160a01b03821660048201525f9073__$fb599632d08395912d9d70eb2f0f93b5e2$__90631627905590602401602060405180830381865af4158015613640573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061366491906153d7565b61366f57505f919050565b60405163d905700760e01b81526001600160a01b03831660048201526330841f2160e21b602482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__9063d905700790604401602060405180830381865af41580156136d2573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061164b91906153d7565b5f516020615f0f5f395f51905f5280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b5f61375f614e2f565b6001546001600160a01b031660405163677d3feb60e11b81526001600160601b03851660048201526001600160a01b03919091169063cefa7fd690602401602060405180830381865afa1580156137b8573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906137dc919061535e565b604051636a05a41360e01b81526001600160601b03821660048201529092506001600160a01b03851690636a05a413906024016101c060405180830381865afa15801561382b573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061384f9190615461565b90509250929050565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b179052516138c69190615b10565b5f60405180830381855afa9150503d805f81146138fe576040519150601f19603f3d011682016040523d82523d5f602084013e613903565b606091505b50915091508115613955576040815110613935578080602001905181019061392b9190615b26565b9094509250613955565b6020815110613955578080602001905181019061395291906153d7565b93505b505094509492505050565b5f516020615f4f5f395f51905f5254600160401b900460ff1661399657604051631afcd79f60e31b815260040160405180910390fd5b565b6139a0613960565b6139a8614aa7565b613a258383846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa1580156139e9573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613a0d919061535e565b60085f8660405180602001604052805f815250614ab7565b613a3563daf9067160e01b613acb565b505050565b5f613a4d6001546001600160a01b031690565b6001600160a01b031663d39e604383613a6461192d565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa158015613aa7573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061164b91906153b1565b613ad3613960565b613afb816001600160e01b0319165f908152602081905260409020805460ff19166001179055565b50565b5f613b07614df2565b839150816001600160a01b0316630fec111c6040518163ffffffff1660e01b81526004015f60405180830381865afa158015613b45573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613b6c9190810190615896565b9050613b7c816020015184614bf4565b15613bc257602081015160405163953133f160e01b81526001600160a01b03861660048201526001600160601b0380861660248301529091166044820152606401610885565b613c2d826001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015613c01573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613c259190615613565b6126e061192d565b15613cd05783613c3b61192d565b836001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa158015613c77573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613c9b9190615613565b60405163459d07b760e11b81526001600160a01b03909316600484015260ff9182166024840152166044820152606401610885565b6001546001600160a01b0316604051632f2a35f760e11b81526001600160a01b0386811660048301529190911690635e546bee90602401602060405180830381865afa158015613d22573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613d46919061535e565b6040516330b8415f60e01b81526001600160601b03909116600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015613d9d573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613dc191906153d7565b15613dea57604051632176772160e11b81526001600160a01b0385166004820152602401610885565b9250929050565b5f8190505f816001600160a01b031663c108bd4c6040518163ffffffff1660e01b81526004015f60405180830381865afa158015613e31573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613e58919081019061594f565b905073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015613ea1573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613ec5919061535e565b6001600160601b031660a08201526040805163bc1b392d60e01b8152905173__$94a2c899be079b00d952d0d84fffaa5c34$__9163bc1b392d9160048083019260209291908290030181865af4158015613f21573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190613f45919061535e565b6001600160601b031660c0820152606081015160ff166001600160401b03811115613f7257613f72615047565b604051908082528060200260200182016040528015613f9b578160200160208202803683370190505b5060e0820152604051637f1773c960e11b81526001600160a01b0386169063fe2ee79290613fcf9087908590600401615c40565b5f604051808303815f87803b158015613fe6575f5ffd5b505af1158015613ff8573d5f5f3e3d5ffd5b5050505080604001511515836001600160a01b0316856001600160601b03167f187a24316e6fa3df962223f52c7d8e4aafab3e8c3efa326d801e3ee30abb207a8460600151604051614053919060ff91909116815260200190565b60405180910390a45f826001600160a01b031663844e0f206040518163ffffffff1660e01b81526004016101c060405180830381865afa158015614099573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906140bd9190615461565b604051631aa4116360e01b81529091506001600160a01b03871690631aa41163906140ee908890859060040161553a565b5f604051808303815f87803b158015614105575f5ffd5b505af1158015614117573d5f5f3e3d5ffd5b505082518051602091820151828601519283015192516040516001600160a01b0390931695506001600160601b039182169450908a16927f5dfc15216b6099de44ac2177558b507cdd3485d84ab5a0dee0cbc89e1b728df79261417a92906155d8565b60405180910390a480604001515f01516001600160a01b03168160400151602001516001600160601b0316866001600160601b03167ffdd98185b5ca31e89da807e13e5d84cb62b98de45e431f34a682aa59bad0fac684606001516020015185606001515f01516040516141ef9291906155d8565b60405180910390a4608081810151805160209182015160a085015180840151905160c0870151808601519051604080516001600160601b0395861681526001600160a01b039485169881019890985291841687830152821660608701525193169491811693908a16927fdfe777372b3bed5aab98e2965d1b452f70cb4a1d0a4c9817d625204f77ea727c929181900390910190a4505050505050565b60a08101516040516330b8415f60e01b81526001600160601b03909116600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156142e7573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061430b91906153d7565b156143425760a08101516040516397f129bf60e01b81526001600160601b0380871660048301529091166024820152604401610885565b5f8290505f816001600160a01b03166385ba83446040518163ffffffff1660e01b815260040160e060405180830381865afa158015614383573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906143a79190615c61565b604051631242102d60e21b81529091506001600160a01b0389169063490840b4906143d89088908590600401615cef565b5f604051808303815f87803b1580156143ef575f5ffd5b505af1158015614401573d5f5f3e3d5ffd5b505050506001600160601b03851660a084015260405163659743e960e11b81526001600160a01b0388169063cb2e87d290614445908990879060ff90600401615d77565b5f604051808303815f87803b15801561445c575f5ffd5b505af115801561446e573d5f5f3e3d5ffd5b50505050836001600160a01b0316866001600160601b0316866001600160601b03167f870219e439f8a96192d059a6fc314341813eb2b75a5fdd3535510d681371dddb845f0151856020015186604001518760a001518860c001516040516145119594939291906001600160601b039590951685526001600160a01b03938416602086015291909216604084015290151560608301521515608082015260a00190565b60405180910390a45050505050505050565b61452b612951565b80604001516145585760405163931d421760e01b81526001600160601b0384166004820152602401610885565b60c08101516040516330b8415f60e01b81526001600160601b03909116600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af41580156145b4573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906145d891906153d7565b1561460f5760c08101516040516323a0cc7160e11b81526001600160601b0380861660048301529091166024820152604401610885565b6001600160601b03821660c082015260405163659743e960e11b81526001600160a01b0385169063cb2e87d29061464f908690859060ff90600401615d77565b5f604051808303815f87803b158015614666575f5ffd5b505af1158015614678573d5f5f3e3d5ffd5b50506040516001600160601b038087169350851691507f2ad2913de4f3da4bd33eced2b93148c1036452b1a8641356ccd9947351bc1d76905f90a36146c960015f516020615f2f5f395f51905f5255565b50505050565b806060015160ff165f0361470157604051634435e56b60e01b81526001600160601b0384166004820152602401610885565b806060015160ff16816080015160ff16036147495760608101516040516379060d1360e11b81526001600160601b038516600482015260ff9091166024820152604401610885565b818160e00151826080015160ff168151811061476757614767615dab565b6001600160601b03909216602092830291909101909101526080810180519061478f82615dbf565b60ff169052506001600160a01b03841663cb2e87d284836147ae60ff90565b6040518463ffffffff1660e01b81526004016147cc93929190615d77565b5f604051808303815f87803b1580156147e3575f5ffd5b505af11580156147f5573d5f5f3e3d5ffd5b50506040516001600160601b038087169350851691507f46db867eadccc9f51350963958b3e103b57765a4a58eb1ad05ac4692253c9db7905f90a350505050565b816001600160a01b031663398e3d4c6040518163ffffffff1660e01b8152600401602060405180830381865afa158015614872573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061489691906153d7565b6113635773__$fb599632d08395912d9d70eb2f0f93b5e2$__632cb824586148c66001546001600160a01b031690565b6001600160a01b031663caed98976040518163ffffffff1660e01b8152600401602060405180830381865afa158015614901573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061492591906153b1565b73__$dacf551d137a232f87fa09e79113e25430$__639fa6a6e36040518163ffffffff1660e01b8152600401602060405180830381865af415801561496c573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190614990919061535e565b84614999611b7d565b6001600160a01b03166376b707b76040518163ffffffff1660e01b8152600401602060405180830381865afa1580156149d4573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906149f89190615613565b6040516001600160e01b031960e087901b1681526001600160a01b0394851660048201526001600160601b0390931660248401529216604482015260ff9091166064820152608401602060405180830381865af4158015614a5b573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190614a7f91906153d7565b61136357604051633acbdd6160e01b81526001600160a01b0382166004820152602401610885565b614aaf613960565b613996614c3e565b614abf613960565b604051632330f24760e01b81526001600160a01b038816600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90632330f24790602401602060405180830381865af4158015614b15573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190614b3991906153d7565b614b615760405163cf6935e560e01b81526001600160a01b0388166004820152602401610885565b614b6a87614c46565b614b748683614c57565b5f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b86151502178155905060018101614be38382615e34565b50611f57634a531f3360e01b613acb565b6040516399009c5160e01b81526001600160601b038084166004830152821660248201525f9073__$94a2c899be079b00d952d0d84fffaa5c34$__906399009c51906044016128a0565b6129db613960565b614c4e613960565b613afb81614ccd565b614c5f613960565b614c67614cde565b614c7082614d26565b6001600160a01b038116614c975760405163f17ef42d60e01b815260040160405180910390fd5b5f516020615eef5f395f51905f5280546001600160601b0316600160601b6001600160a01b039093169290920291909117905550565b614cd5613960565b613afb816136f6565b614ce6613960565b6139966301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b614d2e613960565b604051633334d16b60e01b81526001600160a01b038216600482015273__$fb599632d08395912d9d70eb2f0f93b5e2$__90633334d16b90602401602060405180830381865af4158015614d84573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190614da891906153d7565b614dd05760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610885565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915290565b6040805161012081019091525f60e0820181815261010083019190915281908152602001614e6c604080518082019091525f808252602082015290565b8152602001614e8a604080518082019091525f808252602082015290565b8152602001614ea8604080518082019091525f808252602082015290565b8152602001614ec6604080518082019091525f808252602082015290565b8152602001614ee4604080518082019091525f808252602082015290565b8152602001614f02604080518082019091525f808252602082015290565b905290565b5f60208284031215614f17575f5ffd5b81356001600160e01b0319811681146128df575f5ffd5b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f6060830151614fa4608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e080840152614fe8610100840182614f2e565b949350505050565b6001600160601b0381168114613afb575f5ffd5b5f60208284031215615014575f5ffd5b81356128df81614ff0565b8015158114613afb575f5ffd5b5f6020828403121561503c575f5ffd5b81356128df8161501f565b634e487b7160e01b5f52604160045260245ffd5b604080519081016001600160401b038111828210171561507d5761507d615047565b60405290565b60405160e081016001600160401b038111828210171561507d5761507d615047565b60405161010081016001600160401b038111828210171561507d5761507d615047565b604051601f8201601f191681016001600160401b03811182821017156150f0576150f0615047565b604052919050565b5f6001600160401b0382111561511057615110615047565b50601f01601f191660200190565b5f82601f83011261512d575f5ffd5b813561514061513b826150f8565b6150c8565b818152846020838601011115615154575f5ffd5b816020850160208301375f918101602001919091529392505050565b5f60208284031215615180575f5ffd5b81356001600160401b03811115615195575f5ffd5b614fe88482850161511e565b6001600160a01b0381168114613afb575f5ffd5b5f5f604083850312156151c6575f5ffd5b82356151d1816151a1565b915060208301356151e181614ff0565b809150509250929050565b5f604082840312156151fc575f5ffd5b61520461505b565b90508135615211816151a1565b8152602082013561522181614ff0565b602082015292915050565b5f5f6080838503121561523d575f5ffd5b61524784846151ec565b915061384f84604085016151ec565b5f5f60408385031215615267575f5ffd5b8235615272816151a1565b915060208301356001600160401b0381111561528c575f5ffd5b6152988582860161511e565b9150509250929050565b5f5f604083850312156152b3575f5ffd5b82356152be816151a1565b915060208301356151e1816151a1565b5f602082840312156152de575f5ffd5b81356128df816151a1565b5f5f5f60c084860312156152fb575f5ffd5b61530585856151ec565b925061531485604086016151ec565b915061532385608086016151ec565b90509250925092565b5f6020828403121561533c575f5ffd5b815162ffffff811681146128df575f5ffd5b805161535981614ff0565b919050565b5f6020828403121561536e575f5ffd5b81516128df81614ff0565b600181811c9082168061538d57607f821691505b6020821081036153ab57634e487b7160e01b5f52602260045260245ffd5b50919050565b5f602082840312156153c1575f5ffd5b81516128df816151a1565b80516153598161501f565b5f602082840312156153e7575f5ffd5b81516128df8161501f565b8051615359816151a1565b6001600160401b0381168114613afb575f5ffd5b5f60208284031215615421575f5ffd5b81516128df816153fd565b5f6040828403121561543c575f5ffd5b61544461505b565b90508151615451816151a1565b8152602082015161522181614ff0565b5f6101c0828403128015615473575f5ffd5b5061547c615083565b615486848461542c565b8152615495846040850161542c565b60208201526154a7846080850161542c565b60408201526154b98460c0850161542c565b60608201526154cc84610100850161542c565b60808201526154df84610140850161542c565b60a08201526154f284610180850161542c565b60c08201529392505050565b80516001600160a01b031682526020908101516001600160601b0316910152565b6080810161552d82856154fe565b6128df60408301846154fe565b5f6101e0820190506001600160601b038416825261555c6020830184516154fe565b602083015161556e60608401826154fe565b50604083015161558160a08401826154fe565b50606083015161559460e08401826154fe565b5060808301516155a86101208401826154fe565b5060a08301516155bc6101608401826154fe565b5060c08301516155d06101a08401826154fe565b509392505050565b6001600160601b039290921682526001600160a01b0316602082015260400190565b60ff81168114613afb575f5ffd5b8051615359816155fa565b5f60208284031215615623575f5ffd5b81516128df816155fa565b5f5f8585111561563c575f5ffd5b83861115615648575f5ffd5b5050820193919092039150565b80356001600160e01b03198116906004841015615686576001600160e01b0319600485900360031b81901b82161691505b5092915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b5f6156d961513b846150f8565b90508281528383830111156156ec575f5ffd5b8282602083015e5f602084830101529392505050565b5f82601f830112615711575f5ffd5b6128df838351602085016156cc565b5f60e08284031215615730575f5ffd5b615738615083565b90506157438261534e565b81526157516020830161534e565b602082015261576260408301615608565b6040820152615773606083016153cc565b6060820152615784608083016153f2565b608082015261579560a083016153f2565b60a082015260c08201516001600160401b038111156157b2575f5ffd5b6157be84828501615702565b60c08301525092915050565b5f5f604083850312156157db575f5ffd5b82516001600160401b038111156157f0575f5ffd5b6157fc85828601615720565b92505060208301516151e1816151a1565b6001600160601b038716815260c060208201525f61582e60c0830188614f2e565b6001600160a01b0396871660408401526001600160601b039586166060840152939095166080820152921660a0909201919091529392505050565b5f5f6040838503121561587a575f5ffd5b8251615885816151a1565b60208401519092506151e1816151a1565b5f602082840312156158a6575f5ffd5b81516001600160401b038111156158bb575f5ffd5b614fe884828501615720565b5f82601f8301126158d6575f5ffd5b81516001600160401b038111156158ef576158ef615047565b8060051b6158ff602082016150c8565b9182526020818501810192908101908684111561591a575f5ffd5b6020860192505b8383101561594557825161593481614ff0565b825260209283019290910190615921565b9695505050505050565b5f6020828403121561595f575f5ffd5b81516001600160401b03811115615974575f5ffd5b82016101008185031215615986575f5ffd5b61598e6150a5565b615997826153cc565b81526159a5602083016153cc565b60208201526159b6604083016153cc565b60408201526159c760608301615608565b60608201526159d860808301615608565b60808201526159e960a0830161534e565b60a08201526159fa60c0830161534e565b60c082015260e08201516001600160401b03811115615a17575f5ffd5b615a23868285016158c7565b60e083015250949350505050565b5f60208284031215615a41575f5ffd5b81516001600160401b03811115615a56575f5ffd5b820160408185031215615a67575f5ffd5b615a6f61505b565b81516001600160401b03811115615a84575f5ffd5b8201601f81018613615a94575f5ffd5b615aa3868251602084016156cc565b82525060208201519150615ab6826151a1565b60208101919091529392505050565b6001600160601b0383168152604060208201525f8251604080840152615aee6080840182614f2e565b602094909401516001600160a01b031660609390930192909252509092915050565b5f82518060208501845e5f920191825250919050565b5f5f60408385031215615b37575f5ffd5b8251615b428161501f565b602084015190925063ffffffff811681146151e1575f5ffd5b5f8151808452602084019350602083015f5b82811015615b945781516001600160601b0316865260209586019590910190600101615b6d565b5093949350505050565b8051151582526020810151151560208301525f6040820151615bc4604085018215159052565b506060820151615bd9606085018260ff169052565b506080820151615bee608085018260ff169052565b5060a0820151615c0960a08501826001600160601b03169052565b5060c0820151615c2460c08501826001600160601b03169052565b5060e082015161010060e0850152614fe8610100850182615b5b565b6001600160601b0383168152604060208201525f614fe86040830184615b9e565b5f60e0828403128015615c72575f5ffd5b50615c7b615083565b8251615c8681614ff0565b81526020830151615c96816151a1565b60208201526040830151615ca9816151a1565b60408201526060830151615cbc8161501f565b6060820152615ccd608084016153cc565b6080820152615cde60a084016153cc565b60a08201526154f260c084016153cc565b5f610100820190506001600160601b03841682526001600160601b03835116602083015260018060a01b03602084015116604083015260018060a01b0360408401511660608301526060830151151560808301526080830151615d5660a084018215159052565b5060a083015180151560c08401525060c083015180151560e08401526155d0565b6001600160601b0384168152606060208201525f615d986060830185615b9e565b905060ff83166040830152949350505050565b634e487b7160e01b5f52603260045260245ffd5b5f60ff821660ff8103615de057634e487b7160e01b5f52601160045260245ffd5b60010192915050565b601f821115613a3557805f5260205f20601f840160051c81016020851015615e0e5750805b601f840160051c820191505b81811015615e2d575f8155600101615e1a565b5050505050565b81516001600160401b03811115615e4d57615e4d615047565b615e6181615e5b8454615379565b84615de9565b6020601f821160018114615e93575f8315615e7c5750848201515b5f19600385901b1c1916600184901b178455615e2d565b5f84815260208120601f198516915b82811015615ec25787850151825560209485019460019092019101615ea2565b5084821015615edf57868401515f19600387901b60f8161c191681555b50505050600190811b0190555056fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a009b779b17422d0df92223018b32b4d1fa46e071723d6817e2486d003becc55f00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a26469706673582212201db769b06b19568740038ebe5540c847827a00f91ca55819d1a20a7bffc7f23264736f6c634300081b0033",
1443
+ "linkReferences": {
1444
+ "contracts/shared/ContractLib.sol": {
1445
+ "ContractLib": [
1446
+ {
1447
+ "length": 20,
1448
+ "start": 10185
1449
+ },
1450
+ {
1451
+ "length": 20,
1452
+ "start": 10366
1453
+ },
1454
+ {
1455
+ "length": 20,
1456
+ "start": 14046
1457
+ },
1458
+ {
1459
+ "length": 20,
1460
+ "start": 14192
1461
+ },
1462
+ {
1463
+ "length": 20,
1464
+ "start": 18802
1465
+ },
1466
+ {
1467
+ "length": 20,
1468
+ "start": 19379
1469
+ },
1470
+ {
1471
+ "length": 20,
1472
+ "start": 20002
1473
+ }
1474
+ ]
1475
+ },
1476
+ "contracts/shared/TokenHandlerDeployerLib.sol": {
1477
+ "TokenHandlerDeployerLib": [
1478
+ {
1479
+ "length": 20,
1480
+ "start": 13150
1481
+ }
1482
+ ]
1483
+ },
1484
+ "contracts/type/Amount.sol": {
1485
+ "AmountLib": [
1486
+ {
1487
+ "length": 20,
1488
+ "start": 2069
1489
+ },
1490
+ {
1491
+ "length": 20,
1492
+ "start": 2218
1493
+ },
1494
+ {
1495
+ "length": 20,
1496
+ "start": 10584
1497
+ },
1498
+ {
1499
+ "length": 20,
1500
+ "start": 10724
1501
+ }
1502
+ ]
1503
+ },
1504
+ "contracts/type/ChainId.sol": {
1505
+ "ChainIdLib": [
1506
+ {
1507
+ "length": 20,
1508
+ "start": 18941
1509
+ }
1510
+ ]
1511
+ },
1512
+ "contracts/type/Fee.sol": {
1513
+ "FeeLib": [
1514
+ {
1515
+ "length": 20,
1516
+ "start": 4542
1517
+ },
1518
+ {
1519
+ "length": 20,
1520
+ "start": 4725
1521
+ },
1522
+ {
1523
+ "length": 20,
1524
+ "start": 7437
1525
+ },
1526
+ {
1527
+ "length": 20,
1528
+ "start": 7622
1529
+ },
1530
+ {
1531
+ "length": 20,
1532
+ "start": 7810
1533
+ },
1534
+ {
1535
+ "length": 20,
1536
+ "start": 8685
1537
+ },
1538
+ {
1539
+ "length": 20,
1540
+ "start": 8878
1541
+ }
1542
+ ]
1543
+ },
1544
+ "contracts/type/NftId.sol": {
1545
+ "NftIdLib": [
1546
+ {
1547
+ "length": 20,
1548
+ "start": 1464
1549
+ },
1550
+ {
1551
+ "length": 20,
1552
+ "start": 6945
1553
+ },
1554
+ {
1555
+ "length": 20,
1556
+ "start": 9368
1557
+ },
1558
+ {
1559
+ "length": 20,
1560
+ "start": 15931
1561
+ },
1562
+ {
1563
+ "length": 20,
1564
+ "start": 16178
1565
+ },
1566
+ {
1567
+ "length": 20,
1568
+ "start": 16315
1569
+ },
1570
+ {
1571
+ "length": 20,
1572
+ "start": 17285
1573
+ },
1574
+ {
1575
+ "length": 20,
1576
+ "start": 18002
1577
+ },
1578
+ {
1579
+ "length": 20,
1580
+ "start": 19698
1581
+ }
1582
+ ]
1583
+ },
1584
+ "contracts/type/RoleId.sol": {
1585
+ "RoleIdLib": [
1586
+ {
1587
+ "length": 20,
1588
+ "start": 6522
1589
+ }
1590
+ ]
1591
+ },
1592
+ "contracts/type/Version.sol": {
1593
+ "VersionLib": [
1594
+ {
1595
+ "length": 20,
1596
+ "start": 1310
1597
+ },
1598
+ {
1599
+ "length": 20,
1600
+ "start": 3610
1601
+ }
1602
+ ]
1603
+ }
1604
+ },
1605
+ "deployedLinkReferences": {
1606
+ "contracts/shared/ContractLib.sol": {
1607
+ "ContractLib": [
1608
+ {
1609
+ "length": 20,
1610
+ "start": 9971
1611
+ },
1612
+ {
1613
+ "length": 20,
1614
+ "start": 10152
1615
+ },
1616
+ {
1617
+ "length": 20,
1618
+ "start": 13832
1619
+ },
1620
+ {
1621
+ "length": 20,
1622
+ "start": 13978
1623
+ },
1624
+ {
1625
+ "length": 20,
1626
+ "start": 18588
1627
+ },
1628
+ {
1629
+ "length": 20,
1630
+ "start": 19165
1631
+ },
1632
+ {
1633
+ "length": 20,
1634
+ "start": 19788
1635
+ }
1636
+ ]
1637
+ },
1638
+ "contracts/shared/TokenHandlerDeployerLib.sol": {
1639
+ "TokenHandlerDeployerLib": [
1640
+ {
1641
+ "length": 20,
1642
+ "start": 12936
1643
+ }
1644
+ ]
1645
+ },
1646
+ "contracts/type/Amount.sol": {
1647
+ "AmountLib": [
1648
+ {
1649
+ "length": 20,
1650
+ "start": 1855
1651
+ },
1652
+ {
1653
+ "length": 20,
1654
+ "start": 2004
1655
+ },
1656
+ {
1657
+ "length": 20,
1658
+ "start": 10370
1659
+ },
1660
+ {
1661
+ "length": 20,
1662
+ "start": 10510
1663
+ }
1664
+ ]
1665
+ },
1666
+ "contracts/type/ChainId.sol": {
1667
+ "ChainIdLib": [
1668
+ {
1669
+ "length": 20,
1670
+ "start": 18727
1671
+ }
1672
+ ]
1673
+ },
1674
+ "contracts/type/Fee.sol": {
1675
+ "FeeLib": [
1676
+ {
1677
+ "length": 20,
1678
+ "start": 4328
1679
+ },
1680
+ {
1681
+ "length": 20,
1682
+ "start": 4511
1683
+ },
1684
+ {
1685
+ "length": 20,
1686
+ "start": 7223
1687
+ },
1688
+ {
1689
+ "length": 20,
1690
+ "start": 7408
1691
+ },
1692
+ {
1693
+ "length": 20,
1694
+ "start": 7596
1695
+ },
1696
+ {
1697
+ "length": 20,
1698
+ "start": 8471
1699
+ },
1700
+ {
1701
+ "length": 20,
1702
+ "start": 8664
1703
+ }
1704
+ ]
1705
+ },
1706
+ "contracts/type/NftId.sol": {
1707
+ "NftIdLib": [
1708
+ {
1709
+ "length": 20,
1710
+ "start": 1250
1711
+ },
1712
+ {
1713
+ "length": 20,
1714
+ "start": 6731
1715
+ },
1716
+ {
1717
+ "length": 20,
1718
+ "start": 9154
1719
+ },
1720
+ {
1721
+ "length": 20,
1722
+ "start": 15717
1723
+ },
1724
+ {
1725
+ "length": 20,
1726
+ "start": 15964
1727
+ },
1728
+ {
1729
+ "length": 20,
1730
+ "start": 16101
1731
+ },
1732
+ {
1733
+ "length": 20,
1734
+ "start": 17071
1735
+ },
1736
+ {
1737
+ "length": 20,
1738
+ "start": 17788
1739
+ },
1740
+ {
1741
+ "length": 20,
1742
+ "start": 19484
1743
+ }
1744
+ ]
1745
+ },
1746
+ "contracts/type/RoleId.sol": {
1747
+ "RoleIdLib": [
1748
+ {
1749
+ "length": 20,
1750
+ "start": 6308
1751
+ }
1752
+ ]
1753
+ },
1754
+ "contracts/type/Version.sol": {
1755
+ "VersionLib": [
1756
+ {
1757
+ "length": 20,
1758
+ "start": 1096
1759
+ },
1760
+ {
1761
+ "length": 20,
1762
+ "start": 3396
1763
+ }
1764
+ ]
1765
+ }
1766
+ }
1767
+ }