@etherisc/gif-next 0.0.2-ebbe63d → 0.0.2-ebc6253-419

Sign up to get free protection for your applications and to get access to all the features.
Files changed (469) hide show
  1. package/README.md +493 -2
  2. package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.dbg.json +4 -0
  3. package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.json +1253 -0
  4. package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.dbg.json +4 -0
  5. package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.json +1206 -0
  6. package/artifacts/contracts/authorization/Authorization.sol/Authorization.dbg.json +4 -0
  7. package/artifacts/contracts/authorization/Authorization.sol/Authorization.json +358 -0
  8. package/artifacts/contracts/authorization/IAccess.sol/IAccess.dbg.json +4 -0
  9. package/artifacts/contracts/authorization/IAccess.sol/IAccess.json +10 -0
  10. package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.dbg.json +4 -0
  11. package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.json +1032 -0
  12. package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.dbg.json +4 -0
  13. package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.json +258 -0
  14. package/artifacts/contracts/authorization/IModuleAuthorization.sol/IModuleAuthorization.dbg.json +4 -0
  15. package/artifacts/contracts/authorization/IModuleAuthorization.sol/IModuleAuthorization.json +290 -0
  16. package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.dbg.json +4 -0
  17. package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.json +148 -0
  18. package/artifacts/contracts/authorization/ModuleAuthorization.sol/ModuleAuthorization.dbg.json +4 -0
  19. package/artifacts/contracts/authorization/ModuleAuthorization.sol/ModuleAuthorization.json +390 -0
  20. package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.dbg.json +4 -0
  21. package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.json +190 -0
  22. package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.dbg.json +4 -0
  23. package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.json +1500 -0
  24. package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.dbg.json +4 -0
  25. package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.json +410 -0
  26. package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +4 -0
  27. package/artifacts/contracts/distribution/Distribution.sol/Distribution.json +1170 -0
  28. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +4 -0
  29. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +1502 -0
  30. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
  31. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +842 -0
  32. package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
  33. package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.json +917 -0
  34. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +4 -0
  35. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.json +914 -0
  36. package/artifacts/contracts/instance/BundleSet.sol/BundleSet.dbg.json +4 -0
  37. package/artifacts/contracts/instance/BundleSet.sol/BundleSet.json +703 -0
  38. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +4 -0
  39. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +652 -0
  40. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +4 -0
  41. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +757 -0
  42. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +4 -0
  43. package/artifacts/contracts/instance/Instance.sol/Instance.json +904 -0
  44. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +4 -0
  45. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +1626 -0
  46. package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.dbg.json +4 -0
  47. package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.json +601 -0
  48. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +4 -0
  49. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1693 -0
  50. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +4 -0
  51. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +1160 -0
  52. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +4 -0
  53. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +734 -0
  54. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
  55. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +3469 -0
  56. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.dbg.json +4 -0
  57. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.json +318 -0
  58. package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.dbg.json +4 -0
  59. package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.json +137 -0
  60. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.dbg.json +4 -0
  61. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.json +10 -0
  62. package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.dbg.json +4 -0
  63. package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.json +182 -0
  64. package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.dbg.json +4 -0
  65. package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.json +181 -0
  66. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +4 -0
  67. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +129 -0
  68. package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +4 -0
  69. package/artifacts/contracts/instance/module/IBundle.sol/IBundle.json +10 -0
  70. package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +4 -0
  71. package/artifacts/contracts/instance/module/IComponents.sol/IComponents.json +10 -0
  72. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +4 -0
  73. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.json +10 -0
  74. package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +4 -0
  75. package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.json +10 -0
  76. package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +4 -0
  77. package/artifacts/contracts/instance/module/IRisk.sol/IRisk.json +10 -0
  78. package/artifacts/contracts/mock/Dip.sol/Dip.dbg.json +4 -0
  79. package/artifacts/contracts/mock/Dip.sol/Dip.json +376 -0
  80. package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.dbg.json +4 -0
  81. package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.json +1137 -0
  82. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.dbg.json +4 -0
  83. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.json +418 -0
  84. package/artifacts/contracts/oracle/IOracle.sol/IOracle.dbg.json +4 -0
  85. package/artifacts/contracts/oracle/IOracle.sol/IOracle.json +52 -0
  86. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.dbg.json +4 -0
  87. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.json +776 -0
  88. package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +4 -0
  89. package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.json +675 -0
  90. package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +4 -0
  91. package/artifacts/contracts/oracle/Oracle.sol/Oracle.json +1029 -0
  92. package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +4 -0
  93. package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +1034 -0
  94. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +4 -0
  95. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +730 -0
  96. package/artifacts/contracts/pool/BasicPool.sol/BasicPool.dbg.json +4 -0
  97. package/artifacts/contracts/pool/BasicPool.sol/BasicPool.json +1406 -0
  98. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.dbg.json +4 -0
  99. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.json +410 -0
  100. package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +4 -0
  101. package/artifacts/contracts/pool/BundleService.sol/BundleService.json +1466 -0
  102. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
  103. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +818 -0
  104. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +4 -0
  105. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.json +907 -0
  106. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
  107. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.json +920 -0
  108. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +4 -0
  109. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +1182 -0
  110. package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +4 -0
  111. package/artifacts/contracts/pool/Pool.sol/Pool.json +1192 -0
  112. package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +4 -0
  113. package/artifacts/contracts/pool/PoolService.sol/PoolService.json +1589 -0
  114. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
  115. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +758 -0
  116. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +4 -0
  117. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +852 -0
  118. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
  119. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +722 -0
  120. package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.dbg.json +4 -0
  121. package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.json +1254 -0
  122. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.dbg.json +4 -0
  123. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.json +410 -0
  124. package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +4 -0
  125. package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +1331 -0
  126. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
  127. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +822 -0
  128. package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +4 -0
  129. package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.json +517 -0
  130. package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +4 -0
  131. package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +788 -0
  132. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +4 -0
  133. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +800 -0
  134. package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +4 -0
  135. package/artifacts/contracts/product/IPricingService.sol/IPricingService.json +549 -0
  136. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +4 -0
  137. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +959 -0
  138. package/artifacts/contracts/product/IProductService.sol/IProductService.dbg.json +4 -0
  139. package/artifacts/contracts/product/IProductService.sol/IProductService.json +400 -0
  140. package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +4 -0
  141. package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +1276 -0
  142. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
  143. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +782 -0
  144. package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +4 -0
  145. package/artifacts/contracts/product/PricingService.sol/PricingService.json +1017 -0
  146. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
  147. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +786 -0
  148. package/artifacts/contracts/product/Product.sol/Product.dbg.json +4 -0
  149. package/artifacts/contracts/product/Product.sol/Product.json +1212 -0
  150. package/artifacts/contracts/product/ProductService.sol/ProductService.dbg.json +4 -0
  151. package/artifacts/contracts/product/ProductService.sol/ProductService.json +708 -0
  152. package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.dbg.json +4 -0
  153. package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.json +702 -0
  154. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +4 -0
  155. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +784 -0
  156. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +4 -0
  157. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +910 -0
  158. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +4 -0
  159. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +940 -0
  160. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +4 -0
  161. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +52 -0
  162. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +4 -0
  163. package/artifacts/contracts/registry/Registry.sol/Registry.json +1258 -0
  164. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +4 -0
  165. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +1746 -0
  166. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +4 -0
  167. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +1452 -0
  168. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +4 -0
  169. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +721 -0
  170. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.dbg.json +4 -0
  171. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.json +164 -0
  172. package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.dbg.json +4 -0
  173. package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.json +1159 -0
  174. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.dbg.json +4 -0
  175. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.json +214 -0
  176. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +4 -0
  177. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +661 -0
  178. package/artifacts/contracts/shared/Component.sol/Component.dbg.json +4 -0
  179. package/artifacts/contracts/shared/Component.sol/Component.json +832 -0
  180. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +4 -0
  181. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +1680 -0
  182. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +4 -0
  183. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +804 -0
  184. package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.dbg.json +4 -0
  185. package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.json +539 -0
  186. package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +4 -0
  187. package/artifacts/contracts/shared/IComponent.sol/IComponent.json +605 -0
  188. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +4 -0
  189. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +1033 -0
  190. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +4 -0
  191. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +711 -0
  192. package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
  193. package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.json +474 -0
  194. package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +4 -0
  195. package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.json +110 -0
  196. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +4 -0
  197. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +131 -0
  198. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +4 -0
  199. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +207 -0
  200. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +4 -0
  201. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +181 -0
  202. package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
  203. package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.json +35 -0
  204. package/artifacts/contracts/shared/IService.sol/IService.dbg.json +4 -0
  205. package/artifacts/contracts/shared/IService.sol/IService.json +346 -0
  206. package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.dbg.json +4 -0
  207. package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.json +39 -0
  208. package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.dbg.json +4 -0
  209. package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.json +73 -0
  210. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +4 -0
  211. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +951 -0
  212. package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
  213. package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.json +497 -0
  214. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +4 -0
  215. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.json +133 -0
  216. package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.dbg.json +4 -0
  217. package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.json +306 -0
  218. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +4 -0
  219. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +244 -0
  220. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +4 -0
  221. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +320 -0
  222. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +4 -0
  223. package/artifacts/contracts/shared/Registerable.sol/Registerable.json +353 -0
  224. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +4 -0
  225. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +71 -0
  226. package/artifacts/contracts/shared/Service.sol/Service.dbg.json +4 -0
  227. package/artifacts/contracts/shared/Service.sol/Service.json +507 -0
  228. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +4 -0
  229. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +469 -0
  230. package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.dbg.json +4 -0
  231. package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.json +108 -0
  232. package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +4 -0
  233. package/artifacts/contracts/staking/IStaking.sol/IStaking.json +1412 -0
  234. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +4 -0
  235. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +1035 -0
  236. package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.dbg.json +4 -0
  237. package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.json +387 -0
  238. package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +4 -0
  239. package/artifacts/contracts/staking/Staking.sol/Staking.json +1941 -0
  240. package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.dbg.json +4 -0
  241. package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.json +164 -0
  242. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +4 -0
  243. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +761 -0
  244. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +4 -0
  245. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +592 -0
  246. package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +4 -0
  247. package/artifacts/contracts/staking/StakingService.sol/StakingService.json +1343 -0
  248. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +4 -0
  249. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +718 -0
  250. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +4 -0
  251. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +2242 -0
  252. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +4 -0
  253. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +576 -0
  254. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +4 -0
  255. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.json +10 -0
  256. package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +4 -0
  257. package/artifacts/contracts/type/Amount.sol/AmountLib.json +374 -0
  258. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +4 -0
  259. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.json +225 -0
  260. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
  261. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.json +179 -0
  262. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
  263. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.json +104 -0
  264. package/artifacts/contracts/type/Fee.sol/FeeLib.dbg.json +4 -0
  265. package/artifacts/contracts/type/Fee.sol/FeeLib.json +317 -0
  266. package/artifacts/contracts/type/Key32.sol/Key32Lib.dbg.json +4 -0
  267. package/artifacts/contracts/type/Key32.sol/Key32Lib.json +125 -0
  268. package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +4 -0
  269. package/artifacts/contracts/type/NftId.sol/NftIdLib.json +209 -0
  270. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
  271. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.json +33 -0
  272. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
  273. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.json +239 -0
  274. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
  275. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.json +209 -0
  276. package/artifacts/contracts/type/Referral.sol/ReferralLib.dbg.json +4 -0
  277. package/artifacts/contracts/type/Referral.sol/ReferralLib.json +142 -0
  278. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.dbg.json +4 -0
  279. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.json +204 -0
  280. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +4 -0
  281. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.json +86 -0
  282. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +4 -0
  283. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +369 -0
  284. package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +4 -0
  285. package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +222 -0
  286. package/artifacts/contracts/type/Selector.sol/SelectorLib.dbg.json +4 -0
  287. package/artifacts/contracts/type/Selector.sol/SelectorLib.json +129 -0
  288. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.dbg.json +4 -0
  289. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.json +10 -0
  290. package/artifacts/contracts/type/StateId.sol/StateIdLib.dbg.json +4 -0
  291. package/artifacts/contracts/type/StateId.sol/StateIdLib.json +92 -0
  292. package/artifacts/contracts/type/String.sol/StrLib.dbg.json +4 -0
  293. package/artifacts/contracts/type/String.sol/StrLib.json +132 -0
  294. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +4 -0
  295. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.json +312 -0
  296. package/artifacts/contracts/type/UFixed.sol/MathLib.dbg.json +4 -0
  297. package/artifacts/contracts/type/UFixed.sol/MathLib.json +16 -0
  298. package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +4 -0
  299. package/artifacts/contracts/type/UFixed.sol/UFixedLib.json +535 -0
  300. package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +4 -0
  301. package/artifacts/contracts/type/Version.sol/VersionLib.json +177 -0
  302. package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +4 -0
  303. package/artifacts/contracts/type/Version.sol/VersionPartLib.json +68 -0
  304. package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.dbg.json +4 -0
  305. package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.json +55 -0
  306. package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.dbg.json +4 -0
  307. package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.json +617 -0
  308. package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
  309. package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
  310. package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.dbg.json +4 -0
  311. package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.json +78 -0
  312. package/contracts/authorization/AccessAdmin.sol +591 -0
  313. package/contracts/authorization/AccessManagerCloneable.sol +16 -0
  314. package/contracts/authorization/Authorization.sol +217 -0
  315. package/contracts/authorization/IAccess.sol +48 -0
  316. package/contracts/authorization/IAccessAdmin.sol +136 -0
  317. package/contracts/authorization/IAuthorization.sol +54 -0
  318. package/contracts/authorization/IModuleAuthorization.sol +21 -0
  319. package/contracts/authorization/IServiceAuthorization.sol +38 -0
  320. package/contracts/authorization/ModuleAuthorization.sol +78 -0
  321. package/contracts/authorization/ServiceAuthorization.sol +90 -0
  322. package/contracts/distribution/BasicDistribution.sol +138 -0
  323. package/contracts/distribution/BasicDistributionAuthorization.sol +47 -0
  324. package/contracts/distribution/Distribution.sol +295 -0
  325. package/contracts/distribution/DistributionService.sol +322 -0
  326. package/contracts/distribution/DistributionServiceManager.sol +39 -0
  327. package/contracts/distribution/IDistributionComponent.sol +52 -0
  328. package/contracts/distribution/IDistributionService.sol +95 -0
  329. package/contracts/instance/BundleSet.sol +126 -0
  330. package/contracts/instance/IInstance.sol +86 -0
  331. package/contracts/instance/IInstanceService.sol +92 -0
  332. package/contracts/instance/Instance.sol +254 -0
  333. package/contracts/instance/InstanceAdmin.sol +285 -0
  334. package/contracts/instance/InstanceAuthorizationV3.sol +204 -0
  335. package/contracts/instance/InstanceReader.sol +408 -0
  336. package/contracts/instance/InstanceService.sol +467 -0
  337. package/contracts/instance/InstanceServiceManager.sol +40 -0
  338. package/contracts/instance/InstanceStore.sol +277 -0
  339. package/contracts/instance/base/BalanceStore.sol +123 -0
  340. package/contracts/instance/base/Cloneable.sol +28 -0
  341. package/contracts/instance/base/ObjectCounter.sol +21 -0
  342. package/contracts/instance/base/ObjectLifecycle.sol +105 -0
  343. package/contracts/instance/base/ObjectSet.sol +79 -0
  344. package/contracts/instance/module/IAccess.sol +46 -0
  345. package/contracts/instance/module/IBundle.sol +20 -0
  346. package/contracts/instance/module/IComponents.sol +46 -0
  347. package/contracts/instance/module/IDistribution.sol +41 -0
  348. package/contracts/instance/module/IPolicy.sol +84 -0
  349. package/contracts/instance/module/IRisk.sol +11 -0
  350. package/contracts/{Dip.sol → mock/Dip.sol} +2 -2
  351. package/contracts/oracle/BasicOracle.sol +48 -0
  352. package/contracts/oracle/BasicOracleAuthorization.sol +46 -0
  353. package/contracts/oracle/IOracle.sol +36 -0
  354. package/contracts/oracle/IOracleComponent.sol +33 -0
  355. package/contracts/oracle/IOracleService.sol +65 -0
  356. package/contracts/oracle/Oracle.sol +166 -0
  357. package/contracts/oracle/OracleService.sol +278 -0
  358. package/contracts/oracle/OracleServiceManager.sol +39 -0
  359. package/contracts/pool/BasicPool.sol +166 -0
  360. package/contracts/pool/BasicPoolAuthorization.sol +58 -0
  361. package/contracts/pool/BundleService.sol +436 -0
  362. package/contracts/pool/BundleServiceManager.sol +39 -0
  363. package/contracts/pool/IBundleService.sol +134 -0
  364. package/contracts/pool/IPoolComponent.sol +58 -0
  365. package/contracts/pool/IPoolService.sol +147 -0
  366. package/contracts/pool/Pool.sol +328 -0
  367. package/contracts/pool/PoolService.sol +518 -0
  368. package/contracts/pool/PoolServiceManager.sol +39 -0
  369. package/contracts/product/ApplicationService.sol +250 -0
  370. package/contracts/product/ApplicationServiceManager.sol +38 -0
  371. package/contracts/product/BasicProduct.sol +52 -0
  372. package/contracts/product/BasicProductAuthorization.sol +43 -0
  373. package/contracts/product/ClaimService.sol +416 -0
  374. package/contracts/product/ClaimServiceManager.sol +38 -0
  375. package/contracts/product/IApplicationService.sol +63 -0
  376. package/contracts/product/IClaimService.sol +100 -0
  377. package/contracts/product/IPolicyService.sol +84 -0
  378. package/contracts/product/IPricingService.sol +39 -0
  379. package/contracts/product/IProductComponent.sol +40 -0
  380. package/contracts/product/IProductService.sol +34 -0
  381. package/contracts/product/PolicyService.sol +586 -0
  382. package/contracts/product/PolicyServiceManager.sol +39 -0
  383. package/contracts/product/PricingService.sol +304 -0
  384. package/contracts/product/PricingServiceManager.sol +39 -0
  385. package/contracts/product/Product.sol +413 -0
  386. package/contracts/product/ProductService.sol +99 -0
  387. package/contracts/product/ProductServiceManager.sol +39 -0
  388. package/contracts/registry/ChainNft.sol +217 -0
  389. package/contracts/registry/IRegistry.sol +134 -0
  390. package/contracts/registry/IRegistryService.sol +69 -0
  391. package/contracts/registry/ITransferInterceptor.sol +7 -0
  392. package/contracts/registry/Registry.sol +576 -0
  393. package/contracts/registry/RegistryAdmin.sol +374 -0
  394. package/contracts/registry/RegistryService.sol +252 -0
  395. package/contracts/registry/RegistryServiceManager.sol +53 -0
  396. package/contracts/registry/ReleaseLifecycle.sol +27 -0
  397. package/contracts/registry/ReleaseRegistry.sol +485 -0
  398. package/contracts/registry/ServiceAuthorizationV3.sol +200 -0
  399. package/contracts/registry/TokenRegistry.sol +315 -0
  400. package/contracts/shared/Component.sol +268 -0
  401. package/contracts/shared/ComponentService.sol +641 -0
  402. package/contracts/shared/ComponentServiceManager.sol +35 -0
  403. package/contracts/shared/ComponentVerifyingService.sol +117 -0
  404. package/contracts/shared/IComponent.sol +70 -0
  405. package/contracts/shared/IComponentService.sol +108 -0
  406. package/contracts/shared/IInstanceLinkedComponent.sol +56 -0
  407. package/contracts/shared/IKeyValueStore.sol +54 -0
  408. package/contracts/shared/ILifecycle.sol +29 -0
  409. package/contracts/shared/INftOwnable.sol +23 -0
  410. package/contracts/shared/IPolicyHolder.sol +45 -0
  411. package/contracts/shared/IRegisterable.sol +15 -0
  412. package/contracts/shared/IRegistryLinked.sol +11 -0
  413. package/contracts/shared/IService.sol +25 -0
  414. package/contracts/shared/InitializableCustom.sol +177 -0
  415. package/contracts/shared/InitializableERC165.sol +27 -0
  416. package/contracts/shared/InstanceLinkedComponent.sol +172 -0
  417. package/contracts/shared/KeyValueStore.sol +131 -0
  418. package/contracts/shared/Lifecycle.sol +77 -0
  419. package/contracts/shared/NftIdSet.sol +65 -0
  420. package/contracts/shared/NftOwnable.sol +107 -0
  421. package/contracts/shared/PolicyHolder.sol +99 -0
  422. package/contracts/shared/Registerable.sol +75 -0
  423. package/contracts/shared/RegistryLinked.sol +43 -0
  424. package/contracts/shared/Service.sol +82 -0
  425. package/contracts/shared/TokenHandler.sol +139 -0
  426. package/contracts/shared/TokenHandlerDeployerLib.sol +12 -0
  427. package/contracts/staking/IStaking.sol +167 -0
  428. package/contracts/staking/IStakingService.sol +160 -0
  429. package/contracts/staking/StakeManagerLib.sol +206 -0
  430. package/contracts/staking/Staking.sol +497 -0
  431. package/contracts/staking/StakingLifecycle.sol +23 -0
  432. package/contracts/staking/StakingManager.sol +50 -0
  433. package/contracts/staking/StakingReader.sol +183 -0
  434. package/contracts/staking/StakingService.sol +407 -0
  435. package/contracts/staking/StakingServiceManager.sol +44 -0
  436. package/contracts/staking/StakingStore.sol +605 -0
  437. package/contracts/staking/TargetManagerLib.sol +207 -0
  438. package/contracts/type/AddressSet.sol +58 -0
  439. package/contracts/type/Amount.sol +135 -0
  440. package/contracts/type/Blocknumber.sol +142 -0
  441. package/contracts/type/ClaimId.sol +75 -0
  442. package/contracts/type/DistributorType.sol +55 -0
  443. package/contracts/type/Fee.sol +66 -0
  444. package/contracts/type/Key32.sol +50 -0
  445. package/contracts/type/NftId.sol +78 -0
  446. package/contracts/type/NftIdSet.sol +62 -0
  447. package/contracts/type/ObjectType.sol +271 -0
  448. package/contracts/type/PayoutId.sol +82 -0
  449. package/contracts/type/Referral.sol +90 -0
  450. package/contracts/type/RequestId.sol +75 -0
  451. package/contracts/type/RiskId.sol +43 -0
  452. package/contracts/type/RoleId.sol +174 -0
  453. package/contracts/type/Seconds.sol +93 -0
  454. package/contracts/type/Selector.sol +102 -0
  455. package/contracts/type/StateId.sol +135 -0
  456. package/contracts/type/String.sol +53 -0
  457. package/contracts/type/Timestamp.sol +146 -0
  458. package/contracts/type/UFixed.sol +351 -0
  459. package/contracts/type/Version.sol +110 -0
  460. package/contracts/upgradeability/IVersionable.sol +53 -0
  461. package/contracts/upgradeability/ProxyManager.sol +198 -0
  462. package/contracts/upgradeability/UpgradableProxyWithAdmin.sol +14 -0
  463. package/contracts/upgradeability/Versionable.sol +59 -0
  464. package/package.json +30 -11
  465. package/artifacts/contracts/Dip.sol/DIP.dbg.json +0 -4
  466. package/artifacts/contracts/Dip.sol/DIP.json +0 -338
  467. package/artifacts/contracts/Lock.sol/Lock.dbg.json +0 -4
  468. package/artifacts/contracts/Lock.sol/Lock.json +0 -74
  469. package/contracts/Lock.sol +0 -34
@@ -0,0 +1,1137 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "BasicOracle",
4
+ "sourceName": "contracts/oracle/BasicOracle.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
+ "name": "ErrorComponentNameLengthZero",
47
+ "type": "error"
48
+ },
49
+ {
50
+ "inputs": [
51
+ {
52
+ "internalType": "address",
53
+ "name": "caller",
54
+ "type": "address"
55
+ }
56
+ ],
57
+ "name": "ErrorComponentNotChainNft",
58
+ "type": "error"
59
+ },
60
+ {
61
+ "inputs": [
62
+ {
63
+ "internalType": "NftId",
64
+ "name": "instanceNftId",
65
+ "type": "uint96"
66
+ }
67
+ ],
68
+ "name": "ErrorComponentNotInstance",
69
+ "type": "error"
70
+ },
71
+ {
72
+ "inputs": [
73
+ {
74
+ "internalType": "address",
75
+ "name": "caller",
76
+ "type": "address"
77
+ }
78
+ ],
79
+ "name": "ErrorComponentNotProductService",
80
+ "type": "error"
81
+ },
82
+ {
83
+ "inputs": [],
84
+ "name": "ErrorComponentProductNftAlreadySet",
85
+ "type": "error"
86
+ },
87
+ {
88
+ "inputs": [],
89
+ "name": "ErrorComponentTokenAddressZero",
90
+ "type": "error"
91
+ },
92
+ {
93
+ "inputs": [],
94
+ "name": "ErrorComponentWalletAddressIsSameAsCurrent",
95
+ "type": "error"
96
+ },
97
+ {
98
+ "inputs": [],
99
+ "name": "ErrorComponentWalletAddressZero",
100
+ "type": "error"
101
+ },
102
+ {
103
+ "inputs": [],
104
+ "name": "ErrorComponentWalletNotComponent",
105
+ "type": "error"
106
+ },
107
+ {
108
+ "inputs": [
109
+ {
110
+ "internalType": "NftId",
111
+ "name": "nftId",
112
+ "type": "uint96"
113
+ }
114
+ ],
115
+ "name": "ErrorNftOwnableAlreadyLinked",
116
+ "type": "error"
117
+ },
118
+ {
119
+ "inputs": [
120
+ {
121
+ "internalType": "address",
122
+ "name": "contractAddress",
123
+ "type": "address"
124
+ }
125
+ ],
126
+ "name": "ErrorNftOwnableContractNotRegistered",
127
+ "type": "error"
128
+ },
129
+ {
130
+ "inputs": [],
131
+ "name": "ErrorNftOwnableInitialOwnerZero",
132
+ "type": "error"
133
+ },
134
+ {
135
+ "inputs": [
136
+ {
137
+ "internalType": "address",
138
+ "name": "account",
139
+ "type": "address"
140
+ }
141
+ ],
142
+ "name": "ErrorNftOwnableNotOwner",
143
+ "type": "error"
144
+ },
145
+ {
146
+ "inputs": [
147
+ {
148
+ "internalType": "address",
149
+ "name": "registryAddress",
150
+ "type": "address"
151
+ }
152
+ ],
153
+ "name": "ErrorNotRegistry",
154
+ "type": "error"
155
+ },
156
+ {
157
+ "inputs": [
158
+ {
159
+ "internalType": "string",
160
+ "name": "methodName",
161
+ "type": "string"
162
+ }
163
+ ],
164
+ "name": "ErrorOracleNotImplemented",
165
+ "type": "error"
166
+ },
167
+ {
168
+ "inputs": [],
169
+ "name": "InvalidInitialization",
170
+ "type": "error"
171
+ },
172
+ {
173
+ "inputs": [],
174
+ "name": "NotInitializing",
175
+ "type": "error"
176
+ },
177
+ {
178
+ "anonymous": false,
179
+ "inputs": [
180
+ {
181
+ "indexed": false,
182
+ "internalType": "address",
183
+ "name": "authority",
184
+ "type": "address"
185
+ }
186
+ ],
187
+ "name": "AuthorityUpdated",
188
+ "type": "event"
189
+ },
190
+ {
191
+ "anonymous": false,
192
+ "inputs": [
193
+ {
194
+ "indexed": false,
195
+ "internalType": "uint64",
196
+ "name": "version",
197
+ "type": "uint64"
198
+ }
199
+ ],
200
+ "name": "Initialized",
201
+ "type": "event"
202
+ },
203
+ {
204
+ "anonymous": false,
205
+ "inputs": [
206
+ {
207
+ "indexed": false,
208
+ "internalType": "address",
209
+ "name": "token",
210
+ "type": "address"
211
+ },
212
+ {
213
+ "indexed": false,
214
+ "internalType": "Amount",
215
+ "name": "limit",
216
+ "type": "uint96"
217
+ }
218
+ ],
219
+ "name": "LogComponentTokenHandlerApproved",
220
+ "type": "event"
221
+ },
222
+ {
223
+ "anonymous": false,
224
+ "inputs": [
225
+ {
226
+ "indexed": false,
227
+ "internalType": "address",
228
+ "name": "oldWallet",
229
+ "type": "address"
230
+ },
231
+ {
232
+ "indexed": false,
233
+ "internalType": "address",
234
+ "name": "newWallet",
235
+ "type": "address"
236
+ }
237
+ ],
238
+ "name": "LogComponentWalletAddressChanged",
239
+ "type": "event"
240
+ },
241
+ {
242
+ "anonymous": false,
243
+ "inputs": [
244
+ {
245
+ "indexed": false,
246
+ "internalType": "address",
247
+ "name": "from",
248
+ "type": "address"
249
+ },
250
+ {
251
+ "indexed": false,
252
+ "internalType": "address",
253
+ "name": "to",
254
+ "type": "address"
255
+ },
256
+ {
257
+ "indexed": false,
258
+ "internalType": "uint256",
259
+ "name": "amount",
260
+ "type": "uint256"
261
+ }
262
+ ],
263
+ "name": "LogComponentWalletTokensTransferred",
264
+ "type": "event"
265
+ },
266
+ {
267
+ "inputs": [],
268
+ "name": "COMPONENT_LOCATION_V1",
269
+ "outputs": [
270
+ {
271
+ "internalType": "bytes32",
272
+ "name": "",
273
+ "type": "bytes32"
274
+ }
275
+ ],
276
+ "stateMutability": "view",
277
+ "type": "function"
278
+ },
279
+ {
280
+ "inputs": [],
281
+ "name": "INSTANCE_LINKED_COMPONENT_LOCATION_V1",
282
+ "outputs": [
283
+ {
284
+ "internalType": "bytes32",
285
+ "name": "",
286
+ "type": "bytes32"
287
+ }
288
+ ],
289
+ "stateMutability": "view",
290
+ "type": "function"
291
+ },
292
+ {
293
+ "inputs": [],
294
+ "name": "NFT_OWNABLE_STORAGE_LOCATION_V1",
295
+ "outputs": [
296
+ {
297
+ "internalType": "bytes32",
298
+ "name": "",
299
+ "type": "bytes32"
300
+ }
301
+ ],
302
+ "stateMutability": "view",
303
+ "type": "function"
304
+ },
305
+ {
306
+ "inputs": [],
307
+ "name": "ORACLE_STORAGE_LOCATION_V1",
308
+ "outputs": [
309
+ {
310
+ "internalType": "bytes32",
311
+ "name": "",
312
+ "type": "bytes32"
313
+ }
314
+ ],
315
+ "stateMutability": "view",
316
+ "type": "function"
317
+ },
318
+ {
319
+ "inputs": [],
320
+ "name": "REGISTERABLE_LOCATION_V1",
321
+ "outputs": [
322
+ {
323
+ "internalType": "bytes32",
324
+ "name": "",
325
+ "type": "bytes32"
326
+ }
327
+ ],
328
+ "stateMutability": "view",
329
+ "type": "function"
330
+ },
331
+ {
332
+ "inputs": [
333
+ {
334
+ "internalType": "address",
335
+ "name": "token",
336
+ "type": "address"
337
+ },
338
+ {
339
+ "internalType": "Amount",
340
+ "name": "spendingLimitAmount",
341
+ "type": "uint96"
342
+ }
343
+ ],
344
+ "name": "approveTokenHandler",
345
+ "outputs": [],
346
+ "stateMutability": "nonpayable",
347
+ "type": "function"
348
+ },
349
+ {
350
+ "inputs": [
351
+ {
352
+ "internalType": "Amount",
353
+ "name": "spendingLimitAmount",
354
+ "type": "uint96"
355
+ }
356
+ ],
357
+ "name": "approveTokenHandler",
358
+ "outputs": [],
359
+ "stateMutability": "nonpayable",
360
+ "type": "function"
361
+ },
362
+ {
363
+ "inputs": [],
364
+ "name": "authority",
365
+ "outputs": [
366
+ {
367
+ "internalType": "address",
368
+ "name": "",
369
+ "type": "address"
370
+ }
371
+ ],
372
+ "stateMutability": "view",
373
+ "type": "function"
374
+ },
375
+ {
376
+ "inputs": [
377
+ {
378
+ "internalType": "RequestId",
379
+ "name": "requestId",
380
+ "type": "uint64"
381
+ }
382
+ ],
383
+ "name": "cancel",
384
+ "outputs": [],
385
+ "stateMutability": "nonpayable",
386
+ "type": "function"
387
+ },
388
+ {
389
+ "inputs": [],
390
+ "name": "getAuthorization",
391
+ "outputs": [
392
+ {
393
+ "internalType": "contract IAuthorization",
394
+ "name": "authorization",
395
+ "type": "address"
396
+ }
397
+ ],
398
+ "stateMutability": "view",
399
+ "type": "function"
400
+ },
401
+ {
402
+ "inputs": [],
403
+ "name": "getComponentInfo",
404
+ "outputs": [
405
+ {
406
+ "components": [
407
+ {
408
+ "internalType": "string",
409
+ "name": "name",
410
+ "type": "string"
411
+ },
412
+ {
413
+ "internalType": "NftId",
414
+ "name": "productNftId",
415
+ "type": "uint96"
416
+ },
417
+ {
418
+ "internalType": "contract IERC20Metadata",
419
+ "name": "token",
420
+ "type": "address"
421
+ },
422
+ {
423
+ "internalType": "contract TokenHandler",
424
+ "name": "tokenHandler",
425
+ "type": "address"
426
+ },
427
+ {
428
+ "internalType": "address",
429
+ "name": "wallet",
430
+ "type": "address"
431
+ },
432
+ {
433
+ "internalType": "bytes",
434
+ "name": "data",
435
+ "type": "bytes"
436
+ }
437
+ ],
438
+ "internalType": "struct IComponents.ComponentInfo",
439
+ "name": "info",
440
+ "type": "tuple"
441
+ }
442
+ ],
443
+ "stateMutability": "view",
444
+ "type": "function"
445
+ },
446
+ {
447
+ "inputs": [],
448
+ "name": "getInitialComponentInfo",
449
+ "outputs": [
450
+ {
451
+ "components": [
452
+ {
453
+ "internalType": "string",
454
+ "name": "name",
455
+ "type": "string"
456
+ },
457
+ {
458
+ "internalType": "NftId",
459
+ "name": "productNftId",
460
+ "type": "uint96"
461
+ },
462
+ {
463
+ "internalType": "contract IERC20Metadata",
464
+ "name": "token",
465
+ "type": "address"
466
+ },
467
+ {
468
+ "internalType": "contract TokenHandler",
469
+ "name": "tokenHandler",
470
+ "type": "address"
471
+ },
472
+ {
473
+ "internalType": "address",
474
+ "name": "wallet",
475
+ "type": "address"
476
+ },
477
+ {
478
+ "internalType": "bytes",
479
+ "name": "data",
480
+ "type": "bytes"
481
+ }
482
+ ],
483
+ "internalType": "struct IComponents.ComponentInfo",
484
+ "name": "info",
485
+ "type": "tuple"
486
+ }
487
+ ],
488
+ "stateMutability": "view",
489
+ "type": "function"
490
+ },
491
+ {
492
+ "inputs": [],
493
+ "name": "getInitialInfo",
494
+ "outputs": [
495
+ {
496
+ "components": [
497
+ {
498
+ "internalType": "NftId",
499
+ "name": "nftId",
500
+ "type": "uint96"
501
+ },
502
+ {
503
+ "internalType": "NftId",
504
+ "name": "parentNftId",
505
+ "type": "uint96"
506
+ },
507
+ {
508
+ "internalType": "ObjectType",
509
+ "name": "objectType",
510
+ "type": "uint8"
511
+ },
512
+ {
513
+ "internalType": "bool",
514
+ "name": "isInterceptor",
515
+ "type": "bool"
516
+ },
517
+ {
518
+ "internalType": "address",
519
+ "name": "objectAddress",
520
+ "type": "address"
521
+ },
522
+ {
523
+ "internalType": "address",
524
+ "name": "initialOwner",
525
+ "type": "address"
526
+ },
527
+ {
528
+ "internalType": "bytes",
529
+ "name": "data",
530
+ "type": "bytes"
531
+ }
532
+ ],
533
+ "internalType": "struct IRegistry.ObjectInfo",
534
+ "name": "info",
535
+ "type": "tuple"
536
+ }
537
+ ],
538
+ "stateMutability": "view",
539
+ "type": "function"
540
+ },
541
+ {
542
+ "inputs": [],
543
+ "name": "getInstance",
544
+ "outputs": [
545
+ {
546
+ "internalType": "contract IInstance",
547
+ "name": "instance",
548
+ "type": "address"
549
+ }
550
+ ],
551
+ "stateMutability": "view",
552
+ "type": "function"
553
+ },
554
+ {
555
+ "inputs": [],
556
+ "name": "getName",
557
+ "outputs": [
558
+ {
559
+ "internalType": "string",
560
+ "name": "name",
561
+ "type": "string"
562
+ }
563
+ ],
564
+ "stateMutability": "view",
565
+ "type": "function"
566
+ },
567
+ {
568
+ "inputs": [],
569
+ "name": "getNftId",
570
+ "outputs": [
571
+ {
572
+ "internalType": "NftId",
573
+ "name": "",
574
+ "type": "uint96"
575
+ }
576
+ ],
577
+ "stateMutability": "view",
578
+ "type": "function"
579
+ },
580
+ {
581
+ "inputs": [],
582
+ "name": "getOwner",
583
+ "outputs": [
584
+ {
585
+ "internalType": "address",
586
+ "name": "",
587
+ "type": "address"
588
+ }
589
+ ],
590
+ "stateMutability": "view",
591
+ "type": "function"
592
+ },
593
+ {
594
+ "inputs": [],
595
+ "name": "getProductNftId",
596
+ "outputs": [
597
+ {
598
+ "internalType": "NftId",
599
+ "name": "productNftId",
600
+ "type": "uint96"
601
+ }
602
+ ],
603
+ "stateMutability": "view",
604
+ "type": "function"
605
+ },
606
+ {
607
+ "inputs": [],
608
+ "name": "getRegistry",
609
+ "outputs": [
610
+ {
611
+ "internalType": "contract IRegistry",
612
+ "name": "",
613
+ "type": "address"
614
+ }
615
+ ],
616
+ "stateMutability": "view",
617
+ "type": "function"
618
+ },
619
+ {
620
+ "inputs": [],
621
+ "name": "getToken",
622
+ "outputs": [
623
+ {
624
+ "internalType": "contract IERC20Metadata",
625
+ "name": "token",
626
+ "type": "address"
627
+ }
628
+ ],
629
+ "stateMutability": "view",
630
+ "type": "function"
631
+ },
632
+ {
633
+ "inputs": [],
634
+ "name": "getTokenHandler",
635
+ "outputs": [
636
+ {
637
+ "internalType": "contract TokenHandler",
638
+ "name": "tokenHandler",
639
+ "type": "address"
640
+ }
641
+ ],
642
+ "stateMutability": "view",
643
+ "type": "function"
644
+ },
645
+ {
646
+ "inputs": [],
647
+ "name": "getWallet",
648
+ "outputs": [
649
+ {
650
+ "internalType": "address",
651
+ "name": "walletAddress",
652
+ "type": "address"
653
+ }
654
+ ],
655
+ "stateMutability": "view",
656
+ "type": "function"
657
+ },
658
+ {
659
+ "inputs": [
660
+ {
661
+ "internalType": "address",
662
+ "name": "authority",
663
+ "type": "address"
664
+ },
665
+ {
666
+ "internalType": "address",
667
+ "name": "registry",
668
+ "type": "address"
669
+ },
670
+ {
671
+ "internalType": "NftId",
672
+ "name": "parentNftId",
673
+ "type": "uint96"
674
+ },
675
+ {
676
+ "internalType": "string",
677
+ "name": "name",
678
+ "type": "string"
679
+ },
680
+ {
681
+ "internalType": "address",
682
+ "name": "token",
683
+ "type": "address"
684
+ },
685
+ {
686
+ "internalType": "ObjectType",
687
+ "name": "componentType",
688
+ "type": "uint8"
689
+ },
690
+ {
691
+ "internalType": "bool",
692
+ "name": "isInterceptor",
693
+ "type": "bool"
694
+ },
695
+ {
696
+ "internalType": "address",
697
+ "name": "initialOwner",
698
+ "type": "address"
699
+ },
700
+ {
701
+ "internalType": "bytes",
702
+ "name": "registryData",
703
+ "type": "bytes"
704
+ },
705
+ {
706
+ "internalType": "bytes",
707
+ "name": "componentData",
708
+ "type": "bytes"
709
+ }
710
+ ],
711
+ "name": "initializeComponent",
712
+ "outputs": [],
713
+ "stateMutability": "nonpayable",
714
+ "type": "function"
715
+ },
716
+ {
717
+ "inputs": [],
718
+ "name": "initializeERC165",
719
+ "outputs": [],
720
+ "stateMutability": "nonpayable",
721
+ "type": "function"
722
+ },
723
+ {
724
+ "inputs": [
725
+ {
726
+ "internalType": "address",
727
+ "name": "initialOwner",
728
+ "type": "address"
729
+ },
730
+ {
731
+ "internalType": "address",
732
+ "name": "registryAddress",
733
+ "type": "address"
734
+ }
735
+ ],
736
+ "name": "initializeNftOwnable",
737
+ "outputs": [],
738
+ "stateMutability": "nonpayable",
739
+ "type": "function"
740
+ },
741
+ {
742
+ "inputs": [
743
+ {
744
+ "internalType": "address",
745
+ "name": "registryAddress",
746
+ "type": "address"
747
+ },
748
+ {
749
+ "internalType": "NftId",
750
+ "name": "parentNftId",
751
+ "type": "uint96"
752
+ },
753
+ {
754
+ "internalType": "ObjectType",
755
+ "name": "objectType",
756
+ "type": "uint8"
757
+ },
758
+ {
759
+ "internalType": "bool",
760
+ "name": "isInterceptor",
761
+ "type": "bool"
762
+ },
763
+ {
764
+ "internalType": "address",
765
+ "name": "initialOwner",
766
+ "type": "address"
767
+ },
768
+ {
769
+ "internalType": "bytes",
770
+ "name": "registryData",
771
+ "type": "bytes"
772
+ }
773
+ ],
774
+ "name": "initializeRegisterable",
775
+ "outputs": [],
776
+ "stateMutability": "nonpayable",
777
+ "type": "function"
778
+ },
779
+ {
780
+ "inputs": [
781
+ {
782
+ "internalType": "address",
783
+ "name": "registryAddress",
784
+ "type": "address"
785
+ }
786
+ ],
787
+ "name": "initializeRegistryLinked",
788
+ "outputs": [],
789
+ "stateMutability": "nonpayable",
790
+ "type": "function"
791
+ },
792
+ {
793
+ "inputs": [],
794
+ "name": "isConsumingScheduledOp",
795
+ "outputs": [
796
+ {
797
+ "internalType": "bytes4",
798
+ "name": "",
799
+ "type": "bytes4"
800
+ }
801
+ ],
802
+ "stateMutability": "view",
803
+ "type": "function"
804
+ },
805
+ {
806
+ "inputs": [],
807
+ "name": "isNftInterceptor",
808
+ "outputs": [
809
+ {
810
+ "internalType": "bool",
811
+ "name": "isInterceptor",
812
+ "type": "bool"
813
+ }
814
+ ],
815
+ "stateMutability": "view",
816
+ "type": "function"
817
+ },
818
+ {
819
+ "inputs": [],
820
+ "name": "isRegistered",
821
+ "outputs": [
822
+ {
823
+ "internalType": "bool",
824
+ "name": "",
825
+ "type": "bool"
826
+ }
827
+ ],
828
+ "stateMutability": "view",
829
+ "type": "function"
830
+ },
831
+ {
832
+ "inputs": [],
833
+ "name": "isVerifying",
834
+ "outputs": [
835
+ {
836
+ "internalType": "bool",
837
+ "name": "verifying",
838
+ "type": "bool"
839
+ }
840
+ ],
841
+ "stateMutability": "view",
842
+ "type": "function"
843
+ },
844
+ {
845
+ "inputs": [],
846
+ "name": "linkToRegisteredNftId",
847
+ "outputs": [
848
+ {
849
+ "internalType": "NftId",
850
+ "name": "nftId",
851
+ "type": "uint96"
852
+ }
853
+ ],
854
+ "stateMutability": "nonpayable",
855
+ "type": "function"
856
+ },
857
+ {
858
+ "inputs": [],
859
+ "name": "lock",
860
+ "outputs": [],
861
+ "stateMutability": "nonpayable",
862
+ "type": "function"
863
+ },
864
+ {
865
+ "inputs": [
866
+ {
867
+ "internalType": "address",
868
+ "name": "to",
869
+ "type": "address"
870
+ },
871
+ {
872
+ "internalType": "uint256",
873
+ "name": "tokenId",
874
+ "type": "uint256"
875
+ }
876
+ ],
877
+ "name": "nftMint",
878
+ "outputs": [],
879
+ "stateMutability": "nonpayable",
880
+ "type": "function"
881
+ },
882
+ {
883
+ "inputs": [
884
+ {
885
+ "internalType": "address",
886
+ "name": "from",
887
+ "type": "address"
888
+ },
889
+ {
890
+ "internalType": "address",
891
+ "name": "to",
892
+ "type": "address"
893
+ },
894
+ {
895
+ "internalType": "uint256",
896
+ "name": "tokenId",
897
+ "type": "uint256"
898
+ }
899
+ ],
900
+ "name": "nftTransferFrom",
901
+ "outputs": [],
902
+ "stateMutability": "nonpayable",
903
+ "type": "function"
904
+ },
905
+ {
906
+ "inputs": [],
907
+ "name": "register",
908
+ "outputs": [],
909
+ "stateMutability": "nonpayable",
910
+ "type": "function"
911
+ },
912
+ {
913
+ "inputs": [
914
+ {
915
+ "internalType": "bytes4",
916
+ "name": "interfaceId",
917
+ "type": "bytes4"
918
+ }
919
+ ],
920
+ "name": "registerInterface",
921
+ "outputs": [],
922
+ "stateMutability": "nonpayable",
923
+ "type": "function"
924
+ },
925
+ {
926
+ "inputs": [
927
+ {
928
+ "internalType": "RequestId",
929
+ "name": "requestId",
930
+ "type": "uint64"
931
+ },
932
+ {
933
+ "internalType": "NftId",
934
+ "name": "requesterId",
935
+ "type": "uint96"
936
+ },
937
+ {
938
+ "internalType": "bytes",
939
+ "name": "requestData",
940
+ "type": "bytes"
941
+ },
942
+ {
943
+ "internalType": "Timestamp",
944
+ "name": "expiryAt",
945
+ "type": "uint40"
946
+ }
947
+ ],
948
+ "name": "request",
949
+ "outputs": [],
950
+ "stateMutability": "nonpayable",
951
+ "type": "function"
952
+ },
953
+ {
954
+ "inputs": [
955
+ {
956
+ "internalType": "RequestId",
957
+ "name": "requestId",
958
+ "type": "uint64"
959
+ },
960
+ {
961
+ "internalType": "bytes",
962
+ "name": "responseData",
963
+ "type": "bytes"
964
+ }
965
+ ],
966
+ "name": "respond",
967
+ "outputs": [],
968
+ "stateMutability": "nonpayable",
969
+ "type": "function"
970
+ },
971
+ {
972
+ "inputs": [
973
+ {
974
+ "internalType": "address",
975
+ "name": "newAuthority",
976
+ "type": "address"
977
+ }
978
+ ],
979
+ "name": "setAuthority",
980
+ "outputs": [],
981
+ "stateMutability": "nonpayable",
982
+ "type": "function"
983
+ },
984
+ {
985
+ "inputs": [
986
+ {
987
+ "internalType": "address",
988
+ "name": "newWallet",
989
+ "type": "address"
990
+ }
991
+ ],
992
+ "name": "setWallet",
993
+ "outputs": [],
994
+ "stateMutability": "nonpayable",
995
+ "type": "function"
996
+ },
997
+ {
998
+ "inputs": [
999
+ {
1000
+ "internalType": "bytes4",
1001
+ "name": "interfaceId",
1002
+ "type": "bytes4"
1003
+ }
1004
+ ],
1005
+ "name": "supportsInterface",
1006
+ "outputs": [
1007
+ {
1008
+ "internalType": "bool",
1009
+ "name": "",
1010
+ "type": "bool"
1011
+ }
1012
+ ],
1013
+ "stateMutability": "view",
1014
+ "type": "function"
1015
+ },
1016
+ {
1017
+ "inputs": [],
1018
+ "name": "unlock",
1019
+ "outputs": [],
1020
+ "stateMutability": "nonpayable",
1021
+ "type": "function"
1022
+ },
1023
+ {
1024
+ "inputs": [
1025
+ {
1026
+ "internalType": "Amount",
1027
+ "name": "amount",
1028
+ "type": "uint96"
1029
+ }
1030
+ ],
1031
+ "name": "withdrawFees",
1032
+ "outputs": [
1033
+ {
1034
+ "internalType": "Amount",
1035
+ "name": "withdrawnAmount",
1036
+ "type": "uint96"
1037
+ }
1038
+ ],
1039
+ "stateMutability": "nonpayable",
1040
+ "type": "function"
1041
+ }
1042
+ ],
1043
+ "bytecode": "0x6080604052348015600e575f80fd5b50612e988061001c5f395ff3fe608060405234801561000f575f80fd5b506004361061026a575f3560e01c8063644c45e01161014b578063bae99c99116100bf578063deaa59df11610084578063deaa59df146105a5578063e7f7fb86146105b8578063ea15869f146105cb578063f7c34ee0146105f2578063f83d08ba14610605578063f8bf0d9f1461060d575f80fd5b8063bae99c9914610534578063bb1e0e5914610547578063bf7e214f1461055a578063cf4ee77a14610562578063de7b5d1414610575575f80fd5b8063893d20e811610110578063893d20e8146104d25780638fb36037146104da57806390edbd35146104fb578063a69df4b514610510578063ada9652e14610518578063b423086c1461052c575f80fd5b8063644c45e014610459578063675393bf146104765780636bd1c0eb146104895780637a9e5e4b146104b957806387ef9ba0146104cc575f80fd5b806321df0da7116101e2578063419197fe116101a7578063419197fe146103eb57806343d752d3146103fe5780634bd100e4146104065780634c125e791461042d5780635741e5e9146104405780635ab1bd5314610448575f80fd5b806321df0da71461039957806322366844146103a157806327bb7a33146103a95780632eb3e6f4146103bc57806336fc697e146103e3575f80fd5b8063138461e011610233578063138461e01461031957806317d7de7c146103215780631aa3a008146103365780631c6b21901461033e5780631eff4b2214610351578063214cdb8014610386575f80fd5b806251884a1461026e57806301ffc9a7146102935780630b29e28e146102cf5780630fec111c146102e457806313299604146102f9575b5f80fd5b610276610620565b6040516001600160601b0390911681526020015b60405180910390f35b6102bf6102a136600461227a565b6001600160e01b0319165f9081526020819052604090205460ff1690565b604051901515815260200161028a565b6102e26102dd3660046122db565b610632565b005b6102ec610645565b60405161028a91906123b5565b610301610803565b6040516001600160a01b03909116815260200161028a565b610276610815565b610329610824565b60405161028a9190612449565b6102e2610834565b61027661034c36600461245b565b6108ef565b6103787f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b60405190815260200161028a565b6102e261039436600461227a565b61096c565b610301610998565b6102bf6109aa565b6102e26103b73660046125ce565b610aa0565b6103787fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f0081565b6102e2610b45565b6102e26103f9366004612661565b610b8a565b610301610d4a565b6103787faab7c0ea03d290e56d6c060e0733d3ebcbe647f7694616a2ec52738a64b2f90081565b6102e261043b366004612698565b610d5c565b6102bf610d68565b6001546001600160a01b0316610301565b5f80516020612e23833981519152546001600160601b0316610276565b6102e26104843660046126b1565b610e1c565b7fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f02546001600160a01b0316610301565b6102e26104c73660046126b1565b610f28565b5f6102bf565b610301610faa565b6104e26110db565b6040516001600160e01b0319909116815260200161028a565b610503611110565b60405161028a91906126cc565b6102e2611135565b6103785f80516020612e2383398151915281565b6105036111bb565b6102e261054236600461245b565b6111cb565b6102e261055536600461275f565b611217565b6103016112b4565b6102e2610570366004612789565b6112cf565b7fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f00546001600160a01b0316610301565b6102e26105b33660046126b1565b6112e2565b6102e26105c63660046127d3565b611558565b6103787fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f0081565b6102e2610600366004612811565b6115f5565b6102e261166b565b6102e261061b36600461283d565b6116df565b5f610629611110565b60200151905090565b61063e335b5f366117f1565b5050505050565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a082019290925260c08101919091525f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af41580156106f5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107199190612947565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a001610761610faa565b6001600160a01b0316815260200182600101805461077e90612962565b80601f01602080910402602001604051908101604052809291908181526020018280546107aa90612962565b80156107f55780601f106107cc576101008083540402835291602001916107f5565b820191905f5260205f20905b8154815290600101906020018083116107d857829003601f168201915b505050505081525091505090565b5f61080c611110565b60800151905090565b5f61081f306118ef565b905090565b606061082e611110565b51919050565b61083c610faa565b6001600160a01b0316336001600160a01b0316146108745760405163086391f760e31b81523360048201526024015b60405180910390fd5b7faab7c0ea03d290e56d6c060e0733d3ebcbe647f7694616a2ec52738a64b2f9005460408051630339d25960e41b815290516001600160a01b039092169163339d2590916004808201925f9290919082900301818387803b1580156108d7575f80fd5b505af11580156108e9573d5f803e3d5ffd5b50505050565b5f6108f8610faa565b6001600160a01b0316336001600160a01b03161461092b5760405163086391f760e31b815233600482015260240161086b565b61093433610637565b60405163ca49882f60e01b815260206004820152600c60248201526b77697468647261774665657360a01b604482015260640161086b565b610974611ae8565b6001600160e01b0319165f908152602081905260409020805460ff19166001179055565b5f6109a1611110565b60400151905090565b5f6109bd6001546001600160a01b031690565b604051636939560f60e11b81523060048201526001600160a01b03919091169063d272ac1e90602401602060405180830381865afa158015610a01573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a259190612947565b6040516330b8415f60e01b81526001600160601b03909116600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015610a7c573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061081f91906129a5565b610aa8611ae8565b610ab282876115f5565b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0387166cffffffffffffffffffffffffff1990911617600160601b60ff8716021760ff60681b1916600160681b851515021781557f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa301610b3b8382612a04565b5050505050505050565b610b4d611ae8565b6301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b610b92610faa565b6001600160a01b0316336001600160a01b031614610bc55760405163086391f760e31b815233600482015260240161086b565b30610bce610803565b6001600160a01b031614610bf55760405163b6d7537f60e01b815260040160405180910390fd5b7ff1220014fdb8b69aee438722b1fe13ee4a807811a472467cee162f7b866e704e610c1e610d4a565b604080516001600160a01b0390921682526001600160601b03841660208301520160405180910390a1816001600160a01b031663095ea7b3610c5e610d4a565b60405163046e44af60e11b81526001600160601b038516600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906308dc895e90602401602060405180830381865af4158015610cb4573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cd89190612abe565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044015b6020604051808303815f875af1158015610d21573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d4591906129a5565b505050565b5f610d53611110565b60600151905090565b610d6533610637565b50565b5f610d716109aa565b15610dec576001546001600160a01b03166040516308b09a5f60e41b81523060048201526001600160a01b039190911690638b09a5f0906024015f60405180830381865afa158015610dc5573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610d539190810190612b3a565b507fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f0254600160a01b900460ff1690565b610e24611ae8565b806001600160a01b03163b5f03610e595760405163fdeac91f60e01b81526001600160a01b038216600482015260240161086b565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b81526318788cbb60e11b60048201526301ffc9a790602401602060405180830381865afa925050508015610ed3575060408051601f3d908101601f19168201909252610ed0918101906129a5565b60015b610efb5760405163fdeac91f60e01b81526001600160a01b038216600482015260240161086b565b80610f245760405163fdeac91f60e01b81526001600160a01b038316600482015260240161086b565b5050565b33610f316112b4565b6001600160a01b0316816001600160a01b031614610f6c5760405162d1953b60e31b81526001600160a01b038216600482015260240161086b565b816001600160a01b03163b5f03610fa1576040516361798f2f60e11b81526001600160a01b038316600482015260240161086b565b610f2482611b38565b5f805f80516020612e2383398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015611016573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061103a91906129a5565b156110c5576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa15801561109b573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110bf9190612c0a565b91505090565b54600160601b90046001600160a01b0316919050565b5f80516020612e4383398151915280545f9190600160a01b900460ff16611102575f6110bf565b638fb3603760e01b91505090565b611118612224565b6111206109aa565b1561112d5761081f611b98565b61081f6111bb565b61113d610faa565b6001600160a01b0316336001600160a01b0316146111705760405163086391f760e31b815233600482015260240161086b565b61117a600a611d7e565b60405163581e954760e11b81525f60048201526001600160a01b03919091169063b03d2a8e906024015b5f604051808303815f87803b1580156108d7575f80fd5b6111c3612224565b61081f611b98565b6111d3610faa565b6001600160a01b0316336001600160a01b0316146112065760405163086391f760e31b815233600482015260240161086b565b610d65611211610998565b82610b8a565b6001546001600160a01b03166001600160a01b031663120726c36040518163ffffffff1660e01b8152600401602060405180830381865afa15801561125e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112829190612c0a565b6001600160a01b0316336001600160a01b031614610f245760405162f0630960e01b815233600482015260240161086b565b5f80516020612e43833981519152546001600160a01b031690565b6112d833610637565b610f248282611e99565b6112ea610faa565b6001600160a01b0316336001600160a01b03161461131d5760405163086391f760e31b815233600482015260240161086b565b5f611326610803565b90505f611331610998565b6040516370a0823160e01b81526001600160a01b03848116600483015291909116906370a0823190602401602060405180830381865afa158015611377573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061139b9190612abe565b90506113a683611eea565b8015610d4557604080516001600160a01b038085168252851660208201529081018290527f8f925ed35e36754081a3353f30c5686c405280f94d1cfe322ee5707833d898679060600160405180910390a1306001600160a01b038316036115075761140f610d4a565b6001600160a01b03166354f0d84c838573__$3bac17678db7ae928afa209f2f44deec9c$__634c41dd96866040518263ffffffff1660e01b815260040161145891815260200190565b602060405180830381865af4158015611473573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114979190612947565b6040516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301526001600160601b031660448201526064015f604051808303815f87803b1580156114ec575f80fd5b505af11580156114fe573d5f803e3d5ffd5b50505050505050565b61150f610d4a565b6001600160a01b031663c7d63d57838573__$3bac17678db7ae928afa209f2f44deec9c$__634c41dd96866040518263ffffffff1660e01b815260040161145891815260200190565b6001546001600160a01b03166001600160a01b031663120726c36040518163ffffffff1660e01b8152600401602060405180830381865afa15801561159f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115c39190612c0a565b6001600160a01b0316336001600160a01b031614610d455760405162f0630960e01b815233600482015260240161086b565b6115fd611ae8565b61160681610e1c565b61160e610b45565b6001600160a01b0382166116355760405163f17ef42d60e01b815260040160405180910390fd5b505f80516020612e2383398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b611673610faa565b6001600160a01b0316336001600160a01b0316146116a65760405163086391f760e31b815233600482015260240161086b565b6116b0600a611d7e565b60405163581e954760e11b8152600160048201526001600160a01b03919091169063b03d2a8e906024016111a4565b6116e7611ae8565b6116f5898987878787610aa0565b6116fe8a611f83565b6001600160a01b038616611725576040516327eab2e360e11b815260040160405180910390fd5b86515f036117465760405163591eebf360e11b815260040160405180910390fd5b7fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f00806117728982612a04565b506001810180546001600160a01b0319166001600160a01b0389161790556002810180546001600160a81b0319163060ff60a01b191617600160a01b87151502179055600381016117c38382612a04565b506117d4634a531f3360e01b61096c565b6117e4632986755f60e11b61096c565b5050505050505050505050565b5f80516020612e438339815191525f8061182961180c6112b4565b873061181b60045f8a8c612c25565b61182491612c4c565b611f94565b91509150816118e75763ffffffff8116156118c457825460ff60a01b1916600160a01b1783556118576112b4565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b815260040161188693929190612c84565b5f604051808303815f87803b15801561189d575f80fd5b505af11580156118af573d5f803e3d5ffd5b5050845460ff60a01b19168555506118e79050565b60405162d1953b60e31b81526001600160a01b038716600482015260240161086b565b505050505050565b5f805f80516020612e2383398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af415801561195b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061197f91906129a5565b156119ab5780546040516301ab8b6760e21b81526001600160601b03909116600482015260240161086b565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa1580156119fd573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a2191906129a5565b611a495760405163b9304b0d60e01b81526001600160a01b038416600482015260240161086b565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038581166004830152919091169063d272ac1e90602401602060405180830381865afa158015611a9b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611abf9190612947565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005468010000000000000000900460ff16611b3657604051631afcd79f60e31b815260040160405180910390fd5b565b5f80516020612e4383398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b611ba0612224565b5f611bb36001546001600160a01b031690565b604051636939560f60e11b81523060048201526001600160a01b03919091169063d272ac1e90602401602060405180830381865afa158015611bf7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c1b9190612947565b6040516330b8415f60e01b81526001600160601b038216600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015611c74573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c9891906129a5565b15611d76577fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f01546001600160a01b03166001600160a01b031663f0ea17c3611cf45f80516020612e23833981519152546001600160601b031690565b6040516001600160e01b031960e084901b1681526001600160601b0390911660048201526024015f60405180830381865afa158015611d35573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052611d5c9190810190612cc3565b60808101519092506001600160a01b031615611d76575090565b6110bf61209c565b5f807fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f005460408051633379d27d60e21b815290516001600160a01b039092169163cde749f4916004808201926020929091908290030181865afa158015611de7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e0b9190612d9b565b9050611e1f6001546001600160a01b031690565b60405163d39e604360e01b815260ff8086166004830152831660248201526001600160a01b03919091169063d39e604390604401602060405180830381865afa158015611e6e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e929190612c0a565b9392505050565b7faab7c0ea03d290e56d6c060e0733d3ebcbe647f7694616a2ec52738a64b2f901546040516367a773bd60e11b81526001600160a01b039091169063cf4ee77a90610d059085908590600401612db6565b611ef2610faa565b6001600160a01b0316336001600160a01b031614611f255760405163086391f760e31b815233600482015260240161086b565b611f2f600b611d7e565b60405163deaa59df60e01b81526001600160a01b038381166004830152919091169063deaa59df906024015f604051808303815f87803b158015611f71575f80fd5b505af115801561063e573d5f803e3d5ffd5b611f8b611ae8565b610d6581612213565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b179052516120029190612dd7565b5f60405180830381855afa9150503d805f811461203a576040519150601f19603f3d011682016040523d82523d5f602084013e61203f565b606091505b5091509150811561209157604081511061207157808060200190518101906120679190612ded565b9094509250612091565b6020815110612091578080602001905181019061208e91906129a5565b93505b505094509492505050565b6120a4612224565b5f7fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f0090506040518060c00160405280825f0180546120e190612962565b80601f016020809104026020016040519081016040528092919081815260200182805461210d90612962565b80156121585780601f1061212f57610100808354040283529160200191612158565b820191905f5260205f20905b81548152906001019060200180831161213b57829003601f168201915b5050505050815260200173__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af41580156121a9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121cd9190612947565b6001600160601b0316815260018301546001600160a01b0390811660208301525f6040830152600284015416606082015260038301805460809092019161077e90612962565b61221b611ae8565b610d6581611b38565b6040518060c00160405280606081526020015f6001600160601b031681526020015f6001600160a01b031681526020015f6001600160a01b031681526020015f6001600160a01b03168152602001606081525090565b5f6020828403121561228a575f80fd5b81356001600160e01b031981168114611e92575f80fd5b80356001600160401b03811681146122b7575f80fd5b919050565b6001600160601b0381168114610d65575f80fd5b80356122b7816122bc565b5f805f805f608086880312156122ef575f80fd5b6122f8866122a1565b94506020860135612308816122bc565b935060408601356001600160401b03811115612322575f80fd5b8601601f81018813612332575f80fd5b80356001600160401b03811115612347575f80fd5b886020828401011115612358575f80fd5b60209190910193509150606086013564ffffffffff81168114612379575f80fd5b809150509295509295909350565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f60608301516123fd608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e080840152612441610100840182612387565b949350505050565b602081525f611e926020830184612387565b5f6020828403121561246b575f80fd5b8135611e92816122bc565b6001600160a01b0381168114610d65575f80fd5b80356122b781612476565b60ff81168114610d65575f80fd5b80356122b781612495565b8015158114610d65575f80fd5b80356122b7816124ae565b634e487b7160e01b5f52604160045260245ffd5b60405160e081016001600160401b03811182821017156124fc576124fc6124c6565b60405290565b60405160c081016001600160401b03811182821017156124fc576124fc6124c6565b604051601f8201601f191681016001600160401b038111828210171561254c5761254c6124c6565b604052919050565b5f6001600160401b0382111561256c5761256c6124c6565b50601f01601f191660200190565b5f82601f830112612589575f80fd5b8135602083015f6125a161259c84612554565b612524565b90508281528583830111156125b4575f80fd5b828260208301375f92810160200192909252509392505050565b5f805f805f8060c087890312156125e3575f80fd5b86356125ee81612476565b955060208701356125fe816122bc565b9450604087013561260e81612495565b9350606087013561261e816124ae565b9250608087013561262e81612476565b915060a08701356001600160401b03811115612648575f80fd5b61265489828a0161257a565b9150509295509295509295565b5f8060408385031215612672575f80fd5b823561267d81612476565b9150602083013561268d816122bc565b809150509250929050565b5f602082840312156126a8575f80fd5b611e92826122a1565b5f602082840312156126c1575f80fd5b8135611e9281612476565b602081525f825160c060208401526126e760e0840182612387565b90506001600160601b03602085015116604084015260018060a01b03604085015116606084015260018060a01b036060850151166080840152608084015161273a60a08501826001600160a01b03169052565b5060a0840151838203601f190160c08501526127568282612387565b95945050505050565b5f8060408385031215612770575f80fd5b823561277b81612476565b946020939093013593505050565b5f806040838503121561279a575f80fd5b6127a3836122a1565b915060208301356001600160401b038111156127bd575f80fd5b6127c98582860161257a565b9150509250929050565b5f805f606084860312156127e5575f80fd5b83356127f081612476565b9250602084013561280081612476565b929592945050506040919091013590565b5f8060408385031215612822575f80fd5b823561282d81612476565b9150602083013561268d81612476565b5f805f805f805f805f806101408b8d031215612857575f80fd5b6128608b61248a565b995061286e60208c0161248a565b985061287c60408c016122d0565b975060608b01356001600160401b03811115612896575f80fd5b6128a28d828e0161257a565b9750506128b160808c0161248a565b95506128bf60a08c016124a3565b94506128cd60c08c016124bb565b93506128db60e08c0161248a565b92506101008b01356001600160401b038111156128f6575f80fd5b6129028d828e0161257a565b9250506101208b01356001600160401b0381111561291e575f80fd5b61292a8d828e0161257a565b9150509295989b9194979a5092959850565b80516122b7816122bc565b5f60208284031215612957575f80fd5b8151611e92816122bc565b600181811c9082168061297657607f821691505b60208210810361299457634e487b7160e01b5f52602260045260245ffd5b50919050565b80516122b7816124ae565b5f602082840312156129b5575f80fd5b8151611e92816124ae565b601f821115610d4557805f5260205f20601f840160051c810160208510156129e55750805b601f840160051c820191505b8181101561063e575f81556001016129f1565b81516001600160401b03811115612a1d57612a1d6124c6565b612a3181612a2b8454612962565b846129c0565b6020601f821160018114612a63575f8315612a4c5750848201515b5f19600385901b1c1916600184901b17845561063e565b5f84815260208120601f198516915b82811015612a925787850151825560209485019460019092019101612a72565b5084821015612aaf57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b5f60208284031215612ace575f80fd5b5051919050565b80516122b781612495565b80516122b781612476565b5f82601f830112612afa575f80fd5b8151602083015f612b0d61259c84612554565b9050828152858383011115612b20575f80fd5b8282602083015e5f92810160200192909252509392505050565b5f60208284031215612b4a575f80fd5b81516001600160401b03811115612b5f575f80fd5b820160e08185031215612b70575f80fd5b612b786124da565b612b818261293c565b8152612b8f6020830161293c565b6020820152612ba060408301612ad5565b6040820152612bb16060830161299a565b6060820152612bc260808301612ae0565b6080820152612bd360a08301612ae0565b60a082015260c08201516001600160401b03811115612bf0575f80fd5b612bfc86828501612aeb565b60c083015250949350505050565b5f60208284031215612c1a575f80fd5b8151611e9281612476565b5f8085851115612c33575f80fd5b83861115612c3f575f80fd5b5050820193919092039150565b80356001600160e01b03198116906004841015612c7d576001600160e01b0319600485900360031b81901b82161691505b5092915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b5f60208284031215612cd3575f80fd5b81516001600160401b03811115612ce8575f80fd5b820160c08185031215612cf9575f80fd5b612d01612502565b81516001600160401b03811115612d16575f80fd5b612d2286828501612aeb565b825250612d316020830161293c565b6020820152612d4260408301612ae0565b6040820152612d5360608301612ae0565b6060820152612d6460808301612ae0565b608082015260a08201516001600160401b03811115612d81575f80fd5b612d8d86828501612aeb565b60a083015250949350505050565b5f60208284031215612dab575f80fd5b8151611e9281612495565b6001600160401b0383168152604060208201525f6124416040830184612387565b5f82518060208501845e5f920191825250919050565b5f8060408385031215612dfe575f80fd5b8251612e09816124ae565b602084015190925063ffffffff8116811461268d575f80fdfe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00a2646970667358221220b2b1fb5a833949208a372f1d603b61a2f1b043e4d82c957baf7e181cbaedc47664736f6c634300081a0033",
1044
+ "deployedBytecode": "0x608060405234801561000f575f80fd5b506004361061026a575f3560e01c8063644c45e01161014b578063bae99c99116100bf578063deaa59df11610084578063deaa59df146105a5578063e7f7fb86146105b8578063ea15869f146105cb578063f7c34ee0146105f2578063f83d08ba14610605578063f8bf0d9f1461060d575f80fd5b8063bae99c9914610534578063bb1e0e5914610547578063bf7e214f1461055a578063cf4ee77a14610562578063de7b5d1414610575575f80fd5b8063893d20e811610110578063893d20e8146104d25780638fb36037146104da57806390edbd35146104fb578063a69df4b514610510578063ada9652e14610518578063b423086c1461052c575f80fd5b8063644c45e014610459578063675393bf146104765780636bd1c0eb146104895780637a9e5e4b146104b957806387ef9ba0146104cc575f80fd5b806321df0da7116101e2578063419197fe116101a7578063419197fe146103eb57806343d752d3146103fe5780634bd100e4146104065780634c125e791461042d5780635741e5e9146104405780635ab1bd5314610448575f80fd5b806321df0da71461039957806322366844146103a157806327bb7a33146103a95780632eb3e6f4146103bc57806336fc697e146103e3575f80fd5b8063138461e011610233578063138461e01461031957806317d7de7c146103215780631aa3a008146103365780631c6b21901461033e5780631eff4b2214610351578063214cdb8014610386575f80fd5b806251884a1461026e57806301ffc9a7146102935780630b29e28e146102cf5780630fec111c146102e457806313299604146102f9575b5f80fd5b610276610620565b6040516001600160601b0390911681526020015b60405180910390f35b6102bf6102a136600461227a565b6001600160e01b0319165f9081526020819052604090205460ff1690565b604051901515815260200161028a565b6102e26102dd3660046122db565b610632565b005b6102ec610645565b60405161028a91906123b5565b610301610803565b6040516001600160a01b03909116815260200161028a565b610276610815565b610329610824565b60405161028a9190612449565b6102e2610834565b61027661034c36600461245b565b6108ef565b6103787f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b60405190815260200161028a565b6102e261039436600461227a565b61096c565b610301610998565b6102bf6109aa565b6102e26103b73660046125ce565b610aa0565b6103787fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f0081565b6102e2610b45565b6102e26103f9366004612661565b610b8a565b610301610d4a565b6103787faab7c0ea03d290e56d6c060e0733d3ebcbe647f7694616a2ec52738a64b2f90081565b6102e261043b366004612698565b610d5c565b6102bf610d68565b6001546001600160a01b0316610301565b5f80516020612e23833981519152546001600160601b0316610276565b6102e26104843660046126b1565b610e1c565b7fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f02546001600160a01b0316610301565b6102e26104c73660046126b1565b610f28565b5f6102bf565b610301610faa565b6104e26110db565b6040516001600160e01b0319909116815260200161028a565b610503611110565b60405161028a91906126cc565b6102e2611135565b6103785f80516020612e2383398151915281565b6105036111bb565b6102e261054236600461245b565b6111cb565b6102e261055536600461275f565b611217565b6103016112b4565b6102e2610570366004612789565b6112cf565b7fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f00546001600160a01b0316610301565b6102e26105b33660046126b1565b6112e2565b6102e26105c63660046127d3565b611558565b6103787fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f0081565b6102e2610600366004612811565b6115f5565b6102e261166b565b6102e261061b36600461283d565b6116df565b5f610629611110565b60200151905090565b61063e335b5f366117f1565b5050505050565b6040805160e0810182525f8082526020820181905291810182905260608082018390526080820183905260a082019290925260c08101919091525f7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af41580156106f5573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107199190612947565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a001610761610faa565b6001600160a01b0316815260200182600101805461077e90612962565b80601f01602080910402602001604051908101604052809291908181526020018280546107aa90612962565b80156107f55780601f106107cc576101008083540402835291602001916107f5565b820191905f5260205f20905b8154815290600101906020018083116107d857829003601f168201915b505050505081525091505090565b5f61080c611110565b60800151905090565b5f61081f306118ef565b905090565b606061082e611110565b51919050565b61083c610faa565b6001600160a01b0316336001600160a01b0316146108745760405163086391f760e31b81523360048201526024015b60405180910390fd5b7faab7c0ea03d290e56d6c060e0733d3ebcbe647f7694616a2ec52738a64b2f9005460408051630339d25960e41b815290516001600160a01b039092169163339d2590916004808201925f9290919082900301818387803b1580156108d7575f80fd5b505af11580156108e9573d5f803e3d5ffd5b50505050565b5f6108f8610faa565b6001600160a01b0316336001600160a01b03161461092b5760405163086391f760e31b815233600482015260240161086b565b61093433610637565b60405163ca49882f60e01b815260206004820152600c60248201526b77697468647261774665657360a01b604482015260640161086b565b610974611ae8565b6001600160e01b0319165f908152602081905260409020805460ff19166001179055565b5f6109a1611110565b60400151905090565b5f6109bd6001546001600160a01b031690565b604051636939560f60e11b81523060048201526001600160a01b03919091169063d272ac1e90602401602060405180830381865afa158015610a01573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a259190612947565b6040516330b8415f60e01b81526001600160601b03909116600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015610a7c573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061081f91906129a5565b610aa8611ae8565b610ab282876115f5565b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0387166cffffffffffffffffffffffffff1990911617600160601b60ff8716021760ff60681b1916600160681b851515021781557f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa301610b3b8382612a04565b5050505050505050565b610b4d611ae8565b6301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b610b92610faa565b6001600160a01b0316336001600160a01b031614610bc55760405163086391f760e31b815233600482015260240161086b565b30610bce610803565b6001600160a01b031614610bf55760405163b6d7537f60e01b815260040160405180910390fd5b7ff1220014fdb8b69aee438722b1fe13ee4a807811a472467cee162f7b866e704e610c1e610d4a565b604080516001600160a01b0390921682526001600160601b03841660208301520160405180910390a1816001600160a01b031663095ea7b3610c5e610d4a565b60405163046e44af60e11b81526001600160601b038516600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906308dc895e90602401602060405180830381865af4158015610cb4573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cd89190612abe565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044015b6020604051808303815f875af1158015610d21573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d4591906129a5565b505050565b5f610d53611110565b60600151905090565b610d6533610637565b50565b5f610d716109aa565b15610dec576001546001600160a01b03166040516308b09a5f60e41b81523060048201526001600160a01b039190911690638b09a5f0906024015f60405180830381865afa158015610dc5573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610d539190810190612b3a565b507fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f0254600160a01b900460ff1690565b610e24611ae8565b806001600160a01b03163b5f03610e595760405163fdeac91f60e01b81526001600160a01b038216600482015260240161086b565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b81526318788cbb60e11b60048201526301ffc9a790602401602060405180830381865afa925050508015610ed3575060408051601f3d908101601f19168201909252610ed0918101906129a5565b60015b610efb5760405163fdeac91f60e01b81526001600160a01b038216600482015260240161086b565b80610f245760405163fdeac91f60e01b81526001600160a01b038316600482015260240161086b565b5050565b33610f316112b4565b6001600160a01b0316816001600160a01b031614610f6c5760405162d1953b60e31b81526001600160a01b038216600482015260240161086b565b816001600160a01b03163b5f03610fa1576040516361798f2f60e11b81526001600160a01b038316600482015260240161086b565b610f2482611b38565b5f805f80516020612e2383398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015611016573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061103a91906129a5565b156110c5576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa15801561109b573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110bf9190612c0a565b91505090565b54600160601b90046001600160a01b0316919050565b5f80516020612e4383398151915280545f9190600160a01b900460ff16611102575f6110bf565b638fb3603760e01b91505090565b611118612224565b6111206109aa565b1561112d5761081f611b98565b61081f6111bb565b61113d610faa565b6001600160a01b0316336001600160a01b0316146111705760405163086391f760e31b815233600482015260240161086b565b61117a600a611d7e565b60405163581e954760e11b81525f60048201526001600160a01b03919091169063b03d2a8e906024015b5f604051808303815f87803b1580156108d7575f80fd5b6111c3612224565b61081f611b98565b6111d3610faa565b6001600160a01b0316336001600160a01b0316146112065760405163086391f760e31b815233600482015260240161086b565b610d65611211610998565b82610b8a565b6001546001600160a01b03166001600160a01b031663120726c36040518163ffffffff1660e01b8152600401602060405180830381865afa15801561125e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112829190612c0a565b6001600160a01b0316336001600160a01b031614610f245760405162f0630960e01b815233600482015260240161086b565b5f80516020612e43833981519152546001600160a01b031690565b6112d833610637565b610f248282611e99565b6112ea610faa565b6001600160a01b0316336001600160a01b03161461131d5760405163086391f760e31b815233600482015260240161086b565b5f611326610803565b90505f611331610998565b6040516370a0823160e01b81526001600160a01b03848116600483015291909116906370a0823190602401602060405180830381865afa158015611377573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061139b9190612abe565b90506113a683611eea565b8015610d4557604080516001600160a01b038085168252851660208201529081018290527f8f925ed35e36754081a3353f30c5686c405280f94d1cfe322ee5707833d898679060600160405180910390a1306001600160a01b038316036115075761140f610d4a565b6001600160a01b03166354f0d84c838573__$3bac17678db7ae928afa209f2f44deec9c$__634c41dd96866040518263ffffffff1660e01b815260040161145891815260200190565b602060405180830381865af4158015611473573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114979190612947565b6040516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301526001600160601b031660448201526064015f604051808303815f87803b1580156114ec575f80fd5b505af11580156114fe573d5f803e3d5ffd5b50505050505050565b61150f610d4a565b6001600160a01b031663c7d63d57838573__$3bac17678db7ae928afa209f2f44deec9c$__634c41dd96866040518263ffffffff1660e01b815260040161145891815260200190565b6001546001600160a01b03166001600160a01b031663120726c36040518163ffffffff1660e01b8152600401602060405180830381865afa15801561159f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115c39190612c0a565b6001600160a01b0316336001600160a01b031614610d455760405162f0630960e01b815233600482015260240161086b565b6115fd611ae8565b61160681610e1c565b61160e610b45565b6001600160a01b0382166116355760405163f17ef42d60e01b815260040160405180910390fd5b505f80516020612e2383398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b611673610faa565b6001600160a01b0316336001600160a01b0316146116a65760405163086391f760e31b815233600482015260240161086b565b6116b0600a611d7e565b60405163581e954760e11b8152600160048201526001600160a01b03919091169063b03d2a8e906024016111a4565b6116e7611ae8565b6116f5898987878787610aa0565b6116fe8a611f83565b6001600160a01b038616611725576040516327eab2e360e11b815260040160405180910390fd5b86515f036117465760405163591eebf360e11b815260040160405180910390fd5b7fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f00806117728982612a04565b506001810180546001600160a01b0319166001600160a01b0389161790556002810180546001600160a81b0319163060ff60a01b191617600160a01b87151502179055600381016117c38382612a04565b506117d4634a531f3360e01b61096c565b6117e4632986755f60e11b61096c565b5050505050505050505050565b5f80516020612e438339815191525f8061182961180c6112b4565b873061181b60045f8a8c612c25565b61182491612c4c565b611f94565b91509150816118e75763ffffffff8116156118c457825460ff60a01b1916600160a01b1783556118576112b4565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b815260040161188693929190612c84565b5f604051808303815f87803b15801561189d575f80fd5b505af11580156118af573d5f803e3d5ffd5b5050845460ff60a01b19168555506118e79050565b60405162d1953b60e31b81526001600160a01b038716600482015260240161086b565b505050505050565b5f805f80516020612e2383398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af415801561195b573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061197f91906129a5565b156119ab5780546040516301ab8b6760e21b81526001600160601b03909116600482015260240161086b565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa1580156119fd573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a2191906129a5565b611a495760405163b9304b0d60e01b81526001600160a01b038416600482015260240161086b565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038581166004830152919091169063d272ac1e90602401602060405180830381865afa158015611a9b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611abf9190612947565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a005468010000000000000000900460ff16611b3657604051631afcd79f60e31b815260040160405180910390fd5b565b5f80516020612e4383398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b611ba0612224565b5f611bb36001546001600160a01b031690565b604051636939560f60e11b81523060048201526001600160a01b03919091169063d272ac1e90602401602060405180830381865afa158015611bf7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c1b9190612947565b6040516330b8415f60e01b81526001600160601b038216600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015611c74573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c9891906129a5565b15611d76577fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f01546001600160a01b03166001600160a01b031663f0ea17c3611cf45f80516020612e23833981519152546001600160601b031690565b6040516001600160e01b031960e084901b1681526001600160601b0390911660048201526024015f60405180830381865afa158015611d35573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052611d5c9190810190612cc3565b60808101519092506001600160a01b031615611d76575090565b6110bf61209c565b5f807fffe3d4462bded26a47154f4b8f6db494d2f772496965791d25bd456e342b7f005460408051633379d27d60e21b815290516001600160a01b039092169163cde749f4916004808201926020929091908290030181865afa158015611de7573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e0b9190612d9b565b9050611e1f6001546001600160a01b031690565b60405163d39e604360e01b815260ff8086166004830152831660248201526001600160a01b03919091169063d39e604390604401602060405180830381865afa158015611e6e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e929190612c0a565b9392505050565b7faab7c0ea03d290e56d6c060e0733d3ebcbe647f7694616a2ec52738a64b2f901546040516367a773bd60e11b81526001600160a01b039091169063cf4ee77a90610d059085908590600401612db6565b611ef2610faa565b6001600160a01b0316336001600160a01b031614611f255760405163086391f760e31b815233600482015260240161086b565b611f2f600b611d7e565b60405163deaa59df60e01b81526001600160a01b038381166004830152919091169063deaa59df906024015f604051808303815f87803b158015611f71575f80fd5b505af115801561063e573d5f803e3d5ffd5b611f8b611ae8565b610d6581612213565b6040516001600160a01b03848116602483015283811660448301526001600160e01b0319831660648301525f9182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b179052516120029190612dd7565b5f60405180830381855afa9150503d805f811461203a576040519150601f19603f3d011682016040523d82523d5f602084013e61203f565b606091505b5091509150811561209157604081511061207157808060200190518101906120679190612ded565b9094509250612091565b6020815110612091578080602001905181019061208e91906129a5565b93505b505094509492505050565b6120a4612224565b5f7fffe8d4462baed26a47154f4b8f6db497d2f772496965791d25bd456e342b7f0090506040518060c00160405280825f0180546120e190612962565b80601f016020809104026020016040519081016040528092919081815260200182805461210d90612962565b80156121585780601f1061212f57610100808354040283529160200191612158565b820191905f5260205f20905b81548152906001019060200180831161213b57829003601f168201915b5050505050815260200173__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af41580156121a9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121cd9190612947565b6001600160601b0316815260018301546001600160a01b0390811660208301525f6040830152600284015416606082015260038301805460809092019161077e90612962565b61221b611ae8565b610d6581611b38565b6040518060c00160405280606081526020015f6001600160601b031681526020015f6001600160a01b031681526020015f6001600160a01b031681526020015f6001600160a01b03168152602001606081525090565b5f6020828403121561228a575f80fd5b81356001600160e01b031981168114611e92575f80fd5b80356001600160401b03811681146122b7575f80fd5b919050565b6001600160601b0381168114610d65575f80fd5b80356122b7816122bc565b5f805f805f608086880312156122ef575f80fd5b6122f8866122a1565b94506020860135612308816122bc565b935060408601356001600160401b03811115612322575f80fd5b8601601f81018813612332575f80fd5b80356001600160401b03811115612347575f80fd5b886020828401011115612358575f80fd5b60209190910193509150606086013564ffffffffff81168114612379575f80fd5b809150509295509295909350565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081526001600160601b0382511660208201526001600160601b03602083015116604082015260ff60408301511660608201525f60608301516123fd608084018215159052565b5060808301516001600160a01b03811660a08401525060a08301516001600160a01b03811660c08401525060c083015160e080840152612441610100840182612387565b949350505050565b602081525f611e926020830184612387565b5f6020828403121561246b575f80fd5b8135611e92816122bc565b6001600160a01b0381168114610d65575f80fd5b80356122b781612476565b60ff81168114610d65575f80fd5b80356122b781612495565b8015158114610d65575f80fd5b80356122b7816124ae565b634e487b7160e01b5f52604160045260245ffd5b60405160e081016001600160401b03811182821017156124fc576124fc6124c6565b60405290565b60405160c081016001600160401b03811182821017156124fc576124fc6124c6565b604051601f8201601f191681016001600160401b038111828210171561254c5761254c6124c6565b604052919050565b5f6001600160401b0382111561256c5761256c6124c6565b50601f01601f191660200190565b5f82601f830112612589575f80fd5b8135602083015f6125a161259c84612554565b612524565b90508281528583830111156125b4575f80fd5b828260208301375f92810160200192909252509392505050565b5f805f805f8060c087890312156125e3575f80fd5b86356125ee81612476565b955060208701356125fe816122bc565b9450604087013561260e81612495565b9350606087013561261e816124ae565b9250608087013561262e81612476565b915060a08701356001600160401b03811115612648575f80fd5b61265489828a0161257a565b9150509295509295509295565b5f8060408385031215612672575f80fd5b823561267d81612476565b9150602083013561268d816122bc565b809150509250929050565b5f602082840312156126a8575f80fd5b611e92826122a1565b5f602082840312156126c1575f80fd5b8135611e9281612476565b602081525f825160c060208401526126e760e0840182612387565b90506001600160601b03602085015116604084015260018060a01b03604085015116606084015260018060a01b036060850151166080840152608084015161273a60a08501826001600160a01b03169052565b5060a0840151838203601f190160c08501526127568282612387565b95945050505050565b5f8060408385031215612770575f80fd5b823561277b81612476565b946020939093013593505050565b5f806040838503121561279a575f80fd5b6127a3836122a1565b915060208301356001600160401b038111156127bd575f80fd5b6127c98582860161257a565b9150509250929050565b5f805f606084860312156127e5575f80fd5b83356127f081612476565b9250602084013561280081612476565b929592945050506040919091013590565b5f8060408385031215612822575f80fd5b823561282d81612476565b9150602083013561268d81612476565b5f805f805f805f805f806101408b8d031215612857575f80fd5b6128608b61248a565b995061286e60208c0161248a565b985061287c60408c016122d0565b975060608b01356001600160401b03811115612896575f80fd5b6128a28d828e0161257a565b9750506128b160808c0161248a565b95506128bf60a08c016124a3565b94506128cd60c08c016124bb565b93506128db60e08c0161248a565b92506101008b01356001600160401b038111156128f6575f80fd5b6129028d828e0161257a565b9250506101208b01356001600160401b0381111561291e575f80fd5b61292a8d828e0161257a565b9150509295989b9194979a5092959850565b80516122b7816122bc565b5f60208284031215612957575f80fd5b8151611e92816122bc565b600181811c9082168061297657607f821691505b60208210810361299457634e487b7160e01b5f52602260045260245ffd5b50919050565b80516122b7816124ae565b5f602082840312156129b5575f80fd5b8151611e92816124ae565b601f821115610d4557805f5260205f20601f840160051c810160208510156129e55750805b601f840160051c820191505b8181101561063e575f81556001016129f1565b81516001600160401b03811115612a1d57612a1d6124c6565b612a3181612a2b8454612962565b846129c0565b6020601f821160018114612a63575f8315612a4c5750848201515b5f19600385901b1c1916600184901b17845561063e565b5f84815260208120601f198516915b82811015612a925787850151825560209485019460019092019101612a72565b5084821015612aaf57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b5f60208284031215612ace575f80fd5b5051919050565b80516122b781612495565b80516122b781612476565b5f82601f830112612afa575f80fd5b8151602083015f612b0d61259c84612554565b9050828152858383011115612b20575f80fd5b8282602083015e5f92810160200192909252509392505050565b5f60208284031215612b4a575f80fd5b81516001600160401b03811115612b5f575f80fd5b820160e08185031215612b70575f80fd5b612b786124da565b612b818261293c565b8152612b8f6020830161293c565b6020820152612ba060408301612ad5565b6040820152612bb16060830161299a565b6060820152612bc260808301612ae0565b6080820152612bd360a08301612ae0565b60a082015260c08201516001600160401b03811115612bf0575f80fd5b612bfc86828501612aeb565b60c083015250949350505050565b5f60208284031215612c1a575f80fd5b8151611e9281612476565b5f8085851115612c33575f80fd5b83861115612c3f575f80fd5b5050820193919092039150565b80356001600160e01b03198116906004841015612c7d576001600160e01b0319600485900360031b81901b82161691505b5092915050565b6001600160a01b03841681526040602082018190528101829052818360608301375f818301606090810191909152601f909201601f1916010192915050565b5f60208284031215612cd3575f80fd5b81516001600160401b03811115612ce8575f80fd5b820160c08185031215612cf9575f80fd5b612d01612502565b81516001600160401b03811115612d16575f80fd5b612d2286828501612aeb565b825250612d316020830161293c565b6020820152612d4260408301612ae0565b6040820152612d5360608301612ae0565b6060820152612d6460808301612ae0565b608082015260a08201516001600160401b03811115612d81575f80fd5b612d8d86828501612aeb565b60a083015250949350505050565b5f60208284031215612dab575f80fd5b8151611e9281612495565b6001600160401b0383168152604060208201525f6124416040830184612387565b5f82518060208501845e5f920191825250919050565b5f8060408385031215612dfe575f80fd5b8251612e09816124ae565b602084015190925063ffffffff8116811461268d575f80fdfe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00a2646970667358221220b2b1fb5a833949208a372f1d603b61a2f1b043e4d82c957baf7e181cbaedc47664736f6c634300081a0033",
1045
+ "linkReferences": {
1046
+ "contracts/type/Amount.sol": {
1047
+ "AmountLib": [
1048
+ {
1049
+ "length": 20,
1050
+ "start": 3224
1051
+ },
1052
+ {
1053
+ "length": 20,
1054
+ "start": 5181
1055
+ },
1056
+ {
1057
+ "length": 20,
1058
+ "start": 5437
1059
+ }
1060
+ ]
1061
+ },
1062
+ "contracts/type/NftId.sol": {
1063
+ "NftIdLib": [
1064
+ {
1065
+ "length": 20,
1066
+ "start": 1740
1067
+ },
1068
+ {
1069
+ "length": 20,
1070
+ "start": 2656
1071
+ },
1072
+ {
1073
+ "length": 20,
1074
+ "start": 4090
1075
+ },
1076
+ {
1077
+ "length": 20,
1078
+ "start": 6463
1079
+ },
1080
+ {
1081
+ "length": 20,
1082
+ "start": 7256
1083
+ },
1084
+ {
1085
+ "length": 20,
1086
+ "start": 8576
1087
+ }
1088
+ ]
1089
+ }
1090
+ },
1091
+ "deployedLinkReferences": {
1092
+ "contracts/type/Amount.sol": {
1093
+ "AmountLib": [
1094
+ {
1095
+ "length": 20,
1096
+ "start": 3196
1097
+ },
1098
+ {
1099
+ "length": 20,
1100
+ "start": 5153
1101
+ },
1102
+ {
1103
+ "length": 20,
1104
+ "start": 5409
1105
+ }
1106
+ ]
1107
+ },
1108
+ "contracts/type/NftId.sol": {
1109
+ "NftIdLib": [
1110
+ {
1111
+ "length": 20,
1112
+ "start": 1712
1113
+ },
1114
+ {
1115
+ "length": 20,
1116
+ "start": 2628
1117
+ },
1118
+ {
1119
+ "length": 20,
1120
+ "start": 4062
1121
+ },
1122
+ {
1123
+ "length": 20,
1124
+ "start": 6435
1125
+ },
1126
+ {
1127
+ "length": 20,
1128
+ "start": 7228
1129
+ },
1130
+ {
1131
+ "length": 20,
1132
+ "start": 8548
1133
+ }
1134
+ ]
1135
+ }
1136
+ }
1137
+ }