@etherisc/gif-next 0.0.2-e79d227-681 → 0.0.2-e7a5428-226

Sign up to get free protection for your applications and to get access to all the features.
Files changed (504) hide show
  1. package/README.md +57 -1
  2. package/artifacts/contracts/accounting/AccountingService.sol/AccountingService.dbg.json +4 -0
  3. package/artifacts/contracts/accounting/AccountingService.sol/AccountingService.json +1075 -0
  4. package/artifacts/contracts/accounting/AccountingServiceManager.sol/AccountingServiceManager.dbg.json +4 -0
  5. package/artifacts/contracts/accounting/AccountingServiceManager.sol/AccountingServiceManager.json +790 -0
  6. package/artifacts/contracts/accounting/IAccountingService.sol/IAccountingService.dbg.json +4 -0
  7. package/artifacts/contracts/accounting/IAccountingService.sol/IAccountingService.json +843 -0
  8. package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.dbg.json +1 -1
  9. package/artifacts/contracts/authorization/AccessAdmin.sol/AccessAdmin.json +640 -269
  10. package/artifacts/contracts/authorization/AccessAdminLib.sol/AccessAdminLib.dbg.json +4 -0
  11. package/artifacts/contracts/authorization/AccessAdminLib.sol/AccessAdminLib.json +1289 -0
  12. package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.dbg.json +1 -1
  13. package/artifacts/contracts/authorization/AccessManagerCloneable.sol/AccessManagerCloneable.json +202 -5
  14. package/artifacts/contracts/authorization/Authorization.sol/Authorization.dbg.json +1 -1
  15. package/artifacts/contracts/authorization/Authorization.sol/Authorization.json +409 -33
  16. package/artifacts/contracts/authorization/IAccess.sol/IAccess.dbg.json +1 -1
  17. package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.dbg.json +1 -1
  18. package/artifacts/contracts/authorization/IAccessAdmin.sol/IAccessAdmin.json +525 -213
  19. package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.dbg.json +1 -1
  20. package/artifacts/contracts/authorization/IAuthorization.sol/IAuthorization.json +179 -19
  21. package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.dbg.json +1 -1
  22. package/artifacts/contracts/authorization/IServiceAuthorization.sol/IServiceAuthorization.json +246 -16
  23. package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.dbg.json +1 -1
  24. package/artifacts/contracts/authorization/ServiceAuthorization.sol/ServiceAuthorization.json +420 -27
  25. package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.dbg.json +1 -1
  26. package/artifacts/contracts/distribution/BasicDistribution.sol/BasicDistribution.json +105 -185
  27. package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.dbg.json +1 -1
  28. package/artifacts/contracts/distribution/BasicDistributionAuthorization.sol/BasicDistributionAuthorization.json +381 -46
  29. package/artifacts/contracts/distribution/Distribution.sol/Distribution.dbg.json +1 -1
  30. package/artifacts/contracts/distribution/Distribution.sol/Distribution.json +58 -127
  31. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.dbg.json +1 -1
  32. package/artifacts/contracts/distribution/DistributionService.sol/DistributionService.json +533 -218
  33. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +1 -1
  34. package/artifacts/contracts/distribution/DistributionServiceManager.sol/DistributionServiceManager.json +150 -82
  35. package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
  36. package/artifacts/contracts/distribution/IDistributionComponent.sol/IDistributionComponent.json +37 -106
  37. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.dbg.json +1 -1
  38. package/artifacts/contracts/distribution/IDistributionService.sol/IDistributionService.json +379 -79
  39. package/artifacts/contracts/examples/fire/DamageLevel.sol/DamageLevelLib.dbg.json +1 -1
  40. package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.dbg.json +1 -1
  41. package/artifacts/contracts/examples/fire/FirePool.sol/FirePool.json +183 -128
  42. package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.dbg.json +1 -1
  43. package/artifacts/contracts/examples/fire/FirePoolAuthorization.sol/FirePoolAuthorization.json +355 -52
  44. package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.dbg.json +1 -1
  45. package/artifacts/contracts/examples/fire/FireProduct.sol/FireProduct.json +324 -250
  46. package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.dbg.json +1 -1
  47. package/artifacts/contracts/examples/fire/FireProductAuthorization.sol/FireProductAuthorization.json +380 -45
  48. package/artifacts/contracts/examples/fire/FireUSD.sol/FireUSD.dbg.json +1 -1
  49. package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.dbg.json +1 -1
  50. package/artifacts/contracts/examples/unpermissioned/SimpleDistribution.sol/SimpleDistribution.json +191 -182
  51. package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.dbg.json +4 -0
  52. package/artifacts/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol/SimpleDistributionAuthorization.json +805 -0
  53. package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.dbg.json +1 -1
  54. package/artifacts/contracts/examples/unpermissioned/SimpleOracle.sol/SimpleOracle.json +94 -100
  55. package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.dbg.json +1 -1
  56. package/artifacts/contracts/examples/unpermissioned/SimplePool.sol/SimplePool.json +196 -155
  57. package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.dbg.json +4 -0
  58. package/artifacts/contracts/examples/unpermissioned/SimplePoolAuthorization.sol/SimplePoolAuthorization.json +805 -0
  59. package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.dbg.json +1 -1
  60. package/artifacts/contracts/examples/unpermissioned/SimpleProduct.sol/SimpleProduct.json +600 -296
  61. package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.dbg.json +4 -0
  62. package/artifacts/contracts/examples/unpermissioned/SimpleProductAuthorization.sol/SimpleProductAuthorization.json +805 -0
  63. package/artifacts/contracts/instance/BundleSet.sol/BundleSet.dbg.json +1 -1
  64. package/artifacts/contracts/instance/BundleSet.sol/BundleSet.json +88 -45
  65. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
  66. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +482 -50
  67. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
  68. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +373 -13
  69. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  70. package/artifacts/contracts/instance/Instance.sol/Instance.json +493 -85
  71. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.dbg.json +1 -1
  72. package/artifacts/contracts/instance/InstanceAdmin.sol/InstanceAdmin.json +1017 -334
  73. package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.dbg.json +1 -1
  74. package/artifacts/contracts/instance/InstanceAuthorizationV3.sol/InstanceAuthorizationV3.json +380 -52
  75. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
  76. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +914 -554
  77. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
  78. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +377 -80
  79. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
  80. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +83 -57
  81. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +1 -1
  82. package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +690 -566
  83. package/artifacts/contracts/instance/RiskSet.sol/RiskSet.dbg.json +1 -1
  84. package/artifacts/contracts/instance/RiskSet.sol/RiskSet.json +141 -85
  85. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.dbg.json +1 -1
  86. package/artifacts/contracts/instance/base/BalanceStore.sol/BalanceStore.json +8 -8
  87. package/artifacts/contracts/instance/base/Cloneable.sol/Cloneable.dbg.json +1 -1
  88. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.dbg.json +1 -1
  89. package/artifacts/contracts/instance/base/ObjectCounter.sol/ObjectCounter.json +2 -2
  90. package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.dbg.json +1 -1
  91. package/artifacts/contracts/instance/base/ObjectLifecycle.sol/ObjectLifecycle.json +2 -2
  92. package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.dbg.json +1 -1
  93. package/artifacts/contracts/instance/base/ObjectSet.sol/ObjectSet.json +16 -5
  94. package/artifacts/contracts/instance/base/ObjectSetHelperLib.sol/ObjectSetHelperLib.dbg.json +4 -0
  95. package/artifacts/contracts/instance/base/ObjectSetHelperLib.sol/ObjectSetHelperLib.json +168 -0
  96. package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
  97. package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +1 -1
  98. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +1 -1
  99. package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +1 -1
  100. package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +1 -1
  101. package/artifacts/contracts/mock/Dip.sol/Dip.dbg.json +1 -1
  102. package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.dbg.json +1 -1
  103. package/artifacts/contracts/oracle/BasicOracle.sol/BasicOracle.json +77 -81
  104. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.dbg.json +1 -1
  105. package/artifacts/contracts/oracle/BasicOracleAuthorization.sol/BasicOracleAuthorization.json +379 -47
  106. package/artifacts/contracts/oracle/IOracle.sol/IOracle.dbg.json +1 -1
  107. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.dbg.json +1 -1
  108. package/artifacts/contracts/oracle/IOracleComponent.sol/IOracleComponent.json +41 -45
  109. package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.dbg.json +1 -1
  110. package/artifacts/contracts/oracle/IOracleService.sol/IOracleService.json +56 -3
  111. package/artifacts/contracts/oracle/Oracle.sol/Oracle.dbg.json +1 -1
  112. package/artifacts/contracts/oracle/Oracle.sol/Oracle.json +61 -65
  113. package/artifacts/contracts/oracle/OracleService.sol/OracleService.dbg.json +1 -1
  114. package/artifacts/contracts/oracle/OracleService.sol/OracleService.json +120 -68
  115. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.dbg.json +1 -1
  116. package/artifacts/contracts/oracle/OracleServiceManager.sol/OracleServiceManager.json +99 -55
  117. package/artifacts/contracts/pool/BasicPool.sol/BasicPool.dbg.json +1 -1
  118. package/artifacts/contracts/pool/BasicPool.sol/BasicPool.json +102 -114
  119. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.dbg.json +1 -1
  120. package/artifacts/contracts/pool/BasicPoolAuthorization.sol/BasicPoolAuthorization.json +355 -52
  121. package/artifacts/contracts/pool/BundleService.sol/BundleService.dbg.json +1 -1
  122. package/artifacts/contracts/pool/BundleService.sol/BundleService.json +304 -226
  123. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.dbg.json +1 -1
  124. package/artifacts/contracts/pool/BundleServiceManager.sol/BundleServiceManager.json +120 -76
  125. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.dbg.json +1 -1
  126. package/artifacts/contracts/pool/IBundleService.sol/IBundleService.json +200 -89
  127. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
  128. package/artifacts/contracts/pool/IPoolComponent.sol/IPoolComponent.json +59 -63
  129. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.dbg.json +1 -1
  130. package/artifacts/contracts/pool/IPoolService.sol/IPoolService.json +333 -169
  131. package/artifacts/contracts/pool/Pool.sol/Pool.dbg.json +1 -1
  132. package/artifacts/contracts/pool/Pool.sol/Pool.json +72 -76
  133. package/artifacts/contracts/pool/PoolLib.sol/PoolLib.dbg.json +4 -0
  134. package/artifacts/contracts/pool/PoolLib.sol/PoolLib.json +522 -0
  135. package/artifacts/contracts/pool/PoolService.sol/PoolService.dbg.json +1 -1
  136. package/artifacts/contracts/pool/PoolService.sol/PoolService.json +574 -360
  137. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.dbg.json +1 -1
  138. package/artifacts/contracts/pool/PoolServiceManager.sol/PoolServiceManager.json +146 -74
  139. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.dbg.json +1 -1
  140. package/artifacts/contracts/product/ApplicationService.sol/ApplicationService.json +293 -63
  141. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +1 -1
  142. package/artifacts/contracts/product/ApplicationServiceManager.sol/ApplicationServiceManager.json +106 -46
  143. package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.dbg.json +1 -1
  144. package/artifacts/contracts/product/BasicProduct.sol/BasicProduct.json +193 -182
  145. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.dbg.json +1 -1
  146. package/artifacts/contracts/product/BasicProductAuthorization.sol/BasicProductAuthorization.json +380 -45
  147. package/artifacts/contracts/product/ClaimService.sol/ClaimService.dbg.json +1 -1
  148. package/artifacts/contracts/product/ClaimService.sol/ClaimService.json +292 -195
  149. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +1 -1
  150. package/artifacts/contracts/product/ClaimServiceManager.sol/ClaimServiceManager.json +127 -99
  151. package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.dbg.json +1 -1
  152. package/artifacts/contracts/product/IApplicationService.sol/IApplicationService.json +235 -4
  153. package/artifacts/contracts/product/IClaimService.sol/IClaimService.dbg.json +1 -1
  154. package/artifacts/contracts/product/IClaimService.sol/IClaimService.json +181 -19
  155. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.dbg.json +1 -1
  156. package/artifacts/contracts/product/IPolicyService.sol/IPolicyService.json +160 -68
  157. package/artifacts/contracts/product/IPricingService.sol/IPricingService.dbg.json +1 -1
  158. package/artifacts/contracts/product/IPricingService.sol/IPricingService.json +77 -3
  159. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.dbg.json +1 -1
  160. package/artifacts/contracts/product/IProductComponent.sol/IProductComponent.json +168 -157
  161. package/artifacts/contracts/product/IRiskService.sol/IRiskService.dbg.json +1 -1
  162. package/artifacts/contracts/product/IRiskService.sol/IRiskService.json +258 -22
  163. package/artifacts/contracts/product/PolicyService.sol/PolicyService.dbg.json +1 -1
  164. package/artifacts/contracts/product/PolicyService.sol/PolicyService.json +278 -187
  165. package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.dbg.json +4 -0
  166. package/artifacts/contracts/product/PolicyServiceLib.sol/PolicyServiceLib.json +783 -0
  167. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +1 -1
  168. package/artifacts/contracts/product/PolicyServiceManager.sol/PolicyServiceManager.json +129 -85
  169. package/artifacts/contracts/product/PricingService.sol/PricingService.dbg.json +1 -1
  170. package/artifacts/contracts/product/PricingService.sol/PricingService.json +135 -126
  171. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.dbg.json +1 -1
  172. package/artifacts/contracts/product/PricingServiceManager.sol/PricingServiceManager.json +103 -75
  173. package/artifacts/contracts/product/Product.sol/Product.dbg.json +1 -1
  174. package/artifacts/contracts/product/Product.sol/Product.json +187 -176
  175. package/artifacts/contracts/product/RiskService.sol/RiskService.dbg.json +1 -1
  176. package/artifacts/contracts/product/RiskService.sol/RiskService.json +326 -91
  177. package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.dbg.json +1 -1
  178. package/artifacts/contracts/product/RiskServiceManager.sol/RiskServiceManager.json +103 -47
  179. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
  180. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +2 -2
  181. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  182. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +54 -19
  183. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
  184. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +56 -3
  185. package/artifacts/contracts/registry/IRelease.sol/IRelease.dbg.json +4 -0
  186. package/artifacts/contracts/{authorization/AccessAdmin.sol/IAccessManagedChecker.json → registry/IRelease.sol/IRelease.json} +6 -6
  187. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
  188. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  189. package/artifacts/contracts/registry/Registry.sol/Registry.json +92 -57
  190. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.dbg.json +1 -1
  191. package/artifacts/contracts/registry/RegistryAdmin.sol/RegistryAdmin.json +727 -479
  192. package/artifacts/contracts/registry/RegistryAuthorization.sol/RegistryAuthorization.dbg.json +4 -0
  193. package/artifacts/contracts/registry/RegistryAuthorization.sol/RegistryAuthorization.json +1061 -0
  194. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
  195. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +75 -39
  196. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
  197. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +79 -43
  198. package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.dbg.json +4 -0
  199. package/artifacts/contracts/registry/ReleaseAdmin.sol/ReleaseAdmin.json +2152 -0
  200. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.dbg.json +1 -1
  201. package/artifacts/contracts/registry/ReleaseLifecycle.sol/ReleaseLifecycle.json +2 -2
  202. package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.dbg.json +1 -1
  203. package/artifacts/contracts/registry/ReleaseRegistry.sol/ReleaseRegistry.json +386 -64
  204. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.dbg.json +1 -1
  205. package/artifacts/contracts/registry/ServiceAuthorizationV3.sol/ServiceAuthorizationV3.json +437 -26
  206. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
  207. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +120 -60
  208. package/artifacts/contracts/shared/Component.sol/Component.dbg.json +1 -1
  209. package/artifacts/contracts/shared/Component.sol/Component.json +60 -50
  210. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.dbg.json +1 -1
  211. package/artifacts/contracts/shared/ComponentService.sol/ComponentService.json +247 -531
  212. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.dbg.json +1 -1
  213. package/artifacts/contracts/shared/ComponentServiceManager.sol/ComponentServiceManager.json +111 -95
  214. package/artifacts/contracts/shared/ContractLib.sol/ContractLib.dbg.json +1 -1
  215. package/artifacts/contracts/shared/ContractLib.sol/ContractLib.json +178 -34
  216. package/artifacts/contracts/shared/ContractLib.sol/IInstanceAdminHelper.dbg.json +1 -1
  217. package/artifacts/contracts/shared/ContractLib.sol/ITargetHelper.dbg.json +1 -1
  218. package/artifacts/contracts/shared/ContractLib.sol/ITokenRegistryHelper.dbg.json +4 -0
  219. package/artifacts/contracts/shared/ContractLib.sol/ITokenRegistryHelper.json +40 -0
  220. package/artifacts/contracts/shared/IComponent.sol/IComponent.dbg.json +1 -1
  221. package/artifacts/contracts/shared/IComponent.sol/IComponent.json +41 -31
  222. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.dbg.json +1 -1
  223. package/artifacts/contracts/shared/IComponentService.sol/IComponentService.json +155 -382
  224. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.dbg.json +1 -1
  225. package/artifacts/contracts/shared/IInstanceLinkedComponent.sol/IInstanceLinkedComponent.json +41 -45
  226. package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.dbg.json +1 -1
  227. package/artifacts/contracts/shared/IKeyValueStore.sol/IKeyValueStore.json +6 -6
  228. package/artifacts/contracts/shared/ILifecycle.sol/ILifecycle.dbg.json +1 -1
  229. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
  230. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +19 -0
  231. package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +1 -1
  232. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
  233. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +139 -1
  234. package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +1 -1
  235. package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
  236. package/artifacts/contracts/shared/IService.sol/IService.json +56 -3
  237. package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.dbg.json +1 -1
  238. package/artifacts/contracts/shared/InitializableERC165.sol/InitializableERC165.json +2 -2
  239. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.dbg.json +1 -1
  240. package/artifacts/contracts/shared/InstanceLinkedComponent.sol/InstanceLinkedComponent.json +60 -64
  241. package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.dbg.json +1 -1
  242. package/artifacts/contracts/shared/KeyValueStore.sol/KeyValueStore.json +6 -6
  243. package/artifacts/contracts/shared/Lifecycle.sol/Lifecycle.dbg.json +1 -1
  244. package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.dbg.json +1 -1
  245. package/artifacts/contracts/shared/NftIdSet.sol/NftIdSet.json +2 -2
  246. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
  247. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +21 -2
  248. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +1 -1
  249. package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +2 -2
  250. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
  251. package/artifacts/contracts/shared/Registerable.sol/Registerable.json +137 -62
  252. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +1 -1
  253. package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +2 -2
  254. package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
  255. package/artifacts/contracts/shared/Service.sol/Service.json +51 -11
  256. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
  257. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +63 -162
  258. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.dbg.json +1 -1
  259. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandlerBase.json +118 -29
  260. package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.dbg.json +1 -1
  261. package/artifacts/contracts/shared/TokenHandlerDeployerLib.sol/TokenHandlerDeployerLib.json +32 -32
  262. package/artifacts/contracts/staking/IStaking.sol/IStaking.dbg.json +1 -1
  263. package/artifacts/contracts/staking/IStaking.sol/IStaking.json +1026 -101
  264. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.dbg.json +1 -1
  265. package/artifacts/contracts/staking/IStakingService.sol/IStakingService.json +214 -110
  266. package/artifacts/contracts/staking/Staking.sol/Staking.dbg.json +1 -1
  267. package/artifacts/contracts/staking/Staking.sol/Staking.json +1218 -214
  268. package/artifacts/contracts/staking/StakingLib.sol/StakingLib.dbg.json +4 -0
  269. package/artifacts/contracts/staking/StakingLib.sol/StakingLib.json +470 -0
  270. package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.dbg.json +1 -1
  271. package/artifacts/contracts/staking/StakingLifecycle.sol/StakingLifecycle.json +2 -2
  272. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.dbg.json +1 -1
  273. package/artifacts/contracts/staking/StakingManager.sol/StakingManager.json +139 -61
  274. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.dbg.json +1 -1
  275. package/artifacts/contracts/staking/StakingReader.sol/StakingReader.json +174 -217
  276. package/artifacts/contracts/staking/StakingService.sol/StakingService.dbg.json +1 -1
  277. package/artifacts/contracts/staking/StakingService.sol/StakingService.json +253 -174
  278. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.dbg.json +1 -1
  279. package/artifacts/contracts/staking/StakingServiceManager.sol/StakingServiceManager.json +87 -55
  280. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.dbg.json +1 -1
  281. package/artifacts/contracts/staking/StakingStore.sol/StakingStore.json +957 -603
  282. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.dbg.json +1 -1
  283. package/artifacts/contracts/staking/TargetManagerLib.sol/TargetManagerLib.json +101 -51
  284. package/artifacts/contracts/type/AddressSet.sol/LibAddressSet.dbg.json +1 -1
  285. package/artifacts/contracts/type/Amount.sol/AmountLib.dbg.json +1 -1
  286. package/artifacts/contracts/type/Amount.sol/AmountLib.json +11 -11
  287. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
  288. package/artifacts/contracts/type/Blocknumber.sol/BlocknumberLib.json +45 -19
  289. package/artifacts/contracts/type/ChainId.sol/ChainIdLib.dbg.json +4 -0
  290. package/artifacts/contracts/type/ChainId.sol/ChainIdLib.json +193 -0
  291. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.dbg.json +1 -1
  292. package/artifacts/contracts/type/ClaimId.sol/ClaimIdLib.json +2 -2
  293. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.dbg.json +1 -1
  294. package/artifacts/contracts/type/DistributorType.sol/DistributorTypeLib.json +2 -2
  295. package/artifacts/contracts/type/Fee.sol/FeeLib.dbg.json +1 -1
  296. package/artifacts/contracts/type/Fee.sol/FeeLib.json +94 -38
  297. package/artifacts/contracts/type/Key32.sol/Key32Lib.dbg.json +1 -1
  298. package/artifacts/contracts/type/Key32.sol/Key32Lib.json +2 -2
  299. package/artifacts/contracts/type/Key32Set.sol/LibKey32Set.dbg.json +1 -1
  300. package/artifacts/contracts/type/Key32Set.sol/LibKey32Set.json +2 -2
  301. package/artifacts/contracts/type/NftId.sol/NftIdLib.dbg.json +1 -1
  302. package/artifacts/contracts/type/NftId.sol/NftIdLib.json +2 -2
  303. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.dbg.json +1 -1
  304. package/artifacts/contracts/type/NftIdSet.sol/LibNftIdSet.json +2 -2
  305. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
  306. package/artifacts/contracts/type/ObjectType.sol/ObjectTypeLib.json +33 -31
  307. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.dbg.json +1 -1
  308. package/artifacts/contracts/type/PayoutId.sol/PayoutIdLib.json +2 -2
  309. package/artifacts/contracts/type/Referral.sol/ReferralLib.dbg.json +1 -1
  310. package/artifacts/contracts/type/Referral.sol/ReferralLib.json +2 -2
  311. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.dbg.json +1 -1
  312. package/artifacts/contracts/type/RequestId.sol/RequestIdLib.json +2 -2
  313. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.dbg.json +1 -1
  314. package/artifacts/contracts/type/RiskId.sol/RiskIdLib.json +30 -6
  315. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.dbg.json +1 -1
  316. package/artifacts/contracts/type/RoleId.sol/RoleIdLib.json +42 -157
  317. package/artifacts/contracts/type/Seconds.sol/SecondsLib.dbg.json +1 -1
  318. package/artifacts/contracts/type/Seconds.sol/SecondsLib.json +45 -2
  319. package/artifacts/contracts/type/Selector.sol/SelectorLib.dbg.json +1 -1
  320. package/artifacts/contracts/type/Selector.sol/SelectorLib.json +21 -2
  321. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.dbg.json +1 -1
  322. package/artifacts/contracts/type/Selector.sol/SelectorSetLib.json +2 -2
  323. package/artifacts/contracts/type/StateId.sol/StateIdLib.dbg.json +1 -1
  324. package/artifacts/contracts/type/String.sol/StrLib.dbg.json +1 -1
  325. package/artifacts/contracts/type/String.sol/StrLib.json +50 -2
  326. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.dbg.json +1 -1
  327. package/artifacts/contracts/type/Timestamp.sol/TimestampLib.json +3 -3
  328. package/artifacts/contracts/type/UFixed.sol/UFixedLib.dbg.json +1 -1
  329. package/artifacts/contracts/type/UFixed.sol/UFixedLib.json +61 -37
  330. package/artifacts/contracts/type/Version.sol/VersionLib.dbg.json +1 -1
  331. package/artifacts/contracts/type/Version.sol/VersionLib.json +2 -21
  332. package/artifacts/contracts/type/Version.sol/VersionPartLib.dbg.json +1 -1
  333. package/artifacts/contracts/type/Version.sol/VersionPartLib.json +101 -2
  334. package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.dbg.json +1 -1
  335. package/artifacts/contracts/upgradeability/IVersionable.sol/IVersionable.json +10 -0
  336. package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.dbg.json +1 -1
  337. package/artifacts/contracts/upgradeability/ProxyManager.sol/ProxyManager.json +65 -27
  338. package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +1 -1
  339. package/artifacts/contracts/upgradeability/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +15 -2
  340. package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.dbg.json +1 -1
  341. package/artifacts/contracts/upgradeability/Versionable.sol/Versionable.json +10 -0
  342. package/contracts/accounting/AccountingService.sol +274 -0
  343. package/contracts/accounting/AccountingServiceManager.sol +38 -0
  344. package/contracts/accounting/IAccountingService.sol +47 -0
  345. package/contracts/authorization/AccessAdmin.sol +422 -258
  346. package/contracts/authorization/AccessAdminLib.sol +396 -0
  347. package/contracts/authorization/AccessManagerCloneable.sol +146 -4
  348. package/contracts/authorization/Authorization.sol +142 -262
  349. package/contracts/authorization/IAccess.sol +25 -7
  350. package/contracts/authorization/IAccessAdmin.sol +87 -80
  351. package/contracts/authorization/IAuthorization.sol +9 -43
  352. package/contracts/authorization/IServiceAuthorization.sol +55 -17
  353. package/contracts/authorization/ServiceAuthorization.sol +248 -34
  354. package/contracts/distribution/BasicDistribution.sol +16 -14
  355. package/contracts/distribution/BasicDistributionAuthorization.sol +29 -9
  356. package/contracts/distribution/Distribution.sol +38 -75
  357. package/contracts/distribution/DistributionService.sol +181 -87
  358. package/contracts/distribution/DistributionServiceManager.sol +1 -1
  359. package/contracts/distribution/IDistributionComponent.sol +3 -10
  360. package/contracts/distribution/IDistributionService.sol +34 -19
  361. package/contracts/examples/fire/FirePool.sol +6 -6
  362. package/contracts/examples/fire/FirePoolAuthorization.sol +2 -1
  363. package/contracts/examples/fire/FireProduct.sol +15 -13
  364. package/contracts/examples/fire/FireProductAuthorization.sol +2 -1
  365. package/contracts/examples/unpermissioned/SimpleDistribution.sol +34 -11
  366. package/contracts/examples/unpermissioned/SimpleDistributionAuthorization.sol +28 -0
  367. package/contracts/examples/unpermissioned/SimpleOracle.sol +4 -8
  368. package/contracts/examples/unpermissioned/SimplePool.sol +7 -13
  369. package/contracts/examples/unpermissioned/SimplePoolAuthorization.sol +28 -0
  370. package/contracts/examples/unpermissioned/SimpleProduct.sol +119 -27
  371. package/contracts/examples/unpermissioned/SimpleProductAuthorization.sol +28 -0
  372. package/contracts/instance/BundleSet.sol +4 -4
  373. package/contracts/instance/IInstance.sol +92 -19
  374. package/contracts/instance/IInstanceService.sol +52 -9
  375. package/contracts/instance/Instance.sol +163 -57
  376. package/contracts/instance/InstanceAdmin.sol +271 -166
  377. package/contracts/instance/InstanceAuthorizationV3.sol +89 -40
  378. package/contracts/instance/InstanceReader.sol +422 -369
  379. package/contracts/instance/InstanceService.sol +252 -176
  380. package/contracts/instance/InstanceServiceManager.sol +1 -1
  381. package/contracts/instance/InstanceStore.sol +13 -2
  382. package/contracts/instance/RiskSet.sol +21 -14
  383. package/contracts/instance/base/BalanceStore.sol +4 -6
  384. package/contracts/instance/base/ObjectCounter.sol +1 -2
  385. package/contracts/instance/base/ObjectLifecycle.sol +6 -8
  386. package/contracts/instance/base/ObjectSet.sol +7 -8
  387. package/contracts/instance/base/ObjectSetHelperLib.sol +30 -0
  388. package/contracts/instance/module/IBundle.sol +6 -5
  389. package/contracts/instance/module/IComponents.sol +19 -7
  390. package/contracts/instance/module/IDistribution.sol +21 -8
  391. package/contracts/instance/module/IPolicy.sol +28 -8
  392. package/contracts/instance/module/IRisk.sol +4 -0
  393. package/contracts/oracle/BasicOracle.sol +2 -4
  394. package/contracts/oracle/BasicOracleAuthorization.sol +15 -8
  395. package/contracts/oracle/IOracle.sol +9 -4
  396. package/contracts/oracle/Oracle.sol +3 -5
  397. package/contracts/oracle/OracleService.sol +24 -23
  398. package/contracts/oracle/OracleServiceManager.sol +1 -1
  399. package/contracts/pool/BasicPool.sol +3 -16
  400. package/contracts/pool/BasicPoolAuthorization.sol +29 -16
  401. package/contracts/pool/BundleService.sol +67 -104
  402. package/contracts/pool/BundleServiceManager.sol +1 -1
  403. package/contracts/pool/IBundleService.sol +27 -33
  404. package/contracts/pool/IPoolService.sol +57 -40
  405. package/contracts/pool/Pool.sol +13 -25
  406. package/contracts/pool/PoolLib.sol +341 -0
  407. package/contracts/pool/PoolService.sol +203 -201
  408. package/contracts/pool/PoolServiceManager.sol +1 -1
  409. package/contracts/product/ApplicationService.sol +86 -18
  410. package/contracts/product/ApplicationServiceManager.sol +1 -1
  411. package/contracts/product/BasicProduct.sol +3 -3
  412. package/contracts/product/BasicProductAuthorization.sol +32 -11
  413. package/contracts/product/ClaimService.sol +187 -171
  414. package/contracts/product/ClaimServiceManager.sol +1 -1
  415. package/contracts/product/IApplicationService.sol +24 -2
  416. package/contracts/product/IClaimService.sol +18 -5
  417. package/contracts/product/IPolicyService.sol +20 -8
  418. package/contracts/product/IPricingService.sol +1 -0
  419. package/contracts/product/IProductComponent.sol +4 -1
  420. package/contracts/product/IRiskService.sol +25 -10
  421. package/contracts/product/PolicyService.sol +110 -198
  422. package/contracts/product/PolicyServiceLib.sol +139 -0
  423. package/contracts/product/PolicyServiceManager.sol +1 -1
  424. package/contracts/product/PricingService.sol +52 -46
  425. package/contracts/product/PricingServiceManager.sol +3 -3
  426. package/contracts/product/Product.sol +93 -27
  427. package/contracts/product/RiskService.sol +119 -36
  428. package/contracts/product/RiskServiceManager.sol +1 -1
  429. package/contracts/registry/ChainNft.sol +4 -2
  430. package/contracts/registry/IRegistry.sol +23 -24
  431. package/contracts/registry/IRelease.sol +29 -0
  432. package/contracts/registry/Registry.sol +22 -11
  433. package/contracts/registry/RegistryAdmin.sol +100 -363
  434. package/contracts/registry/RegistryAuthorization.sol +309 -0
  435. package/contracts/registry/RegistryService.sol +4 -4
  436. package/contracts/registry/RegistryServiceManager.sol +1 -1
  437. package/contracts/registry/ReleaseAdmin.sol +195 -0
  438. package/contracts/registry/ReleaseLifecycle.sol +2 -0
  439. package/contracts/registry/ReleaseRegistry.sol +157 -117
  440. package/contracts/registry/ServiceAuthorizationV3.sol +194 -27
  441. package/contracts/registry/TokenRegistry.sol +61 -59
  442. package/contracts/shared/Component.sol +34 -37
  443. package/contracts/shared/ComponentService.sol +314 -433
  444. package/contracts/shared/ComponentServiceManager.sol +1 -1
  445. package/contracts/shared/ContractLib.sol +164 -76
  446. package/contracts/shared/IComponent.sol +1 -10
  447. package/contracts/shared/IComponentService.sol +22 -41
  448. package/contracts/shared/IInstanceLinkedComponent.sol +0 -11
  449. package/contracts/shared/IKeyValueStore.sol +1 -1
  450. package/contracts/shared/INftOwnable.sol +2 -0
  451. package/contracts/shared/IRegisterable.sol +15 -5
  452. package/contracts/shared/IService.sol +3 -5
  453. package/contracts/shared/InitializableERC165.sol +9 -1
  454. package/contracts/shared/InstanceLinkedComponent.sol +7 -18
  455. package/contracts/shared/KeyValueStore.sol +3 -3
  456. package/contracts/shared/NftOwnable.sol +8 -6
  457. package/contracts/shared/PolicyHolder.sol +4 -3
  458. package/contracts/shared/Registerable.sol +42 -19
  459. package/contracts/shared/RegistryLinked.sol +1 -1
  460. package/contracts/shared/Service.sol +13 -30
  461. package/contracts/shared/TokenHandler.sol +45 -92
  462. package/contracts/staking/IStaking.sol +155 -64
  463. package/contracts/staking/IStakingService.sol +45 -75
  464. package/contracts/staking/Staking.sol +444 -203
  465. package/contracts/staking/{StakeManagerLib.sol → StakingLib.sol} +55 -84
  466. package/contracts/staking/StakingManager.sol +1 -2
  467. package/contracts/staking/StakingReader.sol +41 -80
  468. package/contracts/staking/StakingService.sol +62 -181
  469. package/contracts/staking/StakingServiceManager.sol +6 -4
  470. package/contracts/staking/StakingStore.sol +697 -329
  471. package/contracts/staking/TargetManagerLib.sol +1 -1
  472. package/contracts/type/Amount.sol +4 -0
  473. package/contracts/type/Blocknumber.sol +15 -15
  474. package/contracts/type/ChainId.sol +101 -0
  475. package/contracts/type/Fee.sol +8 -8
  476. package/contracts/type/NftId.sol +3 -3
  477. package/contracts/type/ObjectType.sol +67 -38
  478. package/contracts/type/RiskId.sol +9 -3
  479. package/contracts/type/RoleId.sol +63 -45
  480. package/contracts/type/Seconds.sol +14 -0
  481. package/contracts/type/Selector.sol +5 -0
  482. package/contracts/type/String.sol +12 -0
  483. package/contracts/type/Timestamp.sol +4 -7
  484. package/contracts/type/UFixed.sol +35 -127
  485. package/contracts/type/Version.sol +54 -5
  486. package/contracts/upgradeability/IVersionable.sol +3 -0
  487. package/contracts/upgradeability/ProxyManager.sol +26 -12
  488. package/contracts/upgradeability/UpgradableProxyWithAdmin.sol +12 -2
  489. package/contracts/upgradeability/Versionable.sol +6 -3
  490. package/package.json +2 -2
  491. package/artifacts/contracts/authorization/AccessAdmin.sol/IAccessManagedChecker.dbg.json +0 -4
  492. package/artifacts/contracts/authorization/ReleaseAccessManager.sol/ReleaseAccessManager.dbg.json +0 -4
  493. package/artifacts/contracts/authorization/ReleaseAccessManager.sol/ReleaseAccessManager.json +0 -1196
  494. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +0 -4
  495. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +0 -129
  496. package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.dbg.json +0 -4
  497. package/artifacts/contracts/shared/ComponentVerifyingService.sol/ComponentVerifyingService.json +0 -474
  498. package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.dbg.json +0 -4
  499. package/artifacts/contracts/staking/StakeManagerLib.sol/StakeManagerLib.json +0 -440
  500. package/artifacts/contracts/type/UFixed.sol/MathLib.dbg.json +0 -4
  501. package/artifacts/contracts/type/UFixed.sol/MathLib.json +0 -16
  502. package/contracts/authorization/ReleaseAccessManager.sol +0 -38
  503. package/contracts/instance/module/IAccess.sol +0 -46
  504. package/contracts/shared/ComponentVerifyingService.sol +0 -128
@@ -8,6 +8,61 @@
8
8
  "stateMutability": "nonpayable",
9
9
  "type": "constructor"
10
10
  },
11
+ {
12
+ "inputs": [
13
+ {
14
+ "internalType": "string",
15
+ "name": "commitHash",
16
+ "type": "string"
17
+ }
18
+ ],
19
+ "name": "ErrorAuthorizationCommitHashInvalid",
20
+ "type": "error"
21
+ },
22
+ {
23
+ "inputs": [],
24
+ "name": "ErrorAuthorizationMainTargetNameEmpty",
25
+ "type": "error"
26
+ },
27
+ {
28
+ "inputs": [
29
+ {
30
+ "internalType": "uint8",
31
+ "name": "release",
32
+ "type": "uint8"
33
+ }
34
+ ],
35
+ "name": "ErrorAuthorizationReleaseInvalid",
36
+ "type": "error"
37
+ },
38
+ {
39
+ "inputs": [],
40
+ "name": "ErrorAuthorizationTargetDomainZero",
41
+ "type": "error"
42
+ },
43
+ {
44
+ "inputs": [],
45
+ "name": "InvalidInitialization",
46
+ "type": "error"
47
+ },
48
+ {
49
+ "inputs": [],
50
+ "name": "NotInitializing",
51
+ "type": "error"
52
+ },
53
+ {
54
+ "anonymous": false,
55
+ "inputs": [
56
+ {
57
+ "indexed": false,
58
+ "internalType": "uint64",
59
+ "name": "version",
60
+ "type": "uint64"
61
+ }
62
+ ],
63
+ "name": "Initialized",
64
+ "type": "event"
65
+ },
11
66
  {
12
67
  "inputs": [],
13
68
  "name": "BUNDLE_SET_TARGET_NAME",
@@ -23,7 +78,59 @@
23
78
  },
24
79
  {
25
80
  "inputs": [],
26
- "name": "GIF_RELEASE",
81
+ "name": "COMMIT_HASH",
82
+ "outputs": [
83
+ {
84
+ "internalType": "string",
85
+ "name": "",
86
+ "type": "string"
87
+ }
88
+ ],
89
+ "stateMutability": "view",
90
+ "type": "function"
91
+ },
92
+ {
93
+ "inputs": [],
94
+ "name": "COMMIT_HASH_LENGTH",
95
+ "outputs": [
96
+ {
97
+ "internalType": "uint256",
98
+ "name": "",
99
+ "type": "uint256"
100
+ }
101
+ ],
102
+ "stateMutability": "view",
103
+ "type": "function"
104
+ },
105
+ {
106
+ "inputs": [],
107
+ "name": "COMPONENT_ROLE_MIN",
108
+ "outputs": [
109
+ {
110
+ "internalType": "uint64",
111
+ "name": "",
112
+ "type": "uint64"
113
+ }
114
+ ],
115
+ "stateMutability": "view",
116
+ "type": "function"
117
+ },
118
+ {
119
+ "inputs": [],
120
+ "name": "DOMAIN",
121
+ "outputs": [
122
+ {
123
+ "internalType": "ObjectType",
124
+ "name": "",
125
+ "type": "uint8"
126
+ }
127
+ ],
128
+ "stateMutability": "view",
129
+ "type": "function"
130
+ },
131
+ {
132
+ "inputs": [],
133
+ "name": "GIF_INITIAL_VERSION",
27
134
  "outputs": [
28
135
  {
29
136
  "internalType": "uint256",
@@ -47,6 +154,19 @@
47
154
  "stateMutability": "view",
48
155
  "type": "function"
49
156
  },
157
+ {
158
+ "inputs": [],
159
+ "name": "INSTANCE_OWNER_ROLE_NAME",
160
+ "outputs": [
161
+ {
162
+ "internalType": "string",
163
+ "name": "",
164
+ "type": "string"
165
+ }
166
+ ],
167
+ "stateMutability": "view",
168
+ "type": "function"
169
+ },
50
170
  {
51
171
  "inputs": [],
52
172
  "name": "INSTANCE_ROLE_NAME",
@@ -114,7 +234,7 @@
114
234
  },
115
235
  {
116
236
  "inputs": [],
117
- "name": "SERVICE_ROLE_NAME_SUFFIX",
237
+ "name": "SERVICE_NAME_SUFFIX",
118
238
  "outputs": [
119
239
  {
120
240
  "internalType": "string",
@@ -185,19 +305,58 @@
185
305
  "stateMutability": "view",
186
306
  "type": "function"
187
307
  },
308
+ {
309
+ "inputs": [],
310
+ "name": "getCommitHash",
311
+ "outputs": [
312
+ {
313
+ "internalType": "string",
314
+ "name": "commitHash",
315
+ "type": "string"
316
+ }
317
+ ],
318
+ "stateMutability": "view",
319
+ "type": "function"
320
+ },
321
+ {
322
+ "inputs": [],
323
+ "name": "getDomain",
324
+ "outputs": [
325
+ {
326
+ "internalType": "ObjectType",
327
+ "name": "targetDomain",
328
+ "type": "uint8"
329
+ }
330
+ ],
331
+ "stateMutability": "view",
332
+ "type": "function"
333
+ },
188
334
  {
189
335
  "inputs": [],
190
336
  "name": "getMainTarget",
191
337
  "outputs": [
192
338
  {
193
339
  "internalType": "Str",
194
- "name": "",
340
+ "name": "target",
195
341
  "type": "bytes32"
196
342
  }
197
343
  ],
198
344
  "stateMutability": "view",
199
345
  "type": "function"
200
346
  },
347
+ {
348
+ "inputs": [],
349
+ "name": "getMainTargetName",
350
+ "outputs": [
351
+ {
352
+ "internalType": "string",
353
+ "name": "name",
354
+ "type": "string"
355
+ }
356
+ ],
357
+ "stateMutability": "view",
358
+ "type": "function"
359
+ },
201
360
  {
202
361
  "inputs": [],
203
362
  "name": "getRelease",
@@ -208,7 +367,7 @@
208
367
  "type": "uint8"
209
368
  }
210
369
  ],
211
- "stateMutability": "pure",
370
+ "stateMutability": "view",
212
371
  "type": "function"
213
372
  },
214
373
  {
@@ -238,11 +397,6 @@
238
397
  "name": "maxMemberCount",
239
398
  "type": "uint32"
240
399
  },
241
- {
242
- "internalType": "Str",
243
- "name": "name",
244
- "type": "bytes32"
245
- },
246
400
  {
247
401
  "internalType": "Timestamp",
248
402
  "name": "createdAt",
@@ -252,6 +406,11 @@
252
406
  "internalType": "Timestamp",
253
407
  "name": "pausedAt",
254
408
  "type": "uint40"
409
+ },
410
+ {
411
+ "internalType": "Str",
412
+ "name": "name",
413
+ "type": "bytes32"
255
414
  }
256
415
  ],
257
416
  "internalType": "struct IAccess.RoleInfo",
@@ -262,6 +421,25 @@
262
421
  "stateMutability": "view",
263
422
  "type": "function"
264
423
  },
424
+ {
425
+ "inputs": [
426
+ {
427
+ "internalType": "RoleId",
428
+ "name": "roleId",
429
+ "type": "uint64"
430
+ }
431
+ ],
432
+ "name": "getRoleName",
433
+ "outputs": [
434
+ {
435
+ "internalType": "string",
436
+ "name": "roleName",
437
+ "type": "string"
438
+ }
439
+ ],
440
+ "stateMutability": "view",
441
+ "type": "function"
442
+ },
265
443
  {
266
444
  "inputs": [],
267
445
  "name": "getRoles",
@@ -275,6 +453,44 @@
275
453
  "stateMutability": "view",
276
454
  "type": "function"
277
455
  },
456
+ {
457
+ "inputs": [
458
+ {
459
+ "internalType": "ObjectType",
460
+ "name": "serviceDomain",
461
+ "type": "uint8"
462
+ }
463
+ ],
464
+ "name": "getServiceAddress",
465
+ "outputs": [
466
+ {
467
+ "internalType": "address",
468
+ "name": "service",
469
+ "type": "address"
470
+ }
471
+ ],
472
+ "stateMutability": "view",
473
+ "type": "function"
474
+ },
475
+ {
476
+ "inputs": [
477
+ {
478
+ "internalType": "uint256",
479
+ "name": "idx",
480
+ "type": "uint256"
481
+ }
482
+ ],
483
+ "name": "getServiceDomain",
484
+ "outputs": [
485
+ {
486
+ "internalType": "ObjectType",
487
+ "name": "serviceDomain",
488
+ "type": "uint8"
489
+ }
490
+ ],
491
+ "stateMutability": "view",
492
+ "type": "function"
493
+ },
278
494
  {
279
495
  "inputs": [],
280
496
  "name": "getServiceDomains",
@@ -304,7 +520,7 @@
304
520
  "type": "uint64"
305
521
  }
306
522
  ],
307
- "stateMutability": "pure",
523
+ "stateMutability": "view",
308
524
  "type": "function"
309
525
  },
310
526
  {
@@ -319,7 +535,7 @@
319
535
  "outputs": [
320
536
  {
321
537
  "internalType": "Str",
322
- "name": "serviceTarget",
538
+ "name": "target",
323
539
  "type": "bytes32"
324
540
  }
325
541
  ],
@@ -342,20 +558,7 @@
342
558
  "type": "bytes32"
343
559
  }
344
560
  ],
345
- "stateMutability": "view",
346
- "type": "function"
347
- },
348
- {
349
- "inputs": [],
350
- "name": "getTargetName",
351
- "outputs": [
352
- {
353
- "internalType": "string",
354
- "name": "name",
355
- "type": "string"
356
- }
357
- ],
358
- "stateMutability": "view",
561
+ "stateMutability": "pure",
359
562
  "type": "function"
360
563
  },
361
564
  {
@@ -390,6 +593,32 @@
390
593
  "stateMutability": "view",
391
594
  "type": "function"
392
595
  },
596
+ {
597
+ "inputs": [],
598
+ "name": "getTokenHandlerName",
599
+ "outputs": [
600
+ {
601
+ "internalType": "string",
602
+ "name": "",
603
+ "type": "string"
604
+ }
605
+ ],
606
+ "stateMutability": "view",
607
+ "type": "function"
608
+ },
609
+ {
610
+ "inputs": [],
611
+ "name": "getTokenHandlerTarget",
612
+ "outputs": [
613
+ {
614
+ "internalType": "Str",
615
+ "name": "",
616
+ "type": "bytes32"
617
+ }
618
+ ],
619
+ "stateMutability": "view",
620
+ "type": "function"
621
+ },
393
622
  {
394
623
  "inputs": [
395
624
  {
@@ -409,6 +638,25 @@
409
638
  "stateMutability": "view",
410
639
  "type": "function"
411
640
  },
641
+ {
642
+ "inputs": [
643
+ {
644
+ "internalType": "bytes4",
645
+ "name": "interfaceId",
646
+ "type": "bytes4"
647
+ }
648
+ ],
649
+ "name": "supportsInterface",
650
+ "outputs": [
651
+ {
652
+ "internalType": "bool",
653
+ "name": "",
654
+ "type": "bool"
655
+ }
656
+ ],
657
+ "stateMutability": "view",
658
+ "type": "function"
659
+ },
412
660
  {
413
661
  "inputs": [
414
662
  {
@@ -429,18 +677,38 @@
429
677
  "type": "function"
430
678
  }
431
679
  ],
432
- "bytecode": "0x60c0604052600960809081526810dbdb5c1bdb995b9d60ba1b60a0526002906100289082611fe2565b50348015610034575f80fd5b50604080518082019091526008815267496e7374616e636560c01b602082015260026100608282611fe2565b50610069610079565b6100716101e1565b506122d7565b565b604080518082019091526008815267496e7374616e636560c01b60208201526100d3906100ab600a61020e565b61020e565b60408051808201909152600c81526b496e7374616e6365526f6c6560a01b602082015261028b565b60408051808201909152600d81526c496e7374616e636553746f726560981b602082015261010090610421565b60408051808201909152600d81526c24b739ba30b731b2a0b236b4b760991b602082015261012d90610421565b604080518082019091526009815268109d5b991b1954d95d60ba1b602082015261015690610421565b604080518082019091526007815266149a5cdad4d95d60ca1b602082015261017d90610421565b610187600a6104a6565b610191600b6104a6565b61019b600e6104a6565b6101a5600d6104a6565b6101af600f6104a6565b6101b9601f6104a6565b6101c360196104a6565b6101cd60146104a6565b6101d760156104a6565b61007760176104a6565b6101e961085d565b6101f16108e0565b6101f9610956565b61020161150e565b61007761167b565b600a90565b60405163369e953f60e11b815260ff821660048201525f9073__$1d92393fa9ccd763988368ce8a1cb90d26$__90636d3d2a7e906024015b602060405180830381865af4158015610261573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610285919061209c565b92915050565b60405163cdc23e6960e01b81525f9073__$9a094f9b231ed0f5f85a69be8408d93180$__9063cdc23e69906102c49087906004016120f7565b602060405180830381865af41580156102df573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906103039190612109565b6003805460018181019092557fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b018290555f82815260056020908152604091829020805460ff1916909317909255805163bc1b392d60e01b815290519293506103d892869273__$1d92393fa9ccd763988368ce8a1cb90d26$__9263bc1b392d92600480830193928290030181865af41580156103a2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906103c6919061209c565b6001600160401b039081169116141590565b1561041b576103e6836117e7565b6103f4576103f48383611829565b5f81815260046020526040902080546001600160401b0319166001600160401b0385161790555b50505050565b6104a38173__$1d92393fa9ccd763988368ce8a1cb90d26$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af415801561046c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610490919061209c565b60408051602081019091525f815261028b565b50565b5f8054600181018255818052602081047f290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e56301805460ff858116601f9094166101000a848102910219909116179055604051632b95d28f60e21b8152600481019190915273__$0d958e68cba84670b8f4a3f2f2686b1c6b$__9063f7fa7a7c90829063ae574a3c906024015f60405180830381865af415801561054a573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526105719190810190612120565b61057961184a565b604051632b10f60d60e21b815260ff909116600482015273__$b659da7d8a6d2d32aa6c1e17da23dc2174$__9063ac43d83490602401602060405180830381865af41580156105ca573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105ee9190612109565b6040518363ffffffff1660e01b815260040161060b9291906121d0565b5f60405180830381865af4158015610625573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261064c9190810190612120565b60405163cdc23e6960e01b815290915073__$9a094f9b231ed0f5f85a69be8408d93180$__9063cdc23e69906106869084906004016120f7565b602060405180830381865af41580156106a1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106c59190612109565b60ff83165f908152600160205260408120919091556106e3836118c3565b604051632b95d28f60e21b815260ff851660048201529091505f9073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__9063f7fa7a7c90829063ae574a3c906024015f60405180830381865af415801561073f573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526107669190810190612120565b61076e61184a565b604051632b10f60d60e21b815260ff909116600482015273__$b659da7d8a6d2d32aa6c1e17da23dc2174$__9063ac43d83490602401602060405180830381865af41580156107bf573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107e39190612109565b6040518363ffffffff1660e01b8152600401610800929190612212565b5f60405180830381865af415801561081a573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526108419190810190612120565b905061041b83838361028b565b600b90565b601f90565b601990565b5f61089d60405180604001604052806008815260200167496e7374616e636560c01b81525061089861089361020960201b60201c565b6118c3565b611914565b90506104a38163f7bc431c60e01b6040518060400160405280601181526020017039b2ba24b739ba30b731b2a932b0b232b960791b8152506119ee60201b60201c565b5f61091b6040518060400160405280600d81526020016c24b739ba30b731b2a0b236b4b760991b8152506108986100a661020960201b60201c565b90506104a38163b428b0b060e01b604051806040016040528060098152602001686772616e74526f6c6560b81b8152506119ee60201b60201c565b5f6109916040518060400160405280600d81526020016c496e7374616e636553746f726560981b81525061089861089361084e60201b60201c565b90506109d2816328f72e8760e01b6040518060400160405280600f81526020016e18dc99585d1950dbdb5c1bdb995b9d608a1b8152506119ee60201b60201c565b60408051808201909152600f81526e1d5c19185d1950dbdb5c1bdb995b9d608a1b6020820152610a0c90829063017c8c4960e41b906119ee565b60408051808201909152600a81526918dc99585d19541bdbdb60b21b6020820152610a4190829063fe7fc94160e01b906119ee565b60408051808201909152600d81526c18dc99585d19541c9bd91d58dd609a1b6020820152610a79908290639654005760e01b906119ee565b60408051808201909152600d81526c1d5c19185d19541c9bd91d58dd609a1b6020820152610ab1908290632ee46ad960e01b906119ee565b60408051808201909152600f81526e696e63726561736542616c616e636560881b6020820152610aeb908290639f8151e560e01b906119ee565b60408051808201909152600f81526e646563726561736542616c616e636560881b6020820152610b2590829063b0628dc360e01b906119ee565b60408051808201909152600c81526b696e6372656173654665657360a01b6020820152610b5c90829063e80c61ed60e01b906119ee565b60408051808201909152600c81526b64656372656173654665657360a01b6020820152610b939082906314cc21b560e21b906119ee565b60408051808201909152600d81526c496e7374616e636553746f726560981b6020820152610bc590610898600e6118c3565b9050610c14816330a130ba60e01b6040518060400160405280601581526020017f6372656174654469737472696275746f725479706500000000000000000000008152506119ee60201b60201c565b60408051808201909152601581527f7570646174654469737472696275746f725479706500000000000000000000006020820152610c5c9082906305a8416b60e41b906119ee565b60408051808201909152601a81527f7570646174654469737472696275746f725479706553746174650000000000006020820152610ca490829063a284222960e01b906119ee565b60408051808201909152601181527031b932b0ba32a234b9ba3934b13aba37b960791b6020820152610ce0908290637b8ebfff60e11b906119ee565b6040805180820190915260118152703ab83230ba32a234b9ba3934b13aba37b960791b6020820152610d1c908290632a72b0c760e11b906119ee565b60408051808201909152601681527f7570646174654469737472696275746f725374617465000000000000000000006020820152610d649082906340529b0f60e01b906119ee565b60408051808201909152600e81526d18dc99585d19549959995c9c985b60921b6020820152610d9d908290631941cfe160e31b906119ee565b60408051808201909152600e81526d1d5c19185d19549959995c9c985b60921b6020820152610dd69082906330882f0760e11b906119ee565b60408051808201909152601381527f757064617465526566657272616c5374617465000000000000000000000000006020820152610e1d90829062af902560e81b906119ee565b60408051808201909152600d81526c496e7374616e636553746f726560981b6020820152610e5090610898610893600d90565b9050610e8f81630632b17d60e01b6040518060400160405280600d81526020016c18dc99585d1954995c5d595cdd609a1b8152506119ee60201b60201c565b60408051808201909152600d81526c1d5c19185d1954995c5d595cdd609a1b6020820152610ec790829063275c059560e01b906119ee565b60408051808201909152601281527175706461746552657175657374537461746560701b6020820152610f04908290635a6bf7f160e11b906119ee565b60408051808201909152600d81526c496e7374616e636553746f726560981b6020820152610f3690610898600f6118c3565b9050610f7281632880268160e01b6040518060400160405280600a8152602001691d5c19185d19541bdbdb60b21b8152506119ee60201b60201c565b60408051808201909152600d81526c496e7374616e636553746f726560981b6020820152610fa490610898601f6118c3565b9050610fe28163a46eb8dc60e01b6040518060400160405280600c81526020016b63726561746542756e646c6560a01b8152506119ee60201b60201c565b60408051808201909152600c81526b75706461746542756e646c6560a01b60208201526110199082906351dd844b60e01b906119ee565b60408051808201909152601181527075706461746542756e646c65537461746560781b6020820152611055908290637f0f8c6b60e11b906119ee565b60408051808201909152600e81526d1a5b98dc99585cd9531bd8dad95960921b602082015261108e90829063248a77dd60e01b906119ee565b60408051808201909152600e81526d191958dc99585cd9531bd8dad95960921b60208201526110c79082906353ebe12960e01b906119ee565b60408051808201909152600d81526c496e7374616e636553746f726560981b60208201526110f99061089860196118c3565b905061113581632f61088a60e01b6040518060400160405280600a8152602001696372656174655269736b60b01b8152506119ee60201b60201c565b60408051808201909152600a8152697570646174655269736b60b01b602082015261116a9082906314eddc0360e31b906119ee565b60408051808201909152600f81526e7570646174655269736b537461746560881b60208201526111a4908290633e77a42160e11b906119ee565b60408051808201909152600d81526c496e7374616e636553746f726560981b60208201526111d69061089860146118c3565b905061121981636fac862260e01b6040518060400160405280601181526020017031b932b0ba32a0b8383634b1b0ba34b7b760791b8152506119ee60201b60201c565b6040805180820190915260118152703ab83230ba32a0b8383634b1b0ba34b7b760791b60208201526112559082906381d32d6b60e01b906119ee565b60408051808201909152601681527f7570646174654170706c69636174696f6e537461746500000000000000000000602082015261129d908290630fad0eb160e01b906119ee565b60408051808201909152600d81526c496e7374616e636553746f726560981b60208201526112cf9061089860156118c3565b905061130d8163425d08e260e01b6040518060400160405280600c81526020016b757064617465506f6c69637960a01b8152506119ee60201b60201c565b604080518082019091526011815270757064617465506f6c696379537461746560781b6020820152611349908290631750d17360e21b906119ee565b60408051808201909152600d81526c6372656174655072656d69756d60981b6020820152611381908290634d4a7ae960e01b906119ee565b6040805180820190915260128152717570646174655072656d69756d537461746560701b60208201526113be908290632ae5819d60e01b906119ee565b60408051808201909152600d81526c496e7374616e636553746f726560981b60208201526113f09061089860176118c3565b90506114348163d625d75860e01b60405180604001604052806012815260200171757064617465506f6c696379436c61696d7360701b8152506119ee60201b60201c565b60408051808201909152600b81526a637265617465436c61696d60a81b602082015261146a90829063e145b68b60e01b906119ee565b60408051808201909152600b81526a757064617465436c61696d60a81b60208201526114a090829063d78c599b60e01b906119ee565b60408051808201909152600c81526b18dc99585d1954185e5bdd5d60a21b60208201526114d790829063bcd65e2160e01b906119ee565b60408051808201909152600c81526b1d5c19185d1954185e5bdd5d60a21b60208201526104a3908290631e1fc68760e11b906119ee565b5f61154560405180604001604052806009815260200168109d5b991b1954d95d60ba1b81525061089861089361085360201b60201c565b905061157a81638de1d14e60e01b6040518060400160405280600381526020016218591960ea1b8152506119ee60201b60201c565b6040805180820190915260048152636c6f636b60e01b60208201526115a990829063b5346af560e01b906119ee565b604080518082019091526006815265756e6c6f636b60d01b60208201526115da9082906306fa456560e01b906119ee565b604080518082019091526009815268109d5b991b1954d95d60ba1b60208201526116089061089860156118c3565b90506116448163ff4fe25c60e01b6040518060400160405280600a8152602001696c696e6b506f6c69637960b01b8152506119ee60201b60201c565b60408051808201909152600c81526b756e6c696e6b506f6c69637960a01b60208201526104a390829063752723bf60e11b906119ee565b5f6116b060405180604001604052806007815260200166149a5cdad4d95d60ca1b81525061089861089361085860201b60201c565b90506116e58163d0c9bd7660e01b6040518060400160405280600381526020016218591960ea1b8152506119ee60201b60201c565b604080518082019091526005815264706175736560d81b6020820152611715908290631007dc6560e11b906119ee565b604080518082019091526008815267616374697661746560c01b6020820152611748908290630100d3b560e51b906119ee565b604080518082019091526007815266149a5cdad4d95d60ca1b60208201526117749061089860156118c3565b90506117b081639ad7533f60e01b6040518060400160405280600a8152602001696c696e6b506f6c69637960b01b8152506119ee60201b60201c565b60408051808201909152600c81526b756e6c696e6b506f6c69637960a01b60208201526104a390829063903a264b60e01b906119ee565b5f806001600160401b0383165f9081526007602052604090205468010000000000000000900460ff16600381111561182157611821612258565b141592915050565b61184682611841611838611bcb565b60018086611c3f565b611e1c565b5050565b604051632392b61b60e21b8152600360048201525f9073__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af415801561189a573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118be919061226c565b905090565b5f73__$1d92393fa9ccd763988368ce8a1cb90d26$__63dda777d3836118e761184a565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401610246565b5f8073__$9a094f9b231ed0f5f85a69be8408d93180$__63cdc23e69856040518263ffffffff1660e01b815260040161194d91906120f7565b602060405180830381865af4158015611968573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061198c9190612109565b5f8181526008602081815260408084208054600181018255908552828520600482040180546001600160401b03808c1660039094169096026101000a838102960219169490941790935593835260098152838320918352522091505092915050565b60408051606081019182905263cdc23e6960e01b90915283908073__$9a094f9b231ed0f5f85a69be8408d93180$__63cdc23e69611a2f86606485016120f7565b602060405180830381865af4158015611a4a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a6e9190612109565b8152604051636b15ee8b60e01b81526001600160e01b03198616600482015260209091019073__$0904195350e4c23ecb1d51df0a32586dcd$__90636b15ee8b90602401602060405180830381865af4158015611acd573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611af1919061228c565b6001600160e01b031916815260200173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015611b47573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611b6b91906122b3565b64ffffffffff9081169091528254600181810185555f94855260209485902084516002909302019182559383015193018054604090930151909116640100000000026001600160481b031990921660e09390931c92909217179055505050565b604051637c3940bf60e01b81525f600482018190529073__$1d92393fa9ccd763988368ce8a1cb90d26$__90637c3940bf90602401602060405180830381865af4158015611c1b573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118be919061209c565b6040805160c0810182525f80825260208201819052918101829052606081018290526080810182905260a08101919091526040518060c00160405280866001600160401b03168152602001856003811115611c9c57611c9c612258565b81526020018463ffffffff16815260200173__$9a094f9b231ed0f5f85a69be8408d93180$__63cdc23e69856040518263ffffffff1660e01b8152600401611ce491906120f7565b602060405180830381865af4158015611cff573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d239190612109565b815260200173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__63adb618326040518163ffffffff1660e01b8152600401602060405180830381865af4158015611d6f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d9391906122b3565b64ffffffffff16815260200173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af4158015611de6573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611e0a91906122b3565b64ffffffffff16905295945050505050565b6006805460018101909155600481047ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180546001600160401b0380861660086003958616026101000a81810290830219909316929092179092555f9081526007602090815260409091208451815493166001600160401b03198416811782559185015185949193909284926001600160481b0319909216179068010000000000000000908490811115611ed257611ed2612258565b02179055506040820151815463ffffffff90911669010000000000000000000263ffffffff60481b199091161781556060820151600182015560808201516002909101805460a09093015164ffffffffff90811665010000000000026001600160501b03199094169216919091179190911790555050565b634e487b7160e01b5f52604160045260245ffd5b600181811c90821680611f7257607f821691505b602082108103611f9057634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115611fdd57805f5260205f20601f840160051c81016020851015611fbb5750805b601f840160051c820191505b81811015611fda575f8155600101611fc7565b50505b505050565b81516001600160401b03811115611ffb57611ffb611f4a565b61200f816120098454611f5e565b84611f96565b6020601f821160018114612041575f831561202a5750848201515b5f19600385901b1c1916600184901b178455611fda565b5f84815260208120601f198516915b828110156120705787850151825560209485019460019092019101612050565b508482101561208d57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b5f602082840312156120ac575f80fd5b81516001600160401b03811681146120c2575f80fd5b9392505050565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f6120c260208301846120c9565b5f60208284031215612119575f80fd5b5051919050565b5f60208284031215612130575f80fd5b81516001600160401b03811115612145575f80fd5b8201601f81018413612155575f80fd5b80516001600160401b0381111561216e5761216e611f4a565b604051601f8201601f19908116603f011681016001600160401b038111828210171561219c5761219c611f4a565b6040528181528282016020018610156121b3575f80fd5b8160208401602083015e5f91810160200191909152949350505050565b606081525f6121e260608301856120c9565b828103602084015260078152665365727669636560c81b6020820152604081019150508260408301529392505050565b606081525f61222460608301856120c9565b8281036020840152600b81526a53657276696365526f6c6560a81b6020820152604081019150508260408301529392505050565b634e487b7160e01b5f52602160045260245ffd5b5f6020828403121561227c575f80fd5b815160ff811681146120c2575f80fd5b5f6020828403121561229c575f80fd5b81516001600160e01b0319811681146120c2575f80fd5b5f602082840312156122c3575f80fd5b815164ffffffffff811681146120c2575f80fd5b610eb8806122e45f395ff3fe608060405234801561000f575f80fd5b5060043610610153575f3560e01c806376b707b7116100bf578063c5f3484411610079578063c5f34844146103a2578063c6a00179146103c5578063d0540443146103d8578063da1b620b14610403578063e8eba43514610416578063e9b891a814610429575f80fd5b806376b707b7146102dc578063775f14b1146102f65780638899278a146103365780638c5397b01461033e578063aa689ae514610351578063c143892b14610378575f80fd5b80635bfa5027116101105780635bfa50271461021f5780635c935ce01461023f578063608b081e1461027157806363fe3b561461029d57806368c55b13146102b257806371061398146102c7575f80fd5b80631e4afbbf146101575780632f8ade12146101805780634322699b146101b9578063433f95d6146101cf57806354daf4c9146101d757806354e17da9146101fd575b5f80fd5b61016a610165366004610aac565b610451565b6040516101779190610ada565b60405180910390f35b6101ac6040518060400160405280600d81526020016c496e7374616e636553746f726560981b81525081565b6040516101779190610b74565b6101c16104fe565b604051908152602001610177565b6101ac610595565b6101ac60405180604001604052806007815260200166149a5cdad4d95d60ca1b81525081565b6101c161020b366004610b9b565b60ff165f9081526001602052604090205490565b61023261022d366004610bb6565b610625565b6040516101779190610be5565b61026161024d366004610c71565b5f9081526005602052604090205460ff1690565b6040519015158152602001610177565b6101ac6040518060400160405280600d81526020016c24b739ba30b731b2a0b236b4b760991b81525081565b6102a56106ff565b6040516101779190610c88565b6102ba610754565b6040516101779190610cbf565b6102cf6107c5565b6040516101779190610cf9565b6102e461084b565b60405160ff9091168152602001610177565b61031e610304366004610c71565b5f908152600460205260409020546001600160401b031690565b6040516001600160401b039091168152602001610177565b6101c1600381565b6102cf61034c366004610c71565b6108bf565b6101ac60405180604001604052806008815260200167496e7374616e636560c01b81525081565b6101ac6040518060400160405280600b81526020016a53657276696365526f6c6560a81b81525081565b6101ac60405180604001604052806004815260200163526f6c6560e01b81525081565b6102616103d3366004610bb6565b61094f565b6101ac6040518060400160405280600c81526020016b496e7374616e6365526f6c6560a01b81525081565b6101c1610411366004610d4d565b61098c565b61031e610424366004610b9b565b610a0a565b6101ac60405180604001604052806009815260200168109d5b991b1954d95d60ba1b81525081565b5f8281526009602090815260408083206001600160401b03851684528252808320805482518185028101850190935280835260609492939192909184015b828210156104f2575f84815260209081902060408051606081018252600286029092018054835260019081015460e081901b6001600160e01b03191684860152640100000000900464ffffffffff1691830191909152908352909201910161048f565b50505050905092915050565b5f6105906002805461050f90610dfd565b80601f016020809104026020016040519081016040528092919081815260200182805461053b90610dfd565b80156105865780601f1061055d57610100808354040283529160200191610586565b820191905f5260205f20905b81548152906001019060200180831161056957829003601f168201915b505050505061098c565b905090565b6060600280546105a490610dfd565b80601f01602080910402602001604051908101604052809291908181526020018280546105d090610dfd565b801561061b5780601f106105f25761010080835404028352916020019161061b565b820191905f5260205f20905b8154815290600101906020018083116105fe57829003601f168201915b5050505050905090565b6040805160c080820183525f8083526020808401829052838501829052606084018290526080840182905260a084018290526001600160401b038681168352600782529185902085519384019095528454918216835292939192830190600160401b900460ff16600381111561069d5761069d610bd1565b60038111156106ae576106ae610bd1565b815281546901000000000000000000900463ffffffff1660208201526001820154604082015260029091015464ffffffffff8082166060840152650100000000009091041660809091015292915050565b6060600380548060200260200160405190810160405280929190818152602001828054801561061b57602002820191905f5260205f20905b815481526020019060010190808311610737575050505050905090565b60605f80548060200260200160405190810160405280929190818152602001828054801561061b57602002820191905f5260205f20905f905b825461010083900a900460ff1681526020600192830181810494850194909303909202910180841161078d5790505050505050905090565b6060600680548060200260200160405190810160405280929190818152602001828054801561061b57602002820191905f5260205f20905f905b82829054906101000a90046001600160401b03166001600160401b0316815260200190600801906020826007010492830192600103820291508084116107ff5790505050505050905090565b604051632392b61b60e21b8152600360048201525f9073__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af415801561089b573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105909190610e35565b5f8181526008602090815260409182902080548351818402810184019094528084526060939283018282801561094357602002820191905f5260205f20905f905b82829054906101000a90046001600160401b03166001600160401b0316815260200190600801906020826007010492830192600103820291508084116109005790505b50505050509050919050565b5f806001600160401b0383165f90815260076020526040902054600160401b900460ff16600381111561098457610984610bd1565b141592915050565b60405163cdc23e6960e01b81525f9073__$9a094f9b231ed0f5f85a69be8408d93180$__9063cdc23e69906109c5908590600401610b74565b602060405180830381865af41580156109e0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a049190610e50565b92915050565b5f73__$1d92393fa9ccd763988368ce8a1cb90d26$__63dda777d383610a2e61084b565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865af4158015610a71573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a049190610e67565b6001600160401b0381168114610aa9575f80fd5b50565b5f8060408385031215610abd575f80fd5b823591506020830135610acf81610a95565b809150509250929050565b602080825282518282018190525f918401906040840190835b81811015610b3b578351805184526020808201516001600160e01b0319168186015260409182015164ffffffffff169185019190915290930192606090920191600101610af3565b509095945050505050565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f610b866020830184610b46565b9392505050565b60ff81168114610aa9575f80fd5b5f60208284031215610bab575f80fd5b8135610b8681610b8d565b5f60208284031215610bc6575f80fd5b8135610b8681610a95565b634e487b7160e01b5f52602160045260245ffd5b81516001600160401b03168152602082015160c082019060048110610c1857634e487b7160e01b5f52602160045260245ffd5b8060208401525063ffffffff6040840151166040830152606083015160608301526080830151610c51608084018264ffffffffff169052565b5060a0830151610c6a60a084018264ffffffffff169052565b5092915050565b5f60208284031215610c81575f80fd5b5035919050565b602080825282518282018190525f918401906040840190835b81811015610b3b578351835260209384019390920191600101610ca1565b602080825282518282018190525f918401906040840190835b81811015610b3b57835160ff16835260209384019390920191600101610cd8565b602080825282518282018190525f918401906040840190835b81811015610b3b5783516001600160401b0316835260209384019390920191600101610d12565b634e487b7160e01b5f52604160045260245ffd5b5f60208284031215610d5d575f80fd5b81356001600160401b03811115610d72575f80fd5b8201601f81018413610d82575f80fd5b80356001600160401b03811115610d9b57610d9b610d39565b604051601f8201601f19908116603f011681016001600160401b0381118282101715610dc957610dc9610d39565b604052818152828201602001861015610de0575f80fd5b816020840160208301375f91810160200191909152949350505050565b600181811c90821680610e1157607f821691505b602082108103610e2f57634e487b7160e01b5f52602260045260245ffd5b50919050565b5f60208284031215610e45575f80fd5b8151610b8681610b8d565b5f60208284031215610e60575f80fd5b5051919050565b5f60208284031215610e77575f80fd5b8151610b8681610a9556fea26469706673582212201371ade006962c7dc4df665743fcfd9f254bf608bc086273274ba2ad7815328864736f6c634300081a0033",
433
- "deployedBytecode": "0x608060405234801561000f575f80fd5b5060043610610153575f3560e01c806376b707b7116100bf578063c5f3484411610079578063c5f34844146103a2578063c6a00179146103c5578063d0540443146103d8578063da1b620b14610403578063e8eba43514610416578063e9b891a814610429575f80fd5b806376b707b7146102dc578063775f14b1146102f65780638899278a146103365780638c5397b01461033e578063aa689ae514610351578063c143892b14610378575f80fd5b80635bfa5027116101105780635bfa50271461021f5780635c935ce01461023f578063608b081e1461027157806363fe3b561461029d57806368c55b13146102b257806371061398146102c7575f80fd5b80631e4afbbf146101575780632f8ade12146101805780634322699b146101b9578063433f95d6146101cf57806354daf4c9146101d757806354e17da9146101fd575b5f80fd5b61016a610165366004610aac565b610451565b6040516101779190610ada565b60405180910390f35b6101ac6040518060400160405280600d81526020016c496e7374616e636553746f726560981b81525081565b6040516101779190610b74565b6101c16104fe565b604051908152602001610177565b6101ac610595565b6101ac60405180604001604052806007815260200166149a5cdad4d95d60ca1b81525081565b6101c161020b366004610b9b565b60ff165f9081526001602052604090205490565b61023261022d366004610bb6565b610625565b6040516101779190610be5565b61026161024d366004610c71565b5f9081526005602052604090205460ff1690565b6040519015158152602001610177565b6101ac6040518060400160405280600d81526020016c24b739ba30b731b2a0b236b4b760991b81525081565b6102a56106ff565b6040516101779190610c88565b6102ba610754565b6040516101779190610cbf565b6102cf6107c5565b6040516101779190610cf9565b6102e461084b565b60405160ff9091168152602001610177565b61031e610304366004610c71565b5f908152600460205260409020546001600160401b031690565b6040516001600160401b039091168152602001610177565b6101c1600381565b6102cf61034c366004610c71565b6108bf565b6101ac60405180604001604052806008815260200167496e7374616e636560c01b81525081565b6101ac6040518060400160405280600b81526020016a53657276696365526f6c6560a81b81525081565b6101ac60405180604001604052806004815260200163526f6c6560e01b81525081565b6102616103d3366004610bb6565b61094f565b6101ac6040518060400160405280600c81526020016b496e7374616e6365526f6c6560a01b81525081565b6101c1610411366004610d4d565b61098c565b61031e610424366004610b9b565b610a0a565b6101ac60405180604001604052806009815260200168109d5b991b1954d95d60ba1b81525081565b5f8281526009602090815260408083206001600160401b03851684528252808320805482518185028101850190935280835260609492939192909184015b828210156104f2575f84815260209081902060408051606081018252600286029092018054835260019081015460e081901b6001600160e01b03191684860152640100000000900464ffffffffff1691830191909152908352909201910161048f565b50505050905092915050565b5f6105906002805461050f90610dfd565b80601f016020809104026020016040519081016040528092919081815260200182805461053b90610dfd565b80156105865780601f1061055d57610100808354040283529160200191610586565b820191905f5260205f20905b81548152906001019060200180831161056957829003601f168201915b505050505061098c565b905090565b6060600280546105a490610dfd565b80601f01602080910402602001604051908101604052809291908181526020018280546105d090610dfd565b801561061b5780601f106105f25761010080835404028352916020019161061b565b820191905f5260205f20905b8154815290600101906020018083116105fe57829003601f168201915b5050505050905090565b6040805160c080820183525f8083526020808401829052838501829052606084018290526080840182905260a084018290526001600160401b038681168352600782529185902085519384019095528454918216835292939192830190600160401b900460ff16600381111561069d5761069d610bd1565b60038111156106ae576106ae610bd1565b815281546901000000000000000000900463ffffffff1660208201526001820154604082015260029091015464ffffffffff8082166060840152650100000000009091041660809091015292915050565b6060600380548060200260200160405190810160405280929190818152602001828054801561061b57602002820191905f5260205f20905b815481526020019060010190808311610737575050505050905090565b60605f80548060200260200160405190810160405280929190818152602001828054801561061b57602002820191905f5260205f20905f905b825461010083900a900460ff1681526020600192830181810494850194909303909202910180841161078d5790505050505050905090565b6060600680548060200260200160405190810160405280929190818152602001828054801561061b57602002820191905f5260205f20905f905b82829054906101000a90046001600160401b03166001600160401b0316815260200190600801906020826007010492830192600103820291508084116107ff5790505050505050905090565b604051632392b61b60e21b8152600360048201525f9073__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af415801561089b573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906105909190610e35565b5f8181526008602090815260409182902080548351818402810184019094528084526060939283018282801561094357602002820191905f5260205f20905f905b82829054906101000a90046001600160401b03166001600160401b0316815260200190600801906020826007010492830192600103820291508084116109005790505b50505050509050919050565b5f806001600160401b0383165f90815260076020526040902054600160401b900460ff16600381111561098457610984610bd1565b141592915050565b60405163cdc23e6960e01b81525f9073__$9a094f9b231ed0f5f85a69be8408d93180$__9063cdc23e69906109c5908590600401610b74565b602060405180830381865af41580156109e0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a049190610e50565b92915050565b5f73__$1d92393fa9ccd763988368ce8a1cb90d26$__63dda777d383610a2e61084b565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865af4158015610a71573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a049190610e67565b6001600160401b0381168114610aa9575f80fd5b50565b5f8060408385031215610abd575f80fd5b823591506020830135610acf81610a95565b809150509250929050565b602080825282518282018190525f918401906040840190835b81811015610b3b578351805184526020808201516001600160e01b0319168186015260409182015164ffffffffff169185019190915290930192606090920191600101610af3565b509095945050505050565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f610b866020830184610b46565b9392505050565b60ff81168114610aa9575f80fd5b5f60208284031215610bab575f80fd5b8135610b8681610b8d565b5f60208284031215610bc6575f80fd5b8135610b8681610a95565b634e487b7160e01b5f52602160045260245ffd5b81516001600160401b03168152602082015160c082019060048110610c1857634e487b7160e01b5f52602160045260245ffd5b8060208401525063ffffffff6040840151166040830152606083015160608301526080830151610c51608084018264ffffffffff169052565b5060a0830151610c6a60a084018264ffffffffff169052565b5092915050565b5f60208284031215610c81575f80fd5b5035919050565b602080825282518282018190525f918401906040840190835b81811015610b3b578351835260209384019390920191600101610ca1565b602080825282518282018190525f918401906040840190835b81811015610b3b57835160ff16835260209384019390920191600101610cd8565b602080825282518282018190525f918401906040840190835b81811015610b3b5783516001600160401b0316835260209384019390920191600101610d12565b634e487b7160e01b5f52604160045260245ffd5b5f60208284031215610d5d575f80fd5b81356001600160401b03811115610d72575f80fd5b8201601f81018413610d82575f80fd5b80356001600160401b03811115610d9b57610d9b610d39565b604051601f8201601f19908116603f011681016001600160401b0381118282101715610dc957610dc9610d39565b604052818152828201602001861015610de0575f80fd5b816020840160208301375f91810160200191909152949350505050565b600181811c90821680610e1157607f821691505b602082108103610e2f57634e487b7160e01b5f52602260045260245ffd5b50919050565b5f60208284031215610e45575f80fd5b8151610b8681610b8d565b5f60208284031215610e60575f80fd5b5051919050565b5f60208284031215610e77575f80fd5b8151610b8681610a9556fea26469706673582212201371ade006962c7dc4df665743fcfd9f254bf608bc086273274ba2ad7815328864736f6c634300081a0033",
680
+ "bytecode": "0x610100604052600b60c09081526a086dedae0dedccadce8a8d60ab1b60e052600e9061002b9082613253565b50348015610037575f80fd5b50604080518082019091526008815267496e7374616e636560c01b6020820152600a6003604051806060016040528060288152602001614c88602891395f808585858583515f0361009b5760405163c0348f3560e01b815260040160405180910390fd5b6101158373__$0d958e68cba84670b8f4a3f2f2686b1c6b$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af41580156100e6573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061010a919061331b565b60ff90811691161490565b15610133576040516302e3f24160e11b815260040160405180910390fd5b73__$b659da7d8a6d2d32aa6c1e17da23dc2174$__63bb41432a6040518163ffffffff1660e01b8152600401602060405180830381865af415801561017a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061019e919061331b565b604051632b10f60d60e21b815260ff909116600482015273__$b659da7d8a6d2d32aa6c1e17da23dc2174$__9063ac43d83490602401602060405180830381865af41580156101ef573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906102139190613336565b8260ff161080610305575073__$b659da7d8a6d2d32aa6c1e17da23dc2174$__63fbcaa8ed6040518163ffffffff1660e01b8152600401602060405180830381865af4158015610265573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610289919061331b565b604051632b10f60d60e21b815260ff909116600482015273__$b659da7d8a6d2d32aa6c1e17da23dc2174$__9063ac43d83490602401602060405180830381865af41580156102da573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906102fe9190613336565b8260ff1610155b1561032d57604051636164474d60e01b815260ff831660048201526024015b60405180910390fd5b602881511461035157806040516369306ec360e01b8152600401610324919061337b565b6103916301ffc9a760e01b5f9081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b62d1d15b60e11b5f9081526020527fbfdfbaeb6ce3cef2dc92e70fc8227f58737fb6598199eb8999f7714e506efecb805460ff1916600117905560026103d78582613253565b5060405163cdc23e6960e01b815273__$9a094f9b231ed0f5f85a69be8408d93180$__9063cdc23e699061040f90879060040161337b565b602060405180830381865af415801561042a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061044e9190613336565b60035560ff808416608052821660a052600161046a8282613253565b506104b4610476610990565b6104af610481610990565b6001806104aa60408051808201909152600981526841646d696e526f6c6560b81b602082015290565b610a0a565b610be7565b6104f46104bf610d2d565b6104af6104ca610990565b6001806104aa60408051808201909152600a8152695075626c6963526f6c6560b01b602082015290565b5050600d80546001600160401b031916600a179055505081156107505760405163037c8cb160e51b815260ff8616600482015273__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90636f91962090602401602060405180830381865af4158015610561573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610585919061338d565b156105a3576040516302e3f24160e11b815260040160405180910390fd5b6040516368aebf7b60e01b81526201adb060048201525f9073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b90602401602060405180830381865af41580156105f5573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061061991906133c7565b90505f6106ae6002805461062c906131d0565b80601f0160208091040260200160405190810160405280929190818152602001828054610658906131d0565b80156106a35780601f1061067a576101008083540402835291602001916106a3565b820191905f5260205f20905b81548152906001019060200180831161068657829003601f168201915b5050610d6f92505050565b9050610749600280546106c0906131d0565b80601f01602080910402602001604051908101604052809291908181526020018280546106ec906131d0565b80156107375780601f1061070e57610100808354040283529160200191610737565b820191905f5260205f20905b81548152906001019060200180831161071a57829003601f168201915b50505050508383610db760201b60201c565b50506107e2565b6107e260028054610760906131d0565b80601f016020809104026020016040519081016040528092919081815260200182805461078c906131d0565b80156107d75780601f106107ae576101008083540402835291602001916107d7565b820191905f5260205f20905b8154815290600101906020018083116107ba57829003601f168201915b5050610f4d92505050565b6107ea611068565b6107f26110ea565b6107fa6111a2565b61080261124c565b8015610945578560405160200161081991906133f7565b604051602081830303815290604052600e90816108369190613253565b5060405163cdc23e6960e01b815273__$9a094f9b231ed0f5f85a69be8408d93180$__9063cdc23e699061086f90600e90600401613414565b602060405180830381865af415801561088a573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108ae9190613336565b600f55600e805461094591906108c3906131d0565b80601f01602080910402602001604051908101604052809291908181526020018280546108ef906131d0565b801561093a5780601f106109115761010080835404028352916020019161093a565b820191905f5260205f20905b81548152906001019060200180831161091d57829003601f168201915b505061127492505050565b635a183bdb60e11b5f9081526020527f7eca8d71090247e4ddb022896f9503bf26cbfa0d8fb0110212f077e5ed799af8805460ff191660011790555050505050506137a1565b600a90565b6040516368aebf7b60e01b81525f600482018190529073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b906024015b602060405180830381865af41580156109e1573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a0591906133c7565b905090565b6040805160c0810182525f80825260208201819052918101829052606081018290526080810182905260a08101919091526040518060c00160405280866001600160401b03168152602001856003811115610a6757610a6761349b565b81526020018463ffffffff16815260200173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__639fa6a6e36040518163ffffffff1660e01b8152600401602060405180830381865af4158015610abf573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ae391906134c3565b64ffffffffff16815260200173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__636ac5db196040518163ffffffff1660e01b8152600401602060405180830381865af4158015610b36573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b5a91906134c3565b64ffffffffff16815260200173__$9a094f9b231ed0f5f85a69be8408d93180$__63cdc23e69856040518263ffffffff1660e01b8152600401610b9d919061337b565b602060405180830381865af4158015610bb8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bdc9190613336565b905295945050505050565b6006805460018101909155600481047ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180546001600160401b0380861660086003958616026101000a81810290830219909316929092179092555f9081526007602090815260409091208451815493166001600160401b03198416811782559185015185949193909284926001600160481b0319909216179068010000000000000000908490811115610c9d57610c9d61349b565b0217905550604082015181546060840151608085015164ffffffffff908116600160901b0264ffffffffff60901b19919092166d01000000000000000000000000000264ffffffffff60681b1963ffffffff90951669010000000000000000000294909416600160481b600160901b031990931692909217929092171617815560a0909101516001909101555050565b6040516368aebf7b60e01b81526001600160401b0360048201525f9073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b906024016109c6565b565b606081604051806040016040528060058152602001645f526f6c6560d81b815250604051602001610da19291906134dc565b6040516020818303038152906040529050919050565b60405163cdc23e6960e01b81525f9073__$9a094f9b231ed0f5f85a69be8408d93180$__9063cdc23e6990610df090879060040161337b565b602060405180830381865af4158015610e0b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e2f9190613336565b6008805460018181019092557ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee3018290555f82815260096020908152604091829020805460ff1916909317909255805163bc1b392d60e01b81529051929350610f0492869273__$1d92393fa9ccd763988368ce8a1cb90d26$__9263bc1b392d92600480830193928290030181865af4158015610ece573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ef291906133c7565b6001600160401b039081169116141590565b15610f4757610f12836112f9565b610f2057610f20838361133b565b5f818152600a6020526040902080546001600160401b0319166001600160401b0385161790555b50505050565b600d80545f9173__$1d92393fa9ccd763988368ce8a1cb90d26$__916368aebf7b916001600160401b039091169084610f85836134f8565b91906101000a8154816001600160401b0302191690836001600160401b031602179055506040518263ffffffff1660e01b8152600401610fd491906001600160401b0391909116815260200190565b602060405180830381865af4158015610fef573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061101391906133c7565b90505f82604051806040016040528060058152602001645f526f6c6560d81b8152506040516020016110469291906134dc565b60408051601f198184030181529190529050611063838383610db7565b505050565b611073600a80611358565b61107f6028600b611358565b61108b600b600c611358565b611097600e600d611358565b6110a3600d600e611358565b6110ae600f80611358565b6110ba60166010611358565b6110c6602c6011611358565b6110d260146012611358565b6110de60156013611358565b610d6d602d6014611358565b610d6d6110f56115bd565b73__$7ca0443fea8aec4ba68c2e8d18c5a8d73e$__635a819662611117610990565b60035f60405180604001604052806011815260200170496e7374616e63654f776e6572526f6c6560781b8152506040518563ffffffff1660e01b8152600401611163949392919061352f565b60c060405180830381865af415801561117e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104af91906135e0565b60408051808201909152600d81526c24b739ba30b731b2a0b236b4b760991b60208201526111cf90611274565b60408051808201909152600d81526c496e7374616e636553746f726560981b60208201526111fc90611274565b604080518082019091526009815268109d5b991b1954d95d60ba1b602082015261122590611274565b604080518082019091526007815266149a5cdad4d95d60ca1b6020820152610d6d90611274565b6112546115f7565b61125c611a27565b611264611d2f565b61126c6129c4565b610d6d612b31565b6112f68173__$1d92393fa9ccd763988368ce8a1cb90d26$__63bc1b392d6040518163ffffffff1660e01b8152600401602060405180830381865af41580156112bf573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112e391906133c7565b60408051602081019091525f8152610db7565b50565b5f806001600160401b0383165f9081526007602052604090205468010000000000000000900460ff1660038111156113335761133361349b565b141592915050565b611354826104af61134a610990565b6002600186610a0a565b5050565b6004805460018101825560208082047f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b01805460ff808816601f9095166101000a8581029102199091161790555f91825260059052604080822080546001600160a01b0386166001600160a01b031990911617905551632b95d28f60e21b8152909173__$0d958e68cba84670b8f4a3f2f2686b1c6b$__91630c3258f991839163ae574a3c916114139189910160ff91909116815260200190565b5f60405180830381865af415801561142d573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052611454919081019061366b565b6040805180820190915260078152665365727669636560c81b602082015261147a612ca2565b6040518463ffffffff1660e01b8152600401611498939291906136fd565b5f60405180830381865af41580156114b2573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526114d9919081019061366b565b90506110638173__$1d92393fa9ccd763988368ce8a1cb90d26$__63645ceefe86611502612ca2565b6040516001600160e01b031960e085901b16815260ff928316600482015291166024820152604401602060405180830381865af4158015611545573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061156991906133c7565b83604051806040016040528060058152602001645f526f6c6560d81b8152506040516020016115999291906134dc565b60408051601f19818403018152919052610db7565b602890565b601690565b602c90565b6040516368aebf7b60e01b8152600560048201525f9073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b906024016109c6565b5f61162f60405180604001604052806008815260200167496e7374616e636560c01b81525061162a610d2d60201b60201c565b612d1f565b905061167081635d96628960e01b6040518060400160405280600f81526020016e1c9959da5cdd195c941c9bd91d58dd608a1b815250612e3360201b60201c565b60408051808201909152601581527f75706772616465496e7374616e6365526561646572000000000000000000000060208201526116b890829063c265172560e01b90612e33565b60408051808201909152601781527f7365745374616b696e674c6f636b696e67506572696f6400000000000000000060208201526117009082906305aec9df60e31b90612e33565b60408051808201909152601481527f7365745374616b696e675265776172645261746500000000000000000000000060208201526117489082906311f7784360e01b90612e33565b60408051808201909152601381527f7365745374616b696e674d6178416d6f756e74000000000000000000000000006020820152611790908290637de45f1360e01b90612e33565b60408051808201909152601b81527f726566696c6c5374616b696e675265776172645265736572766573000000000060208201526117d89082906327c5c55d60e11b90612e33565b60408051808201909152601d81527f77697468647261775374616b696e675265776172645265736572766573000000602082015261182090829063e52ba1cb60e01b90612e33565b60408051808201909152600a815269637265617465526f6c6560b01b60208201526118559082906307d2075960e21b90612e33565b60408051808201909152600d81526c736574526f6c6541637469766560981b602082015261188d9082906311effbc960e11b90612e33565b6040805180820190915260098152686772616e74526f6c6560b81b60208201526118c1908290630b428b0b60e41b90612e33565b60408051808201909152600a8152697265766f6b65526f6c6560b01b60208201526118f6908290635be958b160e11b90612e33565b60408051808201909152600c81526b18dc99585d1955185c99d95d60a21b602082015261192d9082906317ea2ab560e21b90612e33565b604080518082019091526012815271617574686f72697a6546756e6374696f6e7360701b602082015261196a90829063f4b4ee4d60e01b90612e33565b60408051808201909152601481527f756e617574686f72697a6546756e6374696f6e7300000000000000000000000060208201526119b2908290633c54fe0960e21b90612e33565b604080518082019091526008815267496e7374616e636560c01b60208201526119e49061162a600a613010565b613010565b90506112f68163f7bc431c60e01b6040518060400160405280601181526020017039b2ba24b739ba30b731b2a932b0b232b960791b815250612e3360201b60201c565b5f611a626040518060400160405280600d81526020016c24b739ba30b731b2a0b236b4b760991b81525061162a6119df61098b60201b60201c565b9050611a9e81631f481d6460e01b6040518060400160405280600a815260200169637265617465526f6c6560b01b815250612e3360201b60201c565b60408051808201909152600d81526c736574526f6c6541637469766560981b6020820152611ad69082906311effbc960e11b90612e33565b6040805180820190915260098152686772616e74526f6c6560b81b6020820152611b0a908290630b428b0b60e41b90612e33565b60408051808201909152600a8152697265766f6b65526f6c6560b01b6020820152611b3f908290635be958b160e11b90612e33565b60408051808201909152600c81526b18dc99585d1955185c99d95d60a21b6020820152611b769082906317ea2ab560e21b90612e33565b604080518082019091526012815271617574686f72697a6546756e6374696f6e7360701b6020820152611bb390829063f4b4ee4d60e01b90612e33565b60408051808201909152601481527f756e617574686f72697a6546756e6374696f6e730000000000000000000000006020820152611bfb908290633c54fe0960e21b90612e33565b60408051808201909152600f81526e1cd95d15185c99d95d131bd8dad959608a1b6020820152611c35908290638689231360e01b90612e33565b6040805180820190915260118152701cd95d125b9cdd185b98d9531bd8dad959607a1b6020820152611c719082906396cdfa3f60e01b90612e33565b60408051808201909152600d81526c24b739ba30b731b2a0b236b4b760991b6020820152611ca39061162a600b613010565b9050611cf2816366704a7d60e01b6040518060400160405280601b81526020017f696e697469616c697a65436f6d706f6e656e74417574686f72697a0000000000815250612e3360201b60201c565b6040805180820190915260128152711cd95d10dbdb5c1bdb995b9d131bd8dad95960721b60208201526112f6908290630d99633160e01b90612e33565b5f611d6a6040518060400160405280600d81526020016c496e7374616e636553746f726560981b81525061162a6119df6115ae60201b60201c565b9050611dab81639f8151e560e01b6040518060400160405280600f81526020016e696e63726561736542616c616e636560881b815250612e3360201b60201c565b60408051808201909152600f81526e646563726561736542616c616e636560881b6020820152611de590829063b0628dc360e01b90612e33565b60408051808201909152600c81526b696e6372656173654665657360a01b6020820152611e1c90829063e80c61ed60e01b90612e33565b60408051808201909152600c81526b64656372656173654665657360a01b6020820152611e539082906314cc21b560e21b90612e33565b60408051808201909152600d81526c496e7374616e636553746f726560981b6020820152611e859061162a600b613010565b9050611ec68163e2586c5860e01b6040518060400160405280600f81526020016e18dc99585d1950dbdb5c1bdb995b9d608a1b815250612e3360201b60201c565b60408051808201909152600f81526e1d5c19185d1950dbdb5c1bdb995b9d608a1b6020820152611f0090829063623e7a0f60e01b90612e33565b60408051808201909152600a81526918dc99585d19541bdbdb60b21b6020820152611f35908290631242102d60e21b90612e33565b60408051808201909152600d81526c18dc99585d19541c9bd91d58dd609a1b6020820152611f6d908290637f1773c960e11b90612e33565b60408051808201909152600d81526c1d5c19185d19541c9bd91d58dd609a1b6020820152611fa590829063659743e960e11b90612e33565b60408051808201909152600981526863726561746546656560b81b6020820152611fd9908290631aa4116360e01b90612e33565b60408051808201909152600981526875706461746546656560b81b602082015261200d908290633aed070360e21b90612e33565b60408051808201909152600d81526c496e7374616e636553746f726560981b602082015261203f9061162a600e613010565b905061208e81634bb2d19760e01b6040518060400160405280601581526020017f6372656174654469737472696275746f72547970650000000000000000000000815250612e3360201b60201c565b60408051808201909152601581527f7570646174654469737472696275746f7254797065000000000000000000000060208201526120d6908290637d417f0d60e01b90612e33565b60408051808201909152601a81527f7570646174654469737472696275746f72547970655374617465000000000000602082015261211e90829063a284222960e01b90612e33565b60408051808201909152601181527031b932b0ba32a234b9ba3934b13aba37b960791b602082015261215a908290633e6cff8f60e21b90612e33565b6040805180820190915260118152703ab83230ba32a234b9ba3934b13aba37b960791b6020820152612196908290630af38b5f60e21b90612e33565b60408051808201909152601681527f7570646174654469737472696275746f7253746174650000000000000000000060208201526121de9082906340529b0f60e01b90612e33565b60408051808201909152600e81526d18dc99585d19549959995c9c985b60921b602082015261221790829063254121c960e11b90612e33565b60408051808201909152600e81526d1d5c19185d19549959995c9c985b60921b6020820152612250908290639626055960e01b90612e33565b60408051808201909152601381527f757064617465526566657272616c537461746500000000000000000000000000602082015261229790829062af902560e81b90612e33565b60408051808201909152600d81526c496e7374616e636553746f726560981b60208201526122ca9061162a6119df600d90565b905061230981633477771260e01b6040518060400160405280600d81526020016c18dc99585d1954995c5d595cdd609a1b815250612e3360201b60201c565b60408051808201909152600d81526c1d5c19185d1954995c5d595cdd609a1b6020820152612341908290633998226560e11b90612e33565b60408051808201909152601281527175706461746552657175657374537461746560701b602082015261237e908290635a6bf7f160e11b90612e33565b60408051808201909152600d81526c496e7374616e636553746f726560981b60208201526123b09061162a600f613010565b90506123ec816396f4df2f60e01b6040518060400160405280600a8152602001691d5c19185d19541bdbdb60b21b815250612e3360201b60201c565b60408051808201909152600d81526c496e7374616e636553746f726560981b602082015261241e9061162a6016613010565b905061245c8163d7719f4660e01b6040518060400160405280600c81526020016b63726561746542756e646c6560a01b815250612e3360201b60201c565b60408051808201909152600c81526b75706461746542756e646c6560a01b60208201526124939082906308077cd960e01b90612e33565b60408051808201909152601181527075706461746542756e646c65537461746560781b60208201526124cf908290637f0f8c6b60e11b90612e33565b60408051808201909152600e81526d1a5b98dc99585cd9531bd8dad95960921b602082015261250890829063248a77dd60e01b90612e33565b60408051808201909152600e81526d191958dc99585cd9531bd8dad95960921b60208201526125419082906353ebe12960e01b90612e33565b60408051808201909152600d81526c496e7374616e636553746f726560981b60208201526125739061162a602c613010565b90506125af8163ea11332260e01b6040518060400160405280600a8152602001696372656174655269736b60b01b815250612e3360201b60201c565b60408051808201909152600a8152697570646174655269736b60b01b60208201526125e490829063555e559160e01b90612e33565b60408051808201909152600f81526e7570646174655269736b537461746560881b602082015261261e908290633e77a42160e11b90612e33565b60408051808201909152600d81526c496e7374616e636553746f726560981b60208201526126509061162a6014613010565b905061269381639505838e60e01b6040518060400160405280601181526020017031b932b0ba32a0b8383634b1b0ba34b7b760791b815250612e3360201b60201c565b6040805180820190915260118152703ab83230ba32a0b8383634b1b0ba34b7b760791b60208201526126cf9082906331d7a68760e21b90612e33565b60408051808201909152601681527f7570646174654170706c69636174696f6e5374617465000000000000000000006020820152612717908290630fad0eb160e01b90612e33565b60408051808201909152600d81526c496e7374616e636553746f726560981b60208201526127499061162a6015613010565b90506127878163036b1ffb60e01b6040518060400160405280600c81526020016b757064617465506f6c69637960a01b815250612e3360201b60201c565b604080518082019091526011815270757064617465506f6c696379537461746560781b60208201526127c3908290631750d17360e21b90612e33565b60408051808201909152600d81526c6372656174655072656d69756d60981b60208201526127fb908290634d4a7ae960e01b90612e33565b6040805180820190915260128152717570646174655072656d69756d537461746560701b6020820152612838908290632ae5819d60e01b90612e33565b60408051808201909152600d81526c496e7374616e636553746f726560981b602082015261286a9061162a602d613010565b90506128ae8163297023ef60e01b60405180604001604052806012815260200171757064617465506f6c696379436c61696d7360701b815250612e3360201b60201c565b60408051808201909152600b81526a637265617465436c61696d60a81b60208201526128e4908290631c7c815560e01b90612e33565b60408051808201909152600b81526a757064617465436c61696d60a81b602082015261291a9082906355f78dd960e11b90612e33565b60408051808201909152600c81526b18dc99585d1954185e5bdd5d60a21b602082015261295190829063599f7a0d60e11b90612e33565b60408051808201909152600c81526b1d5c19185d1954185e5bdd5d60a21b6020820152612988908290630ccd44d760e01b90612e33565b6040805180820190915260118152707570646174655061796f7574537461746560781b60208201526112f690829063353e5b7560e01b90612e33565b5f6129fb60405180604001604052806009815260200168109d5b991b1954d95d60ba1b81525061162a6119df6115b360201b60201c565b9050612a3081638de1d14e60e01b6040518060400160405280600381526020016218591960ea1b815250612e3360201b60201c565b6040805180820190915260048152636c6f636b60e01b6020820152612a5f90829063b5346af560e01b90612e33565b604080518082019091526006815265756e6c6f636b60d01b6020820152612a909082906306fa456560e01b90612e33565b604080518082019091526009815268109d5b991b1954d95d60ba1b6020820152612abe9061162a6015613010565b9050612afa8163ff4fe25c60e01b6040518060400160405280600a8152602001696c696e6b506f6c69637960b01b815250612e3360201b60201c565b60408051808201909152600c81526b756e6c696e6b506f6c69637960a01b60208201526112f690829063752723bf60e11b90612e33565b5f612b6660405180604001604052806007815260200166149a5cdad4d95d60ca1b81525061162a6119df6115b860201b60201c565b9050612b9b8163d0c9bd7660e01b6040518060400160405280600381526020016218591960ea1b815250612e3360201b60201c565b60408051808201909152600a8152696465616374697661746560b01b6020820152612bd0908290631b3c292760e11b90612e33565b604080518082019091526008815267616374697661746560c01b6020820152612c03908290630100d3b560e51b90612e33565b604080518082019091526007815266149a5cdad4d95d60ca1b6020820152612c2f9061162a6015613010565b9050612c6b81639ad7533f60e01b6040518060400160405280600a8152602001696c696e6b506f6c69637960b01b815250612e3360201b60201c565b60408051808201909152600c81526b756e6c696e6b506f6c69637960a01b60208201526112f690829063903a264b60e01b90612e33565b60a051604051632392b61b60e21b81525f9173__$b659da7d8a6d2d32aa6c1e17da23dc2174$__91638e4ad86c91612ce09160040190815260200190565b602060405180830381865af4158015612cfb573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a05919061331b565b5f8073__$9a094f9b231ed0f5f85a69be8408d93180$__63cdc23e69856040518263ffffffff1660e01b8152600401612d58919061337b565b602060405180830381865af4158015612d73573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612d979190613336565b5f818152600c602090815260408083206001600160401b038816845290915281205491925003612e0a575f818152600b602090815260408220805460018101825590835291206004820401805460039092166008026101000a6001600160401b0381810219909316928616029190911790555b5f908152600c602090815260408083206001600160401b03861684529091529020905092915050565b60408051606081019182905263cdc23e6960e01b90915283908073__$9a094f9b231ed0f5f85a69be8408d93180$__63cdc23e69612e74866064850161337b565b602060405180830381865af4158015612e8f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612eb39190613336565b8152604051636b15ee8b60e01b81526001600160e01b03198616600482015260209091019073__$0904195350e4c23ecb1d51df0a32586dcd$__90636b15ee8b90602401602060405180830381865af4158015612f12573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612f369190613735565b6001600160e01b031916815260200173__$91d01b1eccbca8d6f94a5eb2a0acb040e9$__639fa6a6e36040518163ffffffff1660e01b8152600401602060405180830381865af4158015612f8c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612fb091906134c3565b64ffffffffff9081169091528254600181810185555f94855260209485902084516002909302019182559383015193018054604090930151909116640100000000026001600160481b031990921660e09390931c92909217179055505050565b5f61301c82606361010a565b1561302f57613029610d2d565b92915050565b5f6130398361305b565b5f818152600a60205260409020549091506001600160401b03165b9392505050565b604051632b95d28f60e21b815260ff821660048201525f90819073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90630c3258f990829063ae574a3c906024015f60405180830381865af41580156130b6573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526130dd919081019061366b565b6130e5612ca2565b6040518363ffffffff1660e01b815260040161310292919061375c565b5f60405180830381865af415801561311c573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052613143919081019061366b565b60405163cdc23e6960e01b815290915073__$9a094f9b231ed0f5f85a69be8408d93180$__9063cdc23e699061317d90849060040161337b565b602060405180830381865af4158015613198573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906130549190613336565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806131e457607f821691505b60208210810361320257634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561106357805f5260205f20601f840160051c8101602085101561322d5750805b601f840160051c820191505b8181101561324c575f8155600101613239565b5050505050565b81516001600160401b0381111561326c5761326c6131bc565b6132808161327a84546131d0565b84613208565b6020601f8211600181146132b2575f831561329b5750848201515b5f19600385901b1c1916600184901b17845561324c565b5f84815260208120601f198516915b828110156132e157878501518255602094850194600190920191016132c1565b50848210156132fe57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b60ff811681146112f6575f80fd5b5f6020828403121561332b575f80fd5b81516130548161330d565b5f60208284031215613346575f80fd5b5051919050565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f613054602083018461334d565b5f6020828403121561339d575f80fd5b81518015158114613054575f80fd5b80516001600160401b03811681146133c2575f80fd5b919050565b5f602082840312156133d7575f80fd5b613054826133ac565b5f81518060208401855e5f93019283525090919050565b5f61340282846133e0565b610a8d60f31b81526002019392505050565b602081525f808354613425816131d0565b806020860152600182165f8114613443576001811461345f57613490565b60ff1983166040870152604082151560051b8701019350613490565b865f5260205f205f5b8381101561348757815488820160400152600190910190602001613468565b87016040019450505b509195945050505050565b634e487b7160e01b5f52602160045260245ffd5b805164ffffffffff811681146133c2575f80fd5b5f602082840312156134d3575f80fd5b613054826134af565b5f6134f06134ea83866133e0565b846133e0565b949350505050565b5f6001600160401b0382166002600160401b0319810161352657634e487b7160e01b5f52601160045260245ffd5b60010192915050565b6001600160401b03851681525f6004851061355857634e487b7160e01b5f52602160045260245ffd5b84602083015263ffffffff841660408301526080606083015261357e608083018461334d565b9695505050505050565b60405160c081016001600160401b03811182821017156135aa576135aa6131bc565b60405290565b604051601f8201601f191681016001600160401b03811182821017156135d8576135d86131bc565b604052919050565b5f60c08284031280156135f1575f80fd5b506135fa613588565b613603836133ac565b8152602083015160048110613616575f80fd5b6020820152604083015163ffffffff81168114613631575f80fd5b6040820152613642606084016134af565b6060820152613653608084016134af565b608082015260a0928301519281019290925250919050565b5f6020828403121561367b575f80fd5b81516001600160401b03811115613690575f80fd5b8201601f810184136136a0575f80fd5b80516001600160401b038111156136b9576136b96131bc565b6136cc601f8201601f19166020016135b0565b8181528560208385010111156136e0575f80fd5b8160208401602083015e5f91810160200191909152949350505050565b606081525f61370f606083018661334d565b8281036020840152613721818661334d565b91505060ff83166040830152949350505050565b5f60208284031215613745575f80fd5b81516001600160e01b031981168114613054575f80fd5b606081525f61376e606083018561334d565b828103602084015260078152665365727669636560c81b60208201526040810191505060ff831660408301529392505050565b60805160a0516114bf6137c95f395f610be701525f8181610387015261054301526114bf5ff3fe608060405234801561000f575f80fd5b506004361061021e575f3560e01c8063710613981161012a578063b79e1494116100b4578063da44d6af11610079578063da44d6af146105e4578063e8eba435146105ec578063e9b891a8146105ff578063f1d0102714610627578063fef303341461062f575f80fd5b8063b79e149414610567578063c5f348441461056f578063c6a0017914610593578063d0540443146105a6578063da1b620b146105d1575f80fd5b80638c5397b0116100fa5780638c5397b0146104f5578063a43e328114610508578063aa689ae514610512578063b1040cf814610539578063b68d180914610541575f80fd5b8063710613981461048557806376b707b71461049a578063775f14b1146104a257806384be8c00146104e2575f80fd5b806352a9674b116101ab5780635c935ce01161017b5780635c935ce014610414578063608b081e1461042757806363fe3b561461045357806368c55b1314610468578063694ca5d31461047d575f80fd5b806352a9674b1461038257806354daf4c9146103bb57806354e17da9146103e15780635bfa5027146103f4575f80fd5b80632f8ade12116101f15780632f8ade12146103035780633a591cf81461032f5780634322699b146103375780634a34a4de1461034957806350a388ea1461036f575f80fd5b806301ffc9a714610222578063131021d91461026357806313efdd7a146102a05780631e4afbbf146102e3575b5f80fd5b61024e610230366004610f4b565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b61029360405180604001604052806011815260200170496e7374616e63654f776e6572526f6c6560781b81525081565b60405161025a9190610fa0565b6102cb6102ae366004610fc3565b60ff165f908152600560205260409020546001600160a01b031690565b6040516001600160a01b03909116815260200161025a565b6102f66102f1366004610ff2565b610637565b60405161025a9190611020565b6102936040518060400160405280600d81526020016c496e7374616e636553746f726560981b81525081565b6102936106e4565b6003545b60405190815260200161025a565b610293604051806040016040528060078152602001665365727669636560c81b81525081565b61029361037d36600461108c565b610774565b6103a97f000000000000000000000000000000000000000000000000000000000000000081565b60405160ff909116815260200161025a565b61029360405180604001604052806007815260200166149a5cdad4d95d60ca1b81525081565b61033b6103ef366004610fc3565b610813565b61040761040236600461108c565b61097b565b60405161025a91906110bb565b61024e610422366004611145565b610a54565b6102936040518060400160405280600d81526020016c24b739ba30b731b2a0b236b4b760991b81525081565b61045b610a7c565b60405161025a919061115c565b610470610ad1565b60405161025a9190611193565b610293610b43565b61048d610b52565b60405161025a91906111cd565b6103a9610bd8565b6104ca6104b0366004611145565b5f908152600a60205260409020546001600160401b031690565b6040516001600160401b03909116815260200161025a565b6103a96104f0366004611145565b610c70565b61048d610503366004611145565b610ca9565b6104ca6201adb081565b61029360405180604001604052806008815260200167496e7374616e636560c01b81525081565b600f5461033b565b7f00000000000000000000000000000000000000000000000000000000000000006103a9565b61033b602881565b610293604051806040016040528060058152602001645f526f6c6560d81b81525081565b61024e6105a136600461108c565b610d39565b6102936040518060400160405280600c81526020016b496e7374616e6365526f6c6560a01b81525081565b61033b6105df366004611277565b610d76565b61033b600381565b6104ca6105fa366004610fc3565b610dee565b61029360405180604001604052806009815260200168109d5b991b1954d95d60ba1b81525081565b610293610e2b565b610293610e3a565b5f828152600c602090815260408083206001600160401b03851684528252808320805482518185028101850190935280835260609492939192909184015b828210156106d8575f84815260209081902060408051606081018252600286029092018054835260019081015460e081901b6001600160e01b03191684860152640100000000900464ffffffffff16918301919091529083529092019101610675565b50505050905092915050565b6060600e80546106f3906112f0565b80601f016020809104026020016040519081016040528092919081815260200182805461071f906112f0565b801561076a5780601f106107415761010080835404028352916020019161076a565b820191905f5260205f20905b81548152906001019060200180831161074d57829003601f168201915b5050505050905090565b6001600160401b0381165f9081526007602052604090819020600101549051631623433d60e31b815260609173__$9a094f9b231ed0f5f85a69be8408d93180$__9163b11a19e8916107cc9160040190815260200190565b5f60405180830381865af41580156107e6573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261080d9190810190611328565b92915050565b604051632b95d28f60e21b815260ff821660048201525f90819073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90630c3258f990829063ae574a3c906024015f60405180830381865af415801561086e573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526108959190810190611328565b61089d610bd8565b6040518363ffffffff1660e01b81526004016108ba92919061139c565b5f60405180830381865af41580156108d4573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526108fb9190810190611328565b60405163cdc23e6960e01b815290915073__$9a094f9b231ed0f5f85a69be8408d93180$__9063cdc23e6990610935908490600401610fa0565b602060405180830381865af4158015610950573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061097491906113e1565b9392505050565b6040805160c080820183525f8083526020808401829052838501829052606084018290526080840182905260a084018290526001600160401b038681168352600782529185902085519384019095528454918216835292939192830190600160401b900460ff1660038111156109f3576109f36110a7565b6003811115610a0457610a046110a7565b8152815463ffffffff6901000000000000000000820416602083015264ffffffffff600160681b820481166040840152600160901b90910416606082015260019091015460809091015292915050565b5f610a6182600354610e56565b8061080d5750505f9081526009602052604090205460ff1690565b6060600880548060200260200160405190810160405280929190818152602001828054801561076a57602002820191905f5260205f20905b815481526020019060010190808311610ab4575050505050905090565b6060600480548060200260200160405190810160405280929190818152602001828054801561076a57602002820191905f5260205f20905f905b825461010083900a900460ff16815260206001928301818104948501949093039092029101808411610b0b5790505050505050905090565b6060600180546106f3906112f0565b6060600680548060200260200160405190810160405280929190818152602001828054801561076a57602002820191905f5260205f20905f905b82829054906101000a90046001600160401b03166001600160401b031681526020019060080190602082600701049283019260010382029150808411610b8c5790505050505050905090565b604051632392b61b60e21b81527f000000000000000000000000000000000000000000000000000000000000000060048201525f9073__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af4158015610c47573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c6b91906113f8565b905090565b5f60048281548110610c8457610c84611413565b905f5260205f2090602091828204019190069054906101000a900460ff169050919050565b5f818152600b6020908152604091829020805483518184028101840190945280845260609392830182828015610d2d57602002820191905f5260205f20905f905b82829054906101000a90046001600160401b03166001600160401b031681526020019060080190602082600701049283019260010382029150808411610cea5790505b50505050509050919050565b5f806001600160401b0383165f90815260076020526040902054600160401b900460ff166003811115610d6e57610d6e6110a7565b141592915050565b60405163cdc23e6960e01b81525f9073__$9a094f9b231ed0f5f85a69be8408d93180$__9063cdc23e6990610daf908590600401610fa0565b602060405180830381865af4158015610dca573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061080d91906113e1565b5f60ff8216606303610e025761080d610ed1565b5f610e0c83610813565b5f818152600a60205260409020549091506001600160401b0316610974565b6060600280546106f3906112f0565b6040518060600160405280602881526020016114626028913981565b6040516303447c0360e41b815260048101839052602481018290525f9073__$9a094f9b231ed0f5f85a69be8408d93180$__90633447c03090604401602060405180830381865af4158015610ead573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109749190611427565b6040516368aebf7b60e01b81526001600160401b0360048201525f9073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b90602401602060405180830381865af4158015610f27573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c6b9190611446565b5f60208284031215610f5b575f80fd5b81356001600160e01b031981168114610974575f80fd5b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f6109746020830184610f72565b60ff81168114610fc0575f80fd5b50565b5f60208284031215610fd3575f80fd5b813561097481610fb2565b6001600160401b0381168114610fc0575f80fd5b5f8060408385031215611003575f80fd5b82359150602083013561101581610fde565b809150509250929050565b602080825282518282018190525f918401906040840190835b81811015611081578351805184526020808201516001600160e01b0319168186015260409182015164ffffffffff169185019190915290930192606090920191600101611039565b509095945050505050565b5f6020828403121561109c575f80fd5b813561097481610fde565b634e487b7160e01b5f52602160045260245ffd5b81516001600160401b03168152602082015160c0820190600481106110ee57634e487b7160e01b5f52602160045260245ffd5b8060208401525063ffffffff6040840151166040830152606083015161111d606084018264ffffffffff169052565b506080830151611136608084018264ffffffffff169052565b5060a092830151919092015290565b5f60208284031215611155575f80fd5b5035919050565b602080825282518282018190525f918401906040840190835b81811015611081578351835260209384019390920191600101611175565b602080825282518282018190525f918401906040840190835b8181101561108157835160ff168352602093840193909201916001016111ac565b602080825282518282018190525f918401906040840190835b818110156110815783516001600160401b03168352602093840193909201916001016111e6565b634e487b7160e01b5f52604160045260245ffd5b604051601f8201601f191681016001600160401b03811182821017156112495761124961120d565b604052919050565b5f6001600160401b038211156112695761126961120d565b50601f01601f191660200190565b5f60208284031215611287575f80fd5b81356001600160401b0381111561129c575f80fd5b8201601f810184136112ac575f80fd5b80356112bf6112ba82611251565b611221565b8181528560208385010111156112d3575f80fd5b816020840160208301375f91810160200191909152949350505050565b600181811c9082168061130457607f821691505b60208210810361132257634e487b7160e01b5f52602260045260245ffd5b50919050565b5f60208284031215611338575f80fd5b81516001600160401b0381111561134d575f80fd5b8201601f8101841361135d575f80fd5b805161136b6112ba82611251565b81815285602083850101111561137f575f80fd5b8160208401602083015e5f91810160200191909152949350505050565b606081525f6113ae6060830185610f72565b828103602084015260078152665365727669636560c81b60208201526040810191505060ff831660408301529392505050565b5f602082840312156113f1575f80fd5b5051919050565b5f60208284031215611408575f80fd5b815161097481610fb2565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611437575f80fd5b81518015158114610974575f80fd5b5f60208284031215611456575f80fd5b815161097481610fde56fe31613161316131613161316131613161316131613161316131613161316131613161316131613161a264697066735822122067074d6e0b1752f098c7c1e9f9842146695c303da2dfec2978a55c63293d84b864736f6c634300081a003331613161316131613161316131613161316131613161316131613161316131613161316131613161",
681
+ "deployedBytecode": "0x608060405234801561000f575f80fd5b506004361061021e575f3560e01c8063710613981161012a578063b79e1494116100b4578063da44d6af11610079578063da44d6af146105e4578063e8eba435146105ec578063e9b891a8146105ff578063f1d0102714610627578063fef303341461062f575f80fd5b8063b79e149414610567578063c5f348441461056f578063c6a0017914610593578063d0540443146105a6578063da1b620b146105d1575f80fd5b80638c5397b0116100fa5780638c5397b0146104f5578063a43e328114610508578063aa689ae514610512578063b1040cf814610539578063b68d180914610541575f80fd5b8063710613981461048557806376b707b71461049a578063775f14b1146104a257806384be8c00146104e2575f80fd5b806352a9674b116101ab5780635c935ce01161017b5780635c935ce014610414578063608b081e1461042757806363fe3b561461045357806368c55b1314610468578063694ca5d31461047d575f80fd5b806352a9674b1461038257806354daf4c9146103bb57806354e17da9146103e15780635bfa5027146103f4575f80fd5b80632f8ade12116101f15780632f8ade12146103035780633a591cf81461032f5780634322699b146103375780634a34a4de1461034957806350a388ea1461036f575f80fd5b806301ffc9a714610222578063131021d91461026357806313efdd7a146102a05780631e4afbbf146102e3575b5f80fd5b61024e610230366004610f4b565b6001600160e01b0319165f9081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b61029360405180604001604052806011815260200170496e7374616e63654f776e6572526f6c6560781b81525081565b60405161025a9190610fa0565b6102cb6102ae366004610fc3565b60ff165f908152600560205260409020546001600160a01b031690565b6040516001600160a01b03909116815260200161025a565b6102f66102f1366004610ff2565b610637565b60405161025a9190611020565b6102936040518060400160405280600d81526020016c496e7374616e636553746f726560981b81525081565b6102936106e4565b6003545b60405190815260200161025a565b610293604051806040016040528060078152602001665365727669636560c81b81525081565b61029361037d36600461108c565b610774565b6103a97f000000000000000000000000000000000000000000000000000000000000000081565b60405160ff909116815260200161025a565b61029360405180604001604052806007815260200166149a5cdad4d95d60ca1b81525081565b61033b6103ef366004610fc3565b610813565b61040761040236600461108c565b61097b565b60405161025a91906110bb565b61024e610422366004611145565b610a54565b6102936040518060400160405280600d81526020016c24b739ba30b731b2a0b236b4b760991b81525081565b61045b610a7c565b60405161025a919061115c565b610470610ad1565b60405161025a9190611193565b610293610b43565b61048d610b52565b60405161025a91906111cd565b6103a9610bd8565b6104ca6104b0366004611145565b5f908152600a60205260409020546001600160401b031690565b6040516001600160401b03909116815260200161025a565b6103a96104f0366004611145565b610c70565b61048d610503366004611145565b610ca9565b6104ca6201adb081565b61029360405180604001604052806008815260200167496e7374616e636560c01b81525081565b600f5461033b565b7f00000000000000000000000000000000000000000000000000000000000000006103a9565b61033b602881565b610293604051806040016040528060058152602001645f526f6c6560d81b81525081565b61024e6105a136600461108c565b610d39565b6102936040518060400160405280600c81526020016b496e7374616e6365526f6c6560a01b81525081565b61033b6105df366004611277565b610d76565b61033b600381565b6104ca6105fa366004610fc3565b610dee565b61029360405180604001604052806009815260200168109d5b991b1954d95d60ba1b81525081565b610293610e2b565b610293610e3a565b5f828152600c602090815260408083206001600160401b03851684528252808320805482518185028101850190935280835260609492939192909184015b828210156106d8575f84815260209081902060408051606081018252600286029092018054835260019081015460e081901b6001600160e01b03191684860152640100000000900464ffffffffff16918301919091529083529092019101610675565b50505050905092915050565b6060600e80546106f3906112f0565b80601f016020809104026020016040519081016040528092919081815260200182805461071f906112f0565b801561076a5780601f106107415761010080835404028352916020019161076a565b820191905f5260205f20905b81548152906001019060200180831161074d57829003601f168201915b5050505050905090565b6001600160401b0381165f9081526007602052604090819020600101549051631623433d60e31b815260609173__$9a094f9b231ed0f5f85a69be8408d93180$__9163b11a19e8916107cc9160040190815260200190565b5f60405180830381865af41580156107e6573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f1916820160405261080d9190810190611328565b92915050565b604051632b95d28f60e21b815260ff821660048201525f90819073__$0d958e68cba84670b8f4a3f2f2686b1c6b$__90630c3258f990829063ae574a3c906024015f60405180830381865af415801561086e573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526108959190810190611328565b61089d610bd8565b6040518363ffffffff1660e01b81526004016108ba92919061139c565b5f60405180830381865af41580156108d4573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526108fb9190810190611328565b60405163cdc23e6960e01b815290915073__$9a094f9b231ed0f5f85a69be8408d93180$__9063cdc23e6990610935908490600401610fa0565b602060405180830381865af4158015610950573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061097491906113e1565b9392505050565b6040805160c080820183525f8083526020808401829052838501829052606084018290526080840182905260a084018290526001600160401b038681168352600782529185902085519384019095528454918216835292939192830190600160401b900460ff1660038111156109f3576109f36110a7565b6003811115610a0457610a046110a7565b8152815463ffffffff6901000000000000000000820416602083015264ffffffffff600160681b820481166040840152600160901b90910416606082015260019091015460809091015292915050565b5f610a6182600354610e56565b8061080d5750505f9081526009602052604090205460ff1690565b6060600880548060200260200160405190810160405280929190818152602001828054801561076a57602002820191905f5260205f20905b815481526020019060010190808311610ab4575050505050905090565b6060600480548060200260200160405190810160405280929190818152602001828054801561076a57602002820191905f5260205f20905f905b825461010083900a900460ff16815260206001928301818104948501949093039092029101808411610b0b5790505050505050905090565b6060600180546106f3906112f0565b6060600680548060200260200160405190810160405280929190818152602001828054801561076a57602002820191905f5260205f20905f905b82829054906101000a90046001600160401b03166001600160401b031681526020019060080190602082600701049283019260010382029150808411610b8c5790505050505050905090565b604051632392b61b60e21b81527f000000000000000000000000000000000000000000000000000000000000000060048201525f9073__$b659da7d8a6d2d32aa6c1e17da23dc2174$__90638e4ad86c90602401602060405180830381865af4158015610c47573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c6b91906113f8565b905090565b5f60048281548110610c8457610c84611413565b905f5260205f2090602091828204019190069054906101000a900460ff169050919050565b5f818152600b6020908152604091829020805483518184028101840190945280845260609392830182828015610d2d57602002820191905f5260205f20905f905b82829054906101000a90046001600160401b03166001600160401b031681526020019060080190602082600701049283019260010382029150808411610cea5790505b50505050509050919050565b5f806001600160401b0383165f90815260076020526040902054600160401b900460ff166003811115610d6e57610d6e6110a7565b141592915050565b60405163cdc23e6960e01b81525f9073__$9a094f9b231ed0f5f85a69be8408d93180$__9063cdc23e6990610daf908590600401610fa0565b602060405180830381865af4158015610dca573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061080d91906113e1565b5f60ff8216606303610e025761080d610ed1565b5f610e0c83610813565b5f818152600a60205260409020549091506001600160401b0316610974565b6060600280546106f3906112f0565b6040518060600160405280602881526020016114626028913981565b6040516303447c0360e41b815260048101839052602481018290525f9073__$9a094f9b231ed0f5f85a69be8408d93180$__90633447c03090604401602060405180830381865af4158015610ead573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109749190611427565b6040516368aebf7b60e01b81526001600160401b0360048201525f9073__$1d92393fa9ccd763988368ce8a1cb90d26$__906368aebf7b90602401602060405180830381865af4158015610f27573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c6b9190611446565b5f60208284031215610f5b575f80fd5b81356001600160e01b031981168114610974575f80fd5b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f6109746020830184610f72565b60ff81168114610fc0575f80fd5b50565b5f60208284031215610fd3575f80fd5b813561097481610fb2565b6001600160401b0381168114610fc0575f80fd5b5f8060408385031215611003575f80fd5b82359150602083013561101581610fde565b809150509250929050565b602080825282518282018190525f918401906040840190835b81811015611081578351805184526020808201516001600160e01b0319168186015260409182015164ffffffffff169185019190915290930192606090920191600101611039565b509095945050505050565b5f6020828403121561109c575f80fd5b813561097481610fde565b634e487b7160e01b5f52602160045260245ffd5b81516001600160401b03168152602082015160c0820190600481106110ee57634e487b7160e01b5f52602160045260245ffd5b8060208401525063ffffffff6040840151166040830152606083015161111d606084018264ffffffffff169052565b506080830151611136608084018264ffffffffff169052565b5060a092830151919092015290565b5f60208284031215611155575f80fd5b5035919050565b602080825282518282018190525f918401906040840190835b81811015611081578351835260209384019390920191600101611175565b602080825282518282018190525f918401906040840190835b8181101561108157835160ff168352602093840193909201916001016111ac565b602080825282518282018190525f918401906040840190835b818110156110815783516001600160401b03168352602093840193909201916001016111e6565b634e487b7160e01b5f52604160045260245ffd5b604051601f8201601f191681016001600160401b03811182821017156112495761124961120d565b604052919050565b5f6001600160401b038211156112695761126961120d565b50601f01601f191660200190565b5f60208284031215611287575f80fd5b81356001600160401b0381111561129c575f80fd5b8201601f810184136112ac575f80fd5b80356112bf6112ba82611251565b611221565b8181528560208385010111156112d3575f80fd5b816020840160208301375f91810160200191909152949350505050565b600181811c9082168061130457607f821691505b60208210810361132257634e487b7160e01b5f52602260045260245ffd5b50919050565b5f60208284031215611338575f80fd5b81516001600160401b0381111561134d575f80fd5b8201601f8101841361135d575f80fd5b805161136b6112ba82611251565b81815285602083850101111561137f575f80fd5b8160208401602083015e5f91810160200191909152949350505050565b606081525f6113ae6060830185610f72565b828103602084015260078152665365727669636560c81b60208201526040810191505060ff831660408301529392505050565b5f602082840312156113f1575f80fd5b5051919050565b5f60208284031215611408575f80fd5b815161097481610fb2565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611437575f80fd5b81518015158114610974575f80fd5b5f60208284031215611456575f80fd5b815161097481610fde56fe31613161316131613161316131613161316131613161316131613161316131613161316131613161a264697066735822122067074d6e0b1752f098c7c1e9f9842146695c303da2dfec2978a55c63293d84b864736f6c634300081a0033",
434
682
  "linkReferences": {
683
+ "contracts/authorization/AccessAdminLib.sol": {
684
+ "AccessAdminLib": [
685
+ {
686
+ "length": 20,
687
+ "start": 4343
688
+ }
689
+ ]
690
+ },
435
691
  "contracts/type/ObjectType.sol": {
436
692
  "ObjectTypeLib": [
437
693
  {
438
694
  "length": 20,
439
- "start": 1291
695
+ "start": 161
696
+ },
697
+ {
698
+ "length": 20,
699
+ "start": 1321
440
700
  },
441
701
  {
442
702
  "length": 20,
443
- "start": 1792
703
+ "start": 5084
704
+ },
705
+ {
706
+ "length": 20,
707
+ "start": 12407
708
+ },
709
+ {
710
+ "length": 20,
711
+ "start": 16376
444
712
  }
445
713
  ]
446
714
  },
@@ -448,27 +716,39 @@
448
716
  "RoleIdLib": [
449
717
  {
450
718
  "length": 20,
451
- "start": 552
719
+ "start": 1469
720
+ },
721
+ {
722
+ "length": 20,
723
+ "start": 2472
724
+ },
725
+ {
726
+ "length": 20,
727
+ "start": 3403
728
+ },
729
+ {
730
+ "length": 20,
731
+ "start": 3734
452
732
  },
453
733
  {
454
734
  "length": 20,
455
- "start": 874
735
+ "start": 3925
456
736
  },
457
737
  {
458
738
  "length": 20,
459
- "start": 1063
739
+ "start": 4730
460
740
  },
461
741
  {
462
742
  "length": 20,
463
- "start": 6342
743
+ "start": 5345
464
744
  },
465
745
  {
466
746
  "length": 20,
467
- "start": 7139
747
+ "start": 5589
468
748
  },
469
749
  {
470
750
  "length": 20,
471
- "start": 11505
751
+ "start": 18104
472
752
  }
473
753
  ]
474
754
  },
@@ -476,7 +756,7 @@
476
756
  "SelectorLib": [
477
757
  {
478
758
  "length": 20,
479
- "start": 6805
759
+ "start": 11994
480
760
  }
481
761
  ]
482
762
  },
@@ -484,27 +764,47 @@
484
764
  "StrLib": [
485
765
  {
486
766
  "length": 20,
487
- "start": 668
767
+ "start": 999
768
+ },
769
+ {
770
+ "length": 20,
771
+ "start": 2118
772
+ },
773
+ {
774
+ "length": 20,
775
+ "start": 2920
776
+ },
777
+ {
778
+ "length": 20,
779
+ "start": 3528
488
780
  },
489
781
  {
490
782
  "length": 20,
491
- "start": 1630
783
+ "start": 11555
492
784
  },
493
785
  {
494
786
  "length": 20,
495
- "start": 6424
787
+ "start": 11855
496
788
  },
497
789
  {
498
790
  "length": 20,
499
- "start": 6666
791
+ "start": 12629
500
792
  },
501
793
  {
502
794
  "length": 20,
503
- "start": 7343
795
+ "start": 16235
504
796
  },
505
797
  {
506
798
  "length": 20,
507
- "start": 11393
799
+ "start": 16598
800
+ },
801
+ {
802
+ "length": 20,
803
+ "start": 17744
804
+ },
805
+ {
806
+ "length": 20,
807
+ "start": 17982
508
808
  }
509
809
  ]
510
810
  },
@@ -512,15 +812,15 @@
512
812
  "TimestampLib": [
513
813
  {
514
814
  "length": 20,
515
- "start": 6914
815
+ "start": 2682
516
816
  },
517
817
  {
518
818
  "length": 20,
519
- "start": 7466
819
+ "start": 2801
520
820
  },
521
821
  {
522
822
  "length": 20,
523
- "start": 7585
823
+ "start": 12103
524
824
  }
525
825
  ]
526
826
  },
@@ -528,29 +828,45 @@
528
828
  "VersionPartLib": [
529
829
  {
530
830
  "length": 20,
531
- "start": 1426
831
+ "start": 309
832
+ },
833
+ {
834
+ "length": 20,
835
+ "start": 439
532
836
  },
533
837
  {
534
838
  "length": 20,
535
- "start": 1927
839
+ "start": 544
536
840
  },
537
841
  {
538
842
  "length": 20,
539
- "start": 6242
843
+ "start": 674
540
844
  },
541
845
  {
542
846
  "length": 20,
543
- "start": 11079
847
+ "start": 11446
848
+ },
849
+ {
850
+ "length": 20,
851
+ "start": 17368
544
852
  }
545
853
  ]
546
854
  }
547
855
  },
548
856
  "deployedLinkReferences": {
857
+ "contracts/type/ObjectType.sol": {
858
+ "ObjectTypeLib": [
859
+ {
860
+ "length": 20,
861
+ "start": 2095
862
+ }
863
+ ]
864
+ },
549
865
  "contracts/type/RoleId.sol": {
550
866
  "RoleIdLib": [
551
867
  {
552
868
  "length": 20,
553
- "start": 2573
869
+ "start": 3823
554
870
  }
555
871
  ]
556
872
  },
@@ -558,7 +874,19 @@
558
874
  "StrLib": [
559
875
  {
560
876
  "length": 20,
561
- "start": 2461
877
+ "start": 1954
878
+ },
879
+ {
880
+ "length": 20,
881
+ "start": 2317
882
+ },
883
+ {
884
+ "length": 20,
885
+ "start": 3463
886
+ },
887
+ {
888
+ "length": 20,
889
+ "start": 3701
562
890
  }
563
891
  ]
564
892
  },
@@ -566,7 +894,7 @@
566
894
  "VersionPartLib": [
567
895
  {
568
896
  "length": 20,
569
- "start": 2147
897
+ "start": 3087
570
898
  }
571
899
  ]
572
900
  }