@etherisc/gif-next 0.0.2-a8ee67b-545 → 0.0.2-a996a07-088

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (663) hide show
  1. package/README.md +250 -14
  2. package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +4 -0
  3. package/artifacts/contracts/distribution/Distribution.sol/Distribution.json +1416 -0
  4. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +4 -0
  5. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +1445 -0
  6. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
  7. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +866 -0
  8. package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
  9. package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.json +975 -0
  10. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +4 -0
  11. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.json +814 -0
  12. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +4 -0
  13. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +709 -0
  14. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
  15. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +315 -1509
  16. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +4 -0
  17. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +650 -0
  18. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  19. package/artifacts/contracts/instance/Instance.sol/Instance.json +496 -1664
  20. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +4 -0
  21. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +708 -0
  22. package/artifacts/contracts/instance/InstanceAuthorizationsLib.sol/InstanceAuthorizationsLib.dbg.json +4 -0
  23. package/artifacts/contracts/instance/InstanceAuthorizationsLib.sol/InstanceAuthorizationsLib.json +316 -0
  24. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +4 -0
  25. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1765 -0
  26. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +4 -0
  27. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +1101 -0
  28. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +4 -0
  29. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +758 -0
  30. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
  31. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +3678 -0
  32. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.dbg.json +4 -0
  33. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.json +318 -0
  34. package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.dbg.json +4 -0
  35. package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.json +137 -0
  36. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.dbg.json +4 -0
  37. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.json +10 -0
  38. package/artifacts/contracts/instance/base/ObjectManager.sol/ObjectManager.dbg.json +4 -0
  39. package/artifacts/contracts/instance/base/ObjectManager.sol/ObjectManager.json +187 -0
  40. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +4 -0
  41. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +129 -0
  42. package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +4 -0
  43. package/artifacts/contracts/instance/module/{bundle/IBundle.sol → IBundle.sol}/IBundle.json +1 -1
  44. package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +4 -0
  45. package/artifacts/contracts/instance/module/{access/IAccess.sol/IAccess.json → IComponents.sol/IComponents.json} +2 -2
  46. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +4 -0
  47. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.json +10 -0
  48. package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +4 -0
  49. package/artifacts/contracts/instance/module/{policy/IPolicy.sol → IPolicy.sol}/IPolicy.json +1 -1
  50. package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +4 -0
  51. package/artifacts/contracts/instance/module/{risk/IRisk.sol → IRisk.sol}/IRisk.json +1 -1
  52. package/artifacts/contracts/mock/Dip.sol/Dip.dbg.json +4 -0
  53. package/artifacts/contracts/mock/Dip.sol/Dip.json +376 -0
  54. package/artifacts/contracts/oracle/IOracle.sol/IOracle.dbg.json +4 -0
  55. package/artifacts/contracts/{instance/base/ModuleBase.sol/ModuleBase.json → oracle/IOracle.sol/IOracle.json} +2 -2
  56. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.dbg.json +4 -0
  57. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.json +759 -0
  58. package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +4 -0
  59. package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.json +662 -0
  60. package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +4 -0
  61. package/artifacts/contracts/oracle/Oracle.sol/Oracle.json +1146 -0
  62. package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +4 -0
  63. package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +1077 -0
  64. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +4 -0
  65. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +758 -0
  66. package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +4 -0
  67. package/artifacts/contracts/pool/BundleService.sol/BundleService.json +1193 -0
  68. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
  69. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +790 -0
  70. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +4 -0
  71. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.json +690 -0
  72. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
  73. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.json +1154 -0
  74. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +4 -0
  75. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +1065 -0
  76. package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +4 -0
  77. package/artifacts/contracts/pool/Pool.sol/Pool.json +1565 -0
  78. package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +4 -0
  79. package/artifacts/contracts/pool/PoolService.sol/PoolService.json +1528 -0
  80. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
  81. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +786 -0
  82. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +4 -0
  83. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +938 -0
  84. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +4 -0
  85. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +774 -0
  86. package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +4 -0
  87. package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +1366 -0
  88. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +4 -0
  89. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +854 -0
  90. package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +4 -0
  91. package/artifacts/contracts/{instance/service/IProductService.sol/IProductService.json → product/IApplicationService.sol/IApplicationService.json} +252 -230
  92. package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +4 -0
  93. package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +759 -0
  94. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +4 -0
  95. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +707 -0
  96. package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +4 -0
  97. package/artifacts/contracts/product/IPricingService.sol/IPricingService.json +536 -0
  98. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +4 -0
  99. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +995 -0
  100. package/artifacts/contracts/product/IProductService.sol/IProductService.dbg.json +4 -0
  101. package/artifacts/contracts/{instance/service/IComponentOwnerService.sol/IComponentOwnerService.json → product/IProductService.sol/IProductService.json} +197 -174
  102. package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +4 -0
  103. package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +1266 -0
  104. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
  105. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +814 -0
  106. package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +4 -0
  107. package/artifacts/contracts/product/PricingService.sol/PricingService.json +1071 -0
  108. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
  109. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +822 -0
  110. package/artifacts/contracts/product/Product.sol/Product.dbg.json +4 -0
  111. package/artifacts/contracts/product/Product.sol/Product.json +1397 -0
  112. package/artifacts/contracts/product/ProductService.sol/ProductService.dbg.json +4 -0
  113. package/artifacts/contracts/product/ProductService.sol/ProductService.json +767 -0
  114. package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.dbg.json +4 -0
  115. package/artifacts/contracts/product/ProductServiceManager.sol/ProductServiceManager.json +738 -0
  116. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
  117. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +199 -12
  118. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  119. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +678 -77
  120. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +4 -0
  121. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +1110 -0
  122. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +4 -0
  123. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +52 -0
  124. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  125. package/artifacts/contracts/registry/Registry.sol/Registry.json +1064 -186
  126. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +4 -0
  127. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +1627 -0
  128. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +4 -0
  129. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +1519 -0
  130. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +4 -0
  131. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +761 -0
  132. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +4 -0
  133. package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +1348 -0
  134. package/artifacts/contracts/registry/ServiceAuthorizationsLib.sol/ServiceAuthorizationsLib.dbg.json +4 -0
  135. package/artifacts/contracts/registry/ServiceAuthorizationsLib.sol/ServiceAuthorizationsLib.json +249 -0
  136. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +4 -0
  137. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +661 -0
  138. package/artifacts/contracts/shared/AccessAdmin.sol/AccessAdmin.dbg.json +4 -0
  139. package/artifacts/contracts/shared/AccessAdmin.sol/AccessAdmin.json +1492 -0
  140. package/artifacts/contracts/shared/AccessManagerCustom.sol/AccessManagerCustom.dbg.json +4 -0
  141. package/artifacts/contracts/shared/AccessManagerCustom.sol/AccessManagerCustom.json +1193 -0
  142. package/artifacts/contracts/shared/AccessManagerExtended.sol/AccessManagerExtended.dbg.json +4 -0
  143. package/artifacts/contracts/shared/AccessManagerExtended.sol/AccessManagerExtended.json +1747 -0
  144. package/artifacts/contracts/shared/AccessManagerExtendedInitializeable.sol/AccessManagerExtendedInitializeable.dbg.json +4 -0
  145. package/artifacts/contracts/shared/AccessManagerExtendedInitializeable.sol/AccessManagerExtendedInitializeable.json +1760 -0
  146. package/artifacts/contracts/shared/AccessManagerExtendedWithDisable.sol/AccessManagerExtendedWithDisable.dbg.json +4 -0
  147. package/artifacts/contracts/shared/AccessManagerExtendedWithDisable.sol/AccessManagerExtendedWithDisable.json +1838 -0
  148. package/artifacts/contracts/shared/AccessManagerExtendedWithDisableInitializeable.sol/AccessManagerExtendedWithDisableInitializeable.dbg.json +4 -0
  149. package/artifacts/contracts/shared/AccessManagerExtendedWithDisableInitializeable.sol/AccessManagerExtendedWithDisableInitializeable.json +1856 -0
  150. package/artifacts/contracts/shared/Component.sol/Component.dbg.json +4 -0
  151. package/artifacts/contracts/shared/Component.sol/Component.json +896 -0
  152. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +4 -0
  153. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +1578 -0
  154. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +4 -0
  155. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +836 -0
  156. package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.dbg.json +4 -0
  157. package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.json +526 -0
  158. package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +1 -1
  159. package/artifacts/contracts/shared/ERC165.sol/ERC165.json +41 -3
  160. package/artifacts/contracts/shared/IAccessAdmin.sol/IAccessAdmin.dbg.json +4 -0
  161. package/artifacts/contracts/shared/IAccessAdmin.sol/IAccessAdmin.json +1126 -0
  162. package/artifacts/contracts/shared/IAccessManagerExtended.sol/IAccessManagerExtended.dbg.json +4 -0
  163. package/artifacts/contracts/shared/IAccessManagerExtended.sol/IAccessManagerExtended.json +1562 -0
  164. package/artifacts/contracts/shared/IAccessManagerExtendedWithDisable.sol/IAccessManagerExtendedWithDisable.dbg.json +4 -0
  165. package/artifacts/contracts/shared/IAccessManagerExtendedWithDisable.sol/IAccessManagerExtendedWithDisable.json +1600 -0
  166. package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +4 -0
  167. package/artifacts/contracts/shared/IComponent.sol/IComponent.json +631 -0
  168. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +4 -0
  169. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +867 -0
  170. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +4 -0
  171. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +705 -0
  172. package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
  173. package/artifacts/contracts/{instance/base → shared}/IKeyValueStore.sol/IKeyValueStore.json +95 -138
  174. package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +4 -0
  175. package/artifacts/contracts/{instance/base → shared}/ILifecycle.sol/ILifecycle.json +1 -1
  176. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +4 -0
  177. package/artifacts/contracts/{components/IBaseComponent.sol/IBaseComponent.json → shared/INftOwnable.sol/INftOwnable.json} +37 -80
  178. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +4 -0
  179. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +207 -0
  180. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
  181. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +91 -31
  182. package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
  183. package/artifacts/contracts/{registry → shared}/IRegistryLinked.sol/IRegistryLinked.json +13 -2
  184. package/artifacts/contracts/shared/IService.sol/IService.dbg.json +4 -0
  185. package/artifacts/contracts/{instance/base/InstanceBase.sol/InstanceBase.json → shared/IService.sol/IService.json} +158 -151
  186. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +1 -1
  187. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +16 -125
  188. package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.dbg.json +4 -0
  189. package/artifacts/contracts/shared/InitializableCustom.sol/InitializableCustom.json +39 -0
  190. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +4 -0
  191. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +1036 -0
  192. package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
  193. package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.json +635 -0
  194. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +4 -0
  195. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.json +258 -0
  196. package/artifacts/contracts/shared/NftIdSetManager.sol/NftIdSetManager.dbg.json +4 -0
  197. package/artifacts/contracts/shared/NftIdSetManager.sol/NftIdSetManager.json +306 -0
  198. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +4 -0
  199. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +244 -0
  200. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +4 -0
  201. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +320 -0
  202. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +4 -0
  203. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +617 -0
  204. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
  205. package/artifacts/contracts/shared/Registerable.sol/Registerable.json +255 -23
  206. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +4 -0
  207. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +71 -0
  208. package/artifacts/contracts/shared/Service.sol/Service.dbg.json +4 -0
  209. package/artifacts/contracts/{registry/IChainNft.sol/IChainNft.json → shared/Service.sol/Service.json} +260 -218
  210. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +4 -0
  211. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +150 -0
  212. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
  213. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
  214. package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +1 -1
  215. package/artifacts/contracts/shared/Versionable.sol/Versionable.json +29 -115
  216. package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +4 -0
  217. package/artifacts/contracts/staking/IStaking.sol/IStaking.json +1438 -0
  218. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +4 -0
  219. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +993 -0
  220. package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.dbg.json +4 -0
  221. package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.json +444 -0
  222. package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +4 -0
  223. package/artifacts/contracts/staking/Staking.sol/Staking.json +2061 -0
  224. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +4 -0
  225. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +785 -0
  226. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +4 -0
  227. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +616 -0
  228. package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +4 -0
  229. package/artifacts/contracts/staking/StakingService.sol/StakingService.json +1388 -0
  230. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +4 -0
  231. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +758 -0
  232. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +4 -0
  233. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +2261 -0
  234. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +4 -0
  235. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +619 -0
  236. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +4 -0
  237. package/artifacts/contracts/{types → type}/AddressSet.sol/LibAddressSet.json +3 -3
  238. package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +4 -0
  239. package/artifacts/contracts/type/Amount.sol/AmountLib.json +345 -0
  240. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +4 -0
  241. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.json +225 -0
  242. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +4 -0
  243. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.json +195 -0
  244. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
  245. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.json +120 -0
  246. package/artifacts/contracts/type/Fee.sol/FeeLib.dbg.json +4 -0
  247. package/artifacts/contracts/type/Fee.sol/FeeLib.json +312 -0
  248. package/artifacts/contracts/type/Key32.sol/Key32Lib.dbg.json +4 -0
  249. package/artifacts/contracts/type/Key32.sol/Key32Lib.json +125 -0
  250. package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +4 -0
  251. package/artifacts/contracts/type/NftId.sol/NftIdLib.json +209 -0
  252. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
  253. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.json +33 -0
  254. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
  255. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.json +148 -0
  256. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.dbg.json +4 -0
  257. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.json +225 -0
  258. package/artifacts/contracts/type/Referral.sol/ReferralLib.dbg.json +4 -0
  259. package/artifacts/contracts/type/Referral.sol/ReferralLib.json +158 -0
  260. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.dbg.json +4 -0
  261. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.json +220 -0
  262. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +4 -0
  263. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.json +102 -0
  264. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +4 -0
  265. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +191 -0
  266. package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +4 -0
  267. package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +198 -0
  268. package/artifacts/contracts/type/Selector.sol/SelectorLib.dbg.json +4 -0
  269. package/artifacts/contracts/type/Selector.sol/SelectorLib.json +129 -0
  270. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.dbg.json +4 -0
  271. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.json +10 -0
  272. package/artifacts/contracts/type/StateId.sol/StateIdLib.dbg.json +4 -0
  273. package/artifacts/contracts/{types → type}/StateId.sol/StateIdLib.json +3 -3
  274. package/artifacts/contracts/type/String.sol/StrLib.dbg.json +4 -0
  275. package/artifacts/contracts/type/String.sol/StrLib.json +132 -0
  276. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +4 -0
  277. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.json +293 -0
  278. package/artifacts/contracts/type/UFixed.sol/MathLib.dbg.json +4 -0
  279. package/artifacts/contracts/{types/ChainId.sol/ChainIdLib.json → type/UFixed.sol/MathLib.json} +4 -4
  280. package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +4 -0
  281. package/artifacts/contracts/{types/UFixed.sol/UFixedMathLib.json → type/UFixed.sol/UFixedLib.json} +4 -4
  282. package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +4 -0
  283. package/artifacts/contracts/type/Version.sol/VersionLib.json +177 -0
  284. package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +4 -0
  285. package/artifacts/contracts/type/Version.sol/VersionPartLib.json +49 -0
  286. package/contracts/distribution/Distribution.sol +261 -0
  287. package/contracts/distribution/DistributionService.sol +298 -0
  288. package/contracts/distribution/DistributionServiceManager.sol +42 -0
  289. package/contracts/distribution/IDistributionComponent.sol +66 -0
  290. package/contracts/distribution/IDistributionService.sol +81 -0
  291. package/contracts/instance/BundleManager.sol +126 -0
  292. package/contracts/instance/IInstance.sol +74 -44
  293. package/contracts/instance/IInstanceService.sol +81 -0
  294. package/contracts/instance/Instance.sol +220 -52
  295. package/contracts/instance/InstanceAdmin.sol +331 -0
  296. package/contracts/instance/InstanceAuthorizationsLib.sol +377 -0
  297. package/contracts/instance/InstanceReader.sol +392 -0
  298. package/contracts/instance/InstanceService.sol +362 -0
  299. package/contracts/instance/InstanceServiceManager.sol +44 -0
  300. package/contracts/instance/InstanceStore.sol +269 -0
  301. package/contracts/instance/base/BalanceStore.sol +123 -0
  302. package/contracts/instance/base/Cloneable.sol +28 -0
  303. package/contracts/instance/base/ObjectCounter.sol +21 -0
  304. package/contracts/instance/base/ObjectManager.sol +80 -0
  305. package/contracts/instance/module/IAccess.sol +46 -0
  306. package/contracts/instance/module/IBundle.sol +20 -0
  307. package/contracts/instance/module/IComponents.sol +52 -0
  308. package/contracts/instance/module/IDistribution.sol +42 -0
  309. package/contracts/instance/module/IPolicy.sol +84 -0
  310. package/contracts/instance/module/IRisk.sol +11 -0
  311. package/contracts/{test/Usdc.sol → mock/Dip.sol} +5 -5
  312. package/contracts/oracle/IOracle.sol +20 -0
  313. package/contracts/oracle/IOracleComponent.sol +32 -0
  314. package/contracts/oracle/IOracleService.sol +65 -0
  315. package/contracts/oracle/Oracle.sol +145 -0
  316. package/contracts/oracle/OracleService.sol +277 -0
  317. package/contracts/oracle/OracleServiceManager.sol +42 -0
  318. package/contracts/pool/BundleService.sol +296 -0
  319. package/contracts/pool/BundleServiceManager.sol +42 -0
  320. package/contracts/pool/IBundleService.sol +106 -0
  321. package/contracts/pool/IPoolComponent.sol +112 -0
  322. package/contracts/pool/IPoolService.sol +150 -0
  323. package/contracts/pool/Pool.sol +299 -0
  324. package/contracts/pool/PoolService.sol +453 -0
  325. package/contracts/pool/PoolServiceManager.sol +42 -0
  326. package/contracts/product/ApplicationService.sol +254 -0
  327. package/contracts/product/ApplicationServiceManager.sol +38 -0
  328. package/contracts/product/ClaimService.sol +442 -0
  329. package/contracts/product/ClaimServiceManager.sol +38 -0
  330. package/contracts/product/IApplicationService.sol +62 -0
  331. package/contracts/product/IClaimService.sol +99 -0
  332. package/contracts/product/IPolicyService.sol +78 -0
  333. package/contracts/product/IPricingService.sol +39 -0
  334. package/contracts/product/IProductComponent.sol +42 -0
  335. package/contracts/product/IProductService.sol +33 -0
  336. package/contracts/product/PolicyService.sol +475 -0
  337. package/contracts/product/PolicyServiceManager.sol +42 -0
  338. package/contracts/product/PricingService.sol +301 -0
  339. package/contracts/product/PricingServiceManager.sol +42 -0
  340. package/contracts/product/Product.sol +377 -0
  341. package/contracts/product/ProductService.sol +124 -0
  342. package/contracts/product/ProductServiceManager.sol +42 -0
  343. package/contracts/registry/ChainNft.sol +95 -37
  344. package/contracts/registry/IRegistry.sol +95 -28
  345. package/contracts/registry/IRegistryService.sol +69 -0
  346. package/contracts/registry/ITransferInterceptor.sol +7 -0
  347. package/contracts/registry/Registry.sol +476 -281
  348. package/contracts/registry/RegistryAdmin.sol +126 -0
  349. package/contracts/registry/RegistryService.sol +266 -0
  350. package/contracts/registry/RegistryServiceManager.sol +58 -0
  351. package/contracts/registry/ReleaseManager.sol +590 -0
  352. package/contracts/registry/ServiceAuthorizationsLib.sol +173 -0
  353. package/contracts/registry/TokenRegistry.sol +315 -0
  354. package/contracts/shared/AccessAdmin.sol +696 -0
  355. package/contracts/shared/AccessManagerCustom.sol +741 -0
  356. package/contracts/shared/AccessManagerExtended.sol +481 -0
  357. package/contracts/shared/AccessManagerExtendedInitializeable.sol +13 -0
  358. package/contracts/shared/AccessManagerExtendedWithDisable.sol +137 -0
  359. package/contracts/shared/AccessManagerExtendedWithDisableInitializeable.sol +14 -0
  360. package/contracts/shared/Component.sol +281 -0
  361. package/contracts/shared/ComponentService.sol +618 -0
  362. package/contracts/shared/ComponentServiceManager.sol +35 -0
  363. package/contracts/shared/ComponentVerifyingService.sol +117 -0
  364. package/contracts/shared/ERC165.sol +15 -9
  365. package/contracts/shared/IAccessAdmin.sol +146 -0
  366. package/contracts/shared/IAccessManagerExtended.sol +74 -0
  367. package/contracts/shared/IAccessManagerExtendedWithDisable.sol +18 -0
  368. package/contracts/shared/IComponent.sol +70 -0
  369. package/contracts/shared/IComponentService.sol +102 -0
  370. package/contracts/shared/IInstanceLinkedComponent.sol +46 -0
  371. package/contracts/shared/IKeyValueStore.sol +53 -0
  372. package/contracts/{instance/base → shared}/ILifecycle.sol +4 -4
  373. package/contracts/shared/INftOwnable.sol +23 -0
  374. package/contracts/shared/IPolicyHolder.sol +45 -0
  375. package/contracts/shared/IRegisterable.sol +10 -19
  376. package/contracts/shared/IRegistryLinked.sol +11 -0
  377. package/contracts/shared/IService.sol +18 -0
  378. package/contracts/shared/IVersionable.sol +38 -37
  379. package/contracts/shared/InitializableCustom.sol +177 -0
  380. package/contracts/shared/InstanceLinkedComponent.sol +144 -0
  381. package/contracts/shared/KeyValueStore.sol +127 -0
  382. package/contracts/shared/Lifecycle.sol +130 -0
  383. package/contracts/shared/NftIdSetManager.sol +65 -0
  384. package/contracts/shared/NftOwnable.sol +107 -0
  385. package/contracts/shared/PolicyHolder.sol +102 -0
  386. package/contracts/shared/ProxyManager.sol +199 -0
  387. package/contracts/shared/Registerable.sol +54 -65
  388. package/contracts/shared/RegistryLinked.sol +43 -0
  389. package/contracts/shared/Service.sol +77 -0
  390. package/contracts/shared/TokenHandler.sol +58 -0
  391. package/contracts/shared/UpgradableProxyWithAdmin.sol +16 -0
  392. package/contracts/shared/Versionable.sol +38 -68
  393. package/contracts/staking/IStaking.sol +168 -0
  394. package/contracts/staking/IStakingService.sol +149 -0
  395. package/contracts/staking/StakeManagerLib.sol +179 -0
  396. package/contracts/staking/Staking.sol +550 -0
  397. package/contracts/staking/StakingManager.sol +54 -0
  398. package/contracts/staking/StakingReader.sol +187 -0
  399. package/contracts/staking/StakingService.sol +406 -0
  400. package/contracts/staking/StakingServiceManager.sol +45 -0
  401. package/contracts/staking/StakingStore.sol +572 -0
  402. package/contracts/staking/TargetManagerLib.sol +207 -0
  403. package/contracts/{types → type}/AddressSet.sol +1 -1
  404. package/contracts/type/Amount.sol +128 -0
  405. package/contracts/{types → type}/Blocknumber.sol +21 -3
  406. package/contracts/type/ClaimId.sol +75 -0
  407. package/contracts/type/DistributorType.sol +55 -0
  408. package/contracts/type/Fee.sol +66 -0
  409. package/contracts/{types → type}/Key32.sol +8 -3
  410. package/contracts/{types → type}/NftId.sol +21 -15
  411. package/contracts/type/NftIdSet.sol +62 -0
  412. package/contracts/type/ObjectType.sol +170 -0
  413. package/contracts/type/PayoutId.sol +82 -0
  414. package/contracts/type/Referral.sol +89 -0
  415. package/contracts/type/RequestId.sol +75 -0
  416. package/contracts/type/RiskId.sol +43 -0
  417. package/contracts/type/RoleId.sol +156 -0
  418. package/contracts/type/Seconds.sol +81 -0
  419. package/contracts/type/Selector.sol +102 -0
  420. package/contracts/{types → type}/StateId.sol +39 -5
  421. package/contracts/type/String.sol +53 -0
  422. package/contracts/{types → type}/Timestamp.sol +27 -14
  423. package/contracts/{types → type}/UFixed.sol +129 -12
  424. package/contracts/{types → type}/Version.sol +15 -2
  425. package/package.json +8 -7
  426. package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +0 -4
  427. package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.json +0 -174
  428. package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +0 -4
  429. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +0 -4
  430. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +0 -356
  431. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +0 -4
  432. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +0 -279
  433. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +0 -4
  434. package/artifacts/contracts/components/Pool.sol/Pool.json +0 -387
  435. package/artifacts/contracts/components/Product.sol/Product.dbg.json +0 -4
  436. package/artifacts/contracts/components/Product.sol/Product.json +0 -305
  437. package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +0 -4
  438. package/artifacts/contracts/experiment/errors/Require.sol/Require.json +0 -105
  439. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +0 -4
  440. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +0 -105
  441. package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +0 -4
  442. package/artifacts/contracts/experiment/inheritance/A.sol/A.json +0 -128
  443. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +0 -4
  444. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +0 -42
  445. package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +0 -4
  446. package/artifacts/contracts/experiment/inheritance/B.sol/B.json +0 -76
  447. package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +0 -4
  448. package/artifacts/contracts/experiment/inheritance/C.sol/C.json +0 -89
  449. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +0 -4
  450. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.json +0 -128
  451. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +0 -4
  452. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.json +0 -37
  453. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +0 -4
  454. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.json +0 -50
  455. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +0 -4
  456. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.json +0 -63
  457. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +0 -4
  458. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +0 -59
  459. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +0 -4
  460. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.json +0 -124
  461. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +0 -4
  462. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.json +0 -74
  463. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +0 -4
  464. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +0 -124
  465. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +0 -4
  466. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +0 -207
  467. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +0 -4
  468. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +0 -10
  469. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +0 -4
  470. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +0 -10
  471. package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.dbg.json +0 -4
  472. package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.json +0 -24
  473. package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +0 -4
  474. package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.json +0 -300
  475. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +0 -4
  476. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +0 -63
  477. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +0 -4
  478. package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +0 -4
  479. package/artifacts/contracts/instance/base/IService.sol/IService.dbg.json +0 -4
  480. package/artifacts/contracts/instance/base/IService.sol/IService.json +0 -300
  481. package/artifacts/contracts/instance/base/InstanceBase.sol/InstanceBase.dbg.json +0 -4
  482. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +0 -4
  483. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +0 -692
  484. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +0 -4
  485. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +0 -169
  486. package/artifacts/contracts/instance/base/ModuleBase.sol/ModuleBase.dbg.json +0 -4
  487. package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.dbg.json +0 -4
  488. package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.json +0 -300
  489. package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.dbg.json +0 -4
  490. package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.json +0 -333
  491. package/artifacts/contracts/instance/module/access/IAccess.sol/IAccess.dbg.json +0 -4
  492. package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.dbg.json +0 -4
  493. package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.json +0 -333
  494. package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.dbg.json +0 -4
  495. package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.json +0 -296
  496. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundle.dbg.json +0 -4
  497. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.dbg.json +0 -4
  498. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.json +0 -296
  499. package/artifacts/contracts/instance/module/compensation/CompensationModule.sol/CompensationModule.dbg.json +0 -4
  500. package/artifacts/contracts/instance/module/compensation/CompensationModule.sol/CompensationModule.json +0 -10
  501. package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensation.dbg.json +0 -4
  502. package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensation.json +0 -10
  503. package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensationModule.dbg.json +0 -4
  504. package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensationModule.json +0 -10
  505. package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
  506. package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.json +0 -188
  507. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.dbg.json +0 -4
  508. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.json +0 -10
  509. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.dbg.json +0 -4
  510. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.json +0 -188
  511. package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicy.dbg.json +0 -4
  512. package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.dbg.json +0 -4
  513. package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.json +0 -261
  514. package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.dbg.json +0 -4
  515. package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.json +0 -261
  516. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.dbg.json +0 -4
  517. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.json +0 -10
  518. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.dbg.json +0 -4
  519. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.json +0 -149
  520. package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.dbg.json +0 -4
  521. package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.json +0 -149
  522. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRisk.dbg.json +0 -4
  523. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.dbg.json +0 -4
  524. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.json +0 -10
  525. package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.dbg.json +0 -4
  526. package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.json +0 -10
  527. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasury.dbg.json +0 -4
  528. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasury.json +0 -10
  529. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.dbg.json +0 -4
  530. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.json +0 -533
  531. package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.dbg.json +0 -4
  532. package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.json +0 -76
  533. package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +0 -4
  534. package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.json +0 -533
  535. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +0 -4
  536. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +0 -523
  537. package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +0 -4
  538. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +0 -4
  539. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +0 -376
  540. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +0 -4
  541. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +0 -4
  542. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +0 -471
  543. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +0 -4
  544. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +0 -673
  545. package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +0 -4
  546. package/artifacts/contracts/registry/IRegistryLinked.sol/IRegistryLinked.dbg.json +0 -4
  547. package/artifacts/contracts/shared/IOwnable.sol/IOwnable.dbg.json +0 -4
  548. package/artifacts/contracts/shared/IOwnable.sol/IOwnable.json +0 -24
  549. package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +0 -4
  550. package/artifacts/contracts/test/TestFee.sol/TestFee.json +0 -119
  551. package/artifacts/contracts/test/TestPool.sol/TestPool.dbg.json +0 -4
  552. package/artifacts/contracts/test/TestPool.sol/TestPool.json +0 -387
  553. package/artifacts/contracts/test/TestProduct.sol/TestProduct.dbg.json +0 -4
  554. package/artifacts/contracts/test/TestProduct.sol/TestProduct.json +0 -393
  555. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +0 -4
  556. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +0 -137
  557. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +0 -4
  558. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +0 -116
  559. package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +0 -4
  560. package/artifacts/contracts/test/TestService.sol/TestService.json +0 -379
  561. package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +0 -4
  562. package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +0 -338
  563. package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +0 -4
  564. package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +0 -218
  565. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +0 -4
  566. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +0 -206
  567. package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +0 -4
  568. package/artifacts/contracts/test/Usdc.sol/USDC.json +0 -338
  569. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +0 -4
  570. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +0 -4
  571. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +0 -174
  572. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +0 -4
  573. package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +0 -4
  574. package/artifacts/contracts/types/Fee.sol/FeeLib.json +0 -218
  575. package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +0 -4
  576. package/artifacts/contracts/types/Key32.sol/Key32Lib.json +0 -111
  577. package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +0 -4
  578. package/artifacts/contracts/types/NftId.sol/NftIdLib.json +0 -153
  579. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +0 -4
  580. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +0 -10
  581. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +0 -4
  582. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +0 -92
  583. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +0 -4
  584. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +0 -30
  585. package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +0 -4
  586. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +0 -4
  587. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +0 -236
  588. package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +0 -4
  589. package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +0 -4
  590. package/artifacts/contracts/types/Version.sol/VersionLib.json +0 -139
  591. package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +0 -4
  592. package/artifacts/contracts/types/Version.sol/VersionPartLib.json +0 -30
  593. package/contracts/components/BaseComponent.sol +0 -88
  594. package/contracts/components/IBaseComponent.sol +0 -19
  595. package/contracts/components/IPoolComponent.sol +0 -57
  596. package/contracts/components/IProductComponent.sol +0 -19
  597. package/contracts/components/Pool.sol +0 -174
  598. package/contracts/components/Product.sol +0 -117
  599. package/contracts/experiment/errors/Require.sol +0 -38
  600. package/contracts/experiment/errors/Revert.sol +0 -44
  601. package/contracts/experiment/inheritance/A.sol +0 -53
  602. package/contracts/experiment/inheritance/B.sol +0 -28
  603. package/contracts/experiment/inheritance/C.sol +0 -34
  604. package/contracts/experiment/inheritance/IA.sol +0 -13
  605. package/contracts/experiment/inheritance/IB.sol +0 -10
  606. package/contracts/experiment/inheritance/IC.sol +0 -12
  607. package/contracts/experiment/statemachine/Dummy.sol +0 -27
  608. package/contracts/experiment/statemachine/ISM.sol +0 -25
  609. package/contracts/experiment/statemachine/README.md +0 -112
  610. package/contracts/experiment/statemachine/SM.sol +0 -57
  611. package/contracts/experiment/statemachine/SimpleStateMachine.sol +0 -31
  612. package/contracts/experiment/types/TypeA.sol +0 -47
  613. package/contracts/experiment/types/TypeB.sol +0 -29
  614. package/contracts/instance/IInstanceLinked.sol +0 -8
  615. package/contracts/instance/base/ComponentServiceBase.sol +0 -42
  616. package/contracts/instance/base/IInstanceBase.sol +0 -14
  617. package/contracts/instance/base/IKeyValueStore.sol +0 -49
  618. package/contracts/instance/base/IService.sol +0 -15
  619. package/contracts/instance/base/InstanceBase.sol +0 -80
  620. package/contracts/instance/base/KeyValueStore.sol +0 -156
  621. package/contracts/instance/base/Lifecycle.sol +0 -95
  622. package/contracts/instance/base/ModuleBase.sol +0 -52
  623. package/contracts/instance/base/ServiceBase.sol +0 -37
  624. package/contracts/instance/module/access/Access.sol +0 -149
  625. package/contracts/instance/module/access/IAccess.sol +0 -53
  626. package/contracts/instance/module/bundle/BundleModule.sol +0 -136
  627. package/contracts/instance/module/bundle/IBundle.sol +0 -58
  628. package/contracts/instance/module/compensation/CompensationModule.sol +0 -8
  629. package/contracts/instance/module/compensation/ICompensation.sol +0 -10
  630. package/contracts/instance/module/component/ComponentModule.sol +0 -95
  631. package/contracts/instance/module/component/IComponent.sol +0 -53
  632. package/contracts/instance/module/policy/IPolicy.sol +0 -60
  633. package/contracts/instance/module/policy/PolicyModule.sol +0 -76
  634. package/contracts/instance/module/pool/IPoolModule.sol +0 -41
  635. package/contracts/instance/module/pool/PoolModule.sol +0 -87
  636. package/contracts/instance/module/risk/IRisk.sol +0 -10
  637. package/contracts/instance/module/risk/RiskModule.sol +0 -8
  638. package/contracts/instance/module/treasury/ITreasury.sol +0 -103
  639. package/contracts/instance/module/treasury/TokenHandler.sol +0 -48
  640. package/contracts/instance/module/treasury/TreasuryModule.sol +0 -152
  641. package/contracts/instance/service/ComponentOwnerService.sol +0 -170
  642. package/contracts/instance/service/IComponentOwnerService.sol +0 -22
  643. package/contracts/instance/service/IPoolService.sol +0 -30
  644. package/contracts/instance/service/IProductService.sol +0 -58
  645. package/contracts/instance/service/PoolService.sol +0 -123
  646. package/contracts/instance/service/ProductService.sol +0 -354
  647. package/contracts/registry/IChainNft.sol +0 -21
  648. package/contracts/registry/IRegistryLinked.sol +0 -8
  649. package/contracts/shared/IOwnable.sol +0 -6
  650. package/contracts/test/TestFee.sol +0 -25
  651. package/contracts/test/TestPool.sol +0 -22
  652. package/contracts/test/TestProduct.sol +0 -44
  653. package/contracts/test/TestRegisterable.sol +0 -19
  654. package/contracts/test/TestRoleId.sol +0 -14
  655. package/contracts/test/TestService.sol +0 -32
  656. package/contracts/test/TestToken.sol +0 -26
  657. package/contracts/test/TestVersion.sol +0 -44
  658. package/contracts/test/TestVersionable.sol +0 -17
  659. package/contracts/types/ChainId.sol +0 -38
  660. package/contracts/types/Fee.sol +0 -51
  661. package/contracts/types/NftIdSet.sol +0 -60
  662. package/contracts/types/ObjectType.sol +0 -115
  663. package/contracts/types/RoleId.sol +0 -38
@@ -0,0 +1,1578 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "ComponentService",
4
+ "sourceName": "contracts/shared/ComponentService.sol",
5
+ "abi": [
6
+ {
7
+ "inputs": [
8
+ {
9
+ "internalType": "address",
10
+ "name": "authority",
11
+ "type": "address"
12
+ }
13
+ ],
14
+ "name": "AccessManagedInvalidAuthority",
15
+ "type": "error"
16
+ },
17
+ {
18
+ "inputs": [
19
+ {
20
+ "internalType": "address",
21
+ "name": "caller",
22
+ "type": "address"
23
+ },
24
+ {
25
+ "internalType": "uint32",
26
+ "name": "delay",
27
+ "type": "uint32"
28
+ }
29
+ ],
30
+ "name": "AccessManagedRequiredDelay",
31
+ "type": "error"
32
+ },
33
+ {
34
+ "inputs": [
35
+ {
36
+ "internalType": "address",
37
+ "name": "caller",
38
+ "type": "address"
39
+ }
40
+ ],
41
+ "name": "AccessManagedUnauthorized",
42
+ "type": "error"
43
+ },
44
+ {
45
+ "inputs": [
46
+ {
47
+ "internalType": "address",
48
+ "name": "component",
49
+ "type": "address"
50
+ }
51
+ ],
52
+ "name": "ErrorComponentServiceAlreadyRegistered",
53
+ "type": "error"
54
+ },
55
+ {
56
+ "inputs": [
57
+ {
58
+ "internalType": "address",
59
+ "name": "component",
60
+ "type": "address"
61
+ }
62
+ ],
63
+ "name": "ErrorComponentServiceComponentLocked",
64
+ "type": "error"
65
+ },
66
+ {
67
+ "inputs": [
68
+ {
69
+ "internalType": "address",
70
+ "name": "component",
71
+ "type": "address"
72
+ },
73
+ {
74
+ "internalType": "ObjectType",
75
+ "name": "expectedType",
76
+ "type": "uint8"
77
+ },
78
+ {
79
+ "internalType": "ObjectType",
80
+ "name": "foundType",
81
+ "type": "uint8"
82
+ }
83
+ ],
84
+ "name": "ErrorComponentServiceComponentTypeInvalid",
85
+ "type": "error"
86
+ },
87
+ {
88
+ "inputs": [
89
+ {
90
+ "internalType": "NftId",
91
+ "name": "instanceNftId",
92
+ "type": "uint96"
93
+ },
94
+ {
95
+ "internalType": "RoleId",
96
+ "name": "requiredRole",
97
+ "type": "uint64"
98
+ },
99
+ {
100
+ "internalType": "address",
101
+ "name": "sender",
102
+ "type": "address"
103
+ }
104
+ ],
105
+ "name": "ErrorComponentServiceExpectedRoleMissing",
106
+ "type": "error"
107
+ },
108
+ {
109
+ "inputs": [
110
+ {
111
+ "internalType": "address",
112
+ "name": "component",
113
+ "type": "address"
114
+ },
115
+ {
116
+ "internalType": "ObjectType",
117
+ "name": "requiredType",
118
+ "type": "uint8"
119
+ },
120
+ {
121
+ "internalType": "ObjectType",
122
+ "name": "componentType",
123
+ "type": "uint8"
124
+ }
125
+ ],
126
+ "name": "ErrorComponentServiceInvalidType",
127
+ "type": "error"
128
+ },
129
+ {
130
+ "inputs": [],
131
+ "name": "ErrorComponentServiceNewWalletAddressZero",
132
+ "type": "error"
133
+ },
134
+ {
135
+ "inputs": [
136
+ {
137
+ "internalType": "address",
138
+ "name": "component",
139
+ "type": "address"
140
+ }
141
+ ],
142
+ "name": "ErrorComponentServiceNotComponent",
143
+ "type": "error"
144
+ },
145
+ {
146
+ "inputs": [
147
+ {
148
+ "internalType": "address",
149
+ "name": "component",
150
+ "type": "address"
151
+ },
152
+ {
153
+ "internalType": "address",
154
+ "name": "initialOwner",
155
+ "type": "address"
156
+ },
157
+ {
158
+ "internalType": "address",
159
+ "name": "sender",
160
+ "type": "address"
161
+ }
162
+ ],
163
+ "name": "ErrorComponentServiceSenderNotOwner",
164
+ "type": "error"
165
+ },
166
+ {
167
+ "inputs": [
168
+ {
169
+ "internalType": "address",
170
+ "name": "sender",
171
+ "type": "address"
172
+ }
173
+ ],
174
+ "name": "ErrorComponentServiceSenderNotService",
175
+ "type": "error"
176
+ },
177
+ {
178
+ "inputs": [],
179
+ "name": "ErrorComponentServiceWalletAddressIsSameAsCurrent",
180
+ "type": "error"
181
+ },
182
+ {
183
+ "inputs": [],
184
+ "name": "ErrorComponentServiceWalletAddressZero",
185
+ "type": "error"
186
+ },
187
+ {
188
+ "inputs": [
189
+ {
190
+ "internalType": "NftId",
191
+ "name": "componentNftId",
192
+ "type": "uint96"
193
+ }
194
+ ],
195
+ "name": "ErrorComponentVerifyingServiceComponentIsLocked",
196
+ "type": "error"
197
+ },
198
+ {
199
+ "inputs": [
200
+ {
201
+ "internalType": "NftId",
202
+ "name": "componentNftId",
203
+ "type": "uint96"
204
+ },
205
+ {
206
+ "internalType": "ObjectType",
207
+ "name": "expectedType",
208
+ "type": "uint8"
209
+ },
210
+ {
211
+ "internalType": "ObjectType",
212
+ "name": "actualType",
213
+ "type": "uint8"
214
+ }
215
+ ],
216
+ "name": "ErrorComponentVerifyingServiceComponentTypeInvalid",
217
+ "type": "error"
218
+ },
219
+ {
220
+ "inputs": [
221
+ {
222
+ "internalType": "NftId",
223
+ "name": "nftId",
224
+ "type": "uint96"
225
+ }
226
+ ],
227
+ "name": "ErrorNftOwnableAlreadyLinked",
228
+ "type": "error"
229
+ },
230
+ {
231
+ "inputs": [
232
+ {
233
+ "internalType": "address",
234
+ "name": "contractAddress",
235
+ "type": "address"
236
+ }
237
+ ],
238
+ "name": "ErrorNftOwnableContractNotRegistered",
239
+ "type": "error"
240
+ },
241
+ {
242
+ "inputs": [],
243
+ "name": "ErrorNftOwnableInitialOwnerZero",
244
+ "type": "error"
245
+ },
246
+ {
247
+ "inputs": [
248
+ {
249
+ "internalType": "address",
250
+ "name": "account",
251
+ "type": "address"
252
+ }
253
+ ],
254
+ "name": "ErrorNftOwnableNotOwner",
255
+ "type": "error"
256
+ },
257
+ {
258
+ "inputs": [
259
+ {
260
+ "internalType": "address",
261
+ "name": "registryAddress",
262
+ "type": "address"
263
+ }
264
+ ],
265
+ "name": "ErrorNotRegistry",
266
+ "type": "error"
267
+ },
268
+ {
269
+ "inputs": [],
270
+ "name": "ErrorServiceNotImplemented",
271
+ "type": "error"
272
+ },
273
+ {
274
+ "inputs": [],
275
+ "name": "InvalidInitialization",
276
+ "type": "error"
277
+ },
278
+ {
279
+ "inputs": [],
280
+ "name": "NotInitializing",
281
+ "type": "error"
282
+ },
283
+ {
284
+ "anonymous": false,
285
+ "inputs": [
286
+ {
287
+ "indexed": false,
288
+ "internalType": "address",
289
+ "name": "authority",
290
+ "type": "address"
291
+ }
292
+ ],
293
+ "name": "AuthorityUpdated",
294
+ "type": "event"
295
+ },
296
+ {
297
+ "anonymous": false,
298
+ "inputs": [
299
+ {
300
+ "indexed": false,
301
+ "internalType": "uint64",
302
+ "name": "version",
303
+ "type": "uint64"
304
+ }
305
+ ],
306
+ "name": "Initialized",
307
+ "type": "event"
308
+ },
309
+ {
310
+ "anonymous": false,
311
+ "inputs": [
312
+ {
313
+ "indexed": false,
314
+ "internalType": "NftId",
315
+ "name": "distributionNftId",
316
+ "type": "uint96"
317
+ }
318
+ ],
319
+ "name": "LogComponentServiceDistributionFeesUpdated",
320
+ "type": "event"
321
+ },
322
+ {
323
+ "anonymous": false,
324
+ "inputs": [
325
+ {
326
+ "indexed": false,
327
+ "internalType": "NftId",
328
+ "name": "poolNftId",
329
+ "type": "uint96"
330
+ }
331
+ ],
332
+ "name": "LogComponentServicePoolFeesUpdated",
333
+ "type": "event"
334
+ },
335
+ {
336
+ "anonymous": false,
337
+ "inputs": [
338
+ {
339
+ "indexed": false,
340
+ "internalType": "NftId",
341
+ "name": "productNftId",
342
+ "type": "uint96"
343
+ }
344
+ ],
345
+ "name": "LogComponentServiceProductFeesUpdated",
346
+ "type": "event"
347
+ },
348
+ {
349
+ "anonymous": false,
350
+ "inputs": [
351
+ {
352
+ "indexed": false,
353
+ "internalType": "NftId",
354
+ "name": "nftId",
355
+ "type": "uint96"
356
+ },
357
+ {
358
+ "indexed": false,
359
+ "internalType": "string",
360
+ "name": "feeName",
361
+ "type": "string"
362
+ },
363
+ {
364
+ "indexed": false,
365
+ "internalType": "UFixed",
366
+ "name": "previousFractionalFee",
367
+ "type": "uint256"
368
+ },
369
+ {
370
+ "indexed": false,
371
+ "internalType": "uint256",
372
+ "name": "previousFixedFee",
373
+ "type": "uint256"
374
+ },
375
+ {
376
+ "indexed": false,
377
+ "internalType": "UFixed",
378
+ "name": "newFractionalFee",
379
+ "type": "uint256"
380
+ },
381
+ {
382
+ "indexed": false,
383
+ "internalType": "uint256",
384
+ "name": "newFixedFee",
385
+ "type": "uint256"
386
+ }
387
+ ],
388
+ "name": "LogComponentServiceUpdateFee",
389
+ "type": "event"
390
+ },
391
+ {
392
+ "anonymous": false,
393
+ "inputs": [
394
+ {
395
+ "indexed": false,
396
+ "internalType": "NftId",
397
+ "name": "componentNftId",
398
+ "type": "uint96"
399
+ },
400
+ {
401
+ "indexed": false,
402
+ "internalType": "address",
403
+ "name": "currentWallet",
404
+ "type": "address"
405
+ },
406
+ {
407
+ "indexed": false,
408
+ "internalType": "address",
409
+ "name": "newWallet",
410
+ "type": "address"
411
+ }
412
+ ],
413
+ "name": "LogComponentServiceWalletAddressChanged",
414
+ "type": "event"
415
+ },
416
+ {
417
+ "inputs": [],
418
+ "name": "NFT_OWNABLE_STORAGE_LOCATION_V1",
419
+ "outputs": [
420
+ {
421
+ "internalType": "bytes32",
422
+ "name": "",
423
+ "type": "bytes32"
424
+ }
425
+ ],
426
+ "stateMutability": "view",
427
+ "type": "function"
428
+ },
429
+ {
430
+ "inputs": [],
431
+ "name": "REGISTERABLE_LOCATION_V1",
432
+ "outputs": [
433
+ {
434
+ "internalType": "bytes32",
435
+ "name": "",
436
+ "type": "bytes32"
437
+ }
438
+ ],
439
+ "stateMutability": "view",
440
+ "type": "function"
441
+ },
442
+ {
443
+ "inputs": [],
444
+ "name": "authority",
445
+ "outputs": [
446
+ {
447
+ "internalType": "address",
448
+ "name": "",
449
+ "type": "address"
450
+ }
451
+ ],
452
+ "stateMutability": "view",
453
+ "type": "function"
454
+ },
455
+ {
456
+ "inputs": [
457
+ {
458
+ "internalType": "contract InstanceStore",
459
+ "name": "instanceStore",
460
+ "type": "address"
461
+ },
462
+ {
463
+ "internalType": "NftId",
464
+ "name": "bundleNftId",
465
+ "type": "uint96"
466
+ },
467
+ {
468
+ "internalType": "Amount",
469
+ "name": "amount",
470
+ "type": "uint96"
471
+ },
472
+ {
473
+ "internalType": "Amount",
474
+ "name": "feeAmount",
475
+ "type": "uint96"
476
+ }
477
+ ],
478
+ "name": "decreaseBundleBalance",
479
+ "outputs": [],
480
+ "stateMutability": "nonpayable",
481
+ "type": "function"
482
+ },
483
+ {
484
+ "inputs": [
485
+ {
486
+ "internalType": "contract InstanceStore",
487
+ "name": "instanceStore",
488
+ "type": "address"
489
+ },
490
+ {
491
+ "internalType": "NftId",
492
+ "name": "distributionNftId",
493
+ "type": "uint96"
494
+ },
495
+ {
496
+ "internalType": "Amount",
497
+ "name": "amount",
498
+ "type": "uint96"
499
+ },
500
+ {
501
+ "internalType": "Amount",
502
+ "name": "feeAmount",
503
+ "type": "uint96"
504
+ }
505
+ ],
506
+ "name": "decreaseDistributionBalance",
507
+ "outputs": [],
508
+ "stateMutability": "nonpayable",
509
+ "type": "function"
510
+ },
511
+ {
512
+ "inputs": [
513
+ {
514
+ "internalType": "contract InstanceStore",
515
+ "name": "instanceStore",
516
+ "type": "address"
517
+ },
518
+ {
519
+ "internalType": "NftId",
520
+ "name": "poolNftId",
521
+ "type": "uint96"
522
+ },
523
+ {
524
+ "internalType": "Amount",
525
+ "name": "amount",
526
+ "type": "uint96"
527
+ },
528
+ {
529
+ "internalType": "Amount",
530
+ "name": "feeAmount",
531
+ "type": "uint96"
532
+ }
533
+ ],
534
+ "name": "decreasePoolBalance",
535
+ "outputs": [],
536
+ "stateMutability": "nonpayable",
537
+ "type": "function"
538
+ },
539
+ {
540
+ "inputs": [
541
+ {
542
+ "internalType": "contract InstanceStore",
543
+ "name": "instanceStore",
544
+ "type": "address"
545
+ },
546
+ {
547
+ "internalType": "NftId",
548
+ "name": "productNftId",
549
+ "type": "uint96"
550
+ },
551
+ {
552
+ "internalType": "Amount",
553
+ "name": "feeAmount",
554
+ "type": "uint96"
555
+ }
556
+ ],
557
+ "name": "decreaseProductFees",
558
+ "outputs": [],
559
+ "stateMutability": "nonpayable",
560
+ "type": "function"
561
+ },
562
+ {
563
+ "inputs": [],
564
+ "name": "getDomain",
565
+ "outputs": [
566
+ {
567
+ "internalType": "ObjectType",
568
+ "name": "",
569
+ "type": "uint8"
570
+ }
571
+ ],
572
+ "stateMutability": "pure",
573
+ "type": "function"
574
+ },
575
+ {
576
+ "inputs": [],
577
+ "name": "getInitialInfo",
578
+ "outputs": [
579
+ {
580
+ "components": [
581
+ {
582
+ "internalType": "NftId",
583
+ "name": "nftId",
584
+ "type": "uint96"
585
+ },
586
+ {
587
+ "internalType": "NftId",
588
+ "name": "parentNftId",
589
+ "type": "uint96"
590
+ },
591
+ {
592
+ "internalType": "ObjectType",
593
+ "name": "objectType",
594
+ "type": "uint8"
595
+ },
596
+ {
597
+ "internalType": "bool",
598
+ "name": "isInterceptor",
599
+ "type": "bool"
600
+ },
601
+ {
602
+ "internalType": "address",
603
+ "name": "objectAddress",
604
+ "type": "address"
605
+ },
606
+ {
607
+ "internalType": "address",
608
+ "name": "initialOwner",
609
+ "type": "address"
610
+ },
611
+ {
612
+ "internalType": "bytes",
613
+ "name": "data",
614
+ "type": "bytes"
615
+ }
616
+ ],
617
+ "internalType": "struct IRegistry.ObjectInfo",
618
+ "name": "info",
619
+ "type": "tuple"
620
+ }
621
+ ],
622
+ "stateMutability": "view",
623
+ "type": "function"
624
+ },
625
+ {
626
+ "inputs": [],
627
+ "name": "getNftId",
628
+ "outputs": [
629
+ {
630
+ "internalType": "NftId",
631
+ "name": "",
632
+ "type": "uint96"
633
+ }
634
+ ],
635
+ "stateMutability": "view",
636
+ "type": "function"
637
+ },
638
+ {
639
+ "inputs": [],
640
+ "name": "getOwner",
641
+ "outputs": [
642
+ {
643
+ "internalType": "address",
644
+ "name": "",
645
+ "type": "address"
646
+ }
647
+ ],
648
+ "stateMutability": "view",
649
+ "type": "function"
650
+ },
651
+ {
652
+ "inputs": [],
653
+ "name": "getRegistry",
654
+ "outputs": [
655
+ {
656
+ "internalType": "contract IRegistry",
657
+ "name": "",
658
+ "type": "address"
659
+ }
660
+ ],
661
+ "stateMutability": "view",
662
+ "type": "function"
663
+ },
664
+ {
665
+ "inputs": [],
666
+ "name": "getVersion",
667
+ "outputs": [
668
+ {
669
+ "internalType": "Version",
670
+ "name": "",
671
+ "type": "uint24"
672
+ }
673
+ ],
674
+ "stateMutability": "pure",
675
+ "type": "function"
676
+ },
677
+ {
678
+ "inputs": [
679
+ {
680
+ "internalType": "contract InstanceStore",
681
+ "name": "instanceStore",
682
+ "type": "address"
683
+ },
684
+ {
685
+ "internalType": "NftId",
686
+ "name": "bundleNftId",
687
+ "type": "uint96"
688
+ },
689
+ {
690
+ "internalType": "Amount",
691
+ "name": "amount",
692
+ "type": "uint96"
693
+ },
694
+ {
695
+ "internalType": "Amount",
696
+ "name": "feeAmount",
697
+ "type": "uint96"
698
+ }
699
+ ],
700
+ "name": "increaseBundleBalance",
701
+ "outputs": [],
702
+ "stateMutability": "nonpayable",
703
+ "type": "function"
704
+ },
705
+ {
706
+ "inputs": [
707
+ {
708
+ "internalType": "contract InstanceStore",
709
+ "name": "instanceStore",
710
+ "type": "address"
711
+ },
712
+ {
713
+ "internalType": "NftId",
714
+ "name": "distributionNftId",
715
+ "type": "uint96"
716
+ },
717
+ {
718
+ "internalType": "Amount",
719
+ "name": "amount",
720
+ "type": "uint96"
721
+ },
722
+ {
723
+ "internalType": "Amount",
724
+ "name": "feeAmount",
725
+ "type": "uint96"
726
+ }
727
+ ],
728
+ "name": "increaseDistributionBalance",
729
+ "outputs": [],
730
+ "stateMutability": "nonpayable",
731
+ "type": "function"
732
+ },
733
+ {
734
+ "inputs": [
735
+ {
736
+ "internalType": "contract InstanceStore",
737
+ "name": "instanceStore",
738
+ "type": "address"
739
+ },
740
+ {
741
+ "internalType": "NftId",
742
+ "name": "poolNftId",
743
+ "type": "uint96"
744
+ },
745
+ {
746
+ "internalType": "Amount",
747
+ "name": "amount",
748
+ "type": "uint96"
749
+ },
750
+ {
751
+ "internalType": "Amount",
752
+ "name": "feeAmount",
753
+ "type": "uint96"
754
+ }
755
+ ],
756
+ "name": "increasePoolBalance",
757
+ "outputs": [],
758
+ "stateMutability": "nonpayable",
759
+ "type": "function"
760
+ },
761
+ {
762
+ "inputs": [
763
+ {
764
+ "internalType": "contract InstanceStore",
765
+ "name": "instanceStore",
766
+ "type": "address"
767
+ },
768
+ {
769
+ "internalType": "NftId",
770
+ "name": "productNftId",
771
+ "type": "uint96"
772
+ },
773
+ {
774
+ "internalType": "Amount",
775
+ "name": "feeAmount",
776
+ "type": "uint96"
777
+ }
778
+ ],
779
+ "name": "increaseProductFees",
780
+ "outputs": [],
781
+ "stateMutability": "nonpayable",
782
+ "type": "function"
783
+ },
784
+ {
785
+ "inputs": [],
786
+ "name": "initializeERC165",
787
+ "outputs": [],
788
+ "stateMutability": "nonpayable",
789
+ "type": "function"
790
+ },
791
+ {
792
+ "inputs": [
793
+ {
794
+ "internalType": "address",
795
+ "name": "initialOwner",
796
+ "type": "address"
797
+ },
798
+ {
799
+ "internalType": "address",
800
+ "name": "registryAddress",
801
+ "type": "address"
802
+ }
803
+ ],
804
+ "name": "initializeNftOwnable",
805
+ "outputs": [],
806
+ "stateMutability": "nonpayable",
807
+ "type": "function"
808
+ },
809
+ {
810
+ "inputs": [
811
+ {
812
+ "internalType": "address",
813
+ "name": "registryAddress",
814
+ "type": "address"
815
+ },
816
+ {
817
+ "internalType": "NftId",
818
+ "name": "parentNftId",
819
+ "type": "uint96"
820
+ },
821
+ {
822
+ "internalType": "ObjectType",
823
+ "name": "objectType",
824
+ "type": "uint8"
825
+ },
826
+ {
827
+ "internalType": "bool",
828
+ "name": "isInterceptor",
829
+ "type": "bool"
830
+ },
831
+ {
832
+ "internalType": "address",
833
+ "name": "initialOwner",
834
+ "type": "address"
835
+ },
836
+ {
837
+ "internalType": "bytes",
838
+ "name": "registryData",
839
+ "type": "bytes"
840
+ }
841
+ ],
842
+ "name": "initializeRegisterable",
843
+ "outputs": [],
844
+ "stateMutability": "nonpayable",
845
+ "type": "function"
846
+ },
847
+ {
848
+ "inputs": [
849
+ {
850
+ "internalType": "address",
851
+ "name": "registryAddress",
852
+ "type": "address"
853
+ }
854
+ ],
855
+ "name": "initializeRegistryLinked",
856
+ "outputs": [],
857
+ "stateMutability": "nonpayable",
858
+ "type": "function"
859
+ },
860
+ {
861
+ "inputs": [
862
+ {
863
+ "internalType": "address",
864
+ "name": "registry",
865
+ "type": "address"
866
+ },
867
+ {
868
+ "internalType": "address",
869
+ "name": "authority",
870
+ "type": "address"
871
+ },
872
+ {
873
+ "internalType": "address",
874
+ "name": "initialOwner",
875
+ "type": "address"
876
+ }
877
+ ],
878
+ "name": "initializeService",
879
+ "outputs": [],
880
+ "stateMutability": "nonpayable",
881
+ "type": "function"
882
+ },
883
+ {
884
+ "inputs": [
885
+ {
886
+ "internalType": "address",
887
+ "name": "activatedBy",
888
+ "type": "address"
889
+ },
890
+ {
891
+ "internalType": "bytes",
892
+ "name": "data",
893
+ "type": "bytes"
894
+ }
895
+ ],
896
+ "name": "initializeVersionable",
897
+ "outputs": [],
898
+ "stateMutability": "nonpayable",
899
+ "type": "function"
900
+ },
901
+ {
902
+ "inputs": [],
903
+ "name": "isConsumingScheduledOp",
904
+ "outputs": [
905
+ {
906
+ "internalType": "bytes4",
907
+ "name": "",
908
+ "type": "bytes4"
909
+ }
910
+ ],
911
+ "stateMutability": "view",
912
+ "type": "function"
913
+ },
914
+ {
915
+ "inputs": [],
916
+ "name": "linkToRegisteredNftId",
917
+ "outputs": [
918
+ {
919
+ "internalType": "NftId",
920
+ "name": "nftId",
921
+ "type": "uint96"
922
+ }
923
+ ],
924
+ "stateMutability": "nonpayable",
925
+ "type": "function"
926
+ },
927
+ {
928
+ "inputs": [],
929
+ "name": "lock",
930
+ "outputs": [],
931
+ "stateMutability": "nonpayable",
932
+ "type": "function"
933
+ },
934
+ {
935
+ "inputs": [],
936
+ "name": "registerDistribution",
937
+ "outputs": [],
938
+ "stateMutability": "nonpayable",
939
+ "type": "function"
940
+ },
941
+ {
942
+ "inputs": [
943
+ {
944
+ "internalType": "bytes4",
945
+ "name": "interfaceId",
946
+ "type": "bytes4"
947
+ }
948
+ ],
949
+ "name": "registerInterface",
950
+ "outputs": [],
951
+ "stateMutability": "nonpayable",
952
+ "type": "function"
953
+ },
954
+ {
955
+ "inputs": [],
956
+ "name": "registerOracle",
957
+ "outputs": [],
958
+ "stateMutability": "nonpayable",
959
+ "type": "function"
960
+ },
961
+ {
962
+ "inputs": [],
963
+ "name": "registerPool",
964
+ "outputs": [],
965
+ "stateMutability": "nonpayable",
966
+ "type": "function"
967
+ },
968
+ {
969
+ "inputs": [],
970
+ "name": "registerProduct",
971
+ "outputs": [],
972
+ "stateMutability": "nonpayable",
973
+ "type": "function"
974
+ },
975
+ {
976
+ "inputs": [
977
+ {
978
+ "internalType": "address",
979
+ "name": "newAuthority",
980
+ "type": "address"
981
+ }
982
+ ],
983
+ "name": "setAuthority",
984
+ "outputs": [],
985
+ "stateMutability": "nonpayable",
986
+ "type": "function"
987
+ },
988
+ {
989
+ "inputs": [
990
+ {
991
+ "components": [
992
+ {
993
+ "internalType": "UFixed",
994
+ "name": "fractionalFee",
995
+ "type": "uint256"
996
+ },
997
+ {
998
+ "internalType": "uint256",
999
+ "name": "fixedFee",
1000
+ "type": "uint256"
1001
+ }
1002
+ ],
1003
+ "internalType": "struct Fee",
1004
+ "name": "distributionFee",
1005
+ "type": "tuple"
1006
+ },
1007
+ {
1008
+ "components": [
1009
+ {
1010
+ "internalType": "UFixed",
1011
+ "name": "fractionalFee",
1012
+ "type": "uint256"
1013
+ },
1014
+ {
1015
+ "internalType": "uint256",
1016
+ "name": "fixedFee",
1017
+ "type": "uint256"
1018
+ }
1019
+ ],
1020
+ "internalType": "struct Fee",
1021
+ "name": "minDistributionOwnerFee",
1022
+ "type": "tuple"
1023
+ }
1024
+ ],
1025
+ "name": "setDistributionFees",
1026
+ "outputs": [],
1027
+ "stateMutability": "nonpayable",
1028
+ "type": "function"
1029
+ },
1030
+ {
1031
+ "inputs": [
1032
+ {
1033
+ "components": [
1034
+ {
1035
+ "internalType": "UFixed",
1036
+ "name": "fractionalFee",
1037
+ "type": "uint256"
1038
+ },
1039
+ {
1040
+ "internalType": "uint256",
1041
+ "name": "fixedFee",
1042
+ "type": "uint256"
1043
+ }
1044
+ ],
1045
+ "internalType": "struct Fee",
1046
+ "name": "poolFee",
1047
+ "type": "tuple"
1048
+ },
1049
+ {
1050
+ "components": [
1051
+ {
1052
+ "internalType": "UFixed",
1053
+ "name": "fractionalFee",
1054
+ "type": "uint256"
1055
+ },
1056
+ {
1057
+ "internalType": "uint256",
1058
+ "name": "fixedFee",
1059
+ "type": "uint256"
1060
+ }
1061
+ ],
1062
+ "internalType": "struct Fee",
1063
+ "name": "stakingFee",
1064
+ "type": "tuple"
1065
+ },
1066
+ {
1067
+ "components": [
1068
+ {
1069
+ "internalType": "UFixed",
1070
+ "name": "fractionalFee",
1071
+ "type": "uint256"
1072
+ },
1073
+ {
1074
+ "internalType": "uint256",
1075
+ "name": "fixedFee",
1076
+ "type": "uint256"
1077
+ }
1078
+ ],
1079
+ "internalType": "struct Fee",
1080
+ "name": "performanceFee",
1081
+ "type": "tuple"
1082
+ }
1083
+ ],
1084
+ "name": "setPoolFees",
1085
+ "outputs": [],
1086
+ "stateMutability": "nonpayable",
1087
+ "type": "function"
1088
+ },
1089
+ {
1090
+ "inputs": [
1091
+ {
1092
+ "components": [
1093
+ {
1094
+ "internalType": "UFixed",
1095
+ "name": "fractionalFee",
1096
+ "type": "uint256"
1097
+ },
1098
+ {
1099
+ "internalType": "uint256",
1100
+ "name": "fixedFee",
1101
+ "type": "uint256"
1102
+ }
1103
+ ],
1104
+ "internalType": "struct Fee",
1105
+ "name": "productFee",
1106
+ "type": "tuple"
1107
+ },
1108
+ {
1109
+ "components": [
1110
+ {
1111
+ "internalType": "UFixed",
1112
+ "name": "fractionalFee",
1113
+ "type": "uint256"
1114
+ },
1115
+ {
1116
+ "internalType": "uint256",
1117
+ "name": "fixedFee",
1118
+ "type": "uint256"
1119
+ }
1120
+ ],
1121
+ "internalType": "struct Fee",
1122
+ "name": "processingFee",
1123
+ "type": "tuple"
1124
+ }
1125
+ ],
1126
+ "name": "setProductFees",
1127
+ "outputs": [],
1128
+ "stateMutability": "nonpayable",
1129
+ "type": "function"
1130
+ },
1131
+ {
1132
+ "inputs": [
1133
+ {
1134
+ "internalType": "address",
1135
+ "name": "newWallet",
1136
+ "type": "address"
1137
+ }
1138
+ ],
1139
+ "name": "setWallet",
1140
+ "outputs": [],
1141
+ "stateMutability": "nonpayable",
1142
+ "type": "function"
1143
+ },
1144
+ {
1145
+ "inputs": [
1146
+ {
1147
+ "internalType": "bytes4",
1148
+ "name": "interfaceId",
1149
+ "type": "bytes4"
1150
+ }
1151
+ ],
1152
+ "name": "supportsInterface",
1153
+ "outputs": [
1154
+ {
1155
+ "internalType": "bool",
1156
+ "name": "",
1157
+ "type": "bool"
1158
+ }
1159
+ ],
1160
+ "stateMutability": "view",
1161
+ "type": "function"
1162
+ },
1163
+ {
1164
+ "inputs": [],
1165
+ "name": "unlock",
1166
+ "outputs": [],
1167
+ "stateMutability": "nonpayable",
1168
+ "type": "function"
1169
+ },
1170
+ {
1171
+ "inputs": [
1172
+ {
1173
+ "internalType": "bytes",
1174
+ "name": "data",
1175
+ "type": "bytes"
1176
+ }
1177
+ ],
1178
+ "name": "upgradeVersionable",
1179
+ "outputs": [],
1180
+ "stateMutability": "nonpayable",
1181
+ "type": "function"
1182
+ }
1183
+ ],
1184
+ "bytecode": "0x60806040523480156200001157600080fd5b506200001c62000022565b620000d6565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000900460ff1615620000735760405163f92ee8a960e01b815260040160405180910390fd5b80546001600160401b0390811614620000d35780546001600160401b0319166001600160401b0390811782556040519081527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b50565b615e3380620000e66000396000f3fe60806040523480156200001157600080fd5b50600436106200026d5760003560e01c80636e1728071162000155578063be495be511620000c7578063deaa59df1162000086578063deaa59df146200057d578063dfd92f8a1462000594578063e618053f14620002ef578063f7c34ee0146200059e578063f83d08ba146200030657600080fd5b8063be495be51462000532578063bf7e214f146200053c578063c142a303146200055c578063d56cd3d51462000379578063d7740ee1146200057357600080fd5b80638e32e97911620001145780638e32e97914620004c35780638fb3603714620004da578063a69df4b51462000306578063ada9652e14620004fe578063b68d1809146200051557600080fd5b80636e172807146200048b57806374933c2f14620003795780637a9e5e4b14620004a2578063893d20e814620004b957806389fad8a214620002ef57600080fd5b8063329d6e7411620001ef5780635ab1bd5311620001ae5780635ab1bd531462000400578063644c45e0146200042657806367438c501462000446578063675393bf146200045d57806367ba1c10146200047457600080fd5b8063329d6e7414620003a7578063339d259014620003be57806336fc697e14620003c857806337a897ee14620003d257806349bb9e4b14620003e957600080fd5b8063138461e0116200023c578063138461e014620003085780631eff4b22146200032b578063214cdb80146200036257806325e451d3146200037957806327bb7a33146200039057600080fd5b806301ffc9a714620002725780630d8e6e2c14620002b75780630fec111c14620002d657806311a1467714620002ef575b600080fd5b620002a26200028336600462004666565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b620002c1620005b5565b60405162ffffff9091168152602001620002ae565b620002e062000642565b604051620002ae9190620046e6565b6200030662000300366004620047a0565b620007e2565b005b62000312620007f8565b6040516001600160601b039091168152602001620002ae565b620003537f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b604051908152602001620002ae565b620003066200037336600462004666565b62000805565b620003066200038a366004620047a0565b62000834565b62000306620003a1366004620049b4565b62000844565b62000306620003b836600462004a5a565b620008ef565b6200030662000a46565b6200030662000aa2565b62000306620003e336600462004ac5565b62000aea565b62000306620003fa36600462004af6565b62000e3e565b6001546001600160a01b03165b6040516001600160a01b039091168152602001620002ae565b60008051602062005d9e833981519152546001600160601b031662000312565b620003066200045736600462004b4b565b62000f39565b620003066200046e36600462004b9d565b62000fbd565b620003066200048536600462004ac5565b620010da565b620003066200049c36600462004b4b565b6200147a565b62000306620004b336600462004b9d565b620014cc565b6200040d6200156e565b62000306620004d436600462004bbd565b620016ad565b620004e46200190c565b6040516001600160e01b03199091168152602001620002ae565b6200035360008051602062005d9e83398151915281565b6200051f62001949565b60405160ff9091168152602001620002ae565b6200030662001955565b60008051602062005dbe833981519152546001600160a01b03166200040d565b620003066200056d36600462004c04565b62001aa2565b6200030662001e74565b620003066200058e36600462004b9d565b62002091565b6200030662002356565b62000306620005af36600462004c51565b62002535565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af415801562000617573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200063d919062004c8f565b905090565b6200064c620044f9565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015620006c6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620006ec919062004cc8565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a001620007366200156e565b6001600160a01b03168152602001826001018054620007559062004ce8565b80601f0160208091040260200160405190810160405280929190818152602001828054620007839062004ce8565b8015620007d45780601f10620007a857610100808354040283529160200191620007d4565b820191906000526020600020905b815481529060010190602001808311620007b657829003601f168201915b505050505081525091505090565b620007f2600085858585620025b4565b50505050565b60006200063d30620029e3565b6200080f62002bf2565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b620007f2600185858585620025b4565b6200084e62002bf2565b6200085a828762002535565b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0387166cffffffffffffffffffffffffff1990911617600160601b60ff8716021760ff60681b1916600160681b851515021781557f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa301620008e5838262004d6e565b5050505050505050565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c62000913620005b5565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af415801562000954573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200097a919062004e5d565b60008051602062005dde8339815191528054600160401b900460ff1680620009af575080546001600160401b03808416911610155b15620009ce5760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155620009fa8362002c2b565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b6040805160008082526020820181815282840190935233928162000a7b565b606081526020019060019003908162000a655790505b509050600080620008e58562000a9062002c35565b62000a9a62002cb0565b878762002d2b565b62000aac62002bf2565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b60008062000b0162000afb62003210565b6200324c565b925050915060008062000b79836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000b4c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000b72919062004e7d565b85620032f4565b91509150600073__$58e11c6004c5796aaa8c56e718245e69a2$__632b324dc08360800151896040518363ffffffff1660e01b815260040162000bbe92919062004e9d565b602060405180830381865af415801562000bdc573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000c02919062004ed1565b62000c4b5762000c40836040518060400160405280600f81526020016e446973747269627574696f6e46656560881b81525084608001518a620033fd565b506080810186905260015b60a082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc09162000c8991908a9060040162004e9d565b602060405180830381865af415801562000ca7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000ccd919062004ed1565b62000d245762000d19836040518060400160405280601781526020017f4d696e446973747269627574696f6e4f776e65724665650000000000000000008152508460a0015189620033fd565b5060a0810185905260015b801562000e3557836001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000d6a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000d90919062004e7d565b6001600160a01b031663b5b3d9f9848460ff6040518463ffffffff1660e01b815260040162000dc29392919062004fd0565b600060405180830381600087803b15801562000ddd57600080fd5b505af115801562000df2573d6000803e3d6000fd5b50506040516001600160601b03881681527f37bea7afe3960b639e98d9161b22f53a172300df8ec6ee71fd0a5321dcecd59b925060200190505b60405180910390a15b50505050505050565b60008051602062005dde8339815191528054600160401b810460ff1615906001600160401b031660008115801562000e735750825b90506000826001600160401b0316600114801562000e905750303b155b90508115801562000e9f575080155b1562000ebe5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831562000ee957845460ff60401b1916600160401b1785555b62000ef5878762003452565b831562000e3557845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200162000e2c565b62000fb86001848473__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af415801562000f8b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000fb1919062004cc8565b85620025b4565b505050565b62000fc762002bf2565b806001600160a01b03163b600003620010035760405163fdeac91f60e01b81526001600160a01b03821660048201526024015b60405180910390fd5b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b815263e607072160e01b60048201526301ffc9a790602401602060405180830381865afa92505050801562001080575060408051601f3d908101601f191682019092526200107d9181019062004ed1565b60015b620010aa5760405163fdeac91f60e01b81526001600160a01b038216600482015260240162000ffa565b80620010d55760405163fdeac91f60e01b81526001600160a01b038316600482015260240162000ffa565b505b50565b600080620010eb62000afb620035e3565b92505091506000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa15801562001131573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001157919062004e7d565b6040516302d764c760e21b81526001600160601b03851660048201526001600160a01b039190911690630b5d931c9060240161020060405180830381865afa158015620011a8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620011ce919062005035565b9050600073__$58e11c6004c5796aaa8c56e718245e69a2$__632b324dc08360400151886040518363ffffffff1660e01b81526004016200121192919062004e9d565b602060405180830381865af41580156200122f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001255919062004ed1565b62001299576200128e846040518060400160405280600a81526020016950726f6475637446656560b01b815250846040015189620033fd565b506040810185905260015b606082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc091620012d79190899060040162004e9d565b602060405180830381865af4158015620012f5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200131b919062004ed1565b620013625762001357846040518060400160405280600d81526020016c50726f63657373696e6746656560981b815250846060015188620033fd565b506060810184905260015b80156200147257826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015620013a8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620013ce919062004e7d565b6001600160a01b031663b5b3d9f9858460ff6040518463ffffffff1660e01b8152600401620014009392919062004fd0565b600060405180830381600087803b1580156200141b57600080fd5b505af115801562001430573d6000803e3d6000fd5b50506040516001600160601b03871681527f385da3b17e82d72dd7e4cbe895c7d7d3fbb4c8768e0866dd69f44581a0ded2bc9250602001905060405180910390a15b505050505050565b62000fb86000848473__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af415801562000f8b573d6000803e3d6000fd5b33620014ee60008051602062005dbe833981519152546001600160a01b031690565b6001600160a01b0316816001600160a01b0316146200152b5760405162d1953b60e31b81526001600160a01b038216600482015260240162000ffa565b816001600160a01b03163b60000362001563576040516361798f2f60e11b81526001600160a01b038316600482015260240162000ffa565b620010d5826200361f565b60008060008051602062005d9e83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015620015e0573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001606919062004ed1565b1562001697576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa1580156200166b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001691919062004e7d565b91505090565b54600160601b90046001600160a01b0316919050565b620016b762002bf2565b6200174483846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015620016fb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001721919062004cc8565b6200172b62003681565b6000856040518060200160405280600081525062000844565b6001600160a01b0382161562001765576200175f82620036bd565b620018e8565b60006200177a6001546001600160a01b031690565b6001600160a01b031663d39e604362001792620036d2565b604051632392b61b60e21b81526003600482015273__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af4158015620017e3573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001809919062005124565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa1580156200184f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001875919062004e7d565b9050620018e6816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015620018ba573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620018e0919062004e7d565b620036bd565b505b620018fa634a531f3360e01b62000805565b62000fb863b68d180960e01b62000805565b60008051602062005dbe833981519152805460009190600160a01b900460ff166200193957600062001691565b638fb3603760e01b91505090565b565b60006200063d6200370e565b604080516002808252606082018352339260009291906020830190803683375050604080516002808252606082019092529293506000929150602082015b606081526020019060019003908162001993579050509050620019b56200374a565b82600081518110620019cb57620019cb62005144565b6001600160401b0390921660209283029190910190910152620019f5635b5a095d60e11b62003786565b8160008151811062001a0b5762001a0b62005144565b602002602001018190525062001a20620037dd565b8260018151811062001a365762001a3662005144565b6001600160401b039092166020928302919091019091015262001a60637c07103960e11b62003786565b8160018151811062001a765762001a7662005144565b6020026020010181905250620014728362001a9062003210565b62001a9a6200374a565b858562002d2b565b60008062001ab362000afb6200381a565b925050915060008062001afe836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000b4c573d6000803e3d6000fd5b91509150600073__$58e11c6004c5796aaa8c56e718245e69a2$__632b324dc08360c001518a6040518363ffffffff1660e01b815260040162001b4392919062004e9d565b602060405180830381865af415801562001b61573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001b87919062004ed1565b62001bc85762001bbd8360405180604001604052806007815260200166506f6f6c46656560c81b8152508460c001518b620033fd565b5060c0810187905260015b60e082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc09162001c0691908b9060040162004e9d565b602060405180830381865af415801562001c24573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001c4a919062004ed1565b62001c8e5762001c83836040518060400160405280600a8152602001695374616b696e6746656560b01b8152508460e001518a620033fd565b5060e0810186905260015b61010082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc09162001ccd91908a9060040162004e9d565b602060405180830381865af415801562001ceb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001d11919062004ed1565b62001d5b5762001d4f836040518060400160405280600e81526020016d506572666f726d616e636546656560901b81525084610100015189620033fd565b50610100810185905260015b8015620008e557836001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa15801562001da1573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001dc7919062004e7d565b6001600160a01b031663b5b3d9f9848460ff6040518463ffffffff1660e01b815260040162001df99392919062004fd0565b600060405180830381600087803b15801562001e1457600080fd5b505af115801562001e29573d6000803e3d6000fd5b50506040516001600160601b03881681527f7a446b749117c015e0932e31190fc133582c9c5151e31209479cc9d21941f0359250602001905060405180910390a15050505050505050565b604080516002808252606082018352339260009291906020830190803683375050604080516002808252606082019092529293506000929150602082015b606081526020019060019003908162001eb257905050905062001ed462003856565b8260008151811062001eea5762001eea62005144565b6001600160401b039092166020928302919091019091015262001f14634133c3b360e11b62003786565b8160008151811062001f2a5762001f2a62005144565b602002602001018190525062001f3f62003891565b8260018151811062001f555762001f5562005144565b6001600160401b039092166020928302919091019091015262001f7f639e2177a760e01b62003786565b8160018151811062001f955762001f9562005144565b602002602001018190525060008062001fbc8562001fb26200381a565b62000a9a62003856565b9250925050816001600160a01b0316637892982382876001600160a01b03166385ba83446040518163ffffffff1660e01b81526004016101c060405180830381865afa15801562002011573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200203791906200515a565b6040518363ffffffff1660e01b81526004016200205692919062005234565b600060405180830381600087803b1580156200207157600080fd5b505af115801562002086573d6000803e3d6000fd5b505050505050505050565b600080620020a262000afb6200370e565b92505091506000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015620020e8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200210e919062004e7d565b60405163f0ea17c360e01b81526001600160601b03851660048201526001600160a01b03919091169063f0ea17c390602401600060405180830381865afa1580156200215e573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405262002188919081019062005360565b60808101519091506001600160a01b038516620021b85760405163cda6051f60e01b815260040160405180910390fd5b6001600160a01b038116620021e05760405163149cf9c560e21b815260040160405180910390fd5b806001600160a01b0316856001600160a01b031603620022135760405163e5bf1f2160e01b815260040160405180910390fd5b8482608001906001600160a01b031690816001600160a01b031681525050826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa15801562002270573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002296919062004e7d565b6001600160a01b03166303c099ac858460ff6040518463ffffffff1660e01b8152600401620022c893929190620054c3565b600060405180830381600087803b158015620022e357600080fd5b505af1158015620022f8573d6000803e3d6000fd5b5050604080516001600160601b03881681526001600160a01b03858116602083015289168183015290517ff2d80db4913d045b4cad17a65741b11f822efa2652c369fcb3e44324260773c39350908190036060019150a15050505050565b6040805160018082528183019092523391600091906020808301908036833750506040805160018082528183019092529293506000929150602082015b606081526020019060019003908162002393579050509050620023b5620038ce565b82600081518110620023cb57620023cb62005144565b6001600160401b0390921660209283029190910190910152620023f5635b5a095d60e11b62003786565b816000815181106200240b576200240b62005144565b602002602001018190525060008060006200243c866200242a620035e3565b62002434620038ce565b888862002d2b565b9250925092506000866001600160a01b031663c108bd4c6040518163ffffffff1660e01b815260040161020060405180830381865afa15801562002484573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620024aa919062005035565b60405163a6a67b1f60e01b81529091506001600160a01b0384169063a6a67b1f90620024dd9085908590600401620054fa565b600060405180830381600087803b158015620024f857600080fd5b505af11580156200250d573d6000803e3d6000fd5b505050506200252384848360000151856200390a565b62000e3584848360200151856200390a565b6200253f62002bf2565b6200254a8162000fbd565b6200255462000aa2565b6001600160a01b0382166200257c5760405163f17ef42d60e01b815260040160405180910390fd5b5060008051602062005d9e83398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b6000620025c2838362003a4d565b90508515620027db576040516330b8415f60e01b81526001600160601b038216600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af415801562002624573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200264a919062004ed1565b15620026d057604051639f8151e560e01b81526001600160601b038086166004830152821660248201526001600160a01b03861690639f8151e5906044016020604051808303816000875af1158015620026a8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620026ce919062004cc8565b505b6040516330b8415f60e01b81526001600160601b038316600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af415801562002729573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200274f919062004ed1565b15620027d55760405163e80c61ed60e01b81526001600160601b038086166004830152831660248201526001600160a01b0386169063e80c61ed906044016020604051808303816000875af1158015620027ad573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620027d3919062004cc8565b505b62001472565b6040516330b8415f60e01b81526001600160601b038216600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af415801562002834573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200285a919062004ed1565b15620028e05760405163b0628dc360e01b81526001600160601b038086166004830152821660248201526001600160a01b0386169063b0628dc3906044016020604051808303816000875af1158015620028b8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620028de919062004cc8565b505b6040516330b8415f60e01b81526001600160601b038316600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af415801562002939573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200295f919062004ed1565b1562001472576040516314cc21b560e21b81526001600160601b038086166004830152831660248201526001600160a01b0386169063533086d4906044016020604051808303816000875af1158015620029bd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000e35919062004cc8565b60008060008051602062005d9e83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af415801562002a55573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002a7b919062004ed1565b1562002aa95780546040516301ab8b6760e21b81526001600160601b03909116600482015260240162000ffa565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa15801562002afe573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002b24919062004ed1565b62002b4e5760405163b9304b0d60e01b81526001600160a01b038416600482015260240162000ffa565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038581166004830152919091169063d272ac1e90602401602060405180830381865afa15801562002ba3573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002bc9919062004cc8565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b60008051602062005dde83398151915254600160401b900460ff166200194757604051631afcd79f60e31b815260040160405180910390fd5b6200026d62002bf2565b604051630dd958dd60e31b81526082600482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636ecac6e8906024015b602060405180830381865af415801562002c8a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200063d919062005124565b6040516368aebf7b60e01b81526003600482015260009073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b906024015b602060405180830381865af415801562002d05573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200063d919062004e5d565b60008060008060008062002d418b8b8b62003ade565b60025460405163d943342d60e01b815293965091945092506001600160a01b03169063d943342d9062002d9d9085908e9086906004016001600160a01b03938416815260ff929092166020830152909116604082015260600190565b6000604051808303816000875af115801562002dbd573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405262002de791908101906200551a565b600001519350816001600160a01b031663138461e06040518163ffffffff1660e01b81526004016020604051808303816000875af115801562002e2e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002e54919062004cc8565b50826001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa15801562002e94573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002eba919062004e7d565b9550826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa15801562002efb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002f21919062004e7d565b94506000826001600160a01b03166390edbd356040518163ffffffff1660e01b8152600401600060405180830381865afa15801562002f64573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405262002f8e919081019062005360565b9050806040015160405162002fa39062004537565b6001600160a01b039091168152602001604051809103906000f08015801562002fd0573d6000803e3d6000fd5b5081606001906001600160a01b031690816001600160a01b031681525050856001600160a01b0316634846003a846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200303c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003062919062004cc8565b836040518363ffffffff1660e01b81526004016200308292919062005600565b600060405180830381600087803b1580156200309d57600080fd5b505af1158015620030b2573d6000803e3d6000fd5b50505050600360009054906101000a90046001600160a01b03166001600160a01b031663dd38b49e856001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa15801562003119573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200313f919062004cc8565b8e866001600160a01b03166317d7de7c6040518163ffffffff1660e01b8152600401600060405180830381865afa1580156200317f573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052620031a9919081019062005624565b8c8e6040518663ffffffff1660e01b8152600401620031cd959493929190620056a2565b600060405180830381600087803b158015620031e857600080fd5b505af1158015620031fd573d6000803e3d6000fd5b5050505050505050955095509592505050565b604051630dd958dd60e31b81526078600482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636ecac6e89060240162002c6c565b600062003258620044f9565b60006200326d6001546001600160a01b031690565b604051636939560f60e11b81523360048201526001600160a01b03919091169063d272ac1e90602401602060405180830381865afa158015620032b4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620032da919062004cc8565b9250620032ea8385600162003f4d565b9395909450915050565b60006200330062004545565b60405163f0ea17c360e01b81526001600160601b03841660048201526001600160a01b0385169063f0ea17c390602401600060405180830381865afa1580156200334e573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405262003378919081019062005360565b602001516040516302d764c760e21b81526001600160601b03821660048201529092506001600160a01b03851690630b5d931c9060240161020060405180830381865afa158015620033ce573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620033f4919062005035565b90509250929050565b81516020808401518351918401516040517f52d1fb99d890f3b2be95c262d870f89c22614249751b9fe6124d341bedbd70db9462003444948a948a9492939092906200577e565b60405180910390a150505050565b60008051602062005dde8339815191528054600160401b810460ff1615906001600160401b0316600081158015620034875750825b90506000826001600160401b03166001148015620034a45750303b155b905081158015620034b3575080155b15620034d25760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315620034fd57845460ff60401b1916600160401b1785555b60008087806020019051810190620035169190620057c7565b9092509050620035298260008b620016ad565b6200353d62003537620036d2565b62004228565b600280546001600160a01b0319166001600160a01b03929092169190911790556200356b6200353762004344565b600380546001600160a01b0319166001600160a01b03929092169190911790556200359d63672f53a760e01b62000805565b5050831562000e3557845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200162000e2c565b604051630dd958dd60e31b8152606e600482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636ecac6e89060240162002c6c565b60008051602062005dbe83398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b604051630dd958dd60e31b8152603c600482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636ecac6e89060240162002c6c565b620036c762002bf2565b620010d78162004380565b604051630dd958dd60e31b81526028600482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636ecac6e89060240162002c6c565b604051630dd958dd60e31b81526064600482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636ecac6e89060240162002c6c565b6040516368aebf7b60e01b81526002600482015260009073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b9060240162002ce7565b604080516001808252818301909252606091602080830190803683370190505090508181600081518110620037bf57620037bf62005144565b6001600160e01b031990921660209283029190910190910152919050565b6040516368aebf7b60e01b81526108fc600482015260009073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b9060240162002ce7565b604051630dd958dd60e31b8152608c600482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636ecac6e89060240162002c6c565b6040516368aebf7b60e01b815260048082015260009073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b9060240162002ce7565b6040516368aebf7b60e01b815261096a600482015260009073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b9060240162002ce7565b6040516368aebf7b60e01b81526005600482015260009073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b9060240162002ce7565b604051630a4d29dd60e31b81526001600160601b038316600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906352694ee890602401602060405180830381865af415801562003963573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003989919062004ed1565b620007f25760405163f0ea17c360e01b81526001600160601b03831660048201526000906001600160a01b0386169063f0ea17c390602401600060405180830381865afa158015620039df573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405262003a09919081019062005360565b6001600160601b038316602082015260405162f0266b60e21b81529091506001600160a01b038516906303c099ac9062002056908690859060ff90600401620054c3565b60405163274acb3560e01b81526001600160601b0380841660048301528216602482015260009073__$3bac17678db7ae928afa209f2f44deec9c$__9063274acb3590604401602060405180830381865af415801562003ab1573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003ad7919062004cc8565b9392505050565b6040516301ffc9a760e01b8152639a29895960e01b6004820152600090849082906001600160a01b038316906301ffc9a790602401602060405180830381865afa15801562003b31573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003b57919062004ed1565b62003b81576040516359bff0e360e11b81526001600160a01b038716600482015260240162000ffa565b6000826001600160a01b0316630fec111c6040518163ffffffff1660e01b8152600401600060405180830381865afa15801562003bc2573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405262003bec91908101906200551a565b905062003bfe81604001518762004395565b1562003c40576040808201519051634a2e948760e11b81526001600160a01b038916600482015260ff8089166024830152909116604482015260640162000ffa565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038981166004830152919091169063d272ac1e90602401602060405180830381865afa15801562003c95573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003cbb919062004cc8565b6040516330b8415f60e01b81526001600160601b03909116600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af415801562003d15573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003d3b919062004ed1565b1562003d66576040516322e6526160e11b81526001600160a01b038816600482015260240162000ffa565b62003d7581602001516200441a565b93508060a0015191506000846001600160a01b031663e5f6cd276040518163ffffffff1660e01b8152600401602060405180830381865afa15801562003dbf573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003de5919062004e7d565b604051631517388760e21b81526001600160401b03881660048201526001600160a01b03919091169063d1f856ee9073__$1d92393fa9ccd763988368ce8a1cb90d26$__9063545ce21c90602401602060405180830381865af415801562003e51573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003e77919062004e5d565b6040516001600160e01b031960e084901b1681526001600160401b0390911660048201526001600160a01b03861660248201526044016040805180830381865afa15801562003eca573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003ef09190620057fb565b5090508062003f42576020820151604051636af540d960e01b81526001600160601b0390911660048201526001600160401b03871660248201526001600160a01b038416604482015260640162000ffa565b505093509350939050565b62003f57620044f9565b60008062003f6d6001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03881660048201529091506001600160a01b0382169063a48f42e090602401600060405180830381865afa15801562003fbe573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405262003fe891908101906200551a565b925062003fff8562003ff96200370e565b62004395565b156200405d576200401583604001518662004395565b156200405757604080840151905163b83d92cb60e01b81526001600160601b038816600482015260ff8088166024830152909116604482015260640162000ffa565b62004105565b62004076836040015162004070620035e3565b620044b3565b80620040905750620040908360400151620040706200381a565b80620040aa5750620040aa83604001516200407062003210565b80620040c45750620040c483604001516200407062002c35565b6200410557604080840151905163b83d92cb60e01b81526001600160601b038816600482015260ff8088166024830152909116604482015260640162000ffa565b6200411483602001516200441a565b915083156200421f57816001600160a01b031663e5f6cd276040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200415c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062004182919062004e7d565b608084015160405163a166aa8960e01b81526001600160a01b03918216600482015291169063a166aa8990602401602060405180830381865afa158015620041ce573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620041f4919062004ed1565b156200421f57604051637d71120960e11b81526001600160601b038716600482015260240162000ffa565b50935093915050565b60006200423d6001546001600160a01b031690565b6001600160a01b031663d39e60438362004256620005b5565b60405163c9e66e2960e01b815262ffffff909116600482015273__$8eede297b65ed5a56eb3f84d8232ae93f5$__9063c9e66e2990602401602060405180830381865af4158015620042ac573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620042d2919062005124565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa15801562004318573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200433e919062004e7d565b92915050565b604051630dd958dd60e31b81526046600482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636ecac6e89060240162002c6c565b6200438a62002bf2565b620010d7816200361f565b604051637adad14f60e01b815260ff80841660048301528216602482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90637adad14f906044015b602060405180830381865af4158015620043f4573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003ad7919062004ed1565b60006200442f6001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03841660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa1580156200447f573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052620044a991908101906200551a565b6080015192915050565b604051632c2f8a6760e01b815260ff80841660048301528216602482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90632c2f8a6790604401620043d6565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915290565b610566806200583883390190565b60405180610120016040528060006001600160601b0316815260200160006001600160601b031681526020016200458f604051806040016040528060008152602001600081525090565b8152602001620045b2604051806040016040528060008152602001600081525090565b8152602001620045d5604051806040016040528060008152602001600081525090565b8152602001620045f8604051806040016040528060008152602001600081525090565b81526020016200461b604051806040016040528060008152602001600081525090565b81526020016200463e604051806040016040528060008152602001600081525090565b815260200162004661604051806040016040528060008152602001600081525090565b905290565b6000602082840312156200467957600080fd5b81356001600160e01b03198116811462003ad757600080fd5b60005b83811015620046af57818101518382015260200162004695565b50506000910152565b60008151808452620046d281602086016020860162004692565b601f01601f19169290920160200192915050565b6020815260006001600160601b038084511660208401528060208501511660408401525060ff604084015116606083015260608301511515608083015260018060a01b0360808401511660a083015260a08301516200475060c08401826001600160a01b03169052565b5060c083015160e0808401526200476c610100840182620046b8565b949350505050565b6001600160a01b0381168114620010d757600080fd5b6001600160601b0381168114620010d757600080fd5b60008060008060808587031215620047b757600080fd5b8435620047c48162004774565b93506020850135620047d6816200478a565b92506040850135620047e8816200478a565b91506060850135620047fa816200478a565b939692955090935050565b60ff81168114620010d757600080fd5b8015158114620010d757600080fd5b634e487b7160e01b600052604160045260246000fd5b604080519081016001600160401b03811182821017156200485f576200485f62004824565b60405290565b60405161012081016001600160401b03811182821017156200485f576200485f62004824565b60405161016081016001600160401b03811182821017156200485f576200485f62004824565b60405160c081016001600160401b03811182821017156200485f576200485f62004824565b60405160e081016001600160401b03811182821017156200485f576200485f62004824565b604051601f8201601f191681016001600160401b038111828210171562004926576200492662004824565b604052919050565b60006001600160401b038211156200494a576200494a62004824565b50601f01601f191660200190565b600082601f8301126200496a57600080fd5b8135620049816200497b826200492e565b620048fb565b8181528460208386010111156200499757600080fd5b816020850160208301376000918101602001919091529392505050565b60008060008060008060c08789031215620049ce57600080fd5b8635620049db8162004774565b95506020870135620049ed816200478a565b94506040870135620049ff8162004805565b9350606087013562004a118162004815565b9250608087013562004a238162004774565b915060a08701356001600160401b0381111562004a3f57600080fd5b62004a4d89828a0162004958565b9150509295509295509295565b60006020828403121562004a6d57600080fd5b81356001600160401b0381111562004a8457600080fd5b6200476c8482850162004958565b60006040828403121562004aa557600080fd5b62004aaf6200483a565b9050813581526020820135602082015292915050565b6000806080838503121562004ad957600080fd5b62004ae5848462004a92565b9150620033f4846040850162004a92565b6000806040838503121562004b0a57600080fd5b823562004b178162004774565b915060208301356001600160401b0381111562004b3357600080fd5b62004b418582860162004958565b9150509250929050565b60008060006060848603121562004b6157600080fd5b833562004b6e8162004774565b9250602084013562004b80816200478a565b9150604084013562004b92816200478a565b809150509250925092565b60006020828403121562004bb057600080fd5b813562003ad78162004774565b60008060006060848603121562004bd357600080fd5b833562004be08162004774565b9250602084013562004bf28162004774565b9150604084013562004b928162004774565b600080600060c0848603121562004c1a57600080fd5b62004c26858562004a92565b925062004c37856040860162004a92565b915062004c48856080860162004a92565b90509250925092565b6000806040838503121562004c6557600080fd5b823562004c728162004774565b9150602083013562004c848162004774565b809150509250929050565b60006020828403121562004ca257600080fd5b815162ffffff8116811462003ad757600080fd5b805162004cc3816200478a565b919050565b60006020828403121562004cdb57600080fd5b815162003ad7816200478a565b600181811c9082168062004cfd57607f821691505b60208210810362004d1e57634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111562000fb857600081815260208120601f850160051c8101602086101562004d4d5750805b601f850160051c820191505b81811015620014725782815560010162004d59565b81516001600160401b0381111562004d8a5762004d8a62004824565b62004da28162004d9b845462004ce8565b8462004d24565b602080601f83116001811462004dda576000841562004dc15750858301515b600019600386901b1c1916600185901b17855562001472565b600085815260208120601f198616915b8281101562004e0b5788860151825594840194600190910190840162004dea565b508582101562004e2a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160401b0381168114620010d757600080fd5b805162004cc38162004e3a565b60006020828403121562004e7057600080fd5b815162003ad78162004e3a565b60006020828403121562004e9057600080fd5b815162003ad78162004774565b82518152602080840151818301528251604083015282015160608201526080810162003ad7565b805162004cc38162004815565b60006020828403121562004ee457600080fd5b815162003ad78162004815565b6001600160601b038151168252602081015162004f1960208401826001600160601b03169052565b50604081015162004f37604084018280518252602090810151910152565b50606081015180516080840152602081015160a0840152506080810151805160c0840152602081015160e08401525060a081015161010062004f858185018380518252602090810151910152565b60c0830151805161014086015260209081015161016086015260e084015180516101808701528101516101a086015292015180516101c0850152909101516101e09092019190915250565b6001600160601b0384168152610240810162004ff0602083018562004ef1565b60ff8316610220830152949350505050565b6000604082840312156200501557600080fd5b6200501f6200483a565b9050815181526020820151602082015292915050565b600061020082840312156200504957600080fd5b6200505362004865565b6200505e8362004cb6565b81526200506e6020840162004cb6565b602082015262005082846040850162005002565b604082015262005096846080850162005002565b6060820152620050aa8460c0850162005002565b6080820152610100620050c08582860162005002565b60a0830152620050d585610140860162005002565b60c0830152620050ea85610180860162005002565b60e0830152620050ff856101c0860162005002565b908201529392505050565b805162004cc38162004774565b805162004cc38162004805565b6000602082840312156200513757600080fd5b815162003ad78162004805565b634e487b7160e01b600052603260045260246000fd5b60006101c082840312156200516e57600080fd5b620051786200488b565b620051838362004cb6565b8152620051936020840162004e50565b6020820152620051a66040840162004cb6565b6040820152620051b96060840162004ec4565b6060820152620051cc6080840162004ec4565b6080820152620051df60a0840162004ec4565b60a082015260c083015160c082015260e083015160e0820152610100620052098582860162005002565b908201526101406200521e8585830162005002565b610120830152620050ff85610180860162005002565b6001600160601b03838116825282511660208201526101e0810160208301516001600160401b03811660408401525060408301516001600160601b0381166060840152506060830151801515608084015250608083015180151560a08401525060a083015180151560c08401525060c083015160e083015260e0830151610100818185015280850151915050610120620052da8185018380518252602090810151910152565b8401518051610160850152602081015161018085015290505061014083015180516101a084015260208101516101c0840152509392505050565b600082601f8301126200532657600080fd5b8151620053376200497b826200492e565b8181528460208386010111156200534d57600080fd5b6200476c82602083016020870162004692565b6000602082840312156200537357600080fd5b81516001600160401b03808211156200538b57600080fd5b9083019060c08286031215620053a057600080fd5b620053aa620048b1565b825182811115620053ba57600080fd5b620053c88782860162005314565b825250620053d96020840162004cb6565b6020820152620053ec604084016200510a565b6040820152620053ff606084016200510a565b606082015262005412608084016200510a565b608082015260a0830151828111156200542a57600080fd5b620054388782860162005314565b60a08301525095945050505050565b6000815160c084526200545e60c0850182620046b8565b90506001600160601b036020840151166020850152604083015160018060a01b038082166040870152806060860151166060870152806080860151166080870152505060a083015184820360a0860152620054ba8282620046b8565b95945050505050565b6001600160601b0384168152606060208201526000620054e7606083018562005447565b905060ff83166040830152949350505050565b6001600160601b0383168152610220810162003ad7602083018462004ef1565b6000602082840312156200552d57600080fd5b81516001600160401b03808211156200554557600080fd5b9083019060e082860312156200555a57600080fd5b62005564620048d6565b6200556f8362004cb6565b81526200557f6020840162004cb6565b6020820152620055926040840162005117565b6040820152620055a56060840162004ec4565b6060820152620055b8608084016200510a565b6080820152620055cb60a084016200510a565b60a082015260c083015182811115620055e357600080fd5b620055f18782860162005314565b60c08301525095945050505050565b6001600160601b03831681526040602082015260006200476c604083018462005447565b6000602082840312156200563757600080fd5b81516001600160401b038111156200564e57600080fd5b6200476c8482850162005314565b600081518084526020808501945080840160005b83811015620056975781516001600160401b03168752958201959082019060010162005670565b509495945050505050565b6001600160601b03861681526000602060018060a01b0387168184015260a06040840152620056d560a0840187620046b8565b8381036060850152855180825282820190600581901b830184018489016000805b848110156200575757868403601f19018652825180518086529089019089860190845b81811015620057415783516001600160e01b0319168352928b0192918b019160010162005719565b50509689019694505091870191600101620056f6565b50505086810360808801526200576e81896200565c565b9c9b505050505050505050505050565b6001600160601b038716815260c060208201526000620057a260c0830188620046b8565b90508560408301528460608301528360808301528260a0830152979650505050505050565b60008060408385031215620057db57600080fd5b8251620057e88162004774565b602084015190925062004c848162004774565b600080604083850312156200580f57600080fd5b82516200581c8162004815565b602084015190925063ffffffff8116811462004c8457600080fdfe608060405234801561001057600080fd5b5060405161056638038061056683398101604081905261002f91610054565b600080546001600160a01b0319166001600160a01b0392909216919091179055610084565b60006020828403121561006657600080fd5b81516001600160a01b038116811461007d57600080fd5b9392505050565b6104d3806100936000396000f3fe608060405234801561001057600080fd5b50600436106100415760003560e01c806321df0da7146100465780638d7271c314610065578063c661667d1461007a575b600080fd5b600054604080516001600160a01b039092168252519081900360200190f35b61007861007336600461039c565b61008d565b005b6100786100883660046103f0565b61011f565b60405163046e44af60e11b81526001600160601b03821660048201526101199085908590859073__$3bac17678db7ae928afa209f2f44deec9c$__906308dc895e906024015b602060405180830381865af41580156100f0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906101149190610433565b610179565b50505050565b60005460405163046e44af60e11b81526001600160601b0383166004820152610174916001600160a01b0316908590859073__$3bac17678db7ae928afa209f2f44deec9c$__906308dc895e906024016100d3565b505050565b604080516001600160a01b038581166024830152848116604483015260648083018590528351808403909101815260849092019092526020810180516001600160e01b03166323b872dd60e01b179052610119918691906000906101df90841683610232565b90508051600014158015610204575080806020019051810190610202919061044c565b155b1561017457604051635274afe760e01b81526001600160a01b03841660048201526024015b60405180910390fd5b606061024083836000610247565b9392505050565b60608147101561026c5760405163cd78605960e01b8152306004820152602401610229565b600080856001600160a01b03168486604051610288919061046e565b60006040518083038185875af1925050503d80600081146102c5576040519150601f19603f3d011682016040523d82523d6000602084013e6102ca565b606091505b50915091506102da8683836102e4565b9695505050505050565b6060826102f9576102f482610340565b610240565b815115801561031057506001600160a01b0384163b155b1561033957604051639996b31560e01b81526001600160a01b0385166004820152602401610229565b5080610240565b8051156103505780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b80356001600160a01b038116811461038057600080fd5b919050565b80356001600160601b038116811461038057600080fd5b600080600080608085870312156103b257600080fd5b6103bb85610369565b93506103c960208601610369565b92506103d760408601610369565b91506103e560608601610385565b905092959194509250565b60008060006060848603121561040557600080fd5b61040e84610369565b925061041c60208501610369565b915061042a60408501610385565b90509250925092565b60006020828403121561044557600080fd5b5051919050565b60006020828403121561045e57600080fd5b8151801515811461024057600080fd5b6000825160005b8181101561048f5760208186018101518583015201610475565b50600092019182525091905056fea26469706673582212209807ba37f960191da7fc92045bb7e0c4e727926f77e78d1cce4b3e3395aa9c6864736f6c6343000814003307ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a2646970667358221220a6ada32d878577589c9ff4a06e69cd5b4fe9a63da4d7ea718a66001e4cc731b264736f6c63430008140033",
1185
+ "deployedBytecode": "0x60806040523480156200001157600080fd5b50600436106200026d5760003560e01c80636e1728071162000155578063be495be511620000c7578063deaa59df1162000086578063deaa59df146200057d578063dfd92f8a1462000594578063e618053f14620002ef578063f7c34ee0146200059e578063f83d08ba146200030657600080fd5b8063be495be51462000532578063bf7e214f146200053c578063c142a303146200055c578063d56cd3d51462000379578063d7740ee1146200057357600080fd5b80638e32e97911620001145780638e32e97914620004c35780638fb3603714620004da578063a69df4b51462000306578063ada9652e14620004fe578063b68d1809146200051557600080fd5b80636e172807146200048b57806374933c2f14620003795780637a9e5e4b14620004a2578063893d20e814620004b957806389fad8a214620002ef57600080fd5b8063329d6e7411620001ef5780635ab1bd5311620001ae5780635ab1bd531462000400578063644c45e0146200042657806367438c501462000446578063675393bf146200045d57806367ba1c10146200047457600080fd5b8063329d6e7414620003a7578063339d259014620003be57806336fc697e14620003c857806337a897ee14620003d257806349bb9e4b14620003e957600080fd5b8063138461e0116200023c578063138461e014620003085780631eff4b22146200032b578063214cdb80146200036257806325e451d3146200037957806327bb7a33146200039057600080fd5b806301ffc9a714620002725780630d8e6e2c14620002b75780630fec111c14620002d657806311a1467714620002ef575b600080fd5b620002a26200028336600462004666565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b620002c1620005b5565b60405162ffffff9091168152602001620002ae565b620002e062000642565b604051620002ae9190620046e6565b6200030662000300366004620047a0565b620007e2565b005b62000312620007f8565b6040516001600160601b039091168152602001620002ae565b620003537f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b604051908152602001620002ae565b620003066200037336600462004666565b62000805565b620003066200038a366004620047a0565b62000834565b62000306620003a1366004620049b4565b62000844565b62000306620003b836600462004a5a565b620008ef565b6200030662000a46565b6200030662000aa2565b62000306620003e336600462004ac5565b62000aea565b62000306620003fa36600462004af6565b62000e3e565b6001546001600160a01b03165b6040516001600160a01b039091168152602001620002ae565b60008051602062005d9e833981519152546001600160601b031662000312565b620003066200045736600462004b4b565b62000f39565b620003066200046e36600462004b9d565b62000fbd565b620003066200048536600462004ac5565b620010da565b620003066200049c36600462004b4b565b6200147a565b62000306620004b336600462004b9d565b620014cc565b6200040d6200156e565b62000306620004d436600462004bbd565b620016ad565b620004e46200190c565b6040516001600160e01b03199091168152602001620002ae565b6200035360008051602062005d9e83398151915281565b6200051f62001949565b60405160ff9091168152602001620002ae565b6200030662001955565b60008051602062005dbe833981519152546001600160a01b03166200040d565b620003066200056d36600462004c04565b62001aa2565b6200030662001e74565b620003066200058e36600462004b9d565b62002091565b6200030662002356565b62000306620005af36600462004c51565b62002535565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$8eede297b65ed5a56eb3f84d8232ae93f5$__90632efe011390606401602060405180830381865af415801562000617573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200063d919062004c8f565b905090565b6200064c620044f9565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e0016040528073__$94a2c899be079b00d952d0d84fffaa5c34$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af4158015620006c6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620006ec919062004cc8565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a001620007366200156e565b6001600160a01b03168152602001826001018054620007559062004ce8565b80601f0160208091040260200160405190810160405280929190818152602001828054620007839062004ce8565b8015620007d45780601f10620007a857610100808354040283529160200191620007d4565b820191906000526020600020905b815481529060010190602001808311620007b657829003601f168201915b505050505081525091505090565b620007f2600085858585620025b4565b50505050565b60006200063d30620029e3565b6200080f62002bf2565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b620007f2600185858585620025b4565b6200084e62002bf2565b6200085a828762002535565b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0387166cffffffffffffffffffffffffff1990911617600160601b60ff8716021760ff60681b1916600160681b851515021781557f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa301620008e5838262004d6e565b5050505050505050565b73__$8eede297b65ed5a56eb3f84d8232ae93f5$__63a123b37c62000913620005b5565b6040516001600160e01b031960e084901b16815262ffffff9091166004820152602401602060405180830381865af415801562000954573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200097a919062004e5d565b60008051602062005dde8339815191528054600160401b900460ff1680620009af575080546001600160401b03808416911610155b15620009ce5760405163f92ee8a960e01b815260040160405180910390fd5b805468ffffffffffffffffff19166001600160401b03831617600160401b178155620009fa8362002c2b565b805460ff60401b191681556040516001600160401b03831681527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a1505050565b6040805160008082526020820181815282840190935233928162000a7b565b606081526020019060019003908162000a655790505b509050600080620008e58562000a9062002c35565b62000a9a62002cb0565b878762002d2b565b62000aac62002bf2565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b60008062000b0162000afb62003210565b6200324c565b925050915060008062000b79836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000b4c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000b72919062004e7d565b85620032f4565b91509150600073__$58e11c6004c5796aaa8c56e718245e69a2$__632b324dc08360800151896040518363ffffffff1660e01b815260040162000bbe92919062004e9d565b602060405180830381865af415801562000bdc573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000c02919062004ed1565b62000c4b5762000c40836040518060400160405280600f81526020016e446973747269627574696f6e46656560881b81525084608001518a620033fd565b506080810186905260015b60a082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc09162000c8991908a9060040162004e9d565b602060405180830381865af415801562000ca7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000ccd919062004ed1565b62000d245762000d19836040518060400160405280601781526020017f4d696e446973747269627574696f6e4f776e65724665650000000000000000008152508460a0015189620033fd565b5060a0810185905260015b801562000e3557836001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000d6a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000d90919062004e7d565b6001600160a01b031663b5b3d9f9848460ff6040518463ffffffff1660e01b815260040162000dc29392919062004fd0565b600060405180830381600087803b15801562000ddd57600080fd5b505af115801562000df2573d6000803e3d6000fd5b50506040516001600160601b03881681527f37bea7afe3960b639e98d9161b22f53a172300df8ec6ee71fd0a5321dcecd59b925060200190505b60405180910390a15b50505050505050565b60008051602062005dde8339815191528054600160401b810460ff1615906001600160401b031660008115801562000e735750825b90506000826001600160401b0316600114801562000e905750303b155b90508115801562000e9f575080155b1562000ebe5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831562000ee957845460ff60401b1916600160401b1785555b62000ef5878762003452565b831562000e3557845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200162000e2c565b62000fb86001848473__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af415801562000f8b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000fb1919062004cc8565b85620025b4565b505050565b62000fc762002bf2565b806001600160a01b03163b600003620010035760405163fdeac91f60e01b81526001600160a01b03821660048201526024015b60405180910390fd5b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b815263e607072160e01b60048201526301ffc9a790602401602060405180830381865afa92505050801562001080575060408051601f3d908101601f191682019092526200107d9181019062004ed1565b60015b620010aa5760405163fdeac91f60e01b81526001600160a01b038216600482015260240162000ffa565b80620010d55760405163fdeac91f60e01b81526001600160a01b038316600482015260240162000ffa565b505b50565b600080620010eb62000afb620035e3565b92505091506000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa15801562001131573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001157919062004e7d565b6040516302d764c760e21b81526001600160601b03851660048201526001600160a01b039190911690630b5d931c9060240161020060405180830381865afa158015620011a8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620011ce919062005035565b9050600073__$58e11c6004c5796aaa8c56e718245e69a2$__632b324dc08360400151886040518363ffffffff1660e01b81526004016200121192919062004e9d565b602060405180830381865af41580156200122f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001255919062004ed1565b62001299576200128e846040518060400160405280600a81526020016950726f6475637446656560b01b815250846040015189620033fd565b506040810185905260015b606082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc091620012d79190899060040162004e9d565b602060405180830381865af4158015620012f5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200131b919062004ed1565b620013625762001357846040518060400160405280600d81526020016c50726f63657373696e6746656560981b815250846060015188620033fd565b506060810184905260015b80156200147257826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa158015620013a8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620013ce919062004e7d565b6001600160a01b031663b5b3d9f9858460ff6040518463ffffffff1660e01b8152600401620014009392919062004fd0565b600060405180830381600087803b1580156200141b57600080fd5b505af115801562001430573d6000803e3d6000fd5b50506040516001600160601b03871681527f385da3b17e82d72dd7e4cbe895c7d7d3fbb4c8768e0866dd69f44581a0ded2bc9250602001905060405180910390a15b505050505050565b62000fb86000848473__$3bac17678db7ae928afa209f2f44deec9c$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af415801562000f8b573d6000803e3d6000fd5b33620014ee60008051602062005dbe833981519152546001600160a01b031690565b6001600160a01b0316816001600160a01b0316146200152b5760405162d1953b60e31b81526001600160a01b038216600482015260240162000ffa565b816001600160a01b03163b60000362001563576040516361798f2f60e11b81526001600160a01b038316600482015260240162000ffa565b620010d5826200361f565b60008060008051602062005d9e83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af4158015620015e0573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001606919062004ed1565b1562001697576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa1580156200166b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001691919062004e7d565b91505090565b54600160601b90046001600160a01b0316919050565b620016b762002bf2565b6200174483846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa158015620016fb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001721919062004cc8565b6200172b62003681565b6000856040518060200160405280600081525062000844565b6001600160a01b0382161562001765576200175f82620036bd565b620018e8565b60006200177a6001546001600160a01b031690565b6001600160a01b031663d39e604362001792620036d2565b604051632392b61b60e21b81526003600482015273__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af4158015620017e3573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001809919062005124565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa1580156200184f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001875919062004e7d565b9050620018e6816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015620018ba573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620018e0919062004e7d565b620036bd565b505b620018fa634a531f3360e01b62000805565b62000fb863b68d180960e01b62000805565b60008051602062005dbe833981519152805460009190600160a01b900460ff166200193957600062001691565b638fb3603760e01b91505090565b565b60006200063d6200370e565b604080516002808252606082018352339260009291906020830190803683375050604080516002808252606082019092529293506000929150602082015b606081526020019060019003908162001993579050509050620019b56200374a565b82600081518110620019cb57620019cb62005144565b6001600160401b0390921660209283029190910190910152620019f5635b5a095d60e11b62003786565b8160008151811062001a0b5762001a0b62005144565b602002602001018190525062001a20620037dd565b8260018151811062001a365762001a3662005144565b6001600160401b039092166020928302919091019091015262001a60637c07103960e11b62003786565b8160018151811062001a765762001a7662005144565b6020026020010181905250620014728362001a9062003210565b62001a9a6200374a565b858562002d2b565b60008062001ab362000afb6200381a565b925050915060008062001afe836001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000b4c573d6000803e3d6000fd5b91509150600073__$58e11c6004c5796aaa8c56e718245e69a2$__632b324dc08360c001518a6040518363ffffffff1660e01b815260040162001b4392919062004e9d565b602060405180830381865af415801562001b61573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001b87919062004ed1565b62001bc85762001bbd8360405180604001604052806007815260200166506f6f6c46656560c81b8152508460c001518b620033fd565b5060c0810187905260015b60e082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc09162001c0691908b9060040162004e9d565b602060405180830381865af415801562001c24573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001c4a919062004ed1565b62001c8e5762001c83836040518060400160405280600a8152602001695374616b696e6746656560b01b8152508460e001518a620033fd565b5060e0810186905260015b61010082015160405162acc93760e61b815273__$58e11c6004c5796aaa8c56e718245e69a2$__91632b324dc09162001ccd91908a9060040162004e9d565b602060405180830381865af415801562001ceb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001d11919062004ed1565b62001d5b5762001d4f836040518060400160405280600e81526020016d506572666f726d616e636546656560901b81525084610100015189620033fd565b50610100810185905260015b8015620008e557836001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa15801562001da1573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001dc7919062004e7d565b6001600160a01b031663b5b3d9f9848460ff6040518463ffffffff1660e01b815260040162001df99392919062004fd0565b600060405180830381600087803b15801562001e1457600080fd5b505af115801562001e29573d6000803e3d6000fd5b50506040516001600160601b03881681527f7a446b749117c015e0932e31190fc133582c9c5151e31209479cc9d21941f0359250602001905060405180910390a15050505050505050565b604080516002808252606082018352339260009291906020830190803683375050604080516002808252606082019092529293506000929150602082015b606081526020019060019003908162001eb257905050905062001ed462003856565b8260008151811062001eea5762001eea62005144565b6001600160401b039092166020928302919091019091015262001f14634133c3b360e11b62003786565b8160008151811062001f2a5762001f2a62005144565b602002602001018190525062001f3f62003891565b8260018151811062001f555762001f5562005144565b6001600160401b039092166020928302919091019091015262001f7f639e2177a760e01b62003786565b8160018151811062001f955762001f9562005144565b602002602001018190525060008062001fbc8562001fb26200381a565b62000a9a62003856565b9250925050816001600160a01b0316637892982382876001600160a01b03166385ba83446040518163ffffffff1660e01b81526004016101c060405180830381865afa15801562002011573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200203791906200515a565b6040518363ffffffff1660e01b81526004016200205692919062005234565b600060405180830381600087803b1580156200207157600080fd5b505af115801562002086573d6000803e3d6000fd5b505050505050505050565b600080620020a262000afb6200370e565b92505091506000816001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa158015620020e8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200210e919062004e7d565b60405163f0ea17c360e01b81526001600160601b03851660048201526001600160a01b03919091169063f0ea17c390602401600060405180830381865afa1580156200215e573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405262002188919081019062005360565b60808101519091506001600160a01b038516620021b85760405163cda6051f60e01b815260040160405180910390fd5b6001600160a01b038116620021e05760405163149cf9c560e21b815260040160405180910390fd5b806001600160a01b0316856001600160a01b031603620022135760405163e5bf1f2160e01b815260040160405180910390fd5b8482608001906001600160a01b031690816001600160a01b031681525050826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa15801562002270573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002296919062004e7d565b6001600160a01b03166303c099ac858460ff6040518463ffffffff1660e01b8152600401620022c893929190620054c3565b600060405180830381600087803b158015620022e357600080fd5b505af1158015620022f8573d6000803e3d6000fd5b5050604080516001600160601b03881681526001600160a01b03858116602083015289168183015290517ff2d80db4913d045b4cad17a65741b11f822efa2652c369fcb3e44324260773c39350908190036060019150a15050505050565b6040805160018082528183019092523391600091906020808301908036833750506040805160018082528183019092529293506000929150602082015b606081526020019060019003908162002393579050509050620023b5620038ce565b82600081518110620023cb57620023cb62005144565b6001600160401b0390921660209283029190910190910152620023f5635b5a095d60e11b62003786565b816000815181106200240b576200240b62005144565b602002602001018190525060008060006200243c866200242a620035e3565b62002434620038ce565b888862002d2b565b9250925092506000866001600160a01b031663c108bd4c6040518163ffffffff1660e01b815260040161020060405180830381865afa15801562002484573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620024aa919062005035565b60405163a6a67b1f60e01b81529091506001600160a01b0384169063a6a67b1f90620024dd9085908590600401620054fa565b600060405180830381600087803b158015620024f857600080fd5b505af11580156200250d573d6000803e3d6000fd5b505050506200252384848360000151856200390a565b62000e3584848360200151856200390a565b6200253f62002bf2565b6200254a8162000fbd565b6200255462000aa2565b6001600160a01b0382166200257c5760405163f17ef42d60e01b815260040160405180910390fd5b5060008051602062005d9e83398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b6000620025c2838362003a4d565b90508515620027db576040516330b8415f60e01b81526001600160601b038216600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af415801562002624573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200264a919062004ed1565b15620026d057604051639f8151e560e01b81526001600160601b038086166004830152821660248201526001600160a01b03861690639f8151e5906044016020604051808303816000875af1158015620026a8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620026ce919062004cc8565b505b6040516330b8415f60e01b81526001600160601b038316600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af415801562002729573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200274f919062004ed1565b15620027d55760405163e80c61ed60e01b81526001600160601b038086166004830152831660248201526001600160a01b0386169063e80c61ed906044016020604051808303816000875af1158015620027ad573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620027d3919062004cc8565b505b62001472565b6040516330b8415f60e01b81526001600160601b038216600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af415801562002834573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200285a919062004ed1565b15620028e05760405163b0628dc360e01b81526001600160601b038086166004830152821660248201526001600160a01b0386169063b0628dc3906044016020604051808303816000875af1158015620028b8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620028de919062004cc8565b505b6040516330b8415f60e01b81526001600160601b038316600482015273__$3bac17678db7ae928afa209f2f44deec9c$__906330b8415f90602401602060405180830381865af415801562002939573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200295f919062004ed1565b1562001472576040516314cc21b560e21b81526001600160601b038086166004830152831660248201526001600160a01b0386169063533086d4906044016020604051808303816000875af1158015620029bd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000e35919062004cc8565b60008060008051602062005d9e83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af415801562002a55573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002a7b919062004ed1565b1562002aa95780546040516301ab8b6760e21b81526001600160601b03909116600482015260240162000ffa565b6001546001600160a01b031660405163c3c5a54760e01b81526001600160a01b038581166004830152919091169063c3c5a54790602401602060405180830381865afa15801562002afe573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002b24919062004ed1565b62002b4e5760405163b9304b0d60e01b81526001600160a01b038416600482015260240162000ffa565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038581166004830152919091169063d272ac1e90602401602060405180830381865afa15801562002ba3573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002bc9919062004cc8565b81546bffffffffffffffffffffffff19166001600160601b039190911690811790915592915050565b60008051602062005dde83398151915254600160401b900460ff166200194757604051631afcd79f60e31b815260040160405180910390fd5b6200026d62002bf2565b604051630dd958dd60e31b81526082600482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636ecac6e8906024015b602060405180830381865af415801562002c8a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200063d919062005124565b6040516368aebf7b60e01b81526003600482015260009073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b906024015b602060405180830381865af415801562002d05573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200063d919062004e5d565b60008060008060008062002d418b8b8b62003ade565b60025460405163d943342d60e01b815293965091945092506001600160a01b03169063d943342d9062002d9d9085908e9086906004016001600160a01b03938416815260ff929092166020830152909116604082015260600190565b6000604051808303816000875af115801562002dbd573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405262002de791908101906200551a565b600001519350816001600160a01b031663138461e06040518163ffffffff1660e01b81526004016020604051808303816000875af115801562002e2e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002e54919062004cc8565b50826001600160a01b03166302cd30716040518163ffffffff1660e01b8152600401602060405180830381865afa15801562002e94573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002eba919062004e7d565b9550826001600160a01b031663d4cda0d86040518163ffffffff1660e01b8152600401602060405180830381865afa15801562002efb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002f21919062004e7d565b94506000826001600160a01b03166390edbd356040518163ffffffff1660e01b8152600401600060405180830381865afa15801562002f64573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405262002f8e919081019062005360565b9050806040015160405162002fa39062004537565b6001600160a01b039091168152602001604051809103906000f08015801562002fd0573d6000803e3d6000fd5b5081606001906001600160a01b031690816001600160a01b031681525050856001600160a01b0316634846003a846001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200303c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003062919062004cc8565b836040518363ffffffff1660e01b81526004016200308292919062005600565b600060405180830381600087803b1580156200309d57600080fd5b505af1158015620030b2573d6000803e3d6000fd5b50505050600360009054906101000a90046001600160a01b03166001600160a01b031663dd38b49e856001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa15801562003119573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200313f919062004cc8565b8e866001600160a01b03166317d7de7c6040518163ffffffff1660e01b8152600401600060405180830381865afa1580156200317f573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052620031a9919081019062005624565b8c8e6040518663ffffffff1660e01b8152600401620031cd959493929190620056a2565b600060405180830381600087803b158015620031e857600080fd5b505af1158015620031fd573d6000803e3d6000fd5b5050505050505050955095509592505050565b604051630dd958dd60e31b81526078600482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636ecac6e89060240162002c6c565b600062003258620044f9565b60006200326d6001546001600160a01b031690565b604051636939560f60e11b81523360048201526001600160a01b03919091169063d272ac1e90602401602060405180830381865afa158015620032b4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620032da919062004cc8565b9250620032ea8385600162003f4d565b9395909450915050565b60006200330062004545565b60405163f0ea17c360e01b81526001600160601b03841660048201526001600160a01b0385169063f0ea17c390602401600060405180830381865afa1580156200334e573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405262003378919081019062005360565b602001516040516302d764c760e21b81526001600160601b03821660048201529092506001600160a01b03851690630b5d931c9060240161020060405180830381865afa158015620033ce573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620033f4919062005035565b90509250929050565b81516020808401518351918401516040517f52d1fb99d890f3b2be95c262d870f89c22614249751b9fe6124d341bedbd70db9462003444948a948a9492939092906200577e565b60405180910390a150505050565b60008051602062005dde8339815191528054600160401b810460ff1615906001600160401b0316600081158015620034875750825b90506000826001600160401b03166001148015620034a45750303b155b905081158015620034b3575080155b15620034d25760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff191660011785558315620034fd57845460ff60401b1916600160401b1785555b60008087806020019051810190620035169190620057c7565b9092509050620035298260008b620016ad565b6200353d62003537620036d2565b62004228565b600280546001600160a01b0319166001600160a01b03929092169190911790556200356b6200353762004344565b600380546001600160a01b0319166001600160a01b03929092169190911790556200359d63672f53a760e01b62000805565b5050831562000e3557845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200162000e2c565b604051630dd958dd60e31b8152606e600482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636ecac6e89060240162002c6c565b60008051602062005dbe83398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b604051630dd958dd60e31b8152603c600482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636ecac6e89060240162002c6c565b620036c762002bf2565b620010d78162004380565b604051630dd958dd60e31b81526028600482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636ecac6e89060240162002c6c565b604051630dd958dd60e31b81526064600482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636ecac6e89060240162002c6c565b6040516368aebf7b60e01b81526002600482015260009073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b9060240162002ce7565b604080516001808252818301909252606091602080830190803683370190505090508181600081518110620037bf57620037bf62005144565b6001600160e01b031990921660209283029190910190910152919050565b6040516368aebf7b60e01b81526108fc600482015260009073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b9060240162002ce7565b604051630dd958dd60e31b8152608c600482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636ecac6e89060240162002c6c565b6040516368aebf7b60e01b815260048082015260009073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b9060240162002ce7565b6040516368aebf7b60e01b815261096a600482015260009073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b9060240162002ce7565b6040516368aebf7b60e01b81526005600482015260009073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b9060240162002ce7565b604051630a4d29dd60e31b81526001600160601b038316600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906352694ee890602401602060405180830381865af415801562003963573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003989919062004ed1565b620007f25760405163f0ea17c360e01b81526001600160601b03831660048201526000906001600160a01b0386169063f0ea17c390602401600060405180830381865afa158015620039df573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405262003a09919081019062005360565b6001600160601b038316602082015260405162f0266b60e21b81529091506001600160a01b038516906303c099ac9062002056908690859060ff90600401620054c3565b60405163274acb3560e01b81526001600160601b0380841660048301528216602482015260009073__$3bac17678db7ae928afa209f2f44deec9c$__9063274acb3590604401602060405180830381865af415801562003ab1573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003ad7919062004cc8565b9392505050565b6040516301ffc9a760e01b8152639a29895960e01b6004820152600090849082906001600160a01b038316906301ffc9a790602401602060405180830381865afa15801562003b31573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003b57919062004ed1565b62003b81576040516359bff0e360e11b81526001600160a01b038716600482015260240162000ffa565b6000826001600160a01b0316630fec111c6040518163ffffffff1660e01b8152600401600060405180830381865afa15801562003bc2573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405262003bec91908101906200551a565b905062003bfe81604001518762004395565b1562003c40576040808201519051634a2e948760e11b81526001600160a01b038916600482015260ff8089166024830152909116604482015260640162000ffa565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038981166004830152919091169063d272ac1e90602401602060405180830381865afa15801562003c95573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003cbb919062004cc8565b6040516330b8415f60e01b81526001600160601b03909116600482015273__$94a2c899be079b00d952d0d84fffaa5c34$__906330b8415f90602401602060405180830381865af415801562003d15573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003d3b919062004ed1565b1562003d66576040516322e6526160e11b81526001600160a01b038816600482015260240162000ffa565b62003d7581602001516200441a565b93508060a0015191506000846001600160a01b031663e5f6cd276040518163ffffffff1660e01b8152600401602060405180830381865afa15801562003dbf573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003de5919062004e7d565b604051631517388760e21b81526001600160401b03881660048201526001600160a01b03919091169063d1f856ee9073__$1d92393fa9ccd763988368ce8a1cb90d26$__9063545ce21c90602401602060405180830381865af415801562003e51573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003e77919062004e5d565b6040516001600160e01b031960e084901b1681526001600160401b0390911660048201526001600160a01b03861660248201526044016040805180830381865afa15801562003eca573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003ef09190620057fb565b5090508062003f42576020820151604051636af540d960e01b81526001600160601b0390911660048201526001600160401b03871660248201526001600160a01b038416604482015260640162000ffa565b505093509350939050565b62003f57620044f9565b60008062003f6d6001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03881660048201529091506001600160a01b0382169063a48f42e090602401600060405180830381865afa15801562003fbe573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405262003fe891908101906200551a565b925062003fff8562003ff96200370e565b62004395565b156200405d576200401583604001518662004395565b156200405757604080840151905163b83d92cb60e01b81526001600160601b038816600482015260ff8088166024830152909116604482015260640162000ffa565b62004105565b62004076836040015162004070620035e3565b620044b3565b80620040905750620040908360400151620040706200381a565b80620040aa5750620040aa83604001516200407062003210565b80620040c45750620040c483604001516200407062002c35565b6200410557604080840151905163b83d92cb60e01b81526001600160601b038816600482015260ff8088166024830152909116604482015260640162000ffa565b6200411483602001516200441a565b915083156200421f57816001600160a01b031663e5f6cd276040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200415c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062004182919062004e7d565b608084015160405163a166aa8960e01b81526001600160a01b03918216600482015291169063a166aa8990602401602060405180830381865afa158015620041ce573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620041f4919062004ed1565b156200421f57604051637d71120960e11b81526001600160601b038716600482015260240162000ffa565b50935093915050565b60006200423d6001546001600160a01b031690565b6001600160a01b031663d39e60438362004256620005b5565b60405163c9e66e2960e01b815262ffffff909116600482015273__$8eede297b65ed5a56eb3f84d8232ae93f5$__9063c9e66e2990602401602060405180830381865af4158015620042ac573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620042d2919062005124565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865afa15801562004318573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200433e919062004e7d565b92915050565b604051630dd958dd60e31b81526046600482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636ecac6e89060240162002c6c565b6200438a62002bf2565b620010d7816200361f565b604051637adad14f60e01b815260ff80841660048301528216602482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90637adad14f906044015b602060405180830381865af4158015620043f4573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003ad7919062004ed1565b60006200442f6001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03841660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa1580156200447f573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052620044a991908101906200551a565b6080015192915050565b604051632c2f8a6760e01b815260ff80841660048301528216602482015260009073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90632c2f8a6790604401620043d6565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c081019190915290565b610566806200583883390190565b60405180610120016040528060006001600160601b0316815260200160006001600160601b031681526020016200458f604051806040016040528060008152602001600081525090565b8152602001620045b2604051806040016040528060008152602001600081525090565b8152602001620045d5604051806040016040528060008152602001600081525090565b8152602001620045f8604051806040016040528060008152602001600081525090565b81526020016200461b604051806040016040528060008152602001600081525090565b81526020016200463e604051806040016040528060008152602001600081525090565b815260200162004661604051806040016040528060008152602001600081525090565b905290565b6000602082840312156200467957600080fd5b81356001600160e01b03198116811462003ad757600080fd5b60005b83811015620046af57818101518382015260200162004695565b50506000910152565b60008151808452620046d281602086016020860162004692565b601f01601f19169290920160200192915050565b6020815260006001600160601b038084511660208401528060208501511660408401525060ff604084015116606083015260608301511515608083015260018060a01b0360808401511660a083015260a08301516200475060c08401826001600160a01b03169052565b5060c083015160e0808401526200476c610100840182620046b8565b949350505050565b6001600160a01b0381168114620010d757600080fd5b6001600160601b0381168114620010d757600080fd5b60008060008060808587031215620047b757600080fd5b8435620047c48162004774565b93506020850135620047d6816200478a565b92506040850135620047e8816200478a565b91506060850135620047fa816200478a565b939692955090935050565b60ff81168114620010d757600080fd5b8015158114620010d757600080fd5b634e487b7160e01b600052604160045260246000fd5b604080519081016001600160401b03811182821017156200485f576200485f62004824565b60405290565b60405161012081016001600160401b03811182821017156200485f576200485f62004824565b60405161016081016001600160401b03811182821017156200485f576200485f62004824565b60405160c081016001600160401b03811182821017156200485f576200485f62004824565b60405160e081016001600160401b03811182821017156200485f576200485f62004824565b604051601f8201601f191681016001600160401b038111828210171562004926576200492662004824565b604052919050565b60006001600160401b038211156200494a576200494a62004824565b50601f01601f191660200190565b600082601f8301126200496a57600080fd5b8135620049816200497b826200492e565b620048fb565b8181528460208386010111156200499757600080fd5b816020850160208301376000918101602001919091529392505050565b60008060008060008060c08789031215620049ce57600080fd5b8635620049db8162004774565b95506020870135620049ed816200478a565b94506040870135620049ff8162004805565b9350606087013562004a118162004815565b9250608087013562004a238162004774565b915060a08701356001600160401b0381111562004a3f57600080fd5b62004a4d89828a0162004958565b9150509295509295509295565b60006020828403121562004a6d57600080fd5b81356001600160401b0381111562004a8457600080fd5b6200476c8482850162004958565b60006040828403121562004aa557600080fd5b62004aaf6200483a565b9050813581526020820135602082015292915050565b6000806080838503121562004ad957600080fd5b62004ae5848462004a92565b9150620033f4846040850162004a92565b6000806040838503121562004b0a57600080fd5b823562004b178162004774565b915060208301356001600160401b0381111562004b3357600080fd5b62004b418582860162004958565b9150509250929050565b60008060006060848603121562004b6157600080fd5b833562004b6e8162004774565b9250602084013562004b80816200478a565b9150604084013562004b92816200478a565b809150509250925092565b60006020828403121562004bb057600080fd5b813562003ad78162004774565b60008060006060848603121562004bd357600080fd5b833562004be08162004774565b9250602084013562004bf28162004774565b9150604084013562004b928162004774565b600080600060c0848603121562004c1a57600080fd5b62004c26858562004a92565b925062004c37856040860162004a92565b915062004c48856080860162004a92565b90509250925092565b6000806040838503121562004c6557600080fd5b823562004c728162004774565b9150602083013562004c848162004774565b809150509250929050565b60006020828403121562004ca257600080fd5b815162ffffff8116811462003ad757600080fd5b805162004cc3816200478a565b919050565b60006020828403121562004cdb57600080fd5b815162003ad7816200478a565b600181811c9082168062004cfd57607f821691505b60208210810362004d1e57634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111562000fb857600081815260208120601f850160051c8101602086101562004d4d5750805b601f850160051c820191505b81811015620014725782815560010162004d59565b81516001600160401b0381111562004d8a5762004d8a62004824565b62004da28162004d9b845462004ce8565b8462004d24565b602080601f83116001811462004dda576000841562004dc15750858301515b600019600386901b1c1916600185901b17855562001472565b600085815260208120601f198616915b8281101562004e0b5788860151825594840194600190910190840162004dea565b508582101562004e2a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6001600160401b0381168114620010d757600080fd5b805162004cc38162004e3a565b60006020828403121562004e7057600080fd5b815162003ad78162004e3a565b60006020828403121562004e9057600080fd5b815162003ad78162004774565b82518152602080840151818301528251604083015282015160608201526080810162003ad7565b805162004cc38162004815565b60006020828403121562004ee457600080fd5b815162003ad78162004815565b6001600160601b038151168252602081015162004f1960208401826001600160601b03169052565b50604081015162004f37604084018280518252602090810151910152565b50606081015180516080840152602081015160a0840152506080810151805160c0840152602081015160e08401525060a081015161010062004f858185018380518252602090810151910152565b60c0830151805161014086015260209081015161016086015260e084015180516101808701528101516101a086015292015180516101c0850152909101516101e09092019190915250565b6001600160601b0384168152610240810162004ff0602083018562004ef1565b60ff8316610220830152949350505050565b6000604082840312156200501557600080fd5b6200501f6200483a565b9050815181526020820151602082015292915050565b600061020082840312156200504957600080fd5b6200505362004865565b6200505e8362004cb6565b81526200506e6020840162004cb6565b602082015262005082846040850162005002565b604082015262005096846080850162005002565b6060820152620050aa8460c0850162005002565b6080820152610100620050c08582860162005002565b60a0830152620050d585610140860162005002565b60c0830152620050ea85610180860162005002565b60e0830152620050ff856101c0860162005002565b908201529392505050565b805162004cc38162004774565b805162004cc38162004805565b6000602082840312156200513757600080fd5b815162003ad78162004805565b634e487b7160e01b600052603260045260246000fd5b60006101c082840312156200516e57600080fd5b620051786200488b565b620051838362004cb6565b8152620051936020840162004e50565b6020820152620051a66040840162004cb6565b6040820152620051b96060840162004ec4565b6060820152620051cc6080840162004ec4565b6080820152620051df60a0840162004ec4565b60a082015260c083015160c082015260e083015160e0820152610100620052098582860162005002565b908201526101406200521e8585830162005002565b610120830152620050ff85610180860162005002565b6001600160601b03838116825282511660208201526101e0810160208301516001600160401b03811660408401525060408301516001600160601b0381166060840152506060830151801515608084015250608083015180151560a08401525060a083015180151560c08401525060c083015160e083015260e0830151610100818185015280850151915050610120620052da8185018380518252602090810151910152565b8401518051610160850152602081015161018085015290505061014083015180516101a084015260208101516101c0840152509392505050565b600082601f8301126200532657600080fd5b8151620053376200497b826200492e565b8181528460208386010111156200534d57600080fd5b6200476c82602083016020870162004692565b6000602082840312156200537357600080fd5b81516001600160401b03808211156200538b57600080fd5b9083019060c08286031215620053a057600080fd5b620053aa620048b1565b825182811115620053ba57600080fd5b620053c88782860162005314565b825250620053d96020840162004cb6565b6020820152620053ec604084016200510a565b6040820152620053ff606084016200510a565b606082015262005412608084016200510a565b608082015260a0830151828111156200542a57600080fd5b620054388782860162005314565b60a08301525095945050505050565b6000815160c084526200545e60c0850182620046b8565b90506001600160601b036020840151166020850152604083015160018060a01b038082166040870152806060860151166060870152806080860151166080870152505060a083015184820360a0860152620054ba8282620046b8565b95945050505050565b6001600160601b0384168152606060208201526000620054e7606083018562005447565b905060ff83166040830152949350505050565b6001600160601b0383168152610220810162003ad7602083018462004ef1565b6000602082840312156200552d57600080fd5b81516001600160401b03808211156200554557600080fd5b9083019060e082860312156200555a57600080fd5b62005564620048d6565b6200556f8362004cb6565b81526200557f6020840162004cb6565b6020820152620055926040840162005117565b6040820152620055a56060840162004ec4565b6060820152620055b8608084016200510a565b6080820152620055cb60a084016200510a565b60a082015260c083015182811115620055e357600080fd5b620055f18782860162005314565b60c08301525095945050505050565b6001600160601b03831681526040602082015260006200476c604083018462005447565b6000602082840312156200563757600080fd5b81516001600160401b038111156200564e57600080fd5b6200476c8482850162005314565b600081518084526020808501945080840160005b83811015620056975781516001600160401b03168752958201959082019060010162005670565b509495945050505050565b6001600160601b03861681526000602060018060a01b0387168184015260a06040840152620056d560a0840187620046b8565b8381036060850152855180825282820190600581901b830184018489016000805b848110156200575757868403601f19018652825180518086529089019089860190845b81811015620057415783516001600160e01b0319168352928b0192918b019160010162005719565b50509689019694505091870191600101620056f6565b50505086810360808801526200576e81896200565c565b9c9b505050505050505050505050565b6001600160601b038716815260c060208201526000620057a260c0830188620046b8565b90508560408301528460608301528360808301528260a0830152979650505050505050565b60008060408385031215620057db57600080fd5b8251620057e88162004774565b602084015190925062004c848162004774565b600080604083850312156200580f57600080fd5b82516200581c8162004815565b602084015190925063ffffffff8116811462004c8457600080fdfe608060405234801561001057600080fd5b5060405161056638038061056683398101604081905261002f91610054565b600080546001600160a01b0319166001600160a01b0392909216919091179055610084565b60006020828403121561006657600080fd5b81516001600160a01b038116811461007d57600080fd5b9392505050565b6104d3806100936000396000f3fe608060405234801561001057600080fd5b50600436106100415760003560e01c806321df0da7146100465780638d7271c314610065578063c661667d1461007a575b600080fd5b600054604080516001600160a01b039092168252519081900360200190f35b61007861007336600461039c565b61008d565b005b6100786100883660046103f0565b61011f565b60405163046e44af60e11b81526001600160601b03821660048201526101199085908590859073__$3bac17678db7ae928afa209f2f44deec9c$__906308dc895e906024015b602060405180830381865af41580156100f0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906101149190610433565b610179565b50505050565b60005460405163046e44af60e11b81526001600160601b0383166004820152610174916001600160a01b0316908590859073__$3bac17678db7ae928afa209f2f44deec9c$__906308dc895e906024016100d3565b505050565b604080516001600160a01b038581166024830152848116604483015260648083018590528351808403909101815260849092019092526020810180516001600160e01b03166323b872dd60e01b179052610119918691906000906101df90841683610232565b90508051600014158015610204575080806020019051810190610202919061044c565b155b1561017457604051635274afe760e01b81526001600160a01b03841660048201526024015b60405180910390fd5b606061024083836000610247565b9392505050565b60608147101561026c5760405163cd78605960e01b8152306004820152602401610229565b600080856001600160a01b03168486604051610288919061046e565b60006040518083038185875af1925050503d80600081146102c5576040519150601f19603f3d011682016040523d82523d6000602084013e6102ca565b606091505b50915091506102da8683836102e4565b9695505050505050565b6060826102f9576102f482610340565b610240565b815115801561031057506001600160a01b0384163b155b1561033957604051639996b31560e01b81526001600160a01b0385166004820152602401610229565b5080610240565b8051156103505780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b80356001600160a01b038116811461038057600080fd5b919050565b80356001600160601b038116811461038057600080fd5b600080600080608085870312156103b257600080fd5b6103bb85610369565b93506103c960208601610369565b92506103d760408601610369565b91506103e560608601610385565b905092959194509250565b60008060006060848603121561040557600080fd5b61040e84610369565b925061041c60208501610369565b915061042a60408501610385565b90509250925092565b60006020828403121561044557600080fd5b5051919050565b60006020828403121561045e57600080fd5b8151801515811461024057600080fd5b6000825160005b8181101561048f5760208186018101518583015201610475565b50600092019182525091905056fea26469706673582212209807ba37f960191da7fc92045bb7e0c4e727926f77e78d1cce4b3e3395aa9c6864736f6c6343000814003307ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00f0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00a2646970667358221220a6ada32d878577589c9ff4a06e69cd5b4fe9a63da4d7ea718a66001e4cc731b264736f6c63430008140033",
1186
+ "linkReferences": {
1187
+ "contracts/type/Amount.sol": {
1188
+ "AmountLib": [
1189
+ {
1190
+ "length": 20,
1191
+ "start": 4137
1192
+ },
1193
+ {
1194
+ "length": 20,
1195
+ "start": 5482
1196
+ },
1197
+ {
1198
+ "length": 20,
1199
+ "start": 9935
1200
+ },
1201
+ {
1202
+ "length": 20,
1203
+ "start": 10196
1204
+ },
1205
+ {
1206
+ "length": 20,
1207
+ "start": 10463
1208
+ },
1209
+ {
1210
+ "length": 20,
1211
+ "start": 10724
1212
+ },
1213
+ {
1214
+ "length": 20,
1215
+ "start": 15196
1216
+ },
1217
+ {
1218
+ "length": 20,
1219
+ "start": 23142
1220
+ },
1221
+ {
1222
+ "length": 20,
1223
+ "start": 23299
1224
+ }
1225
+ ]
1226
+ },
1227
+ "contracts/type/Fee.sol": {
1228
+ "FeeLib": [
1229
+ {
1230
+ "length": 20,
1231
+ "start": 3175
1232
+ },
1233
+ {
1234
+ "length": 20,
1235
+ "start": 3396
1236
+ },
1237
+ {
1238
+ "length": 20,
1239
+ "start": 4794
1240
+ },
1241
+ {
1242
+ "length": 20,
1243
+ "start": 5010
1244
+ },
1245
+ {
1246
+ "length": 20,
1247
+ "start": 7148
1248
+ },
1249
+ {
1250
+ "length": 20,
1251
+ "start": 7361
1252
+ },
1253
+ {
1254
+ "length": 20,
1255
+ "start": 7560
1256
+ }
1257
+ ]
1258
+ },
1259
+ "contracts/type/NftId.sol": {
1260
+ "NftIdLib": [
1261
+ {
1262
+ "length": 20,
1263
+ "start": 1892
1264
+ },
1265
+ {
1266
+ "length": 20,
1267
+ "start": 5771
1268
+ },
1269
+ {
1270
+ "length": 20,
1271
+ "start": 11008
1272
+ },
1273
+ {
1274
+ "length": 20,
1275
+ "start": 14862
1276
+ },
1277
+ {
1278
+ "length": 20,
1279
+ "start": 15808
1280
+ }
1281
+ ]
1282
+ },
1283
+ "contracts/type/ObjectType.sol": {
1284
+ "ObjectTypeLib": [
1285
+ {
1286
+ "length": 20,
1287
+ "start": 11572
1288
+ },
1289
+ {
1290
+ "length": 20,
1291
+ "start": 13071
1292
+ },
1293
+ {
1294
+ "length": 20,
1295
+ "start": 14050
1296
+ },
1297
+ {
1298
+ "length": 20,
1299
+ "start": 14208
1300
+ },
1301
+ {
1302
+ "length": 20,
1303
+ "start": 14289
1304
+ },
1305
+ {
1306
+ "length": 20,
1307
+ "start": 14349
1308
+ },
1309
+ {
1310
+ "length": 20,
1311
+ "start": 14617
1312
+ },
1313
+ {
1314
+ "length": 20,
1315
+ "start": 17475
1316
+ },
1317
+ {
1318
+ "length": 20,
1319
+ "start": 17566
1320
+ },
1321
+ {
1322
+ "length": 20,
1323
+ "start": 17852
1324
+ }
1325
+ ]
1326
+ },
1327
+ "contracts/type/RoleId.sol": {
1328
+ "RoleIdLib": [
1329
+ {
1330
+ "length": 20,
1331
+ "start": 11695
1332
+ },
1333
+ {
1334
+ "length": 20,
1335
+ "start": 14409
1336
+ },
1337
+ {
1338
+ "length": 20,
1339
+ "start": 14557
1340
+ },
1341
+ {
1342
+ "length": 20,
1343
+ "start": 14676
1344
+ },
1345
+ {
1346
+ "length": 20,
1347
+ "start": 14737
1348
+ },
1349
+ {
1350
+ "length": 20,
1351
+ "start": 14797
1352
+ },
1353
+ {
1354
+ "length": 20,
1355
+ "start": 16124
1356
+ }
1357
+ ]
1358
+ },
1359
+ "contracts/type/Version.sol": {
1360
+ "VersionLib": [
1361
+ {
1362
+ "length": 20,
1363
+ "start": 1730
1364
+ },
1365
+ {
1366
+ "length": 20,
1367
+ "start": 2519
1368
+ },
1369
+ {
1370
+ "length": 20,
1371
+ "start": 17239
1372
+ }
1373
+ ],
1374
+ "VersionPartLib": [
1375
+ {
1376
+ "length": 20,
1377
+ "start": 6286
1378
+ }
1379
+ ]
1380
+ }
1381
+ },
1382
+ "deployedLinkReferences": {
1383
+ "contracts/type/Amount.sol": {
1384
+ "AmountLib": [
1385
+ {
1386
+ "length": 20,
1387
+ "start": 3907
1388
+ },
1389
+ {
1390
+ "length": 20,
1391
+ "start": 5252
1392
+ },
1393
+ {
1394
+ "length": 20,
1395
+ "start": 9705
1396
+ },
1397
+ {
1398
+ "length": 20,
1399
+ "start": 9966
1400
+ },
1401
+ {
1402
+ "length": 20,
1403
+ "start": 10233
1404
+ },
1405
+ {
1406
+ "length": 20,
1407
+ "start": 10494
1408
+ },
1409
+ {
1410
+ "length": 20,
1411
+ "start": 14966
1412
+ },
1413
+ {
1414
+ "length": 20,
1415
+ "start": 22912
1416
+ },
1417
+ {
1418
+ "length": 20,
1419
+ "start": 23069
1420
+ }
1421
+ ]
1422
+ },
1423
+ "contracts/type/Fee.sol": {
1424
+ "FeeLib": [
1425
+ {
1426
+ "length": 20,
1427
+ "start": 2945
1428
+ },
1429
+ {
1430
+ "length": 20,
1431
+ "start": 3166
1432
+ },
1433
+ {
1434
+ "length": 20,
1435
+ "start": 4564
1436
+ },
1437
+ {
1438
+ "length": 20,
1439
+ "start": 4780
1440
+ },
1441
+ {
1442
+ "length": 20,
1443
+ "start": 6918
1444
+ },
1445
+ {
1446
+ "length": 20,
1447
+ "start": 7131
1448
+ },
1449
+ {
1450
+ "length": 20,
1451
+ "start": 7330
1452
+ }
1453
+ ]
1454
+ },
1455
+ "contracts/type/NftId.sol": {
1456
+ "NftIdLib": [
1457
+ {
1458
+ "length": 20,
1459
+ "start": 1662
1460
+ },
1461
+ {
1462
+ "length": 20,
1463
+ "start": 5541
1464
+ },
1465
+ {
1466
+ "length": 20,
1467
+ "start": 10778
1468
+ },
1469
+ {
1470
+ "length": 20,
1471
+ "start": 14632
1472
+ },
1473
+ {
1474
+ "length": 20,
1475
+ "start": 15578
1476
+ }
1477
+ ]
1478
+ },
1479
+ "contracts/type/ObjectType.sol": {
1480
+ "ObjectTypeLib": [
1481
+ {
1482
+ "length": 20,
1483
+ "start": 11342
1484
+ },
1485
+ {
1486
+ "length": 20,
1487
+ "start": 12841
1488
+ },
1489
+ {
1490
+ "length": 20,
1491
+ "start": 13820
1492
+ },
1493
+ {
1494
+ "length": 20,
1495
+ "start": 13978
1496
+ },
1497
+ {
1498
+ "length": 20,
1499
+ "start": 14059
1500
+ },
1501
+ {
1502
+ "length": 20,
1503
+ "start": 14119
1504
+ },
1505
+ {
1506
+ "length": 20,
1507
+ "start": 14387
1508
+ },
1509
+ {
1510
+ "length": 20,
1511
+ "start": 17245
1512
+ },
1513
+ {
1514
+ "length": 20,
1515
+ "start": 17336
1516
+ },
1517
+ {
1518
+ "length": 20,
1519
+ "start": 17622
1520
+ }
1521
+ ]
1522
+ },
1523
+ "contracts/type/RoleId.sol": {
1524
+ "RoleIdLib": [
1525
+ {
1526
+ "length": 20,
1527
+ "start": 11465
1528
+ },
1529
+ {
1530
+ "length": 20,
1531
+ "start": 14179
1532
+ },
1533
+ {
1534
+ "length": 20,
1535
+ "start": 14327
1536
+ },
1537
+ {
1538
+ "length": 20,
1539
+ "start": 14446
1540
+ },
1541
+ {
1542
+ "length": 20,
1543
+ "start": 14507
1544
+ },
1545
+ {
1546
+ "length": 20,
1547
+ "start": 14567
1548
+ },
1549
+ {
1550
+ "length": 20,
1551
+ "start": 15894
1552
+ }
1553
+ ]
1554
+ },
1555
+ "contracts/type/Version.sol": {
1556
+ "VersionLib": [
1557
+ {
1558
+ "length": 20,
1559
+ "start": 1500
1560
+ },
1561
+ {
1562
+ "length": 20,
1563
+ "start": 2289
1564
+ },
1565
+ {
1566
+ "length": 20,
1567
+ "start": 17009
1568
+ }
1569
+ ],
1570
+ "VersionPartLib": [
1571
+ {
1572
+ "length": 20,
1573
+ "start": 6056
1574
+ }
1575
+ ]
1576
+ }
1577
+ }
1578
+ }