@etherisc/gif-next 0.0.2-f9905e1 → 0.0.2-f9bc4c7-556

Sign up to get free protection for your applications and to get access to all the features.
Files changed (347) hide show
  1. package/README.md +123 -7
  2. package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +4 -0
  3. package/artifacts/contracts/components/{IPool.sol/IPoolComponent.json → BaseComponent.sol/BaseComponent.json} +55 -60
  4. package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +4 -0
  5. package/artifacts/contracts/{instance/component/IComponent.sol/IComponentContract.json → components/IBaseComponent.sol/IBaseComponent.json} +54 -59
  6. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +4 -0
  7. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +356 -0
  8. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +4 -0
  9. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +279 -0
  10. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
  11. package/artifacts/contracts/components/Pool.sol/Pool.json +225 -33
  12. package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
  13. package/artifacts/contracts/components/Product.sol/Product.json +154 -62
  14. package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +4 -0
  15. package/artifacts/contracts/experiment/errors/Require.sol/Require.json +105 -0
  16. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +4 -0
  17. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.json +105 -0
  18. package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +1 -1
  19. package/artifacts/contracts/experiment/inheritance/A.sol/A.json +2 -2
  20. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +1 -1
  21. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.json +2 -2
  22. package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +1 -1
  23. package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +1 -1
  24. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +1 -1
  25. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +1 -1
  26. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +1 -1
  27. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +1 -1
  28. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +4 -0
  29. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +59 -0
  30. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +4 -0
  31. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.json +124 -0
  32. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +4 -0
  33. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.json +74 -0
  34. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +4 -0
  35. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +124 -0
  36. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +4 -0
  37. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +207 -0
  38. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +1 -1
  39. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.json +2 -2
  40. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +1 -1
  41. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.json +2 -2
  42. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
  43. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +1249 -275
  44. package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.dbg.json +4 -0
  45. package/artifacts/contracts/instance/{component/IComponent.sol → IInstanceLinked.sol}/IInstanceLinked.json +1 -1
  46. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  47. package/artifacts/contracts/instance/Instance.sol/Instance.json +1560 -373
  48. package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +4 -0
  49. package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.json +300 -0
  50. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +4 -0
  51. package/artifacts/contracts/instance/{product/ProductService.sol/ProductModule.json → base/IInstanceBase.sol/IInstanceBase.json} +18 -30
  52. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
  53. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.json +511 -0
  54. package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +4 -0
  55. package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.json +115 -0
  56. package/artifacts/contracts/instance/base/IService.sol/IService.dbg.json +4 -0
  57. package/artifacts/contracts/instance/base/IService.sol/IService.json +300 -0
  58. package/artifacts/contracts/instance/base/InstanceBase.sol/InstanceBase.dbg.json +4 -0
  59. package/artifacts/contracts/instance/{component/ComponentModule.sol/ComponentModule.json → base/InstanceBase.sol/InstanceBase.json} +140 -141
  60. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
  61. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +692 -0
  62. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +4 -0
  63. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +169 -0
  64. package/artifacts/contracts/instance/base/ModuleBase.sol/ModuleBase.dbg.json +4 -0
  65. package/artifacts/contracts/instance/base/ModuleBase.sol/ModuleBase.json +10 -0
  66. package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.dbg.json +4 -0
  67. package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.json +300 -0
  68. package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.dbg.json +4 -0
  69. package/artifacts/contracts/instance/{access → module/access}/Access.sol/AccessModule.json +85 -152
  70. package/artifacts/contracts/instance/module/access/IAccess.sol/IAccess.dbg.json +4 -0
  71. package/artifacts/contracts/instance/{access → module/access}/IAccess.sol/IAccess.json +1 -1
  72. package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.dbg.json +4 -0
  73. package/artifacts/contracts/instance/{access → module/access}/IAccess.sol/IAccessModule.json +96 -99
  74. package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.dbg.json +4 -0
  75. package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.json +296 -0
  76. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundle.dbg.json +4 -0
  77. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundle.json +10 -0
  78. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.dbg.json +4 -0
  79. package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.json +296 -0
  80. package/artifacts/contracts/instance/module/compensation/CompensationModule.sol/CompensationModule.dbg.json +4 -0
  81. package/artifacts/contracts/instance/module/compensation/CompensationModule.sol/CompensationModule.json +10 -0
  82. package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensation.dbg.json +4 -0
  83. package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensation.json +10 -0
  84. package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensationModule.dbg.json +4 -0
  85. package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensationModule.json +10 -0
  86. package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.dbg.json +4 -0
  87. package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.json +188 -0
  88. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.dbg.json +4 -0
  89. package/artifacts/contracts/instance/{component → module/component}/IComponent.sol/IComponent.json +1 -1
  90. package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.dbg.json +4 -0
  91. package/artifacts/contracts/instance/{component → module/component}/IComponent.sol/IComponentModule.json +54 -111
  92. package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicy.dbg.json +4 -0
  93. package/artifacts/contracts/instance/{policy → module/policy}/IPolicy.sol/IPolicy.json +1 -1
  94. package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.dbg.json +4 -0
  95. package/artifacts/contracts/instance/{policy → module/policy}/IPolicy.sol/IPolicyModule.json +146 -116
  96. package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.dbg.json +4 -0
  97. package/artifacts/contracts/instance/{policy → module/policy}/PolicyModule.sol/PolicyModule.json +146 -116
  98. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.dbg.json +4 -0
  99. package/artifacts/contracts/instance/{pool → module/pool}/IPoolModule.sol/IPool.json +1 -1
  100. package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.dbg.json +4 -0
  101. package/artifacts/contracts/instance/{pool → module/pool}/IPoolModule.sol/IPoolModule.json +63 -63
  102. package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.dbg.json +4 -0
  103. package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.json +149 -0
  104. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRisk.dbg.json +4 -0
  105. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRisk.json +10 -0
  106. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.dbg.json +4 -0
  107. package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.json +10 -0
  108. package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.dbg.json +4 -0
  109. package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.json +10 -0
  110. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasury.dbg.json +4 -0
  111. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasury.json +10 -0
  112. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.dbg.json +4 -0
  113. package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.json +533 -0
  114. package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.dbg.json +4 -0
  115. package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.json +76 -0
  116. package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +4 -0
  117. package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.json +533 -0
  118. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +4 -0
  119. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +523 -0
  120. package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +4 -0
  121. package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.json +364 -0
  122. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +4 -0
  123. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +376 -0
  124. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +4 -0
  125. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +477 -0
  126. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +4 -0
  127. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +471 -0
  128. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +4 -0
  129. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +673 -0
  130. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +4 -0
  131. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +597 -0
  132. package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +4 -0
  133. package/artifacts/contracts/registry/IChainNft.sol/IChainNft.json +452 -0
  134. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  135. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +115 -81
  136. package/artifacts/contracts/registry/IRegistryLinked.sol/IRegistryLinked.dbg.json +4 -0
  137. package/artifacts/contracts/registry/IRegistryLinked.sol/IRegistryLinked.json +24 -0
  138. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  139. package/artifacts/contracts/registry/Registry.sol/Registry.json +265 -82
  140. package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +4 -0
  141. package/artifacts/contracts/shared/ERC165.sol/ERC165.json +35 -0
  142. package/artifacts/contracts/shared/IOwnable.sol/IOwnable.dbg.json +4 -0
  143. package/artifacts/contracts/{registry/IRegistry.sol → shared/IOwnable.sol}/IOwnable.json +1 -1
  144. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +4 -0
  145. package/artifacts/contracts/{registry/IRegistry.sol → shared/IRegisterable.sol}/IRegisterable.json +22 -67
  146. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +4 -0
  147. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +164 -0
  148. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +4 -0
  149. package/artifacts/contracts/{registry/Registry.sol → shared/Registerable.sol}/Registerable.json +23 -68
  150. package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +4 -0
  151. package/artifacts/contracts/{instance/pool/PoolModule.sol/PoolModule.json → shared/Versionable.sol/Versionable.json} +72 -70
  152. package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +4 -0
  153. package/artifacts/contracts/test/TestFee.sol/TestFee.json +119 -0
  154. package/artifacts/contracts/test/TestPool.sol/TestPool.dbg.json +4 -0
  155. package/artifacts/contracts/test/TestPool.sol/TestPool.json +387 -0
  156. package/artifacts/contracts/test/TestProduct.sol/TestProduct.dbg.json +4 -0
  157. package/artifacts/contracts/test/TestProduct.sol/TestProduct.json +393 -0
  158. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +4 -0
  159. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +137 -0
  160. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +4 -0
  161. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +116 -0
  162. package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +4 -0
  163. package/artifacts/contracts/test/TestService.sol/TestService.json +379 -0
  164. package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +4 -0
  165. package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +338 -0
  166. package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +4 -0
  167. package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +218 -0
  168. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +4 -0
  169. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +206 -0
  170. package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +4 -0
  171. package/artifacts/contracts/test/Usdc.sol/USDC.json +338 -0
  172. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +4 -0
  173. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.json +10 -0
  174. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +4 -0
  175. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.json +174 -0
  176. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
  177. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.json +2 -2
  178. package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +4 -0
  179. package/artifacts/contracts/types/Fee.sol/FeeLib.json +218 -0
  180. package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +4 -0
  181. package/artifacts/contracts/types/Key32.sol/Key32Lib.json +111 -0
  182. package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +4 -0
  183. package/artifacts/contracts/types/NftId.sol/NftIdLib.json +153 -0
  184. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +4 -0
  185. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +10 -0
  186. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +4 -0
  187. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +92 -0
  188. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +4 -0
  189. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +30 -0
  190. package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +4 -0
  191. package/artifacts/contracts/types/StateId.sol/StateIdLib.json +92 -0
  192. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +4 -0
  193. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +236 -0
  194. package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +4 -0
  195. package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.json +479 -0
  196. package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +4 -0
  197. package/artifacts/contracts/types/Version.sol/VersionLib.json +139 -0
  198. package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +4 -0
  199. package/artifacts/contracts/types/Version.sol/VersionPartLib.json +30 -0
  200. package/contracts/components/BaseComponent.sol +88 -0
  201. package/contracts/components/IBaseComponent.sol +19 -0
  202. package/contracts/components/IPoolComponent.sol +57 -0
  203. package/contracts/components/IProductComponent.sol +19 -0
  204. package/contracts/components/Pool.sol +161 -16
  205. package/contracts/components/Product.sol +79 -27
  206. package/contracts/experiment/errors/Require.sol +38 -0
  207. package/contracts/experiment/errors/Revert.sol +44 -0
  208. package/contracts/experiment/inheritance/A.sol +8 -11
  209. package/contracts/experiment/inheritance/B.sol +10 -5
  210. package/contracts/experiment/inheritance/C.sol +11 -5
  211. package/contracts/experiment/inheritance/IA.sol +2 -7
  212. package/contracts/experiment/inheritance/IB.sol +3 -2
  213. package/contracts/experiment/inheritance/IC.sol +4 -3
  214. package/contracts/experiment/statemachine/Dummy.sol +27 -0
  215. package/contracts/experiment/statemachine/ISM.sol +25 -0
  216. package/contracts/experiment/statemachine/README.md +112 -0
  217. package/contracts/experiment/statemachine/SM.sol +57 -0
  218. package/contracts/experiment/statemachine/SimpleStateMachine.sol +31 -0
  219. package/contracts/experiment/types/TypeA.sol +14 -9
  220. package/contracts/experiment/types/TypeB.sol +14 -9
  221. package/contracts/instance/IInstance.sol +42 -10
  222. package/contracts/instance/IInstanceLinked.sol +8 -0
  223. package/contracts/instance/Instance.sol +47 -42
  224. package/contracts/instance/base/ComponentServiceBase.sol +42 -0
  225. package/contracts/instance/base/IInstanceBase.sol +14 -0
  226. package/contracts/instance/base/IKeyValueStore.sol +49 -0
  227. package/contracts/instance/base/ILifecycle.sol +30 -0
  228. package/contracts/instance/base/IService.sol +15 -0
  229. package/contracts/instance/base/InstanceBase.sol +80 -0
  230. package/contracts/instance/base/KeyValueStore.sol +156 -0
  231. package/contracts/instance/base/Lifecycle.sol +95 -0
  232. package/contracts/instance/base/ModuleBase.sol +52 -0
  233. package/contracts/instance/base/ServiceBase.sol +37 -0
  234. package/contracts/instance/module/access/Access.sol +149 -0
  235. package/contracts/instance/module/access/IAccess.sol +53 -0
  236. package/contracts/instance/module/bundle/BundleModule.sol +136 -0
  237. package/contracts/instance/module/bundle/IBundle.sol +58 -0
  238. package/contracts/instance/module/compensation/CompensationModule.sol +8 -0
  239. package/contracts/instance/module/compensation/ICompensation.sol +10 -0
  240. package/contracts/instance/module/component/ComponentModule.sol +95 -0
  241. package/contracts/instance/module/component/IComponent.sol +53 -0
  242. package/contracts/instance/module/policy/IPolicy.sol +60 -0
  243. package/contracts/instance/module/policy/PolicyModule.sol +76 -0
  244. package/contracts/instance/module/pool/IPoolModule.sol +41 -0
  245. package/contracts/instance/module/pool/PoolModule.sol +87 -0
  246. package/contracts/instance/module/risk/IRisk.sol +10 -0
  247. package/contracts/instance/module/risk/RiskModule.sol +8 -0
  248. package/contracts/instance/module/treasury/ITreasury.sol +103 -0
  249. package/contracts/instance/module/treasury/TokenHandler.sol +48 -0
  250. package/contracts/instance/module/treasury/TreasuryModule.sol +152 -0
  251. package/contracts/instance/service/ComponentOwnerService.sol +170 -0
  252. package/contracts/instance/service/IComponentOwnerService.sol +22 -0
  253. package/contracts/instance/service/IPoolService.sol +30 -0
  254. package/contracts/instance/service/IProductService.sol +58 -0
  255. package/contracts/instance/service/PoolService.sol +123 -0
  256. package/contracts/instance/service/ProductService.sol +354 -0
  257. package/contracts/registry/ChainNft.sol +159 -0
  258. package/contracts/registry/IChainNft.sol +21 -0
  259. package/contracts/registry/IRegistry.sol +41 -50
  260. package/contracts/registry/IRegistryLinked.sol +8 -0
  261. package/contracts/registry/Registry.sol +307 -123
  262. package/contracts/shared/ERC165.sol +21 -0
  263. package/contracts/shared/IOwnable.sol +6 -0
  264. package/contracts/shared/IRegisterable.sol +24 -0
  265. package/contracts/shared/IVersionable.sol +52 -0
  266. package/contracts/shared/Registerable.sol +86 -0
  267. package/contracts/shared/Versionable.sol +89 -0
  268. package/contracts/test/TestFee.sol +25 -0
  269. package/contracts/test/TestPool.sol +22 -0
  270. package/contracts/test/TestProduct.sol +44 -0
  271. package/contracts/test/TestRegisterable.sol +19 -0
  272. package/contracts/test/TestRoleId.sol +14 -0
  273. package/contracts/test/TestService.sol +32 -0
  274. package/contracts/test/TestToken.sol +26 -0
  275. package/contracts/test/TestVersion.sol +44 -0
  276. package/contracts/test/TestVersionable.sol +17 -0
  277. package/contracts/test/Usdc.sol +26 -0
  278. package/contracts/types/AddressSet.sol +58 -0
  279. package/contracts/types/Blocknumber.sol +118 -0
  280. package/contracts/types/ChainId.sol +24 -10
  281. package/contracts/types/Fee.sol +51 -0
  282. package/contracts/types/Key32.sol +45 -0
  283. package/contracts/types/NftId.sol +72 -0
  284. package/contracts/types/NftIdSet.sol +60 -0
  285. package/contracts/types/ObjectType.sol +115 -0
  286. package/contracts/types/RoleId.sol +38 -0
  287. package/contracts/types/StateId.sol +101 -0
  288. package/contracts/types/Timestamp.sol +123 -0
  289. package/contracts/types/UFixed.sol +209 -0
  290. package/contracts/types/Version.sol +95 -0
  291. package/package.json +19 -5
  292. package/artifacts/contracts/components/Component.sol/Component.dbg.json +0 -4
  293. package/artifacts/contracts/components/Component.sol/Component.json +0 -179
  294. package/artifacts/contracts/components/Component.sol/InstanceLinked.dbg.json +0 -4
  295. package/artifacts/contracts/components/Component.sol/InstanceLinked.json +0 -35
  296. package/artifacts/contracts/components/IPool.sol/IPoolComponent.dbg.json +0 -4
  297. package/artifacts/contracts/components/IProduct.sol/IProductComponent.dbg.json +0 -4
  298. package/artifacts/contracts/components/IProduct.sol/IProductComponent.json +0 -192
  299. package/artifacts/contracts/instance/access/Access.sol/AccessModule.dbg.json +0 -4
  300. package/artifacts/contracts/instance/access/IAccess.sol/IAccess.dbg.json +0 -4
  301. package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.dbg.json +0 -4
  302. package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.json +0 -35
  303. package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.dbg.json +0 -4
  304. package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.json +0 -50
  305. package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.dbg.json +0 -4
  306. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
  307. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.dbg.json +0 -4
  308. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.json +0 -105
  309. package/artifacts/contracts/instance/component/IComponent.sol/IComponent.dbg.json +0 -4
  310. package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.dbg.json +0 -4
  311. package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.dbg.json +0 -4
  312. package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.dbg.json +0 -4
  313. package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.json +0 -94
  314. package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.dbg.json +0 -4
  315. package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicy.dbg.json +0 -4
  316. package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.dbg.json +0 -4
  317. package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.dbg.json +0 -4
  318. package/artifacts/contracts/instance/pool/IPoolModule.sol/IPool.dbg.json +0 -4
  319. package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.dbg.json +0 -4
  320. package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.dbg.json +0 -4
  321. package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.dbg.json +0 -4
  322. package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.json +0 -75
  323. package/artifacts/contracts/instance/product/IProductService.sol/IProductService.dbg.json +0 -4
  324. package/artifacts/contracts/instance/product/IProductService.sol/IProductService.json +0 -114
  325. package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.dbg.json +0 -4
  326. package/artifacts/contracts/instance/product/ProductService.sol/ProductService.dbg.json +0 -4
  327. package/artifacts/contracts/instance/product/ProductService.sol/ProductService.json +0 -125
  328. package/artifacts/contracts/registry/IRegistry.sol/IOwnable.dbg.json +0 -4
  329. package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.dbg.json +0 -4
  330. package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.dbg.json +0 -4
  331. package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.json +0 -49
  332. package/artifacts/contracts/registry/Registry.sol/Registerable.dbg.json +0 -4
  333. package/artifacts/contracts/registry/Registry.sol/RegistryLinked.dbg.json +0 -4
  334. package/artifacts/contracts/registry/Registry.sol/RegistryLinked.json +0 -60
  335. package/contracts/components/Component.sol +0 -62
  336. package/contracts/components/IPool.sol +0 -9
  337. package/contracts/components/IProduct.sol +0 -11
  338. package/contracts/instance/access/Access.sol +0 -218
  339. package/contracts/instance/access/IAccess.sol +0 -83
  340. package/contracts/instance/component/ComponentModule.sol +0 -259
  341. package/contracts/instance/component/IComponent.sol +0 -94
  342. package/contracts/instance/policy/IPolicy.sol +0 -66
  343. package/contracts/instance/policy/PolicyModule.sol +0 -106
  344. package/contracts/instance/pool/IPoolModule.sol +0 -40
  345. package/contracts/instance/pool/PoolModule.sol +0 -83
  346. package/contracts/instance/product/IProductService.sol +0 -45
  347. package/contracts/instance/product/ProductService.sol +0 -105
@@ -11,14 +11,9 @@
11
11
  "type": "address"
12
12
  },
13
13
  {
14
- "internalType": "address",
15
- "name": "componentOwnerService",
16
- "type": "address"
17
- },
18
- {
19
- "internalType": "address",
20
- "name": "productService",
21
- "type": "address"
14
+ "internalType": "NftId",
15
+ "name": "registryNftId",
16
+ "type": "uint96"
22
17
  }
23
18
  ],
24
19
  "stateMutability": "nonpayable",
@@ -29,9 +24,28 @@
29
24
  "inputs": [
30
25
  {
31
26
  "indexed": false,
32
- "internalType": "bytes32",
27
+ "internalType": "RoleId",
33
28
  "name": "role",
34
- "type": "bytes32"
29
+ "type": "bytes8"
30
+ },
31
+ {
32
+ "indexed": false,
33
+ "internalType": "string",
34
+ "name": "roleName",
35
+ "type": "string"
36
+ }
37
+ ],
38
+ "name": "LogAccessRoleCreated",
39
+ "type": "event"
40
+ },
41
+ {
42
+ "anonymous": false,
43
+ "inputs": [
44
+ {
45
+ "indexed": false,
46
+ "internalType": "RoleId",
47
+ "name": "role",
48
+ "type": "bytes8"
35
49
  },
36
50
  {
37
51
  "indexed": false,
@@ -54,181 +68,161 @@
54
68
  "inputs": [
55
69
  {
56
70
  "indexed": false,
57
- "internalType": "uint256",
58
- "name": "idx",
59
- "type": "uint256"
71
+ "internalType": "RoleId",
72
+ "name": "role",
73
+ "type": "bytes8"
74
+ },
75
+ {
76
+ "indexed": false,
77
+ "internalType": "bool",
78
+ "name": "active",
79
+ "type": "bool"
80
+ }
81
+ ],
82
+ "name": "LogAccessRoleStateSet",
83
+ "type": "event"
84
+ },
85
+ {
86
+ "anonymous": false,
87
+ "inputs": [
88
+ {
89
+ "indexed": false,
90
+ "internalType": "Version",
91
+ "name": "version",
92
+ "type": "uint24"
60
93
  },
61
94
  {
62
95
  "indexed": false,
63
96
  "internalType": "address",
64
- "name": "module",
97
+ "name": "implementation",
65
98
  "type": "address"
66
99
  },
67
100
  {
68
101
  "indexed": false,
69
- "internalType": "string",
70
- "name": "comment",
71
- "type": "string"
102
+ "internalType": "address",
103
+ "name": "activatedBy",
104
+ "type": "address"
72
105
  }
73
106
  ],
74
- "name": "LogDebug",
107
+ "name": "LogVersionableActivated",
75
108
  "type": "event"
76
109
  },
77
110
  {
78
- "inputs": [],
79
- "name": "INITIAL_CAPITAL",
80
- "outputs": [
111
+ "inputs": [
81
112
  {
82
- "internalType": "uint256",
83
- "name": "",
84
- "type": "uint256"
85
- }
86
- ],
87
- "stateMutability": "view",
88
- "type": "function"
89
- },
90
- {
91
- "inputs": [],
92
- "name": "ORACLE_OWNER",
93
- "outputs": [
113
+ "internalType": "address",
114
+ "name": "implementation",
115
+ "type": "address"
116
+ },
94
117
  {
95
- "internalType": "string",
96
- "name": "",
97
- "type": "string"
118
+ "internalType": "address",
119
+ "name": "activatedBy",
120
+ "type": "address"
98
121
  }
99
122
  ],
100
- "stateMutability": "view",
123
+ "name": "activate",
124
+ "outputs": [],
125
+ "stateMutability": "nonpayable",
101
126
  "type": "function"
102
127
  },
103
128
  {
104
- "inputs": [],
105
- "name": "ORACLE_OWNER_ROLE",
106
- "outputs": [
129
+ "inputs": [
107
130
  {
108
- "internalType": "bytes32",
109
- "name": "role",
110
- "type": "bytes32"
111
- }
112
- ],
113
- "stateMutability": "view",
114
- "type": "function"
115
- },
116
- {
117
- "inputs": [],
118
- "name": "POOL_OWNER",
119
- "outputs": [
131
+ "internalType": "NftId",
132
+ "name": "bundleNftId",
133
+ "type": "uint96"
134
+ },
120
135
  {
121
- "internalType": "string",
136
+ "internalType": "NftId",
137
+ "name": "poolNftId",
138
+ "type": "uint96"
139
+ },
140
+ {
141
+ "internalType": "uint256",
122
142
  "name": "",
123
- "type": "string"
143
+ "type": "uint256"
124
144
  }
125
145
  ],
126
- "stateMutability": "view",
146
+ "name": "addBundleToPool",
147
+ "outputs": [],
148
+ "stateMutability": "nonpayable",
127
149
  "type": "function"
128
150
  },
129
151
  {
130
- "inputs": [],
131
- "name": "POOL_OWNER_ROLE",
132
- "outputs": [
152
+ "inputs": [
133
153
  {
134
- "internalType": "bytes32",
135
- "name": "role",
136
- "type": "bytes32"
137
- }
138
- ],
139
- "stateMutability": "view",
140
- "type": "function"
141
- },
142
- {
143
- "inputs": [],
144
- "name": "PRODUCT_OWNER",
145
- "outputs": [
154
+ "internalType": "uint256",
155
+ "name": "amount",
156
+ "type": "uint256"
157
+ },
146
158
  {
147
- "internalType": "string",
148
- "name": "",
149
- "type": "string"
159
+ "components": [
160
+ {
161
+ "internalType": "UFixed",
162
+ "name": "fractionalFee",
163
+ "type": "uint256"
164
+ },
165
+ {
166
+ "internalType": "uint256",
167
+ "name": "fixedFee",
168
+ "type": "uint256"
169
+ }
170
+ ],
171
+ "internalType": "struct Fee",
172
+ "name": "fee",
173
+ "type": "tuple"
150
174
  }
151
175
  ],
152
- "stateMutability": "view",
153
- "type": "function"
154
- },
155
- {
156
- "inputs": [],
157
- "name": "PRODUCT_OWNER_ROLE",
176
+ "name": "calculateFeeAmount",
158
177
  "outputs": [
159
178
  {
160
- "internalType": "bytes32",
161
- "name": "role",
162
- "type": "bytes32"
163
- }
164
- ],
165
- "stateMutability": "view",
166
- "type": "function"
167
- },
168
- {
169
- "inputs": [
179
+ "internalType": "uint256",
180
+ "name": "feeAmount",
181
+ "type": "uint256"
182
+ },
170
183
  {
171
184
  "internalType": "uint256",
172
- "name": "nftId",
185
+ "name": "netAmount",
173
186
  "type": "uint256"
174
187
  }
175
188
  ],
176
- "name": "activate",
177
- "outputs": [],
178
- "stateMutability": "nonpayable",
189
+ "stateMutability": "pure",
179
190
  "type": "function"
180
191
  },
181
192
  {
182
- "inputs": [],
183
- "name": "components",
184
- "outputs": [
193
+ "inputs": [
194
+ {
195
+ "internalType": "NftId",
196
+ "name": "bundleNftId",
197
+ "type": "uint96"
198
+ },
199
+ {
200
+ "internalType": "NftId",
201
+ "name": "policyNftId",
202
+ "type": "uint96"
203
+ },
185
204
  {
186
205
  "internalType": "uint256",
187
- "name": "numberOfCompnents",
206
+ "name": "collateralAmount",
188
207
  "type": "uint256"
189
208
  }
190
209
  ],
191
- "stateMutability": "view",
210
+ "name": "collateralizePolicy",
211
+ "outputs": [],
212
+ "stateMutability": "nonpayable",
192
213
  "type": "function"
193
214
  },
194
215
  {
195
216
  "inputs": [
196
217
  {
197
- "components": [
198
- {
199
- "internalType": "uint256",
200
- "name": "nftId",
201
- "type": "uint256"
202
- },
203
- {
204
- "internalType": "uint256",
205
- "name": "parentNftId",
206
- "type": "uint256"
207
- },
208
- {
209
- "internalType": "uint256",
210
- "name": "objectType",
211
- "type": "uint256"
212
- },
213
- {
214
- "internalType": "address",
215
- "name": "objectAddress",
216
- "type": "address"
217
- },
218
- {
219
- "internalType": "address",
220
- "name": "initialOwner",
221
- "type": "address"
222
- }
223
- ],
224
- "internalType": "struct IRegistry.RegistryInfo",
225
- "name": "productInfo",
226
- "type": "tuple"
218
+ "internalType": "NftId",
219
+ "name": "productNftId",
220
+ "type": "uint96"
227
221
  },
228
222
  {
229
- "internalType": "address",
230
- "name": "applicationOwner",
231
- "type": "address"
223
+ "internalType": "NftId",
224
+ "name": "policyNftId",
225
+ "type": "uint96"
232
226
  },
233
227
  {
234
228
  "internalType": "uint256",
@@ -246,41 +240,45 @@
246
240
  "type": "uint256"
247
241
  },
248
242
  {
249
- "internalType": "uint256",
243
+ "internalType": "NftId",
250
244
  "name": "bundleNftId",
251
- "type": "uint256"
245
+ "type": "uint96"
252
246
  }
253
247
  ],
254
248
  "name": "createApplication",
255
- "outputs": [
256
- {
257
- "internalType": "uint256",
258
- "name": "nftId",
259
- "type": "uint256"
260
- }
261
- ],
249
+ "outputs": [],
262
250
  "stateMutability": "nonpayable",
263
251
  "type": "function"
264
252
  },
265
253
  {
266
254
  "inputs": [
255
+ {
256
+ "internalType": "NftId",
257
+ "name": "bundleNftId",
258
+ "type": "uint96"
259
+ },
260
+ {
261
+ "internalType": "NftId",
262
+ "name": "poolNftId",
263
+ "type": "uint96"
264
+ },
267
265
  {
268
266
  "internalType": "uint256",
269
- "name": "nftId",
267
+ "name": "amount",
270
268
  "type": "uint256"
271
269
  },
272
270
  {
273
- "internalType": "address",
274
- "name": "wallet",
275
- "type": "address"
271
+ "internalType": "uint256",
272
+ "name": "lifetime",
273
+ "type": "uint256"
276
274
  },
277
275
  {
278
- "internalType": "address",
279
- "name": "token",
280
- "type": "address"
276
+ "internalType": "bytes",
277
+ "name": "filter",
278
+ "type": "bytes"
281
279
  }
282
280
  ],
283
- "name": "createPoolInfo",
281
+ "name": "createBundleInfo",
284
282
  "outputs": [],
285
283
  "stateMutability": "nonpayable",
286
284
  "type": "function"
@@ -296,53 +294,27 @@
296
294
  "name": "createRole",
297
295
  "outputs": [
298
296
  {
299
- "internalType": "bytes32",
300
- "name": "role",
301
- "type": "bytes32"
302
- }
303
- ],
304
- "stateMutability": "nonpayable",
305
- "type": "function"
306
- },
307
- {
308
- "inputs": [
309
- {
310
- "internalType": "bytes32",
311
- "name": "role",
312
- "type": "bytes32"
313
- }
314
- ],
315
- "name": "disableRole",
316
- "outputs": [],
317
- "stateMutability": "nonpayable",
318
- "type": "function"
319
- },
320
- {
321
- "inputs": [
322
- {
323
- "internalType": "bytes32",
297
+ "internalType": "RoleId",
324
298
  "name": "role",
325
- "type": "bytes32"
299
+ "type": "bytes8"
326
300
  }
327
301
  ],
328
- "name": "enableRole",
329
- "outputs": [],
330
302
  "stateMutability": "nonpayable",
331
303
  "type": "function"
332
304
  },
333
305
  {
334
306
  "inputs": [
335
307
  {
336
- "internalType": "uint256",
337
- "name": "nftId",
338
- "type": "uint256"
308
+ "internalType": "NftId",
309
+ "name": "poolNftId",
310
+ "type": "uint96"
339
311
  }
340
312
  ],
341
- "name": "getBundleNftForPolicy",
313
+ "name": "getBundleCount",
342
314
  "outputs": [
343
315
  {
344
316
  "internalType": "uint256",
345
- "name": "bundleNft",
317
+ "name": "bundleCount",
346
318
  "type": "uint256"
347
319
  }
348
320
  ],
@@ -352,35 +324,95 @@
352
324
  {
353
325
  "inputs": [
354
326
  {
355
- "internalType": "address",
356
- "name": "componentAddress",
357
- "type": "address"
327
+ "internalType": "NftId",
328
+ "name": "bundleNftId",
329
+ "type": "uint96"
358
330
  }
359
331
  ],
360
- "name": "getComponentId",
332
+ "name": "getBundleInfo",
361
333
  "outputs": [
362
334
  {
363
- "internalType": "uint256",
364
- "name": "id",
365
- "type": "uint256"
366
- }
367
- ],
368
- "stateMutability": "view",
369
- "type": "function"
370
- },
371
- {
372
- "inputs": [
335
+ "components": [
336
+ {
337
+ "internalType": "NftId",
338
+ "name": "nftId",
339
+ "type": "uint96"
340
+ },
341
+ {
342
+ "internalType": "NftId",
343
+ "name": "poolNftId",
344
+ "type": "uint96"
345
+ },
346
+ {
347
+ "internalType": "bytes",
348
+ "name": "filter",
349
+ "type": "bytes"
350
+ },
351
+ {
352
+ "internalType": "uint256",
353
+ "name": "capitalAmount",
354
+ "type": "uint256"
355
+ },
356
+ {
357
+ "internalType": "uint256",
358
+ "name": "lockedAmount",
359
+ "type": "uint256"
360
+ },
361
+ {
362
+ "internalType": "uint256",
363
+ "name": "balanceAmount",
364
+ "type": "uint256"
365
+ },
366
+ {
367
+ "internalType": "Timestamp",
368
+ "name": "expiredAt",
369
+ "type": "uint40"
370
+ },
371
+ {
372
+ "internalType": "Timestamp",
373
+ "name": "closedAt",
374
+ "type": "uint40"
375
+ }
376
+ ],
377
+ "internalType": "struct IBundle.BundleInfo",
378
+ "name": "bundleInfo",
379
+ "type": "tuple"
380
+ }
381
+ ],
382
+ "stateMutability": "view",
383
+ "type": "function"
384
+ },
385
+ {
386
+ "inputs": [
387
+ {
388
+ "internalType": "NftId",
389
+ "name": "poolNftId",
390
+ "type": "uint96"
391
+ },
373
392
  {
374
393
  "internalType": "uint256",
375
- "name": "idx",
394
+ "name": "index",
376
395
  "type": "uint256"
377
396
  }
378
397
  ],
379
- "name": "getComponentId",
398
+ "name": "getBundleNftId",
399
+ "outputs": [
400
+ {
401
+ "internalType": "NftId",
402
+ "name": "bundleNftId",
403
+ "type": "uint96"
404
+ }
405
+ ],
406
+ "stateMutability": "view",
407
+ "type": "function"
408
+ },
409
+ {
410
+ "inputs": [],
411
+ "name": "getComponentCount",
380
412
  "outputs": [
381
413
  {
382
414
  "internalType": "uint256",
383
- "name": "id",
415
+ "name": "numberOfCompnents",
384
416
  "type": "uint256"
385
417
  }
386
418
  ],
@@ -391,23 +423,47 @@
391
423
  "inputs": [
392
424
  {
393
425
  "internalType": "uint256",
394
- "name": "id",
426
+ "name": "idx",
395
427
  "type": "uint256"
396
428
  }
397
429
  ],
430
+ "name": "getComponentId",
431
+ "outputs": [
432
+ {
433
+ "internalType": "NftId",
434
+ "name": "componentNftId",
435
+ "type": "uint96"
436
+ }
437
+ ],
438
+ "stateMutability": "view",
439
+ "type": "function"
440
+ },
441
+ {
442
+ "inputs": [
443
+ {
444
+ "internalType": "NftId",
445
+ "name": "nftId",
446
+ "type": "uint96"
447
+ }
448
+ ],
398
449
  "name": "getComponentInfo",
399
450
  "outputs": [
400
451
  {
401
452
  "components": [
402
453
  {
403
- "internalType": "uint256",
454
+ "internalType": "NftId",
404
455
  "name": "nftId",
405
- "type": "uint256"
456
+ "type": "uint96"
406
457
  },
407
458
  {
408
- "internalType": "enum IComponent.CState",
459
+ "internalType": "StateId",
409
460
  "name": "state",
410
461
  "type": "uint8"
462
+ },
463
+ {
464
+ "internalType": "contract IERC20Metadata",
465
+ "name": "token",
466
+ "type": "address"
411
467
  }
412
468
  ],
413
469
  "internalType": "struct IComponent.ComponentInfo",
@@ -418,32 +474,13 @@
418
474
  "stateMutability": "view",
419
475
  "type": "function"
420
476
  },
421
- {
422
- "inputs": [
423
- {
424
- "internalType": "uint256",
425
- "name": "id",
426
- "type": "uint256"
427
- }
428
- ],
429
- "name": "getComponentOwner",
430
- "outputs": [
431
- {
432
- "internalType": "address",
433
- "name": "owner",
434
- "type": "address"
435
- }
436
- ],
437
- "stateMutability": "view",
438
- "type": "function"
439
- },
440
477
  {
441
478
  "inputs": [],
442
479
  "name": "getComponentOwnerService",
443
480
  "outputs": [
444
481
  {
445
482
  "internalType": "contract IComponentOwnerService",
446
- "name": "",
483
+ "name": "service",
447
484
  "type": "address"
448
485
  }
449
486
  ],
@@ -463,13 +500,49 @@
463
500
  "stateMutability": "view",
464
501
  "type": "function"
465
502
  },
503
+ {
504
+ "inputs": [
505
+ {
506
+ "internalType": "UFixed",
507
+ "name": "fractionalFee",
508
+ "type": "uint256"
509
+ },
510
+ {
511
+ "internalType": "uint256",
512
+ "name": "fixedFee",
513
+ "type": "uint256"
514
+ }
515
+ ],
516
+ "name": "getFee",
517
+ "outputs": [
518
+ {
519
+ "components": [
520
+ {
521
+ "internalType": "UFixed",
522
+ "name": "fractionalFee",
523
+ "type": "uint256"
524
+ },
525
+ {
526
+ "internalType": "uint256",
527
+ "name": "fixedFee",
528
+ "type": "uint256"
529
+ }
530
+ ],
531
+ "internalType": "struct Fee",
532
+ "name": "fee",
533
+ "type": "tuple"
534
+ }
535
+ ],
536
+ "stateMutability": "pure",
537
+ "type": "function"
538
+ },
466
539
  {
467
540
  "inputs": [],
468
- "name": "getInitialOwner",
541
+ "name": "getKeyValueStore",
469
542
  "outputs": [
470
543
  {
471
- "internalType": "address",
472
- "name": "deployer",
544
+ "internalType": "contract IKeyValueStore",
545
+ "name": "keyValueStore",
473
546
  "type": "address"
474
547
  }
475
548
  ],
@@ -481,9 +554,9 @@
481
554
  "name": "getNftId",
482
555
  "outputs": [
483
556
  {
484
- "internalType": "uint256",
485
- "name": "id",
486
- "type": "uint256"
557
+ "internalType": "NftId",
558
+ "name": "nftId",
559
+ "type": "uint96"
487
560
  }
488
561
  ],
489
562
  "stateMutability": "view",
@@ -507,9 +580,9 @@
507
580
  "name": "getParentNftId",
508
581
  "outputs": [
509
582
  {
510
- "internalType": "uint256",
511
- "name": "",
512
- "type": "uint256"
583
+ "internalType": "NftId",
584
+ "name": "nftId",
585
+ "type": "uint96"
513
586
  }
514
587
  ],
515
588
  "stateMutability": "view",
@@ -518,9 +591,9 @@
518
591
  {
519
592
  "inputs": [
520
593
  {
521
- "internalType": "uint256",
594
+ "internalType": "NftId",
522
595
  "name": "nftId",
523
- "type": "uint256"
596
+ "type": "uint96"
524
597
  }
525
598
  ],
526
599
  "name": "getPolicyInfo",
@@ -528,12 +601,27 @@
528
601
  {
529
602
  "components": [
530
603
  {
531
- "internalType": "uint256",
604
+ "internalType": "NftId",
532
605
  "name": "nftId",
533
- "type": "uint256"
606
+ "type": "uint96"
607
+ },
608
+ {
609
+ "internalType": "NftId",
610
+ "name": "productNftId",
611
+ "type": "uint96"
612
+ },
613
+ {
614
+ "internalType": "NftId",
615
+ "name": "bundleNftId",
616
+ "type": "uint96"
617
+ },
618
+ {
619
+ "internalType": "address",
620
+ "name": "beneficiary",
621
+ "type": "address"
534
622
  },
535
623
  {
536
- "internalType": "enum IPolicy.PolicyState",
624
+ "internalType": "StateId",
537
625
  "name": "state",
538
626
  "type": "uint8"
539
627
  },
@@ -549,28 +637,43 @@
549
637
  },
550
638
  {
551
639
  "internalType": "uint256",
552
- "name": "lifetime",
640
+ "name": "premiumPaidAmount",
553
641
  "type": "uint256"
554
642
  },
555
643
  {
556
644
  "internalType": "uint256",
557
- "name": "createdAt",
645
+ "name": "lifetime",
558
646
  "type": "uint256"
559
647
  },
560
648
  {
561
- "internalType": "uint256",
649
+ "internalType": "bytes",
650
+ "name": "data",
651
+ "type": "bytes"
652
+ },
653
+ {
654
+ "internalType": "Timestamp",
655
+ "name": "createdAt",
656
+ "type": "uint40"
657
+ },
658
+ {
659
+ "internalType": "Timestamp",
562
660
  "name": "activatedAt",
563
- "type": "uint256"
661
+ "type": "uint40"
564
662
  },
565
663
  {
566
- "internalType": "uint256",
664
+ "internalType": "Timestamp",
567
665
  "name": "expiredAt",
568
- "type": "uint256"
666
+ "type": "uint40"
569
667
  },
570
668
  {
571
- "internalType": "uint256",
669
+ "internalType": "Timestamp",
572
670
  "name": "closedAt",
573
- "type": "uint256"
671
+ "type": "uint40"
672
+ },
673
+ {
674
+ "internalType": "Blocknumber",
675
+ "name": "updatedIn",
676
+ "type": "uint32"
574
677
  }
575
678
  ],
576
679
  "internalType": "struct IPolicy.PolicyInfo",
@@ -584,9 +687,9 @@
584
687
  {
585
688
  "inputs": [
586
689
  {
587
- "internalType": "uint256",
690
+ "internalType": "NftId",
588
691
  "name": "nftId",
589
- "type": "uint256"
692
+ "type": "uint96"
590
693
  }
591
694
  ],
592
695
  "name": "getPoolInfo",
@@ -594,28 +697,18 @@
594
697
  {
595
698
  "components": [
596
699
  {
597
- "internalType": "uint256",
700
+ "internalType": "NftId",
598
701
  "name": "nftId",
599
- "type": "uint256"
600
- },
601
- {
602
- "internalType": "address",
603
- "name": "wallet",
604
- "type": "address"
605
- },
606
- {
607
- "internalType": "address",
608
- "name": "token",
609
- "type": "address"
702
+ "type": "uint96"
610
703
  },
611
704
  {
612
- "internalType": "uint256",
613
- "name": "capital",
614
- "type": "uint256"
705
+ "internalType": "bool",
706
+ "name": "isVerifying",
707
+ "type": "bool"
615
708
  },
616
709
  {
617
- "internalType": "uint256",
618
- "name": "lockedCapital",
710
+ "internalType": "UFixed",
711
+ "name": "collateralizationLevel",
619
712
  "type": "uint256"
620
713
  }
621
714
  ],
@@ -627,20 +720,79 @@
627
720
  "stateMutability": "view",
628
721
  "type": "function"
629
722
  },
723
+ {
724
+ "inputs": [],
725
+ "name": "getPoolService",
726
+ "outputs": [
727
+ {
728
+ "internalType": "contract IPoolService",
729
+ "name": "service",
730
+ "type": "address"
731
+ }
732
+ ],
733
+ "stateMutability": "view",
734
+ "type": "function"
735
+ },
630
736
  {
631
737
  "inputs": [
632
738
  {
633
- "internalType": "uint256",
634
- "name": "productNftId",
635
- "type": "uint256"
739
+ "internalType": "NftId",
740
+ "name": "poolNftId",
741
+ "type": "uint96"
636
742
  }
637
743
  ],
638
- "name": "getPoolNftId",
744
+ "name": "getPoolSetup",
639
745
  "outputs": [
640
746
  {
641
- "internalType": "uint256",
642
- "name": "poolNftId",
643
- "type": "uint256"
747
+ "components": [
748
+ {
749
+ "internalType": "NftId",
750
+ "name": "poolNftId",
751
+ "type": "uint96"
752
+ },
753
+ {
754
+ "internalType": "address",
755
+ "name": "wallet",
756
+ "type": "address"
757
+ },
758
+ {
759
+ "components": [
760
+ {
761
+ "internalType": "UFixed",
762
+ "name": "fractionalFee",
763
+ "type": "uint256"
764
+ },
765
+ {
766
+ "internalType": "uint256",
767
+ "name": "fixedFee",
768
+ "type": "uint256"
769
+ }
770
+ ],
771
+ "internalType": "struct Fee",
772
+ "name": "stakingFee",
773
+ "type": "tuple"
774
+ },
775
+ {
776
+ "components": [
777
+ {
778
+ "internalType": "UFixed",
779
+ "name": "fractionalFee",
780
+ "type": "uint256"
781
+ },
782
+ {
783
+ "internalType": "uint256",
784
+ "name": "fixedFee",
785
+ "type": "uint256"
786
+ }
787
+ ],
788
+ "internalType": "struct Fee",
789
+ "name": "performanceFee",
790
+ "type": "tuple"
791
+ }
792
+ ],
793
+ "internalType": "struct ITreasury.PoolSetup",
794
+ "name": "setup",
795
+ "type": "tuple"
644
796
  }
645
797
  ],
646
798
  "stateMutability": "view",
@@ -652,13 +804,93 @@
652
804
  "outputs": [
653
805
  {
654
806
  "internalType": "contract IProductService",
655
- "name": "",
807
+ "name": "service",
656
808
  "type": "address"
657
809
  }
658
810
  ],
659
811
  "stateMutability": "view",
660
812
  "type": "function"
661
813
  },
814
+ {
815
+ "inputs": [
816
+ {
817
+ "internalType": "NftId",
818
+ "name": "productNftId",
819
+ "type": "uint96"
820
+ }
821
+ ],
822
+ "name": "getProductSetup",
823
+ "outputs": [
824
+ {
825
+ "components": [
826
+ {
827
+ "internalType": "NftId",
828
+ "name": "productNftId",
829
+ "type": "uint96"
830
+ },
831
+ {
832
+ "internalType": "NftId",
833
+ "name": "distributorNftId",
834
+ "type": "uint96"
835
+ },
836
+ {
837
+ "internalType": "NftId",
838
+ "name": "poolNftId",
839
+ "type": "uint96"
840
+ },
841
+ {
842
+ "internalType": "contract IERC20Metadata",
843
+ "name": "token",
844
+ "type": "address"
845
+ },
846
+ {
847
+ "internalType": "address",
848
+ "name": "wallet",
849
+ "type": "address"
850
+ },
851
+ {
852
+ "components": [
853
+ {
854
+ "internalType": "UFixed",
855
+ "name": "fractionalFee",
856
+ "type": "uint256"
857
+ },
858
+ {
859
+ "internalType": "uint256",
860
+ "name": "fixedFee",
861
+ "type": "uint256"
862
+ }
863
+ ],
864
+ "internalType": "struct Fee",
865
+ "name": "policyFee",
866
+ "type": "tuple"
867
+ },
868
+ {
869
+ "components": [
870
+ {
871
+ "internalType": "UFixed",
872
+ "name": "fractionalFee",
873
+ "type": "uint256"
874
+ },
875
+ {
876
+ "internalType": "uint256",
877
+ "name": "fixedFee",
878
+ "type": "uint256"
879
+ }
880
+ ],
881
+ "internalType": "struct Fee",
882
+ "name": "processingFee",
883
+ "type": "tuple"
884
+ }
885
+ ],
886
+ "internalType": "struct ITreasury.ProductSetup",
887
+ "name": "setup",
888
+ "type": "tuple"
889
+ }
890
+ ],
891
+ "stateMutability": "view",
892
+ "type": "function"
893
+ },
662
894
  {
663
895
  "inputs": [],
664
896
  "name": "getRegistry",
@@ -683,9 +915,9 @@
683
915
  "name": "getRole",
684
916
  "outputs": [
685
917
  {
686
- "internalType": "bytes32",
918
+ "internalType": "RoleId",
687
919
  "name": "role",
688
- "type": "bytes32"
920
+ "type": "bytes8"
689
921
  }
690
922
  ],
691
923
  "stateMutability": "view",
@@ -712,12 +944,12 @@
712
944
  "type": "string"
713
945
  }
714
946
  ],
715
- "name": "getRoleForName",
947
+ "name": "getRoleId",
716
948
  "outputs": [
717
949
  {
718
- "internalType": "bytes32",
950
+ "internalType": "RoleId",
719
951
  "name": "role",
720
- "type": "bytes32"
952
+ "type": "bytes8"
721
953
  }
722
954
  ],
723
955
  "stateMutability": "pure",
@@ -726,38 +958,19 @@
726
958
  {
727
959
  "inputs": [
728
960
  {
729
- "internalType": "uint256",
730
- "name": "cType",
731
- "type": "uint256"
732
- }
733
- ],
734
- "name": "getRoleForType",
735
- "outputs": [
736
- {
737
- "internalType": "bytes32",
961
+ "internalType": "RoleId",
738
962
  "name": "role",
739
- "type": "bytes32"
963
+ "type": "bytes8"
740
964
  }
741
965
  ],
742
- "stateMutability": "view",
743
- "type": "function"
744
- },
745
- {
746
- "inputs": [
747
- {
748
- "internalType": "bytes32",
749
- "name": "role",
750
- "type": "bytes32"
751
- }
752
- ],
753
- "name": "getRoleInfo",
754
- "outputs": [
966
+ "name": "getRoleInfo",
967
+ "outputs": [
755
968
  {
756
969
  "components": [
757
970
  {
758
- "internalType": "bytes32",
971
+ "internalType": "RoleId",
759
972
  "name": "id",
760
- "type": "bytes32"
973
+ "type": "bytes8"
761
974
  },
762
975
  {
763
976
  "internalType": "string",
@@ -781,9 +994,9 @@
781
994
  {
782
995
  "inputs": [
783
996
  {
784
- "internalType": "bytes32",
997
+ "internalType": "RoleId",
785
998
  "name": "role",
786
- "type": "bytes32"
999
+ "type": "bytes8"
787
1000
  },
788
1001
  {
789
1002
  "internalType": "uint256",
@@ -805,9 +1018,9 @@
805
1018
  {
806
1019
  "inputs": [
807
1020
  {
808
- "internalType": "bytes32",
1021
+ "internalType": "RoleId",
809
1022
  "name": "role",
810
- "type": "bytes32"
1023
+ "type": "bytes8"
811
1024
  }
812
1025
  ],
813
1026
  "name": "getRoleMemberCount",
@@ -821,13 +1034,120 @@
821
1034
  "stateMutability": "view",
822
1035
  "type": "function"
823
1036
  },
1037
+ {
1038
+ "inputs": [
1039
+ {
1040
+ "internalType": "NftId",
1041
+ "name": "componentNftId",
1042
+ "type": "uint96"
1043
+ }
1044
+ ],
1045
+ "name": "getTokenHandler",
1046
+ "outputs": [
1047
+ {
1048
+ "internalType": "contract TokenHandler",
1049
+ "name": "tokenHandler",
1050
+ "type": "address"
1051
+ }
1052
+ ],
1053
+ "stateMutability": "view",
1054
+ "type": "function"
1055
+ },
824
1056
  {
825
1057
  "inputs": [],
826
1058
  "name": "getType",
827
1059
  "outputs": [
828
1060
  {
829
- "internalType": "uint256",
1061
+ "internalType": "ObjectType",
830
1062
  "name": "objectType",
1063
+ "type": "uint8"
1064
+ }
1065
+ ],
1066
+ "stateMutability": "pure",
1067
+ "type": "function"
1068
+ },
1069
+ {
1070
+ "inputs": [
1071
+ {
1072
+ "internalType": "uint256",
1073
+ "name": "a",
1074
+ "type": "uint256"
1075
+ },
1076
+ {
1077
+ "internalType": "int8",
1078
+ "name": "exp",
1079
+ "type": "int8"
1080
+ }
1081
+ ],
1082
+ "name": "getUFixed",
1083
+ "outputs": [
1084
+ {
1085
+ "internalType": "UFixed",
1086
+ "name": "",
1087
+ "type": "uint256"
1088
+ }
1089
+ ],
1090
+ "stateMutability": "pure",
1091
+ "type": "function"
1092
+ },
1093
+ {
1094
+ "inputs": [
1095
+ {
1096
+ "internalType": "uint256",
1097
+ "name": "a",
1098
+ "type": "uint256"
1099
+ }
1100
+ ],
1101
+ "name": "getUFixed",
1102
+ "outputs": [
1103
+ {
1104
+ "internalType": "UFixed",
1105
+ "name": "",
1106
+ "type": "uint256"
1107
+ }
1108
+ ],
1109
+ "stateMutability": "pure",
1110
+ "type": "function"
1111
+ },
1112
+ {
1113
+ "inputs": [],
1114
+ "name": "getVersion",
1115
+ "outputs": [
1116
+ {
1117
+ "internalType": "Version",
1118
+ "name": "",
1119
+ "type": "uint24"
1120
+ }
1121
+ ],
1122
+ "stateMutability": "pure",
1123
+ "type": "function"
1124
+ },
1125
+ {
1126
+ "inputs": [
1127
+ {
1128
+ "internalType": "uint256",
1129
+ "name": "idx",
1130
+ "type": "uint256"
1131
+ }
1132
+ ],
1133
+ "name": "getVersion",
1134
+ "outputs": [
1135
+ {
1136
+ "internalType": "Version",
1137
+ "name": "",
1138
+ "type": "uint24"
1139
+ }
1140
+ ],
1141
+ "stateMutability": "view",
1142
+ "type": "function"
1143
+ },
1144
+ {
1145
+ "inputs": [],
1146
+ "name": "getVersionCount",
1147
+ "outputs": [
1148
+ {
1149
+ "internalType": "uint256",
1150
+ "name": "",
831
1151
  "type": "uint256"
832
1152
  }
833
1153
  ],
@@ -837,9 +1157,80 @@
837
1157
  {
838
1158
  "inputs": [
839
1159
  {
840
- "internalType": "bytes32",
1160
+ "internalType": "Version",
1161
+ "name": "_version",
1162
+ "type": "uint24"
1163
+ }
1164
+ ],
1165
+ "name": "getVersionInfo",
1166
+ "outputs": [
1167
+ {
1168
+ "components": [
1169
+ {
1170
+ "internalType": "Version",
1171
+ "name": "version",
1172
+ "type": "uint24"
1173
+ },
1174
+ {
1175
+ "internalType": "address",
1176
+ "name": "implementation",
1177
+ "type": "address"
1178
+ },
1179
+ {
1180
+ "internalType": "address",
1181
+ "name": "activatedBy",
1182
+ "type": "address"
1183
+ },
1184
+ {
1185
+ "internalType": "Timestamp",
1186
+ "name": "activatedAt",
1187
+ "type": "uint40"
1188
+ },
1189
+ {
1190
+ "internalType": "Blocknumber",
1191
+ "name": "activatedIn",
1192
+ "type": "uint32"
1193
+ }
1194
+ ],
1195
+ "internalType": "struct IVersionable.VersionInfo",
1196
+ "name": "",
1197
+ "type": "tuple"
1198
+ }
1199
+ ],
1200
+ "stateMutability": "view",
1201
+ "type": "function"
1202
+ },
1203
+ {
1204
+ "inputs": [],
1205
+ "name": "getZeroFee",
1206
+ "outputs": [
1207
+ {
1208
+ "components": [
1209
+ {
1210
+ "internalType": "UFixed",
1211
+ "name": "fractionalFee",
1212
+ "type": "uint256"
1213
+ },
1214
+ {
1215
+ "internalType": "uint256",
1216
+ "name": "fixedFee",
1217
+ "type": "uint256"
1218
+ }
1219
+ ],
1220
+ "internalType": "struct Fee",
1221
+ "name": "fee",
1222
+ "type": "tuple"
1223
+ }
1224
+ ],
1225
+ "stateMutability": "pure",
1226
+ "type": "function"
1227
+ },
1228
+ {
1229
+ "inputs": [
1230
+ {
1231
+ "internalType": "RoleId",
841
1232
  "name": "role",
842
- "type": "bytes32"
1233
+ "type": "bytes8"
843
1234
  },
844
1235
  {
845
1236
  "internalType": "address",
@@ -855,9 +1246,9 @@
855
1246
  {
856
1247
  "inputs": [
857
1248
  {
858
- "internalType": "bytes32",
1249
+ "internalType": "RoleId",
859
1250
  "name": "role",
860
- "type": "bytes32"
1251
+ "type": "bytes8"
861
1252
  },
862
1253
  {
863
1254
  "internalType": "address",
@@ -877,21 +1268,14 @@
877
1268
  "type": "function"
878
1269
  },
879
1270
  {
880
- "inputs": [],
881
- "name": "isRegisterable",
882
- "outputs": [
1271
+ "inputs": [
883
1272
  {
884
- "internalType": "bool",
885
- "name": "",
886
- "type": "bool"
1273
+ "internalType": "Version",
1274
+ "name": "_version",
1275
+ "type": "uint24"
887
1276
  }
888
1277
  ],
889
- "stateMutability": "pure",
890
- "type": "function"
891
- },
892
- {
893
- "inputs": [],
894
- "name": "isRegistered",
1278
+ "name": "isActivated",
895
1279
  "outputs": [
896
1280
  {
897
1281
  "internalType": "bool",
@@ -907,9 +1291,9 @@
907
1291
  "name": "register",
908
1292
  "outputs": [
909
1293
  {
910
- "internalType": "uint256",
911
- "name": "id",
912
- "type": "uint256"
1294
+ "internalType": "NftId",
1295
+ "name": "nftId",
1296
+ "type": "uint96"
913
1297
  }
914
1298
  ],
915
1299
  "stateMutability": "nonpayable",
@@ -918,92 +1302,895 @@
918
1302
  {
919
1303
  "inputs": [
920
1304
  {
921
- "internalType": "contract IComponentContract",
922
- "name": "component",
1305
+ "internalType": "NftId",
1306
+ "name": "nftId",
1307
+ "type": "uint96"
1308
+ },
1309
+ {
1310
+ "internalType": "ObjectType",
1311
+ "name": "objectType",
1312
+ "type": "uint8"
1313
+ },
1314
+ {
1315
+ "internalType": "contract IERC20Metadata",
1316
+ "name": "token",
923
1317
  "type": "address"
924
1318
  }
925
1319
  ],
926
1320
  "name": "registerComponent",
927
- "outputs": [
928
- {
929
- "internalType": "uint256",
930
- "name": "nftId",
931
- "type": "uint256"
932
- }
933
- ],
1321
+ "outputs": [],
934
1322
  "stateMutability": "nonpayable",
935
1323
  "type": "function"
936
1324
  },
937
1325
  {
938
1326
  "inputs": [
939
1327
  {
940
- "internalType": "bytes32",
941
- "name": "role",
942
- "type": "bytes32"
1328
+ "internalType": "NftId",
1329
+ "name": "poolNftId",
1330
+ "type": "uint96"
943
1331
  },
944
1332
  {
945
1333
  "internalType": "address",
946
- "name": "member",
1334
+ "name": "wallet",
947
1335
  "type": "address"
948
- }
949
- ],
950
- "name": "revokeRole",
951
- "outputs": [],
952
- "stateMutability": "nonpayable",
953
- "type": "function"
954
- },
955
- {
956
- "inputs": [
1336
+ },
957
1337
  {
958
1338
  "components": [
959
1339
  {
960
- "internalType": "uint256",
961
- "name": "nftId",
1340
+ "internalType": "UFixed",
1341
+ "name": "fractionalFee",
962
1342
  "type": "uint256"
963
1343
  },
964
1344
  {
965
- "internalType": "enum IComponent.CState",
966
- "name": "state",
967
- "type": "uint8"
1345
+ "internalType": "uint256",
1346
+ "name": "fixedFee",
1347
+ "type": "uint256"
968
1348
  }
969
1349
  ],
970
- "internalType": "struct IComponent.ComponentInfo",
971
- "name": "info",
1350
+ "internalType": "struct Fee",
1351
+ "name": "stakingFee",
972
1352
  "type": "tuple"
973
- }
974
- ],
975
- "name": "setComponentInfo",
976
- "outputs": [
1353
+ },
977
1354
  {
978
- "internalType": "uint256",
979
- "name": "nftId",
980
- "type": "uint256"
1355
+ "components": [
1356
+ {
1357
+ "internalType": "UFixed",
1358
+ "name": "fractionalFee",
1359
+ "type": "uint256"
1360
+ },
1361
+ {
1362
+ "internalType": "uint256",
1363
+ "name": "fixedFee",
1364
+ "type": "uint256"
1365
+ }
1366
+ ],
1367
+ "internalType": "struct Fee",
1368
+ "name": "performanceFee",
1369
+ "type": "tuple"
981
1370
  }
982
1371
  ],
1372
+ "name": "registerPool",
1373
+ "outputs": [],
983
1374
  "stateMutability": "nonpayable",
984
1375
  "type": "function"
985
1376
  },
986
1377
  {
987
1378
  "inputs": [
988
1379
  {
989
- "internalType": "uint256",
990
- "name": "poolNftId",
991
- "type": "uint256"
1380
+ "internalType": "NftId",
1381
+ "name": "nftId",
1382
+ "type": "uint96"
992
1383
  },
993
1384
  {
994
- "internalType": "uint256",
995
- "name": "policyNftId",
1385
+ "internalType": "bool",
1386
+ "name": "isVerifying",
1387
+ "type": "bool"
1388
+ },
1389
+ {
1390
+ "internalType": "UFixed",
1391
+ "name": "collateralizationRate",
996
1392
  "type": "uint256"
997
1393
  }
998
1394
  ],
999
- "name": "underwrite",
1395
+ "name": "registerPool",
1000
1396
  "outputs": [],
1001
1397
  "stateMutability": "nonpayable",
1002
1398
  "type": "function"
1003
- }
1004
- ],
1005
- "bytecode": "0x60e06040523480156200001157600080fd5b5060405162005edb38038062005edb833981810160405281019062000037919062000450565b808182848680806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505033600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050620001066040518060400160405280600c81526020017f50726f647563744f776e65720000000000000000000000000000000000000000815250620002b860201b60201c565b60808181525050620001536040518060400160405280600b81526020017f4f7261636c654f776e6572000000000000000000000000000000000000000000815250620002b860201b60201c565b60a08181525050620001a06040518060400160405280600981526020017f506f6f6c4f776e65720000000000000000000000000000000000000000000000815250620002b860201b60201c565b60c0818152505080600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505080600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505080601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505080601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505050620008c0565b60008060405180606001604052806000801b8152602001848152602001600115158152509050620002ef81620002f760201b60201c565b915050919050565b6000816000015190506000801b81036200035657620003208260200151620003b460201b60201c565b90508082600001818152505060038190806001815401808255809150506001900390600052602060002001600090919091909150555b81600260008381526020019081526020016000206000820151816000015560208201518160010190816200038b919062000726565b5060408201518160020160006101000a81548160ff021916908315150217905550905050919050565b600081604051602001620003c991906200089c565b604051602081830303815290604052805190602001209050919050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200041882620003eb565b9050919050565b6200042a816200040b565b81146200043657600080fd5b50565b6000815190506200044a816200041f565b92915050565b6000806000606084860312156200046c576200046b620003e6565b5b60006200047c8682870162000439565b93505060206200048f8682870162000439565b9250506040620004a28682870162000439565b9150509250925092565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200052e57607f821691505b602082108103620005445762000543620004e6565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005ae7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200056f565b620005ba86836200056f565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200060762000601620005fb84620005d2565b620005dc565b620005d2565b9050919050565b6000819050919050565b6200062383620005e6565b6200063b62000632826200060e565b8484546200057c565b825550505050565b600090565b6200065262000643565b6200065f81848462000618565b505050565b5b8181101562000687576200067b60008262000648565b60018101905062000665565b5050565b601f821115620006d657620006a0816200054a565b620006ab846200055f565b81016020851015620006bb578190505b620006d3620006ca856200055f565b83018262000664565b50505b505050565b600082821c905092915050565b6000620006fb60001984600802620006db565b1980831691505092915050565b6000620007168383620006e8565b9150826002028217905092915050565b6200073182620004ac565b67ffffffffffffffff8111156200074d576200074c620004b7565b5b62000759825462000515565b620007668282856200068b565b600060209050601f8311600181146200079e576000841562000789578287015190505b62000795858262000708565b86555062000805565b601f198416620007ae866200054a565b60005b82811015620007d857848901518255600182019150602085019450602081019050620007b1565b86831015620007f85784890151620007f4601f891682620006e8565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b60005b838110156200083e57808201518184015260208101905062000821565b60008484015250505050565b6000601f19601f8301169050919050565b60006200086882620004ac565b6200087481856200080d565b9350620008868185602086016200081e565b62000891816200084a565b840191505092915050565b60006020820190508181036000830152620008b881846200085b565b905092915050565b60805160a05160c0516155eb620008f0600039600061109a01526000610c6b0152600061237401526155eb6000f3fe608060405234801561001057600080fd5b50600436106102955760003560e01c80636fa2985311610167578063af17d38a116100ce578063d4b0a5ac11610087578063d4b0a5ac146108a2578063d547741f146108d2578063eb71e8c4146108ee578063eb7f494d1461090c578063f174ce1914610928578063fb2cb1011461094657610295565b8063af17d38a146107ba578063b260c42a146107ea578063b909155214610806578063ba62fbe414610824578063be409a1114610842578063ca15c8731461087257610295565b8063893d20e811610120578063893d20e8146106c05780639010d07c146106de57806391d148541461070e5780639588d85b1461073e5780639cad00521461076e578063a41d8a8f1461079e57610295565b80636fa29853146105ea57806379e829d0146106085780637ab4253a146106265780637c4a13b1146106565780637fec8b311461067257806383d33319146106a257610295565b806332e3a6e91161020b5780636078a3b2116101c45780636078a3b214610502578063644c45e0146105325780636b34608a146105505780636c137ea9146105805780636c1ddffa1461059e5780636f5db1e3146105ba57610295565b806332e3a6e91461042a5780633bc5de30146104485780634288121d146104665780635312fdc2146104845780635ab1bd53146104b45780635ede3c2f146104d257610295565b80632a3d616e1161025d5780632a3d616e146103425780632a5f6e85146103725780632b1c7f73146103905780632f2ff15d146103c05780632f380b35146103dc57806331b62a3b1461040c57610295565b806302393c411461029a578063105bdcb2146102b857806315dae03e146102e85780631aa3a008146103065780632236684414610324575b600080fd5b6102a2610964565b6040516102af9190613a4e565b60405180910390f35b6102d260048036038101906102cd9190613aa9565b61096d565b6040516102df9190613a4e565b60405180910390f35b6102f061098a565b6040516102fd9190613a4e565b60405180910390f35b61030e610a21565b60405161031b9190613a4e565b60405180910390f35b61032c610b52565b6040516103399190613af1565b60405180910390f35b61035c60048036038101906103579190613aa9565b610bf5565b6040516103699190613bc1565b60405180910390f35b61037a610c67565b6040516103879190613bf5565b60405180910390f35b6103aa60048036038101906103a59190613c6e565b610c8f565b6040516103b79190613a4e565b60405180910390f35b6103da60048036038101906103d59190613cc7565b610cd8565b005b6103f660048036038101906103f19190613aa9565b610f9a565b6040516104039190613d7e565b60405180910390f35b610414611091565b6040516104219190613a4e565b60405180910390f35b610432611096565b60405161043f9190613bf5565b60405180910390f35b6104506110be565b60405161045d9190613e29565b60405180910390f35b61046e6110e6565b60405161047b9190613eaa565b60405180910390f35b61049e60048036038101906104999190613aa9565b611110565b6040516104ab9190613bf5565b60405180910390f35b6104bc611138565b6040516104c99190613ee6565b60405180910390f35b6104ec60048036038101906104e7919061400d565b611161565b6040516104f99190613a4e565b60405180910390f35b61051c600480360381019061051791906140db565b6116ba565b6040516105299190613a4e565b60405180910390f35b61053a611ebb565b6040516105479190613a4e565b60405180910390f35b61056a60048036038101906105659190613aa9565b611f5d565b6040516105779190613bf5565b60405180910390f35b610588612370565b6040516105959190613bf5565b60405180910390f35b6105b860048036038101906105b39190614108565b612398565b005b6105d460048036038101906105cf9190613aa9565b612589565b6040516105e19190613a4e565b60405180910390f35b6105f26125a6565b6040516105ff9190614169565b60405180910390f35b6106106125d0565b60405161061d9190613af1565b60405180910390f35b610640600480360381019061063b91906141f9565b6125d9565b60405161064d9190613a4e565b60405180910390f35b610670600480360381019061066b9190614226565b61272f565b005b61068c60048036038101906106879190613aa9565b612949565b6040516106999190613a4e565b60405180910390f35b6106aa612971565b6040516106b79190613a4e565b60405180910390f35b6106c861297e565b6040516106d59190614262565b60405180910390f35b6106f860048036038101906106f3919061427d565b612b1d565b6040516107059190614262565b60405180910390f35b61072860048036038101906107239190613cc7565b612b4c565b6040516107359190613af1565b60405180910390f35b61075860048036038101906107539190613aa9565b612bb4565b60405161076591906143bc565b60405180910390f35b61078860048036038101906107839190614492565b612c6d565b6040516107959190613bf5565b60405180910390f35b6107b860048036038101906107b391906144db565b612c9d565b005b6107d460048036038101906107cf9190614492565b612e16565b6040516107e19190613bf5565b60405180910390f35b61080460048036038101906107ff9190613aa9565b612f04565b005b61080e612ffd565b60405161081b9190614583565b60405180910390f35b61082c613036565b6040516108399190613a4e565b60405180910390f35b61085c60048036038101906108579190614226565b613043565b604051610869919061465d565b60405180910390f35b61088c60048036038101906108879190614226565b613127565b6040516108999190613a4e565b60405180910390f35b6108bc60048036038101906108b79190613aa9565b61314b565b6040516108c99190614262565b60405180910390f35b6108ec60048036038101906108e79190613cc7565b613152565b005b6108f6613319565b6040516109039190614583565b60405180910390f35b61092660048036038101906109219190614226565b613352565b005b61093061356c565b60405161093d9190614583565b60405180910390f35b61094e6135a5565b60405161095b9190614262565b60405180910390f35b6402540be40081565b6000600d6000838152602001908152602001600020549050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d15db8b46040518163ffffffff1660e01b8152600401602060405180830381865afa1580156109f8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a1c9190614694565b905090565b60008073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610ab1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa89061470d565b60405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401610b0a9190614262565b6020604051808303816000875af1158015610b29573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b4d9190614694565b905090565b60008060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d272ac1e306040518263ffffffff1660e01b8152600401610bae9190614262565b602060405180830381865afa158015610bcb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bef9190614694565b11905090565b610bfd61392a565b60066000838152602001908152602001600020604051806040016040529081600082015481526020016001820160009054906101000a900460ff166002811115610c4a57610c49613b1b565b5b6002811115610c5c57610c5b613b1b565b5b815250509050919050565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b3073ffffffffffffffffffffffffffffffffffffffff1663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d23573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d479190614742565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610db4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dab906147bb565b60405180910390fd5b81600260008481526020019081526020016000206000015414610e0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0390614827565b60405180910390fd5b6002600083815260200190815260200160002060020160009054906101000a900460ff16610e6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6690614893565b60405180910390fd5b60016004600084815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610efd81600560008581526020019081526020016000206135cf90919063ffffffff16565b507f9a2df6ca1a9ab5e734f2f076b73fd00974eca8e06b9895f8f4eaebb590cc09a582826004600086815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16604051610f8e939291906148b3565b60405180910390a15050565b610fa2613956565b600f60008381526020019081526020016000206040518060a0016040529081600082015481526020016001820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016002820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001600382015481526020016004820154815250509050919050565b600090565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b606060006040516020016110d29190614932565b604051602081830303815290604052905090565b6000601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600382815481106111265761112561494d565b5b90600052602060002001549050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60003373ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146111f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ea906149ee565b60405180910390fd5b60008211156113db5760003073ffffffffffffffffffffffffffffffffffffffff16635ab1bd536040518163ffffffff1660e01b8152600401602060405180830381865afa158015611249573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061126d9190614a4c565b73ffffffffffffffffffffffffffffffffffffffff16631a3cd59a846040518263ffffffff1660e01b81526004016112a59190613a4e565b60a060405180830381865afa1580156112c2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112e69190614b05565b905060003073ffffffffffffffffffffffffffffffffffffffff16635ab1bd536040518163ffffffff1660e01b8152600401602060405180830381865afa158015611335573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113599190614a4c565b73ffffffffffffffffffffffffffffffffffffffff16631a3cd59a83602001516040518263ffffffff1660e01b81526004016113959190613a4e565b60a060405180830381865afa1580156113b2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113d69190614b05565b905050505b3073ffffffffffffffffffffffffffffffffffffffff16635ab1bd536040518163ffffffff1660e01b8152600401602060405180830381865afa158015611426573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061144a9190614a4c565b73ffffffffffffffffffffffffffffffffffffffff1663ab10b8ec88600001513073ffffffffffffffffffffffffffffffffffffffff16635ab1bd536040518163ffffffff1660e01b8152600401602060405180830381865afa1580156114b5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114d99190614a4c565b73ffffffffffffffffffffffffffffffffffffffff1663dadbccee6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611523573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115479190614694565b896040518463ffffffff1660e01b815260040161156693929190614b32565b6020604051808303816000875af1158015611585573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115a99190614694565b9050604051806101200160405280828152602001600160048111156115d1576115d0613b1b565b5b815260200186815260200185815260200184815260200142815260200160008152602001600081526020016000815250600c60008381526020019081526020016000206000820151816000015560208201518160010160006101000a81548160ff0219169083600481111561164957611648613b1b565b5b021790555060408201518160020155606082015181600301556080820151816004015560a0820151816005015560c0820151816006015560e08201518160070155610100820151816008015590505081600d6000838152602001908152602001600020819055509695505050505050565b60003373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461174c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174390614bb5565b60405180910390fd5b60006117c58373ffffffffffffffffffffffffffffffffffffffff166315dae03e6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561179c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117c09190614694565b611f5d565b90503073ffffffffffffffffffffffffffffffffffffffff166391d14854828573ffffffffffffffffffffffffffffffffffffffff1663fb2cb1016040518163ffffffff1660e01b8152600401602060405180830381865afa15801561182f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118539190614742565b6040518363ffffffff1660e01b8152600401611870929190614bd5565b602060405180830381865afa15801561188d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118b19190614c2a565b6118f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e790614ca3565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff16635ab1bd536040518163ffffffff1660e01b8152600401602060405180830381865afa15801561193b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061195f9190614a4c565b73ffffffffffffffffffffffffffffffffffffffff16634420e486846040518263ffffffff1660e01b81526004016119979190614262565b6020604051808303816000875af11580156119b6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119da9190614694565b9150604051806040016040528083815260200160016002811115611a0157611a00613b1b565b5b815250600660008481526020019081526020016000206000820151816000015560208201518160010160006101000a81548160ff02191690836002811115611a4c57611a4b613b1b565b5b02179055509050503073ffffffffffffffffffffffffffffffffffffffff16635ab1bd536040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a9f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ac39190614a4c565b73ffffffffffffffffffffffffffffffffffffffff166325425a916040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b0d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b319190614694565b8373ffffffffffffffffffffffffffffffffffffffff166315dae03e6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b7c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ba09190614694565b03611c7f57600083905060008173ffffffffffffffffffffffffffffffffffffffff16631bdd6b766040518163ffffffff1660e01b8152600401602060405180830381865afa158015611bf7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c1b9190614694565b905060008111611c60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5790614d0f565b60405180910390fd5b8060076000868152602001908152602001600020819055505050611e48565b3073ffffffffffffffffffffffffffffffffffffffff16635ab1bd536040518163ffffffff1660e01b8152600401602060405180830381865afa158015611cca573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cee9190614a4c565b73ffffffffffffffffffffffffffffffffffffffff16637535d2466040518163ffffffff1660e01b8152600401602060405180830381865afa158015611d38573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d5c9190614694565b8373ffffffffffffffffffffffffffffffffffffffff166315dae03e6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611da7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611dcb9190614694565b03611e475760003090508073ffffffffffffffffffffffffffffffffffffffff1663a41d8a8f848660006040518463ffffffff1660e01b8152600401611e1393929190614d2f565b600060405180830381600087803b158015611e2d57600080fd5b505af1158015611e41573d6000803e3d6000fd5b50505050505b5b81600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600982908060018154018082558091505060019003906000526020600020016000909190919091505550919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d272ac1e306040518263ffffffff1660e01b8152600401611f179190614262565b602060405180830381865afa158015611f34573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f589190614694565b905090565b60003073ffffffffffffffffffffffffffffffffffffffff16635ab1bd536040518163ffffffff1660e01b8152600401602060405180830381865afa158015611faa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fce9190614a4c565b73ffffffffffffffffffffffffffffffffffffffff166325425a916040518163ffffffff1660e01b8152600401602060405180830381865afa158015612018573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061203c9190614694565b82036120b8573073ffffffffffffffffffffffffffffffffffffffff16636c137ea96040518163ffffffff1660e01b8152600401602060405180830381865afa15801561208d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120b19190614d7b565b905061236b565b3073ffffffffffffffffffffffffffffffffffffffff16635ab1bd536040518163ffffffff1660e01b8152600401602060405180830381865afa158015612103573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121279190614a4c565b73ffffffffffffffffffffffffffffffffffffffff16637535d2466040518163ffffffff1660e01b8152600401602060405180830381865afa158015612171573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121959190614694565b8203612211573073ffffffffffffffffffffffffffffffffffffffff166332e3a6e96040518163ffffffff1660e01b8152600401602060405180830381865afa1580156121e6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061220a9190614d7b565b905061236b565b3073ffffffffffffffffffffffffffffffffffffffff16635ab1bd536040518163ffffffff1660e01b8152600401602060405180830381865afa15801561225c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122809190614a4c565b73ffffffffffffffffffffffffffffffffffffffff166338013f026040518163ffffffff1660e01b8152600401602060405180830381865afa1580156122ca573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122ee9190614694565b820361236a573073ffffffffffffffffffffffffffffffffffffffff16632a5f6e856040518163ffffffff1660e01b8152600401602060405180830381865afa15801561233f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123639190614d7b565b905061236b565b5b919050565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b3373ffffffffffffffffffffffffffffffffffffffff16601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612428576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241f906149ee565b60405180910390fd5b6000600f6000848152602001908152602001600020905082816000015414612485576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247c90614df4565b60405180910390fd5b600030905060008173ffffffffffffffffffffffffffffffffffffffff16639588d85b856040518263ffffffff1660e01b81526004016124c59190613a4e565b61012060405180830381865afa1580156124e3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125079190614f19565b90508060400151836004015484600301546125229190614f76565b1015612563576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255a90614ff6565b60405180910390fd5b806040015183600401600082825461257b9190615016565b925050819055505050505050565b600060076000838152602001908152602001600020549050919050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006001905090565b60003373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461266b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266290614bb5565b60405180910390fd5b6000826000015190506000811180156126995750806006600083815260200190815260200160002060000154145b6126d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126cf90615096565b60405180910390fd5b82600660008381526020019081526020016000206000820151816000015560208201518160010160006101000a81548160ff0219169083600281111561272157612720613b1b565b5b021790555090505050919050565b3073ffffffffffffffffffffffffffffffffffffffff1663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa15801561277a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061279e9190614742565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461280b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612802906147bb565b60405180910390fd5b60006002600083815260200190815260200160002060405180606001604052908160008201548152602001600182018054612845906150e5565b80601f0160208091040260200160405190810160405280929190818152602001828054612871906150e5565b80156128be5780601f10612893576101008083540402835291602001916128be565b820191906000526020600020905b8154815290600101906020018083116128a157829003601f168201915b505050505081526020016002820160009054906101000a900460ff16151515158152505090508181600001511461292a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292190615188565b60405180910390fd5b6000816040019015159081151581525050612944816135ff565b505050565b60006009828154811061295f5761295e61494d565b5b90600052602060002001549050919050565b6000600380549050905090565b60008060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d272ac1e306040518263ffffffff1660e01b81526004016129da9190614262565b602060405180830381865afa1580156129f7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a1b9190614694565b905060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c41a360a826040518263ffffffff1660e01b8152600401612a769190613a4e565b602060405180830381865afa158015612a93573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ab79190614742565b9150600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612b1557600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16612b17565b815b91505090565b6000612b4482600560008681526020019081526020016000206136b190919063ffffffff16565b905092915050565b60006004600084815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612bbc6139b1565b600c600083815260200190815260200160002060405180610120016040529081600082015481526020016001820160009054906101000a900460ff166004811115612c0a57612c09613b1b565b5b6004811115612c1c57612c1b613b1b565b5b81526020016002820154815260200160038201548152602001600482015481526020016005820154815260200160068201548152602001600782015481526020016008820154815250509050919050565b600081604051602001612c809190614583565b604051602081830303815290604052805190602001209050919050565b6000600f60008581526020019081526020016000206000015414612cf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ced906151f4565b60405180910390fd5b6040518060a001604052808481526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1681526020016402540be40081526020016000815250600f60008581526020019081526020016000206000820151816000015560208201518160010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060408201518160020160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506060820151816003015560808201518160040155905050505050565b60003073ffffffffffffffffffffffffffffffffffffffff1663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa158015612e63573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e879190614742565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612ef4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eeb906147bb565b60405180910390fd5b612efd826136cb565b9050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612f94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f8b906149ee565b60405180910390fd5b6000600c60008381526020019081526020016000209050428160060181905550806004015442612fc49190615016565b816007018190555060038160010160006101000a81548160ff02191690836004811115612ff457612ff3613b1b565b5b02179055505050565b6040518060400160405280600b81526020017f4f7261636c654f776e657200000000000000000000000000000000000000000081525081565b6000600980549050905090565b61304b613a0f565b6002600083815260200190815260200160002060405180606001604052908160008201548152602001600182018054613083906150e5565b80601f01602080910402602001604051908101604052809291908181526020018280546130af906150e5565b80156130fc5780601f106130d1576101008083540402835291602001916130fc565b820191906000526020600020905b8154815290600101906020018083116130df57829003601f168201915b505050505081526020016002820160009054906101000a900460ff1615151515815250509050919050565b600061314460056000848152602001908152602001600020613702565b9050919050565b6000919050565b3073ffffffffffffffffffffffffffffffffffffffff1663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa15801561319d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131c19190614742565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461322e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613225906147bb565b60405180910390fd5b81600260008481526020019081526020016000206000015414613286576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161327d90615260565b60405180910390fd5b60006004600084815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550613314816005600085815260200190815260200160002061371790919063ffffffff16565b505050565b6040518060400160405280600981526020017f506f6f6c4f776e6572000000000000000000000000000000000000000000000081525081565b3073ffffffffffffffffffffffffffffffffffffffff1663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa15801561339d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133c19190614742565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461342e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613425906147bb565b60405180910390fd5b60006002600083815260200190815260200160002060405180606001604052908160008201548152602001600182018054613468906150e5565b80601f0160208091040260200160405190810160405280929190818152602001828054613494906150e5565b80156134e15780601f106134b6576101008083540402835291602001916134e1565b820191906000526020600020905b8154815290600101906020018083116134c457829003601f168201915b505050505081526020016002820160009054906101000a900460ff16151515158152505090508181600001511461354d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613544906152f2565b60405180910390fd5b6001816040019015159081151581525050613567816135ff565b505050565b6040518060400160405280600c81526020017f50726f647563744f776e6572000000000000000000000000000000000000000081525081565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006135f7836000018373ffffffffffffffffffffffffffffffffffffffff1660001b613747565b905092915050565b6000816000015190506000801b81036136555761361f8260200151612c6d565b90508082600001818152505060038190806001815401808255809150506001900390600052602060002001600090919091909150555b816002600083815260200190815260200160002060008201518160000155602082015181600101908161368891906154b4565b5060408201518160020160006101000a81548160ff021916908315150217905550905050919050565b60006136c083600001836137b7565b60001c905092915050565b60008060405180606001604052806000801b81526020018481526020016001151581525090506136fa816135ff565b915050919050565b6000613710826000016137e2565b9050919050565b600061373f836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6137f3565b905092915050565b60006137538383613907565b6137ac5782600001829080600181540180825580915050600190039060005260206000200160009091909190915055826000018054905083600101600084815260200190815260200160002081905550600190506137b1565b600090505b92915050565b60008260000182815481106137cf576137ce61494d565b5b9060005260206000200154905092915050565b600081600001805490509050919050565b600080836001016000848152602001908152602001600020549050600081146138fb5760006001826138259190614f76565b905060006001866000018054905061383d9190614f76565b90508181146138ac57600086600001828154811061385e5761385d61494d565b5b90600052602060002001549050808760000184815481106138825761388161494d565b5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b856000018054806138c0576138bf615586565b5b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050613901565b60009150505b92915050565b600080836001016000848152602001908152602001600020541415905092915050565b604051806040016040528060008152602001600060028111156139505761394f613b1b565b5b81525090565b6040518060a0016040528060008152602001600073ffffffffffffffffffffffffffffffffffffffff168152602001600073ffffffffffffffffffffffffffffffffffffffff16815260200160008152602001600081525090565b60405180610120016040528060008152602001600060048111156139d8576139d7613b1b565b5b8152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b604051806060016040528060008019168152602001606081526020016000151581525090565b6000819050919050565b613a4881613a35565b82525050565b6000602082019050613a636000830184613a3f565b92915050565b6000604051905090565b600080fd5b600080fd5b613a8681613a35565b8114613a9157600080fd5b50565b600081359050613aa381613a7d565b92915050565b600060208284031215613abf57613abe613a73565b5b6000613acd84828501613a94565b91505092915050565b60008115159050919050565b613aeb81613ad6565b82525050565b6000602082019050613b066000830184613ae2565b92915050565b613b1581613a35565b82525050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60038110613b5b57613b5a613b1b565b5b50565b6000819050613b6c82613b4a565b919050565b6000613b7c82613b5e565b9050919050565b613b8c81613b71565b82525050565b604082016000820151613ba86000850182613b0c565b506020820151613bbb6020850182613b83565b50505050565b6000604082019050613bd66000830184613b92565b92915050565b6000819050919050565b613bef81613bdc565b82525050565b6000602082019050613c0a6000830184613be6565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613c3b82613c10565b9050919050565b613c4b81613c30565b8114613c5657600080fd5b50565b600081359050613c6881613c42565b92915050565b600060208284031215613c8457613c83613a73565b5b6000613c9284828501613c59565b91505092915050565b613ca481613bdc565b8114613caf57600080fd5b50565b600081359050613cc181613c9b565b92915050565b60008060408385031215613cde57613cdd613a73565b5b6000613cec85828601613cb2565b9250506020613cfd85828601613c59565b9150509250929050565b613d1081613c30565b82525050565b60a082016000820151613d2c6000850182613b0c565b506020820151613d3f6020850182613d07565b506040820151613d526040850182613d07565b506060820151613d656060850182613b0c565b506080820151613d786080850182613b0c565b50505050565b600060a082019050613d936000830184613d16565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613dd3578082015181840152602081019050613db8565b60008484015250505050565b6000601f19601f8301169050919050565b6000613dfb82613d99565b613e058185613da4565b9350613e15818560208601613db5565b613e1e81613ddf565b840191505092915050565b60006020820190508181036000830152613e438184613df0565b905092915050565b6000819050919050565b6000613e70613e6b613e6684613c10565b613e4b565b613c10565b9050919050565b6000613e8282613e55565b9050919050565b6000613e9482613e77565b9050919050565b613ea481613e89565b82525050565b6000602082019050613ebf6000830184613e9b565b92915050565b6000613ed082613e77565b9050919050565b613ee081613ec5565b82525050565b6000602082019050613efb6000830184613ed7565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613f3e82613ddf565b810181811067ffffffffffffffff82111715613f5d57613f5c613f06565b5b80604052505050565b6000613f70613a69565b9050613f7c8282613f35565b919050565b600060a08284031215613f9757613f96613f01565b5b613fa160a0613f66565b90506000613fb184828501613a94565b6000830152506020613fc584828501613a94565b6020830152506040613fd984828501613a94565b6040830152506060613fed84828501613c59565b606083015250608061400184828501613c59565b60808301525092915050565b600080600080600080610140878903121561402b5761402a613a73565b5b600061403989828a01613f81565b96505060a061404a89828a01613c59565b95505060c061405b89828a01613a94565b94505060e061406c89828a01613a94565b93505061010061407e89828a01613a94565b92505061012061409089828a01613a94565b9150509295509295509295565b60006140a882613c30565b9050919050565b6140b88161409d565b81146140c357600080fd5b50565b6000813590506140d5816140af565b92915050565b6000602082840312156140f1576140f0613a73565b5b60006140ff848285016140c6565b91505092915050565b6000806040838503121561411f5761411e613a73565b5b600061412d85828601613a94565b925050602061413e85828601613a94565b9150509250929050565b600061415382613e77565b9050919050565b61416381614148565b82525050565b600060208201905061417e600083018461415a565b92915050565b6003811061419157600080fd5b50565b6000813590506141a381614184565b92915050565b6000604082840312156141bf576141be613f01565b5b6141c96040613f66565b905060006141d984828501613a94565b60008301525060206141ed84828501614194565b60208301525092915050565b60006040828403121561420f5761420e613a73565b5b600061421d848285016141a9565b91505092915050565b60006020828403121561423c5761423b613a73565b5b600061424a84828501613cb2565b91505092915050565b61425c81613c30565b82525050565b60006020820190506142776000830184614253565b92915050565b6000806040838503121561429457614293613a73565b5b60006142a285828601613cb2565b92505060206142b385828601613a94565b9150509250929050565b600581106142ce576142cd613b1b565b5b50565b60008190506142df826142bd565b919050565b60006142ef826142d1565b9050919050565b6142ff816142e4565b82525050565b6101208201600082015161431c6000850182613b0c565b50602082015161432f60208501826142f6565b5060408201516143426040850182613b0c565b5060608201516143556060850182613b0c565b5060808201516143686080850182613b0c565b5060a082015161437b60a0850182613b0c565b5060c082015161438e60c0850182613b0c565b5060e08201516143a160e0850182613b0c565b506101008201516143b6610100850182613b0c565b50505050565b6000610120820190506143d26000830184614305565b92915050565b600080fd5b600080fd5b600067ffffffffffffffff8211156143fd576143fc613f06565b5b61440682613ddf565b9050602081019050919050565b82818337600083830152505050565b6000614435614430846143e2565b613f66565b905082815260208101848484011115614451576144506143dd565b5b61445c848285614413565b509392505050565b600082601f830112614479576144786143d8565b5b8135614489848260208601614422565b91505092915050565b6000602082840312156144a8576144a7613a73565b5b600082013567ffffffffffffffff8111156144c6576144c5613a78565b5b6144d284828501614464565b91505092915050565b6000806000606084860312156144f4576144f3613a73565b5b600061450286828701613a94565b935050602061451386828701613c59565b925050604061452486828701613c59565b9150509250925092565b600081519050919050565b600082825260208201905092915050565b60006145558261452e565b61455f8185614539565b935061456f818560208601613db5565b61457881613ddf565b840191505092915050565b6000602082019050818103600083015261459d818461454a565b905092915050565b6145ae81613bdc565b82525050565b600082825260208201905092915050565b60006145d08261452e565b6145da81856145b4565b93506145ea818560208601613db5565b6145f381613ddf565b840191505092915050565b61460781613ad6565b82525050565b600060608301600083015161462560008601826145a5565b506020830151848203602086015261463d82826145c5565b915050604083015161465260408601826145fe565b508091505092915050565b60006020820190508181036000830152614677818461460d565b905092915050565b60008151905061468e81613a7d565b92915050565b6000602082840312156146aa576146a9613a73565b5b60006146b88482850161467f565b91505092915050565b7f4552524f523a5052442d3030313a52454749535452595f5a45524f0000000000600082015250565b60006146f7601b83614539565b9150614702826146c1565b602082019050919050565b60006020820190508181036000830152614726816146ea565b9050919050565b60008151905061473c81613c42565b92915050565b60006020828403121561475857614757613a73565b5b60006147668482850161472d565b91505092915050565b7f4552524f523a41434d2d3030313a4e4f545f4f574e4552000000000000000000600082015250565b60006147a5601783614539565b91506147b08261476f565b602082019050919050565b600060208201905081810360008301526147d481614798565b9050919050565b7f4552524f523a41434d2d3031303a524f4c455f4e4f545f4558495354494e4700600082015250565b6000614811601f83614539565b915061481c826147db565b602082019050919050565b6000602082019050818103600083015261484081614804565b9050919050565b7f4552524f523a41434d2d3031313a524f4c455f4e4f545f414354495645000000600082015250565b600061487d601d83614539565b915061488882614847565b602082019050919050565b600060208201905081810360008301526148ac81614870565b9050919050565b60006060820190506148c86000830186613be6565b6148d56020830185614253565b6148e26040830184613ae2565b949350505050565b6000819050919050565b600060ff82169050919050565b600061491c614917614912846148ea565b613e4b565b6148f4565b9050919050565b61492c81614901565b82525050565b60006020820190506149476000830184614923565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552524f523a504f4c2d3030313a4e4f545f50524f445543545f53455256494360008201527f4500000000000000000000000000000000000000000000000000000000000000602082015250565b60006149d8602183614539565b91506149e38261497c565b604082019050919050565b60006020820190508181036000830152614a07816149cb565b9050919050565b6000614a1982613c30565b9050919050565b614a2981614a0e565b8114614a3457600080fd5b50565b600081519050614a4681614a20565b92915050565b600060208284031215614a6257614a61613a73565b5b6000614a7084828501614a37565b91505092915050565b600060a08284031215614a8f57614a8e613f01565b5b614a9960a0613f66565b90506000614aa98482850161467f565b6000830152506020614abd8482850161467f565b6020830152506040614ad18482850161467f565b6040830152506060614ae58482850161472d565b6060830152506080614af98482850161472d565b60808301525092915050565b600060a08284031215614b1b57614b1a613a73565b5b6000614b2984828501614a79565b91505092915050565b6000606082019050614b476000830186613a3f565b614b546020830185613a3f565b614b616040830184614253565b949350505050565b7f4552524f523a434d502d3030313a4e4f545f4f574e45525f5345525649434500600082015250565b6000614b9f601f83614539565b9150614baa82614b69565b602082019050919050565b60006020820190508181036000830152614bce81614b92565b9050919050565b6000604082019050614bea6000830185613be6565b614bf76020830184614253565b9392505050565b614c0781613ad6565b8114614c1257600080fd5b50565b600081519050614c2481614bfe565b92915050565b600060208284031215614c4057614c3f613a73565b5b6000614c4e84828501614c15565b91505092915050565b7f4552524f523a434d502d3030343a545950455f524f4c455f4d495353494e4700600082015250565b6000614c8d601f83614539565b9150614c9882614c57565b602082019050919050565b60006020820190508181036000830152614cbc81614c80565b9050919050565b7f4552524f523a434d502d3030353a504f4f4c5f554e4b4e4f574e000000000000600082015250565b6000614cf9601a83614539565b9150614d0482614cc3565b602082019050919050565b60006020820190508181036000830152614d2881614cec565b9050919050565b6000606082019050614d446000830186613a3f565b614d516020830185614253565b614d5e6040830184614253565b949350505050565b600081519050614d7581613c9b565b92915050565b600060208284031215614d9157614d90613a73565b5b6000614d9f84828501614d66565b91505092915050565b7f4552524f523a504c2d3030323a504f4f4c5f554e4b4e4f574e00000000000000600082015250565b6000614dde601983614539565b9150614de982614da8565b602082019050919050565b60006020820190508181036000830152614e0d81614dd1565b9050919050565b60058110614e2157600080fd5b50565b600081519050614e3381614e14565b92915050565b60006101208284031215614e5057614e4f613f01565b5b614e5b610120613f66565b90506000614e6b8482850161467f565b6000830152506020614e7f84828501614e24565b6020830152506040614e938482850161467f565b6040830152506060614ea78482850161467f565b6060830152506080614ebb8482850161467f565b60808301525060a0614ecf8482850161467f565b60a08301525060c0614ee38482850161467f565b60c08301525060e0614ef78482850161467f565b60e083015250610100614f0c8482850161467f565b6101008301525092915050565b60006101208284031215614f3057614f2f613a73565b5b6000614f3e84828501614e39565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614f8182613a35565b9150614f8c83613a35565b9250828203905081811115614fa457614fa3614f47565b5b92915050565b7f4552524f523a504c2d3030333a43415041434954595f544f4f5f4c4f57000000600082015250565b6000614fe0601d83614539565b9150614feb82614faa565b602082019050919050565b6000602082019050818103600083015261500f81614fd3565b9050919050565b600061502182613a35565b915061502c83613a35565b925082820190508082111561504457615043614f47565b5b92915050565b7f4552524f523a434d502d3030353a434f4d504f4e454e545f554e4b4e4f574e00600082015250565b6000615080601f83614539565b915061508b8261504a565b602082019050919050565b600060208201905081810360008301526150af81615073565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806150fd57607f821691505b6020821081036151105761510f6150b6565b5b50919050565b7f4552524f523a414f532d3030313a524f4c455f444f45535f4e4f545f4558495360008201527f5400000000000000000000000000000000000000000000000000000000000000602082015250565b6000615172602183614539565b915061517d82615116565b604082019050919050565b600060208201905081810360008301526151a181615165565b9050919050565b7f4552524f523a504c2d3030313a414c52454144595f4352454154454400000000600082015250565b60006151de601c83614539565b91506151e9826151a8565b602082019050919050565b6000602082019050818103600083015261520d816151d1565b9050919050565b7f4552524f523a41434d2d3032303a524f4c455f4e4f545f4558495354494e4700600082015250565b600061524a601f83614539565b915061525582615214565b602082019050919050565b600060208201905081810360008301526152798161523d565b9050919050565b7f4552524f523a414f532d3030323a524f4c455f444f45535f4e4f545f4558495360008201527f5400000000000000000000000000000000000000000000000000000000000000602082015250565b60006152dc602183614539565b91506152e782615280565b604082019050919050565b6000602082019050818103600083015261530b816152cf565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026153747fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82615337565b61537e8683615337565b95508019841693508086168417925050509392505050565b60006153b16153ac6153a784613a35565b613e4b565b613a35565b9050919050565b6000819050919050565b6153cb83615396565b6153df6153d7826153b8565b848454615344565b825550505050565b600090565b6153f46153e7565b6153ff8184846153c2565b505050565b5b81811015615423576154186000826153ec565b600181019050615405565b5050565b601f8211156154685761543981615312565b61544284615327565b81016020851015615451578190505b61546561545d85615327565b830182615404565b50505b505050565b600082821c905092915050565b600061548b6000198460080261546d565b1980831691505092915050565b60006154a4838361547a565b9150826002028217905092915050565b6154bd8261452e565b67ffffffffffffffff8111156154d6576154d5613f06565b5b6154e082546150e5565b6154eb828285615427565b600060209050601f83116001811461551e576000841561550c578287015190505b6155168582615498565b86555061557e565b601f19841661552c86615312565b60005b828110156155545784890151825560018201915060208501945060208101905061552f565b86831015615571578489015161556d601f89168261547a565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea26469706673582212208be2f3b18fc0bd067b6862a7f05bd372b6580540fa301add2d55c4c1477d3cd364736f6c63430008140033",
1006
- "deployedBytecode": "0x608060405234801561001057600080fd5b50600436106102955760003560e01c80636fa2985311610167578063af17d38a116100ce578063d4b0a5ac11610087578063d4b0a5ac146108a2578063d547741f146108d2578063eb71e8c4146108ee578063eb7f494d1461090c578063f174ce1914610928578063fb2cb1011461094657610295565b8063af17d38a146107ba578063b260c42a146107ea578063b909155214610806578063ba62fbe414610824578063be409a1114610842578063ca15c8731461087257610295565b8063893d20e811610120578063893d20e8146106c05780639010d07c146106de57806391d148541461070e5780639588d85b1461073e5780639cad00521461076e578063a41d8a8f1461079e57610295565b80636fa29853146105ea57806379e829d0146106085780637ab4253a146106265780637c4a13b1146106565780637fec8b311461067257806383d33319146106a257610295565b806332e3a6e91161020b5780636078a3b2116101c45780636078a3b214610502578063644c45e0146105325780636b34608a146105505780636c137ea9146105805780636c1ddffa1461059e5780636f5db1e3146105ba57610295565b806332e3a6e91461042a5780633bc5de30146104485780634288121d146104665780635312fdc2146104845780635ab1bd53146104b45780635ede3c2f146104d257610295565b80632a3d616e1161025d5780632a3d616e146103425780632a5f6e85146103725780632b1c7f73146103905780632f2ff15d146103c05780632f380b35146103dc57806331b62a3b1461040c57610295565b806302393c411461029a578063105bdcb2146102b857806315dae03e146102e85780631aa3a008146103065780632236684414610324575b600080fd5b6102a2610964565b6040516102af9190613a4e565b60405180910390f35b6102d260048036038101906102cd9190613aa9565b61096d565b6040516102df9190613a4e565b60405180910390f35b6102f061098a565b6040516102fd9190613a4e565b60405180910390f35b61030e610a21565b60405161031b9190613a4e565b60405180910390f35b61032c610b52565b6040516103399190613af1565b60405180910390f35b61035c60048036038101906103579190613aa9565b610bf5565b6040516103699190613bc1565b60405180910390f35b61037a610c67565b6040516103879190613bf5565b60405180910390f35b6103aa60048036038101906103a59190613c6e565b610c8f565b6040516103b79190613a4e565b60405180910390f35b6103da60048036038101906103d59190613cc7565b610cd8565b005b6103f660048036038101906103f19190613aa9565b610f9a565b6040516104039190613d7e565b60405180910390f35b610414611091565b6040516104219190613a4e565b60405180910390f35b610432611096565b60405161043f9190613bf5565b60405180910390f35b6104506110be565b60405161045d9190613e29565b60405180910390f35b61046e6110e6565b60405161047b9190613eaa565b60405180910390f35b61049e60048036038101906104999190613aa9565b611110565b6040516104ab9190613bf5565b60405180910390f35b6104bc611138565b6040516104c99190613ee6565b60405180910390f35b6104ec60048036038101906104e7919061400d565b611161565b6040516104f99190613a4e565b60405180910390f35b61051c600480360381019061051791906140db565b6116ba565b6040516105299190613a4e565b60405180910390f35b61053a611ebb565b6040516105479190613a4e565b60405180910390f35b61056a60048036038101906105659190613aa9565b611f5d565b6040516105779190613bf5565b60405180910390f35b610588612370565b6040516105959190613bf5565b60405180910390f35b6105b860048036038101906105b39190614108565b612398565b005b6105d460048036038101906105cf9190613aa9565b612589565b6040516105e19190613a4e565b60405180910390f35b6105f26125a6565b6040516105ff9190614169565b60405180910390f35b6106106125d0565b60405161061d9190613af1565b60405180910390f35b610640600480360381019061063b91906141f9565b6125d9565b60405161064d9190613a4e565b60405180910390f35b610670600480360381019061066b9190614226565b61272f565b005b61068c60048036038101906106879190613aa9565b612949565b6040516106999190613a4e565b60405180910390f35b6106aa612971565b6040516106b79190613a4e565b60405180910390f35b6106c861297e565b6040516106d59190614262565b60405180910390f35b6106f860048036038101906106f3919061427d565b612b1d565b6040516107059190614262565b60405180910390f35b61072860048036038101906107239190613cc7565b612b4c565b6040516107359190613af1565b60405180910390f35b61075860048036038101906107539190613aa9565b612bb4565b60405161076591906143bc565b60405180910390f35b61078860048036038101906107839190614492565b612c6d565b6040516107959190613bf5565b60405180910390f35b6107b860048036038101906107b391906144db565b612c9d565b005b6107d460048036038101906107cf9190614492565b612e16565b6040516107e19190613bf5565b60405180910390f35b61080460048036038101906107ff9190613aa9565b612f04565b005b61080e612ffd565b60405161081b9190614583565b60405180910390f35b61082c613036565b6040516108399190613a4e565b60405180910390f35b61085c60048036038101906108579190614226565b613043565b604051610869919061465d565b60405180910390f35b61088c60048036038101906108879190614226565b613127565b6040516108999190613a4e565b60405180910390f35b6108bc60048036038101906108b79190613aa9565b61314b565b6040516108c99190614262565b60405180910390f35b6108ec60048036038101906108e79190613cc7565b613152565b005b6108f6613319565b6040516109039190614583565b60405180910390f35b61092660048036038101906109219190614226565b613352565b005b61093061356c565b60405161093d9190614583565b60405180910390f35b61094e6135a5565b60405161095b9190614262565b60405180910390f35b6402540be40081565b6000600d6000838152602001908152602001600020549050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d15db8b46040518163ffffffff1660e01b8152600401602060405180830381865afa1580156109f8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a1c9190614694565b905090565b60008073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610ab1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa89061470d565b60405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401610b0a9190614262565b6020604051808303816000875af1158015610b29573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b4d9190614694565b905090565b60008060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d272ac1e306040518263ffffffff1660e01b8152600401610bae9190614262565b602060405180830381865afa158015610bcb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bef9190614694565b11905090565b610bfd61392a565b60066000838152602001908152602001600020604051806040016040529081600082015481526020016001820160009054906101000a900460ff166002811115610c4a57610c49613b1b565b5b6002811115610c5c57610c5b613b1b565b5b815250509050919050565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b3073ffffffffffffffffffffffffffffffffffffffff1663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d23573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d479190614742565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610db4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dab906147bb565b60405180910390fd5b81600260008481526020019081526020016000206000015414610e0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0390614827565b60405180910390fd5b6002600083815260200190815260200160002060020160009054906101000a900460ff16610e6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6690614893565b60405180910390fd5b60016004600084815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610efd81600560008581526020019081526020016000206135cf90919063ffffffff16565b507f9a2df6ca1a9ab5e734f2f076b73fd00974eca8e06b9895f8f4eaebb590cc09a582826004600086815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16604051610f8e939291906148b3565b60405180910390a15050565b610fa2613956565b600f60008381526020019081526020016000206040518060a0016040529081600082015481526020016001820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016002820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001600382015481526020016004820154815250509050919050565b600090565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b606060006040516020016110d29190614932565b604051602081830303815290604052905090565b6000601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600382815481106111265761112561494d565b5b90600052602060002001549050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60003373ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146111f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ea906149ee565b60405180910390fd5b60008211156113db5760003073ffffffffffffffffffffffffffffffffffffffff16635ab1bd536040518163ffffffff1660e01b8152600401602060405180830381865afa158015611249573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061126d9190614a4c565b73ffffffffffffffffffffffffffffffffffffffff16631a3cd59a846040518263ffffffff1660e01b81526004016112a59190613a4e565b60a060405180830381865afa1580156112c2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112e69190614b05565b905060003073ffffffffffffffffffffffffffffffffffffffff16635ab1bd536040518163ffffffff1660e01b8152600401602060405180830381865afa158015611335573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113599190614a4c565b73ffffffffffffffffffffffffffffffffffffffff16631a3cd59a83602001516040518263ffffffff1660e01b81526004016113959190613a4e565b60a060405180830381865afa1580156113b2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113d69190614b05565b905050505b3073ffffffffffffffffffffffffffffffffffffffff16635ab1bd536040518163ffffffff1660e01b8152600401602060405180830381865afa158015611426573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061144a9190614a4c565b73ffffffffffffffffffffffffffffffffffffffff1663ab10b8ec88600001513073ffffffffffffffffffffffffffffffffffffffff16635ab1bd536040518163ffffffff1660e01b8152600401602060405180830381865afa1580156114b5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114d99190614a4c565b73ffffffffffffffffffffffffffffffffffffffff1663dadbccee6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611523573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115479190614694565b896040518463ffffffff1660e01b815260040161156693929190614b32565b6020604051808303816000875af1158015611585573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115a99190614694565b9050604051806101200160405280828152602001600160048111156115d1576115d0613b1b565b5b815260200186815260200185815260200184815260200142815260200160008152602001600081526020016000815250600c60008381526020019081526020016000206000820151816000015560208201518160010160006101000a81548160ff0219169083600481111561164957611648613b1b565b5b021790555060408201518160020155606082015181600301556080820151816004015560a0820151816005015560c0820151816006015560e08201518160070155610100820151816008015590505081600d6000838152602001908152602001600020819055509695505050505050565b60003373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461174c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174390614bb5565b60405180910390fd5b60006117c58373ffffffffffffffffffffffffffffffffffffffff166315dae03e6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561179c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117c09190614694565b611f5d565b90503073ffffffffffffffffffffffffffffffffffffffff166391d14854828573ffffffffffffffffffffffffffffffffffffffff1663fb2cb1016040518163ffffffff1660e01b8152600401602060405180830381865afa15801561182f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118539190614742565b6040518363ffffffff1660e01b8152600401611870929190614bd5565b602060405180830381865afa15801561188d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118b19190614c2a565b6118f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e790614ca3565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff16635ab1bd536040518163ffffffff1660e01b8152600401602060405180830381865afa15801561193b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061195f9190614a4c565b73ffffffffffffffffffffffffffffffffffffffff16634420e486846040518263ffffffff1660e01b81526004016119979190614262565b6020604051808303816000875af11580156119b6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119da9190614694565b9150604051806040016040528083815260200160016002811115611a0157611a00613b1b565b5b815250600660008481526020019081526020016000206000820151816000015560208201518160010160006101000a81548160ff02191690836002811115611a4c57611a4b613b1b565b5b02179055509050503073ffffffffffffffffffffffffffffffffffffffff16635ab1bd536040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a9f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ac39190614a4c565b73ffffffffffffffffffffffffffffffffffffffff166325425a916040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b0d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b319190614694565b8373ffffffffffffffffffffffffffffffffffffffff166315dae03e6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b7c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ba09190614694565b03611c7f57600083905060008173ffffffffffffffffffffffffffffffffffffffff16631bdd6b766040518163ffffffff1660e01b8152600401602060405180830381865afa158015611bf7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c1b9190614694565b905060008111611c60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5790614d0f565b60405180910390fd5b8060076000868152602001908152602001600020819055505050611e48565b3073ffffffffffffffffffffffffffffffffffffffff16635ab1bd536040518163ffffffff1660e01b8152600401602060405180830381865afa158015611cca573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cee9190614a4c565b73ffffffffffffffffffffffffffffffffffffffff16637535d2466040518163ffffffff1660e01b8152600401602060405180830381865afa158015611d38573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d5c9190614694565b8373ffffffffffffffffffffffffffffffffffffffff166315dae03e6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611da7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611dcb9190614694565b03611e475760003090508073ffffffffffffffffffffffffffffffffffffffff1663a41d8a8f848660006040518463ffffffff1660e01b8152600401611e1393929190614d2f565b600060405180830381600087803b158015611e2d57600080fd5b505af1158015611e41573d6000803e3d6000fd5b50505050505b5b81600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600982908060018154018082558091505060019003906000526020600020016000909190919091505550919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d272ac1e306040518263ffffffff1660e01b8152600401611f179190614262565b602060405180830381865afa158015611f34573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f589190614694565b905090565b60003073ffffffffffffffffffffffffffffffffffffffff16635ab1bd536040518163ffffffff1660e01b8152600401602060405180830381865afa158015611faa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fce9190614a4c565b73ffffffffffffffffffffffffffffffffffffffff166325425a916040518163ffffffff1660e01b8152600401602060405180830381865afa158015612018573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061203c9190614694565b82036120b8573073ffffffffffffffffffffffffffffffffffffffff16636c137ea96040518163ffffffff1660e01b8152600401602060405180830381865afa15801561208d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120b19190614d7b565b905061236b565b3073ffffffffffffffffffffffffffffffffffffffff16635ab1bd536040518163ffffffff1660e01b8152600401602060405180830381865afa158015612103573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121279190614a4c565b73ffffffffffffffffffffffffffffffffffffffff16637535d2466040518163ffffffff1660e01b8152600401602060405180830381865afa158015612171573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121959190614694565b8203612211573073ffffffffffffffffffffffffffffffffffffffff166332e3a6e96040518163ffffffff1660e01b8152600401602060405180830381865afa1580156121e6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061220a9190614d7b565b905061236b565b3073ffffffffffffffffffffffffffffffffffffffff16635ab1bd536040518163ffffffff1660e01b8152600401602060405180830381865afa15801561225c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122809190614a4c565b73ffffffffffffffffffffffffffffffffffffffff166338013f026040518163ffffffff1660e01b8152600401602060405180830381865afa1580156122ca573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122ee9190614694565b820361236a573073ffffffffffffffffffffffffffffffffffffffff16632a5f6e856040518163ffffffff1660e01b8152600401602060405180830381865afa15801561233f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123639190614d7b565b905061236b565b5b919050565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b3373ffffffffffffffffffffffffffffffffffffffff16601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612428576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241f906149ee565b60405180910390fd5b6000600f6000848152602001908152602001600020905082816000015414612485576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247c90614df4565b60405180910390fd5b600030905060008173ffffffffffffffffffffffffffffffffffffffff16639588d85b856040518263ffffffff1660e01b81526004016124c59190613a4e565b61012060405180830381865afa1580156124e3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125079190614f19565b90508060400151836004015484600301546125229190614f76565b1015612563576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255a90614ff6565b60405180910390fd5b806040015183600401600082825461257b9190615016565b925050819055505050505050565b600060076000838152602001908152602001600020549050919050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006001905090565b60003373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461266b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266290614bb5565b60405180910390fd5b6000826000015190506000811180156126995750806006600083815260200190815260200160002060000154145b6126d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126cf90615096565b60405180910390fd5b82600660008381526020019081526020016000206000820151816000015560208201518160010160006101000a81548160ff0219169083600281111561272157612720613b1b565b5b021790555090505050919050565b3073ffffffffffffffffffffffffffffffffffffffff1663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa15801561277a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061279e9190614742565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461280b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612802906147bb565b60405180910390fd5b60006002600083815260200190815260200160002060405180606001604052908160008201548152602001600182018054612845906150e5565b80601f0160208091040260200160405190810160405280929190818152602001828054612871906150e5565b80156128be5780601f10612893576101008083540402835291602001916128be565b820191906000526020600020905b8154815290600101906020018083116128a157829003601f168201915b505050505081526020016002820160009054906101000a900460ff16151515158152505090508181600001511461292a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292190615188565b60405180910390fd5b6000816040019015159081151581525050612944816135ff565b505050565b60006009828154811061295f5761295e61494d565b5b90600052602060002001549050919050565b6000600380549050905090565b60008060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d272ac1e306040518263ffffffff1660e01b81526004016129da9190614262565b602060405180830381865afa1580156129f7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a1b9190614694565b905060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c41a360a826040518263ffffffff1660e01b8152600401612a769190613a4e565b602060405180830381865afa158015612a93573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ab79190614742565b9150600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612b1557600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16612b17565b815b91505090565b6000612b4482600560008681526020019081526020016000206136b190919063ffffffff16565b905092915050565b60006004600084815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612bbc6139b1565b600c600083815260200190815260200160002060405180610120016040529081600082015481526020016001820160009054906101000a900460ff166004811115612c0a57612c09613b1b565b5b6004811115612c1c57612c1b613b1b565b5b81526020016002820154815260200160038201548152602001600482015481526020016005820154815260200160068201548152602001600782015481526020016008820154815250509050919050565b600081604051602001612c809190614583565b604051602081830303815290604052805190602001209050919050565b6000600f60008581526020019081526020016000206000015414612cf6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ced906151f4565b60405180910390fd5b6040518060a001604052808481526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1681526020016402540be40081526020016000815250600f60008581526020019081526020016000206000820151816000015560208201518160010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060408201518160020160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506060820151816003015560808201518160040155905050505050565b60003073ffffffffffffffffffffffffffffffffffffffff1663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa158015612e63573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e879190614742565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612ef4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eeb906147bb565b60405180910390fd5b612efd826136cb565b9050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612f94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f8b906149ee565b60405180910390fd5b6000600c60008381526020019081526020016000209050428160060181905550806004015442612fc49190615016565b816007018190555060038160010160006101000a81548160ff02191690836004811115612ff457612ff3613b1b565b5b02179055505050565b6040518060400160405280600b81526020017f4f7261636c654f776e657200000000000000000000000000000000000000000081525081565b6000600980549050905090565b61304b613a0f565b6002600083815260200190815260200160002060405180606001604052908160008201548152602001600182018054613083906150e5565b80601f01602080910402602001604051908101604052809291908181526020018280546130af906150e5565b80156130fc5780601f106130d1576101008083540402835291602001916130fc565b820191906000526020600020905b8154815290600101906020018083116130df57829003601f168201915b505050505081526020016002820160009054906101000a900460ff1615151515815250509050919050565b600061314460056000848152602001908152602001600020613702565b9050919050565b6000919050565b3073ffffffffffffffffffffffffffffffffffffffff1663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa15801561319d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131c19190614742565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461322e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613225906147bb565b60405180910390fd5b81600260008481526020019081526020016000206000015414613286576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161327d90615260565b60405180910390fd5b60006004600084815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550613314816005600085815260200190815260200160002061371790919063ffffffff16565b505050565b6040518060400160405280600981526020017f506f6f6c4f776e6572000000000000000000000000000000000000000000000081525081565b3073ffffffffffffffffffffffffffffffffffffffff1663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa15801561339d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133c19190614742565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461342e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613425906147bb565b60405180910390fd5b60006002600083815260200190815260200160002060405180606001604052908160008201548152602001600182018054613468906150e5565b80601f0160208091040260200160405190810160405280929190818152602001828054613494906150e5565b80156134e15780601f106134b6576101008083540402835291602001916134e1565b820191906000526020600020905b8154815290600101906020018083116134c457829003601f168201915b505050505081526020016002820160009054906101000a900460ff16151515158152505090508181600001511461354d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613544906152f2565b60405180910390fd5b6001816040019015159081151581525050613567816135ff565b505050565b6040518060400160405280600c81526020017f50726f647563744f776e6572000000000000000000000000000000000000000081525081565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006135f7836000018373ffffffffffffffffffffffffffffffffffffffff1660001b613747565b905092915050565b6000816000015190506000801b81036136555761361f8260200151612c6d565b90508082600001818152505060038190806001815401808255809150506001900390600052602060002001600090919091909150555b816002600083815260200190815260200160002060008201518160000155602082015181600101908161368891906154b4565b5060408201518160020160006101000a81548160ff021916908315150217905550905050919050565b60006136c083600001836137b7565b60001c905092915050565b60008060405180606001604052806000801b81526020018481526020016001151581525090506136fa816135ff565b915050919050565b6000613710826000016137e2565b9050919050565b600061373f836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6137f3565b905092915050565b60006137538383613907565b6137ac5782600001829080600181540180825580915050600190039060005260206000200160009091909190915055826000018054905083600101600084815260200190815260200160002081905550600190506137b1565b600090505b92915050565b60008260000182815481106137cf576137ce61494d565b5b9060005260206000200154905092915050565b600081600001805490509050919050565b600080836001016000848152602001908152602001600020549050600081146138fb5760006001826138259190614f76565b905060006001866000018054905061383d9190614f76565b90508181146138ac57600086600001828154811061385e5761385d61494d565b5b90600052602060002001549050808760000184815481106138825761388161494d565b5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b856000018054806138c0576138bf615586565b5b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050613901565b60009150505b92915050565b600080836001016000848152602001908152602001600020541415905092915050565b604051806040016040528060008152602001600060028111156139505761394f613b1b565b5b81525090565b6040518060a0016040528060008152602001600073ffffffffffffffffffffffffffffffffffffffff168152602001600073ffffffffffffffffffffffffffffffffffffffff16815260200160008152602001600081525090565b60405180610120016040528060008152602001600060048111156139d8576139d7613b1b565b5b8152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b604051806060016040528060008019168152602001606081526020016000151581525090565b6000819050919050565b613a4881613a35565b82525050565b6000602082019050613a636000830184613a3f565b92915050565b6000604051905090565b600080fd5b600080fd5b613a8681613a35565b8114613a9157600080fd5b50565b600081359050613aa381613a7d565b92915050565b600060208284031215613abf57613abe613a73565b5b6000613acd84828501613a94565b91505092915050565b60008115159050919050565b613aeb81613ad6565b82525050565b6000602082019050613b066000830184613ae2565b92915050565b613b1581613a35565b82525050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60038110613b5b57613b5a613b1b565b5b50565b6000819050613b6c82613b4a565b919050565b6000613b7c82613b5e565b9050919050565b613b8c81613b71565b82525050565b604082016000820151613ba86000850182613b0c565b506020820151613bbb6020850182613b83565b50505050565b6000604082019050613bd66000830184613b92565b92915050565b6000819050919050565b613bef81613bdc565b82525050565b6000602082019050613c0a6000830184613be6565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613c3b82613c10565b9050919050565b613c4b81613c30565b8114613c5657600080fd5b50565b600081359050613c6881613c42565b92915050565b600060208284031215613c8457613c83613a73565b5b6000613c9284828501613c59565b91505092915050565b613ca481613bdc565b8114613caf57600080fd5b50565b600081359050613cc181613c9b565b92915050565b60008060408385031215613cde57613cdd613a73565b5b6000613cec85828601613cb2565b9250506020613cfd85828601613c59565b9150509250929050565b613d1081613c30565b82525050565b60a082016000820151613d2c6000850182613b0c565b506020820151613d3f6020850182613d07565b506040820151613d526040850182613d07565b506060820151613d656060850182613b0c565b506080820151613d786080850182613b0c565b50505050565b600060a082019050613d936000830184613d16565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613dd3578082015181840152602081019050613db8565b60008484015250505050565b6000601f19601f8301169050919050565b6000613dfb82613d99565b613e058185613da4565b9350613e15818560208601613db5565b613e1e81613ddf565b840191505092915050565b60006020820190508181036000830152613e438184613df0565b905092915050565b6000819050919050565b6000613e70613e6b613e6684613c10565b613e4b565b613c10565b9050919050565b6000613e8282613e55565b9050919050565b6000613e9482613e77565b9050919050565b613ea481613e89565b82525050565b6000602082019050613ebf6000830184613e9b565b92915050565b6000613ed082613e77565b9050919050565b613ee081613ec5565b82525050565b6000602082019050613efb6000830184613ed7565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613f3e82613ddf565b810181811067ffffffffffffffff82111715613f5d57613f5c613f06565b5b80604052505050565b6000613f70613a69565b9050613f7c8282613f35565b919050565b600060a08284031215613f9757613f96613f01565b5b613fa160a0613f66565b90506000613fb184828501613a94565b6000830152506020613fc584828501613a94565b6020830152506040613fd984828501613a94565b6040830152506060613fed84828501613c59565b606083015250608061400184828501613c59565b60808301525092915050565b600080600080600080610140878903121561402b5761402a613a73565b5b600061403989828a01613f81565b96505060a061404a89828a01613c59565b95505060c061405b89828a01613a94565b94505060e061406c89828a01613a94565b93505061010061407e89828a01613a94565b92505061012061409089828a01613a94565b9150509295509295509295565b60006140a882613c30565b9050919050565b6140b88161409d565b81146140c357600080fd5b50565b6000813590506140d5816140af565b92915050565b6000602082840312156140f1576140f0613a73565b5b60006140ff848285016140c6565b91505092915050565b6000806040838503121561411f5761411e613a73565b5b600061412d85828601613a94565b925050602061413e85828601613a94565b9150509250929050565b600061415382613e77565b9050919050565b61416381614148565b82525050565b600060208201905061417e600083018461415a565b92915050565b6003811061419157600080fd5b50565b6000813590506141a381614184565b92915050565b6000604082840312156141bf576141be613f01565b5b6141c96040613f66565b905060006141d984828501613a94565b60008301525060206141ed84828501614194565b60208301525092915050565b60006040828403121561420f5761420e613a73565b5b600061421d848285016141a9565b91505092915050565b60006020828403121561423c5761423b613a73565b5b600061424a84828501613cb2565b91505092915050565b61425c81613c30565b82525050565b60006020820190506142776000830184614253565b92915050565b6000806040838503121561429457614293613a73565b5b60006142a285828601613cb2565b92505060206142b385828601613a94565b9150509250929050565b600581106142ce576142cd613b1b565b5b50565b60008190506142df826142bd565b919050565b60006142ef826142d1565b9050919050565b6142ff816142e4565b82525050565b6101208201600082015161431c6000850182613b0c565b50602082015161432f60208501826142f6565b5060408201516143426040850182613b0c565b5060608201516143556060850182613b0c565b5060808201516143686080850182613b0c565b5060a082015161437b60a0850182613b0c565b5060c082015161438e60c0850182613b0c565b5060e08201516143a160e0850182613b0c565b506101008201516143b6610100850182613b0c565b50505050565b6000610120820190506143d26000830184614305565b92915050565b600080fd5b600080fd5b600067ffffffffffffffff8211156143fd576143fc613f06565b5b61440682613ddf565b9050602081019050919050565b82818337600083830152505050565b6000614435614430846143e2565b613f66565b905082815260208101848484011115614451576144506143dd565b5b61445c848285614413565b509392505050565b600082601f830112614479576144786143d8565b5b8135614489848260208601614422565b91505092915050565b6000602082840312156144a8576144a7613a73565b5b600082013567ffffffffffffffff8111156144c6576144c5613a78565b5b6144d284828501614464565b91505092915050565b6000806000606084860312156144f4576144f3613a73565b5b600061450286828701613a94565b935050602061451386828701613c59565b925050604061452486828701613c59565b9150509250925092565b600081519050919050565b600082825260208201905092915050565b60006145558261452e565b61455f8185614539565b935061456f818560208601613db5565b61457881613ddf565b840191505092915050565b6000602082019050818103600083015261459d818461454a565b905092915050565b6145ae81613bdc565b82525050565b600082825260208201905092915050565b60006145d08261452e565b6145da81856145b4565b93506145ea818560208601613db5565b6145f381613ddf565b840191505092915050565b61460781613ad6565b82525050565b600060608301600083015161462560008601826145a5565b506020830151848203602086015261463d82826145c5565b915050604083015161465260408601826145fe565b508091505092915050565b60006020820190508181036000830152614677818461460d565b905092915050565b60008151905061468e81613a7d565b92915050565b6000602082840312156146aa576146a9613a73565b5b60006146b88482850161467f565b91505092915050565b7f4552524f523a5052442d3030313a52454749535452595f5a45524f0000000000600082015250565b60006146f7601b83614539565b9150614702826146c1565b602082019050919050565b60006020820190508181036000830152614726816146ea565b9050919050565b60008151905061473c81613c42565b92915050565b60006020828403121561475857614757613a73565b5b60006147668482850161472d565b91505092915050565b7f4552524f523a41434d2d3030313a4e4f545f4f574e4552000000000000000000600082015250565b60006147a5601783614539565b91506147b08261476f565b602082019050919050565b600060208201905081810360008301526147d481614798565b9050919050565b7f4552524f523a41434d2d3031303a524f4c455f4e4f545f4558495354494e4700600082015250565b6000614811601f83614539565b915061481c826147db565b602082019050919050565b6000602082019050818103600083015261484081614804565b9050919050565b7f4552524f523a41434d2d3031313a524f4c455f4e4f545f414354495645000000600082015250565b600061487d601d83614539565b915061488882614847565b602082019050919050565b600060208201905081810360008301526148ac81614870565b9050919050565b60006060820190506148c86000830186613be6565b6148d56020830185614253565b6148e26040830184613ae2565b949350505050565b6000819050919050565b600060ff82169050919050565b600061491c614917614912846148ea565b613e4b565b6148f4565b9050919050565b61492c81614901565b82525050565b60006020820190506149476000830184614923565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552524f523a504f4c2d3030313a4e4f545f50524f445543545f53455256494360008201527f4500000000000000000000000000000000000000000000000000000000000000602082015250565b60006149d8602183614539565b91506149e38261497c565b604082019050919050565b60006020820190508181036000830152614a07816149cb565b9050919050565b6000614a1982613c30565b9050919050565b614a2981614a0e565b8114614a3457600080fd5b50565b600081519050614a4681614a20565b92915050565b600060208284031215614a6257614a61613a73565b5b6000614a7084828501614a37565b91505092915050565b600060a08284031215614a8f57614a8e613f01565b5b614a9960a0613f66565b90506000614aa98482850161467f565b6000830152506020614abd8482850161467f565b6020830152506040614ad18482850161467f565b6040830152506060614ae58482850161472d565b6060830152506080614af98482850161472d565b60808301525092915050565b600060a08284031215614b1b57614b1a613a73565b5b6000614b2984828501614a79565b91505092915050565b6000606082019050614b476000830186613a3f565b614b546020830185613a3f565b614b616040830184614253565b949350505050565b7f4552524f523a434d502d3030313a4e4f545f4f574e45525f5345525649434500600082015250565b6000614b9f601f83614539565b9150614baa82614b69565b602082019050919050565b60006020820190508181036000830152614bce81614b92565b9050919050565b6000604082019050614bea6000830185613be6565b614bf76020830184614253565b9392505050565b614c0781613ad6565b8114614c1257600080fd5b50565b600081519050614c2481614bfe565b92915050565b600060208284031215614c4057614c3f613a73565b5b6000614c4e84828501614c15565b91505092915050565b7f4552524f523a434d502d3030343a545950455f524f4c455f4d495353494e4700600082015250565b6000614c8d601f83614539565b9150614c9882614c57565b602082019050919050565b60006020820190508181036000830152614cbc81614c80565b9050919050565b7f4552524f523a434d502d3030353a504f4f4c5f554e4b4e4f574e000000000000600082015250565b6000614cf9601a83614539565b9150614d0482614cc3565b602082019050919050565b60006020820190508181036000830152614d2881614cec565b9050919050565b6000606082019050614d446000830186613a3f565b614d516020830185614253565b614d5e6040830184614253565b949350505050565b600081519050614d7581613c9b565b92915050565b600060208284031215614d9157614d90613a73565b5b6000614d9f84828501614d66565b91505092915050565b7f4552524f523a504c2d3030323a504f4f4c5f554e4b4e4f574e00000000000000600082015250565b6000614dde601983614539565b9150614de982614da8565b602082019050919050565b60006020820190508181036000830152614e0d81614dd1565b9050919050565b60058110614e2157600080fd5b50565b600081519050614e3381614e14565b92915050565b60006101208284031215614e5057614e4f613f01565b5b614e5b610120613f66565b90506000614e6b8482850161467f565b6000830152506020614e7f84828501614e24565b6020830152506040614e938482850161467f565b6040830152506060614ea78482850161467f565b6060830152506080614ebb8482850161467f565b60808301525060a0614ecf8482850161467f565b60a08301525060c0614ee38482850161467f565b60c08301525060e0614ef78482850161467f565b60e083015250610100614f0c8482850161467f565b6101008301525092915050565b60006101208284031215614f3057614f2f613a73565b5b6000614f3e84828501614e39565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614f8182613a35565b9150614f8c83613a35565b9250828203905081811115614fa457614fa3614f47565b5b92915050565b7f4552524f523a504c2d3030333a43415041434954595f544f4f5f4c4f57000000600082015250565b6000614fe0601d83614539565b9150614feb82614faa565b602082019050919050565b6000602082019050818103600083015261500f81614fd3565b9050919050565b600061502182613a35565b915061502c83613a35565b925082820190508082111561504457615043614f47565b5b92915050565b7f4552524f523a434d502d3030353a434f4d504f4e454e545f554e4b4e4f574e00600082015250565b6000615080601f83614539565b915061508b8261504a565b602082019050919050565b600060208201905081810360008301526150af81615073565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806150fd57607f821691505b6020821081036151105761510f6150b6565b5b50919050565b7f4552524f523a414f532d3030313a524f4c455f444f45535f4e4f545f4558495360008201527f5400000000000000000000000000000000000000000000000000000000000000602082015250565b6000615172602183614539565b915061517d82615116565b604082019050919050565b600060208201905081810360008301526151a181615165565b9050919050565b7f4552524f523a504c2d3030313a414c52454144595f4352454154454400000000600082015250565b60006151de601c83614539565b91506151e9826151a8565b602082019050919050565b6000602082019050818103600083015261520d816151d1565b9050919050565b7f4552524f523a41434d2d3032303a524f4c455f4e4f545f4558495354494e4700600082015250565b600061524a601f83614539565b915061525582615214565b602082019050919050565b600060208201905081810360008301526152798161523d565b9050919050565b7f4552524f523a414f532d3030323a524f4c455f444f45535f4e4f545f4558495360008201527f5400000000000000000000000000000000000000000000000000000000000000602082015250565b60006152dc602183614539565b91506152e782615280565b604082019050919050565b6000602082019050818103600083015261530b816152cf565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026153747fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82615337565b61537e8683615337565b95508019841693508086168417925050509392505050565b60006153b16153ac6153a784613a35565b613e4b565b613a35565b9050919050565b6000819050919050565b6153cb83615396565b6153df6153d7826153b8565b848454615344565b825550505050565b600090565b6153f46153e7565b6153ff8184846153c2565b505050565b5b81811015615423576154186000826153ec565b600181019050615405565b5050565b601f8211156154685761543981615312565b61544284615327565b81016020851015615451578190505b61546561545d85615327565b830182615404565b50505b505050565b600082821c905092915050565b600061548b6000198460080261546d565b1980831691505092915050565b60006154a4838361547a565b9150826002028217905092915050565b6154bd8261452e565b67ffffffffffffffff8111156154d6576154d5613f06565b5b6154e082546150e5565b6154eb828285615427565b600060209050601f83116001811461551e576000841561550c578287015190505b6155168582615498565b86555061557e565b601f19841661552c86615312565b60005b828110156155545784890151825560018201915060208501945060208101905061552f565b86831015615571578489015161556d601f89168261547a565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea26469706673582212208be2f3b18fc0bd067b6862a7f05bd372b6580540fa301add2d55c4c1477d3cd364736f6c63430008140033",
1007
- "linkReferences": {},
1008
- "deployedLinkReferences": {}
1399
+ },
1400
+ {
1401
+ "inputs": [
1402
+ {
1403
+ "internalType": "NftId",
1404
+ "name": "productNftId",
1405
+ "type": "uint96"
1406
+ },
1407
+ {
1408
+ "internalType": "NftId",
1409
+ "name": "distributorNftId",
1410
+ "type": "uint96"
1411
+ },
1412
+ {
1413
+ "internalType": "NftId",
1414
+ "name": "poolNftId",
1415
+ "type": "uint96"
1416
+ },
1417
+ {
1418
+ "internalType": "contract IERC20Metadata",
1419
+ "name": "token",
1420
+ "type": "address"
1421
+ },
1422
+ {
1423
+ "internalType": "address",
1424
+ "name": "wallet",
1425
+ "type": "address"
1426
+ },
1427
+ {
1428
+ "components": [
1429
+ {
1430
+ "internalType": "UFixed",
1431
+ "name": "fractionalFee",
1432
+ "type": "uint256"
1433
+ },
1434
+ {
1435
+ "internalType": "uint256",
1436
+ "name": "fixedFee",
1437
+ "type": "uint256"
1438
+ }
1439
+ ],
1440
+ "internalType": "struct Fee",
1441
+ "name": "policyFee",
1442
+ "type": "tuple"
1443
+ },
1444
+ {
1445
+ "components": [
1446
+ {
1447
+ "internalType": "UFixed",
1448
+ "name": "fractionalFee",
1449
+ "type": "uint256"
1450
+ },
1451
+ {
1452
+ "internalType": "uint256",
1453
+ "name": "fixedFee",
1454
+ "type": "uint256"
1455
+ }
1456
+ ],
1457
+ "internalType": "struct Fee",
1458
+ "name": "processingFee",
1459
+ "type": "tuple"
1460
+ }
1461
+ ],
1462
+ "name": "registerProduct",
1463
+ "outputs": [],
1464
+ "stateMutability": "nonpayable",
1465
+ "type": "function"
1466
+ },
1467
+ {
1468
+ "inputs": [
1469
+ {
1470
+ "internalType": "NftId",
1471
+ "name": "bundleNftId",
1472
+ "type": "uint96"
1473
+ },
1474
+ {
1475
+ "internalType": "NftId",
1476
+ "name": "policyNftId",
1477
+ "type": "uint96"
1478
+ }
1479
+ ],
1480
+ "name": "releasePolicy",
1481
+ "outputs": [
1482
+ {
1483
+ "internalType": "uint256",
1484
+ "name": "collateralAmount",
1485
+ "type": "uint256"
1486
+ }
1487
+ ],
1488
+ "stateMutability": "nonpayable",
1489
+ "type": "function"
1490
+ },
1491
+ {
1492
+ "inputs": [
1493
+ {
1494
+ "internalType": "RoleId",
1495
+ "name": "role",
1496
+ "type": "bytes8"
1497
+ },
1498
+ {
1499
+ "internalType": "address",
1500
+ "name": "member",
1501
+ "type": "address"
1502
+ }
1503
+ ],
1504
+ "name": "revokeRole",
1505
+ "outputs": [],
1506
+ "stateMutability": "nonpayable",
1507
+ "type": "function"
1508
+ },
1509
+ {
1510
+ "inputs": [
1511
+ {
1512
+ "internalType": "RoleId",
1513
+ "name": "role",
1514
+ "type": "bytes8"
1515
+ }
1516
+ ],
1517
+ "name": "roleExists",
1518
+ "outputs": [
1519
+ {
1520
+ "internalType": "bool",
1521
+ "name": "",
1522
+ "type": "bool"
1523
+ }
1524
+ ],
1525
+ "stateMutability": "view",
1526
+ "type": "function"
1527
+ },
1528
+ {
1529
+ "inputs": [
1530
+ {
1531
+ "components": [
1532
+ {
1533
+ "internalType": "NftId",
1534
+ "name": "nftId",
1535
+ "type": "uint96"
1536
+ },
1537
+ {
1538
+ "internalType": "NftId",
1539
+ "name": "poolNftId",
1540
+ "type": "uint96"
1541
+ },
1542
+ {
1543
+ "internalType": "bytes",
1544
+ "name": "filter",
1545
+ "type": "bytes"
1546
+ },
1547
+ {
1548
+ "internalType": "uint256",
1549
+ "name": "capitalAmount",
1550
+ "type": "uint256"
1551
+ },
1552
+ {
1553
+ "internalType": "uint256",
1554
+ "name": "lockedAmount",
1555
+ "type": "uint256"
1556
+ },
1557
+ {
1558
+ "internalType": "uint256",
1559
+ "name": "balanceAmount",
1560
+ "type": "uint256"
1561
+ },
1562
+ {
1563
+ "internalType": "Timestamp",
1564
+ "name": "expiredAt",
1565
+ "type": "uint40"
1566
+ },
1567
+ {
1568
+ "internalType": "Timestamp",
1569
+ "name": "closedAt",
1570
+ "type": "uint40"
1571
+ }
1572
+ ],
1573
+ "internalType": "struct IBundle.BundleInfo",
1574
+ "name": "bundleInfo",
1575
+ "type": "tuple"
1576
+ }
1577
+ ],
1578
+ "name": "setBundleInfo",
1579
+ "outputs": [],
1580
+ "stateMutability": "nonpayable",
1581
+ "type": "function"
1582
+ },
1583
+ {
1584
+ "inputs": [
1585
+ {
1586
+ "components": [
1587
+ {
1588
+ "internalType": "NftId",
1589
+ "name": "nftId",
1590
+ "type": "uint96"
1591
+ },
1592
+ {
1593
+ "internalType": "StateId",
1594
+ "name": "state",
1595
+ "type": "uint8"
1596
+ },
1597
+ {
1598
+ "internalType": "contract IERC20Metadata",
1599
+ "name": "token",
1600
+ "type": "address"
1601
+ }
1602
+ ],
1603
+ "internalType": "struct IComponent.ComponentInfo",
1604
+ "name": "info",
1605
+ "type": "tuple"
1606
+ }
1607
+ ],
1608
+ "name": "setComponentInfo",
1609
+ "outputs": [
1610
+ {
1611
+ "internalType": "NftId",
1612
+ "name": "nftId",
1613
+ "type": "uint96"
1614
+ }
1615
+ ],
1616
+ "stateMutability": "nonpayable",
1617
+ "type": "function"
1618
+ },
1619
+ {
1620
+ "inputs": [
1621
+ {
1622
+ "components": [
1623
+ {
1624
+ "internalType": "NftId",
1625
+ "name": "nftId",
1626
+ "type": "uint96"
1627
+ },
1628
+ {
1629
+ "internalType": "NftId",
1630
+ "name": "productNftId",
1631
+ "type": "uint96"
1632
+ },
1633
+ {
1634
+ "internalType": "NftId",
1635
+ "name": "bundleNftId",
1636
+ "type": "uint96"
1637
+ },
1638
+ {
1639
+ "internalType": "address",
1640
+ "name": "beneficiary",
1641
+ "type": "address"
1642
+ },
1643
+ {
1644
+ "internalType": "StateId",
1645
+ "name": "state",
1646
+ "type": "uint8"
1647
+ },
1648
+ {
1649
+ "internalType": "uint256",
1650
+ "name": "sumInsuredAmount",
1651
+ "type": "uint256"
1652
+ },
1653
+ {
1654
+ "internalType": "uint256",
1655
+ "name": "premiumAmount",
1656
+ "type": "uint256"
1657
+ },
1658
+ {
1659
+ "internalType": "uint256",
1660
+ "name": "premiumPaidAmount",
1661
+ "type": "uint256"
1662
+ },
1663
+ {
1664
+ "internalType": "uint256",
1665
+ "name": "lifetime",
1666
+ "type": "uint256"
1667
+ },
1668
+ {
1669
+ "internalType": "bytes",
1670
+ "name": "data",
1671
+ "type": "bytes"
1672
+ },
1673
+ {
1674
+ "internalType": "Timestamp",
1675
+ "name": "createdAt",
1676
+ "type": "uint40"
1677
+ },
1678
+ {
1679
+ "internalType": "Timestamp",
1680
+ "name": "activatedAt",
1681
+ "type": "uint40"
1682
+ },
1683
+ {
1684
+ "internalType": "Timestamp",
1685
+ "name": "expiredAt",
1686
+ "type": "uint40"
1687
+ },
1688
+ {
1689
+ "internalType": "Timestamp",
1690
+ "name": "closedAt",
1691
+ "type": "uint40"
1692
+ },
1693
+ {
1694
+ "internalType": "Blocknumber",
1695
+ "name": "updatedIn",
1696
+ "type": "uint32"
1697
+ }
1698
+ ],
1699
+ "internalType": "struct IPolicy.PolicyInfo",
1700
+ "name": "policyInfo",
1701
+ "type": "tuple"
1702
+ }
1703
+ ],
1704
+ "name": "setPolicyInfo",
1705
+ "outputs": [],
1706
+ "stateMutability": "nonpayable",
1707
+ "type": "function"
1708
+ },
1709
+ {
1710
+ "inputs": [
1711
+ {
1712
+ "internalType": "NftId",
1713
+ "name": "poolNftId",
1714
+ "type": "uint96"
1715
+ },
1716
+ {
1717
+ "components": [
1718
+ {
1719
+ "internalType": "UFixed",
1720
+ "name": "fractionalFee",
1721
+ "type": "uint256"
1722
+ },
1723
+ {
1724
+ "internalType": "uint256",
1725
+ "name": "fixedFee",
1726
+ "type": "uint256"
1727
+ }
1728
+ ],
1729
+ "internalType": "struct Fee",
1730
+ "name": "stakingFee",
1731
+ "type": "tuple"
1732
+ },
1733
+ {
1734
+ "components": [
1735
+ {
1736
+ "internalType": "UFixed",
1737
+ "name": "fractionalFee",
1738
+ "type": "uint256"
1739
+ },
1740
+ {
1741
+ "internalType": "uint256",
1742
+ "name": "fixedFee",
1743
+ "type": "uint256"
1744
+ }
1745
+ ],
1746
+ "internalType": "struct Fee",
1747
+ "name": "performanceFee",
1748
+ "type": "tuple"
1749
+ }
1750
+ ],
1751
+ "name": "setPoolFees",
1752
+ "outputs": [],
1753
+ "stateMutability": "nonpayable",
1754
+ "type": "function"
1755
+ },
1756
+ {
1757
+ "inputs": [
1758
+ {
1759
+ "internalType": "NftId",
1760
+ "name": "productNftId",
1761
+ "type": "uint96"
1762
+ },
1763
+ {
1764
+ "components": [
1765
+ {
1766
+ "internalType": "UFixed",
1767
+ "name": "fractionalFee",
1768
+ "type": "uint256"
1769
+ },
1770
+ {
1771
+ "internalType": "uint256",
1772
+ "name": "fixedFee",
1773
+ "type": "uint256"
1774
+ }
1775
+ ],
1776
+ "internalType": "struct Fee",
1777
+ "name": "policyFee",
1778
+ "type": "tuple"
1779
+ },
1780
+ {
1781
+ "components": [
1782
+ {
1783
+ "internalType": "UFixed",
1784
+ "name": "fractionalFee",
1785
+ "type": "uint256"
1786
+ },
1787
+ {
1788
+ "internalType": "uint256",
1789
+ "name": "fixedFee",
1790
+ "type": "uint256"
1791
+ }
1792
+ ],
1793
+ "internalType": "struct Fee",
1794
+ "name": "processingFee",
1795
+ "type": "tuple"
1796
+ }
1797
+ ],
1798
+ "name": "setProductFees",
1799
+ "outputs": [],
1800
+ "stateMutability": "nonpayable",
1801
+ "type": "function"
1802
+ },
1803
+ {
1804
+ "inputs": [
1805
+ {
1806
+ "internalType": "RoleId",
1807
+ "name": "role",
1808
+ "type": "bytes8"
1809
+ },
1810
+ {
1811
+ "internalType": "bool",
1812
+ "name": "active",
1813
+ "type": "bool"
1814
+ }
1815
+ ],
1816
+ "name": "setRoleState",
1817
+ "outputs": [],
1818
+ "stateMutability": "nonpayable",
1819
+ "type": "function"
1820
+ },
1821
+ {
1822
+ "inputs": [
1823
+ {
1824
+ "internalType": "bytes4",
1825
+ "name": "interfaceId",
1826
+ "type": "bytes4"
1827
+ }
1828
+ ],
1829
+ "name": "supportsInterface",
1830
+ "outputs": [
1831
+ {
1832
+ "internalType": "bool",
1833
+ "name": "",
1834
+ "type": "bool"
1835
+ }
1836
+ ],
1837
+ "stateMutability": "view",
1838
+ "type": "function"
1839
+ },
1840
+ {
1841
+ "inputs": [
1842
+ {
1843
+ "internalType": "NftId",
1844
+ "name": "bundleNftId",
1845
+ "type": "uint96"
1846
+ }
1847
+ ],
1848
+ "name": "toBundleKey32",
1849
+ "outputs": [
1850
+ {
1851
+ "internalType": "Key32",
1852
+ "name": "key32",
1853
+ "type": "bytes32"
1854
+ }
1855
+ ],
1856
+ "stateMutability": "view",
1857
+ "type": "function"
1858
+ },
1859
+ {
1860
+ "inputs": [
1861
+ {
1862
+ "internalType": "NftId",
1863
+ "name": "bundleNftId",
1864
+ "type": "uint96"
1865
+ },
1866
+ {
1867
+ "internalType": "StateId",
1868
+ "name": "state",
1869
+ "type": "uint8"
1870
+ }
1871
+ ],
1872
+ "name": "updateBundleState",
1873
+ "outputs": [],
1874
+ "stateMutability": "nonpayable",
1875
+ "type": "function"
1876
+ }
1877
+ ],
1878
+ "bytecode": "0x60e06040523480156200001157600080fd5b506040516200898938038062008989833981016040819052620000349162000e52565b818181816200004560003362000484565b6301ffc9a760e01b60005260026020527f71203db6a8b906f8e7c7701ea536708e3d7c6018d3ad50e5680c3241edacce17805460ff191660011790556001600160a01b038216620000dd5760405162461bcd60e51b815260206004820152601b60248201527f4552524f523a5247422d3031303a52454749535452595f5a45524f000000000060448201526064015b60405180910390fd5b6001600160a01b03821660808190526040516301ffc9a760e01b81526306ecd8ef60e01b60048201526301ffc9a790602401602060405180830381865afa1580156200012d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000153919062000e9a565b620001a15760405162461bcd60e51b815260206004820152601a60248201527f4552524f523a5247422d3031313a4e4f545f52454749535452590000000000006044820152606401620000d4565b6001600160601b03811660a081905260805160405163e74d052f60e01b815260048101929092526001600160a01b03169063e74d052f90602401602060405180830381865afa158015620001f9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200021f919062000e9a565b620002795760405162461bcd60e51b815260206004820152602360248201527f4552524f523a5247422d3031323a504152454e545f4e4f545f5245474953544560448201526214915160ea1b6064820152608401620000d4565b3360c052631dfba64760e11b60005260026020527ffc5164b528507fb56c225cc68864b8f0ef1e129250403b69e252bd0b2789bfea805460ff191660011790555050604051620002c99062000e27565b604051809103906000f080158015620002e6573d6000803e3d6000fd5b50600380546001600160a01b0319166001600160a01b0392909216919091179055638de54b9b60e01b60005260026020527fbbbdb2fb0832d9cc0814bfd5527573cc6f84893ca59f86761ee168a6f8d07708805460ff191660011790556200034d6200075b565b506200039890506200035e620008ee565b60408051808201909152601481527f4469737472696275746f724f776e6572526f6c6500000000000000000000000060208201526200099b565b620003d2620003a662000a00565b60408051808201909152600f81526e4f7261636c654f776e6572526f6c6560881b60208201526200099b565b6200040a620003e062000a5b565b60408051808201909152600d81526c506f6f6c4f776e6572526f6c6560981b60208201526200099b565b620004456200041862000ab4565b60408051808201909152601081526f50726f647563744f776e6572526f6c6560801b60208201526200099b565b6003546200047c906001600160a01b0316600b80546001600160a01b0383166001600160a81b031990911617606960a11b17905550565b5050620011bc565b60006200049062000b10565b90506200049d8162000b98565b15620004fc5760405162461bcd60e51b815260206004820152602760248201527f4552524f523a56524e2d3030313a56455253494f4e5f414c52454144595f41436044820152661512559055115160ca1b6064820152608401620000d4565b60015415620005bc5760018054600091906200051a90829062000ec5565b815481106200052d576200052d62000ee7565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff16905062000560828262000c3c565b620005ba5760405162461bcd60e51b8152602060048201526024808201527f4552524f523a56524e2d3030323a56455253494f4e5f4e4f545f494e4352454160448201526353494e4760e01b6064820152608401620000d4565b505b600180548082018255600091909152600a8082047fb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf601805462ffffff808616600394909506939093026101000a848102930219169190911790556040805160a0810182529182526001600160a01b03808616602084015284169082015260608101620006454290565b64ffffffffff1681526020014363ffffffff90811690915262ffffff8084166000908152602081815260409182902085518154928701516001600160a01b039081166301000000026001600160b81b0319909416919095161791909117815584820151600190910180546060870151608090970151909516600160c81b0263ffffffff60c81b1964ffffffffff909716600160a01b026001600160c81b031990961692909416919091179390931793909316179055517f68e7327fca0057a787cde34ababb9ef9844ba8065ee03e8781d8122fc15d4419906200074e9083908690869062ffffff9390931683526001600160a01b03918216602084015216604082015260600190565b60405180910390a1505050565b60006200076762000b10565b60405163c9e66e2960e01b815262ffffff909116600482015273__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__9063c9e66e2990602401602060405180830381865af4158015620007bd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620007e3919062000efd565b90506200082c6040518060400160405280601581526020017f436f6d706f6e656e744f776e65725365727669636500000000000000000000008152508262000c4e60201b60201c565b600480546001600160a01b0319166001600160a01b039290921691909117905560408051808201909152600e81526d50726f647563745365727669636560901b60208201526200087d908262000c4e565b600580546001600160a01b0319166001600160a01b039290921691909117905560408051808201909152600b81526a506f6f6c5365727669636560a81b6020820152620008cb908262000c4e565b600680546001600160a01b0319166001600160a01b039290921691909117905550565b60405163e14787cb60e01b815260206004820152601460248201527f4469737472696275746f724f776e6572526f6c65000000000000000000000000604482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063e14787cb906064015b602060405180830381865af415801562000970573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000996919062000f22565b905090565b604080516060810182526001600160c01b03198416815260208101839052600191810191909152620009cd8162000d21565b7f34e1f82fc40bf14028ae2a3150f074e7715e20ed8e30e250f8789cee718c648583836040516200074e92919062000f96565b60405163e14787cb60e01b815260206004820152600f60248201526e4f7261636c654f776e6572526f6c6560881b604482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063e14787cb9060640162000952565b60405163e14787cb60e01b815260206004820152600d60248201526c506f6f6c4f776e6572526f6c6560981b604482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063e14787cb9060640162000952565b60405163e14787cb60e01b815260206004820152601060248201526f50726f647563744f776e6572526f6c6560801b604482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063e14787cb9060640162000952565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af415801562000b72573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000996919062000fc5565b62ffffff8116600090815260208190526040808220600101549051631bbffab160e21b8152600160c81b90910463ffffffff166004820152819073__$5f476116ae21c5294e0c0761c07efa7e1c$__90636effeac490602401602060405180830381865af415801562000c0f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000c35919062000fec565b1192915050565b62ffffff808216908316115b92915050565b60805160405163a3bcd81d60e01b81526000916001600160a01b03169063a3bcd81d9062000c83908690869060040162001006565b602060405180830381865afa15801562000ca1573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000cc791906200102d565b90506001600160a01b03811662000c485760405162461bcd60e51b815260206004820152601c60248201527f4552524f523a494e532d3030313a4e4f545f52454749535445524544000000006044820152606401620000d4565b80516001600160c01b031981166000908152600760209081526040909120835181546001600160401b03191660c09190911c17815590830151839190600182019062000d6e9082620010f0565b50604091909101516002909101805460ff191691151591909117905562000d958162000dfc565b62000df857600880546001810182556000829052600481047ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee301805460c085901c60039093169093026101000a9182026001600160401b03909202199092161790555b5050565b6001600160c01b0319818116600081815260076020526040812054909260c09190911b161462000c48565b611e2b8062006b5e83390190565b80516001600160a01b038116811462000e4d57600080fd5b919050565b6000806040838503121562000e6657600080fd5b62000e718362000e35565b60208401519092506001600160601b038116811462000e8f57600080fd5b809150509250929050565b60006020828403121562000ead57600080fd5b8151801515811462000ebe57600080fd5b9392505050565b8181038181111562000c4857634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b60006020828403121562000f1057600080fd5b815160ff8116811462000ebe57600080fd5b60006020828403121562000f3557600080fd5b81516001600160c01b03198116811462000ebe57600080fd5b6000815180845260005b8181101562000f765760208185018101518683018201520162000f58565b506000602082860101526020601f19601f83011685010191505092915050565b6001600160c01b03198316815260406020820181905260009062000fbd9083018462000f4e565b949350505050565b60006020828403121562000fd857600080fd5b815162ffffff8116811462000ebe57600080fd5b60006020828403121562000fff57600080fd5b5051919050565b6040815260006200101b604083018562000f4e565b905060ff831660208301529392505050565b6000602082840312156200104057600080fd5b62000ebe8262000e35565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200107657607f821691505b6020821081036200109757634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620010eb57600081815260208120601f850160051c81016020861015620010c65750805b601f850160051c820191505b81811015620010e757828155600101620010d2565b5050505b505050565b81516001600160401b038111156200110c576200110c6200104b565b62001124816200111d845462001061565b846200109d565b602080601f8311600181146200115c5760008415620011435750858301515b600019600386901b1c1916600185901b178555620010e7565b600085815260208120601f198616915b828110156200118d578886015182559484019460019091019084016200116c565b5085821015620011ac5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60805160a05160c0516159566200120860003960006139d1015260006105140152600081816107f1015281816111c601528181611aeb015281816139500152613a1401526159566000f3fe60806040523480156200001157600080fd5b5060043610620004095760003560e01c8063893d20e8116200021d578063bd62faf71162000131578063dc261c3a11620000bb578063ee0fdf711162000086578063ee0fdf711462000c5e578063f0ea17c31462000c75578063f274e87d1462000d26578063fe1f18d61462000d5357600080fd5b8063dc261c3a1462000bc8578063e03eeb851462000c19578063e1f64d771462000c30578063e79597401462000c4757600080fd5b8063d0bb064c11620000fc578063d0bb064c1462000af3578063d250185c1462000b83578063dad73bed1462000b9a578063db70354c1462000bb157600080fd5b8063bd62faf71462000a79578063bd7d9d851462000a90578063c2bf7d261462000ab6578063cf5ccedb1462000acd57600080fd5b806399fd467711620001b3578063af17d38a116200017e578063af17d38a1462000a1d578063b88da7591462000a34578063b8c510671462000a4b578063b9f36dde1462000a6257600080fd5b806399fd467714620009a3578063a13df2ab14620009ba578063a310e2a314620009d1578063a90be9071462000a0657600080fd5b8063946dfcfe11620001f4578063946dfcfe14620009555780639555c4db146200095e5780639675513d146200097557806398457437146200098c57600080fd5b8063893d20e814620008e35780638b59fe2a14620008ed57806393865aec146200090457600080fd5b80634d459c90116200032157806369a44a1b11620002ab5780637fec8b3111620002765780637fec8b3114620008a05780638125ea9214620008b757806383d3331914620008c157806387c5658614620008ca57600080fd5b806369a44a1b146200084e5780636b9bf08b14620008655780636fa29853146200087757806375a07ed2146200088957600080fd5b80635ab1bd5311620002ec5780635ab1bd5314620007ef5780635fe9f2a51462000816578063644c45e0146200082d578063674d0ccf146200083757600080fd5b80634d459c9014620005e75780634fd077f514620006f85780635312fdc2146200071e57806357f80bbf146200074f57600080fd5b806320f4b65e11620003a3578063349195f9116200036e578063349195f914620005765780633bc5de30146200057f5780634288121d146200059b5780634793b4ab14620005c157600080fd5b806320f4b65e14620004fb57806331b62a3b146200051257806331e48e3214620005395780633300a8a8146200055057600080fd5b80630d0ccc5b11620003e45780630d0ccc5b14620004835780630d8e6e2c14620004a957806315dae03e14620004c85780631aa3a00814620004d857600080fd5b806301ffc9a7146200040e5780630591087414620004535780630abd8434146200046c575b600080fd5b6200043e6200041f366004620041c5565b6001600160e01b03191660009081526002602052604090205460ff1690565b60405190151581526020015b60405180910390f35b6200046a620004643660046200421b565b62000d6a565b005b6200043e6200047d366004620042df565b62000f87565b6200049a62000494366004620042ff565b6200102b565b6040519081526020016200044a565b620004b3620010b6565b60405162ffffff90911681526020016200044a565b604051603281526020016200044a565b620004e262001143565b6040516001600160601b0390911681526020016200044a565b6200046a6200050c366004620044a8565b6200123e565b7f0000000000000000000000000000000000000000000000000000000000000000620004e2565b6200046a6200054a366004620045dd565b620013d0565b62000567620005613660046200467f565b620016cc565b6040516200044a91906200469f565b600f546200049a565b604080516020810182526000815290516200044a919062004752565b6005546001600160a01b03165b6040516001600160a01b0390911681526020016200044a565b620005d8620005d23660046200467f565b62001752565b6040516200044a919062004767565b6200069a620005f8366004620042df565b6040805160a0810182526000808252602082018190529181018290526060810182905260808101919091525062ffffff90811660009081526020818152604091829020825160a0810184528154948516815263010000009094046001600160a01b03908116928501929092526001015490811691830191909152600160a01b810464ffffffffff166060830152600160c81b900463ffffffff16608082015290565b60408051825162ffffff1681526020808401516001600160a01b039081169183019190915283830151169181019190915260608083015164ffffffffff169082015260809182015163ffffffff169181019190915260a0016200044a565b6200070f620007093660046200467f565b620017db565b6040516200044a9190620047ff565b620007356200072f3660046200488c565b62001886565b6040516001600160c01b031990911681526020016200044a565b620007c1620007603660046200467f565b6040805160608082018352600080835260208084018290529284018190526001600160601b039485168152601283528390208351918201845280549485168252600160601b90940460ff161515918101919091526001909201549082015290565b6040805182516001600160601b0316815260208084015115159082015291810151908201526060016200044a565b7f0000000000000000000000000000000000000000000000000000000000000000620005a8565b6200046a62000827366004620048d8565b620018c8565b620004e262001ad3565b6200049a6200084836600462004a5f565b62001b3b565b6200049a6200085f3660046200467f565b62001b5f565b6006546001600160a01b0316620005a8565b6004546001600160a01b0316620005a8565b6200046a6200089a36600462004a7f565b62001bf0565b620004e2620008b13660046200488c565b62001eca565b620005a862001f12565b6008546200049a565b620008d462001f27565b6040516200044a919062004aed565b620005a862001faa565b6200046a620008fe36600462004b05565b62001fb6565b6200046a6200091536600462004b57565b6001600160601b03909216600090815260166020908152604090912082516001820155918101516002830155825160038301559190910151600490910155565b6001546200049a565b6200046a6200096f36600462004ba5565b6200216a565b6200049a6200098636600462004bd8565b6200217a565b6200046a6200099d36600462004c0b565b620022e4565b6200043e620009b436600462004c51565b62002464565b6200049a620009cb3660046200467f565b6200249b565b620005a8620009e23660046200467f565b6001600160601b03166000908152601760205260409020546001600160a01b031690565b6200049a62000a173660046200488c565b620024a8565b6200073562000a2e36600462004c72565b620024e4565b620004b362000a453660046200488c565b62002672565b6200073562000a5c36600462004c72565b620026b6565b6200046a62000a7336600462004c51565b62002736565b620004e262000a8a36600462004cc7565b6200289f565b62000aa762000aa13660046200467f565b62002b46565b6040516200044a919062004d42565b6200046a62000ac736600462004c51565b62002d4d565b62000ae462000ade36600462004a5f565b62002f4d565b6040516200044a919062004e8a565b6200046a62000b0436600462004ed3565b604080516080810182526001600160601b039586168082526001600160a01b039586166020808401918252838501968752606084019586526000928352601681529390912091519051909516600160601b0294909516939093178455905180516001850155820151600284015551805160038401550151600490910155565b620008d462000b9436600462004f36565b6200304b565b6200046a62000bab36600462004f68565b620030da565b620004e262000bc236600462004f9b565b620032f8565b6200046a62000bd936600462004b57565b6001600160601b03909216600090815260146020908152604090912082516003820155918101516004830155825160058301559190910151600690910155565b6200046a62000c2a36600462004fca565b6200338f565b6200046a62000c4136600462004c0b565b620034d5565b620005a862000c5836600462004fff565b62003629565b6200043e62000c6f36600462004a5f565b6200364e565b62000cee62000c863660046200467f565b6040805160608082018352600080835260208084018290529284018190526001600160601b039485168152600e83528390208351918201845280549485168252600160601b90940460ff16918101919091526001909201546001600160a01b03169082015290565b6040805182516001600160601b0316815260208084015160ff1690820152918101516001600160a01b0316908201526060016200044a565b62000d3d62000d3736600462005020565b62003679565b604080519283526020830191909152016200044a565b6200046a62000d6436600462005050565b62003705565b306001600160a01b0316636b9bf08b6040518163ffffffff1660e01b81526004016020604051808303816000875af115801562000dab573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000dd1919062005083565b6001600160a01b0316336001600160a01b03161462000e375760405162461bcd60e51b815260206004820152601e60248201527f4552524f523a42444c2d3030313a4e4f545f504f4f4c5f53455256494345000060448201526064015b60405180910390fd5b6000604051806101000160405280886001600160601b03168152602001876001600160601b0316815260200184848080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201829052509385525050506020820188905260408201526060810187905260800142604051631ded81af60e31b815264ffffffffff90911660048201526024810187905273__$d53880c81dc91c20799140d711e5ab8718$__9063ef6c0d7890604401602060405180830381865af415801562000f11573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000f379190620050b0565b64ffffffffff168152602001600064ffffffffff16815250905062000f7e878260405160200162000f69919062004767565b604051602081830303815290604052620037da565b50505050505050565b62ffffff8116600090815260208190526040808220600101549051631bbffab160e21b8152600160c81b90910463ffffffff166004820152819073__$5f476116ae21c5294e0c0761c07efa7e1c$__90636effeac490602401602060405180830381865af415801562000ffe573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620010249190620050d0565b1192915050565b604051631488c84560e01b815260048101839052600082810b60248301529073__$fa7f345063a1bf0cf2bd14a32ccc1b6018$__90631488c84590604401602060405180830381865af415801562001087573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620010ad9190620050d0565b90505b92915050565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af415801562001118573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200113e9190620050ea565b905090565b60006200114f62001faa565b6001600160a01b0316336001600160a01b031614620011b15760405162461bcd60e51b815260206004820152601760248201527f4552524f523a5247422d3030313a4e4f545f4f574e4552000000000000000000604482015260640162000e2e565b604051632210724360e11b81523060048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031690634420e486906024016020604051808303816000875af115801562001218573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200113e919062005117565b306001600160a01b0316636b9bf08b6040518163ffffffff1660e01b81526004016020604051808303816000875af11580156200127f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620012a5919062005083565b6001600160a01b0316336001600160a01b031614806200133c5750306001600160a01b0316634288121d6040518163ffffffff1660e01b81526004016020604051808303816000875af115801562001301573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001327919062005083565b6001600160a01b0316336001600160a01b0316145b6200139c5760405162461bcd60e51b815260206004820152602960248201527f4552524f523a42444c2d3030333a4e4f545f504f4f4c5f4f525f50524f445543604482015268545f5345525649434560b81b606482015260840162000e2e565b620013cd816000015182604051602001620013b8919062004767565b60405160208183030381529060405262003861565b50565b6001600160601b0387166000908152601760205260409020546001600160a01b031615620014585760405162461bcd60e51b815260206004820152602e60248201527f4552524f523a5452532d3031303a544f4b454e5f48414e444c45525f414c524560448201526d10511657d49151d254d51154915160921b606482015260840162000e2e565b6001600160601b0385166000908152601760205260409020546001600160a01b031615620014e05760405162461bcd60e51b815260206004820152602e60248201527f4552524f523a5452532d3031313a544f4b454e5f48414e444c45525f414c524560448201526d10511657d49151d254d51154915160921b606482015260840162000e2e565b6001600160601b0386166000908152601760205260409020546001600160a01b031615620015685760405162461bcd60e51b815260206004820152602e60248201527f4552524f523a5452532d3031323a544f4b454e5f48414e444c45525f414c524560448201526d10511657d49151d254d51154915160921b606482015260840162000e2e565b600087856040516200157a9062004101565b6001600160601b0390921682526001600160a01b03166020820152604001604051809103906000f080158015620015b5573d6000803e3d6000fd5b506001600160601b03988916600081815260176020908152604080832080546001600160a01b039687166001600160a01b031991821681179092559b8e1680855282852080548e16831790559c8e1680855282852080548e16909217909155815160e0810183528581528084019182528083019d8e529a861660608c0190815299861660808c0190815260a08c01998a5260c08c019889529484526014835292209851895492518d16600160601b9081026001600160c01b0319909416918e1691909117929092178955995196518316029590991694909417600186015550955160028401805491909316941693909317905590518051600383015582015160048201559151805160058401550151600690910155565b620016d66200410f565b506001600160601b03908116600090815260166020908152604091829020825160808101845281549485168152600160601b9094046001600160a01b0316848301528251808401845260018201548152600282015481840152848401528251808401909352600381015483526004015490820152606082015290565b620017bb60405180610100016040528060006001600160601b0316815260200160006001600160601b0316815260200160608152602001600081526020016000815260200160008152602001600064ffffffffff168152602001600064ffffffffff1681525090565b620017c6826200389d565b806020019051810190620010b0919062005183565b620017e562004180565b506001600160601b03908116600090815260146020908152604091829020825160e08101845281548086168252600160601b908190048616828501526001830154958616828601526001600160a01b0395048516606082015260028201549094166080850152825180840184526003820154815260048201548184015260a0850152825180840190935260058101548352600601549082015260c082015290565b6000600882815481106200189e576200189e62005254565b90600052602060002090600491828204019190066008029054906101000a900460c01b9050919050565b306001600160a01b0316634288121d6040518163ffffffff1660e01b81526004016020604051808303816000875af115801562001909573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200192f919062005083565b6001600160a01b0316336001600160a01b031614620019625760405162461bcd60e51b815260040162000e2e906200526a565b80516001600160601b0390811660009081526011602090815260409182902084518154928601519085166001600160c01b031990931692909217600160601b928516830217815591840151606085015193166001600160a01b0390931602919091176001820155608082015160028201805460ff191660ff90921691909117905560a0820151600382015560c0820151600482015560e082015160058201556101008201516006820155610120820151829190600782019062001a26908262005336565b50610140820151600890910180546101608401516101808501516101a08601516101c09096015163ffffffff16600160a01b0263ffffffff60a01b1964ffffffffff978816600160781b0264ffffffffff60781b19938916600160501b029390931669ffffffffffffffffffff60501b19948916650100000000000269ffffffffffffffffffff199096169890971697909717939093179190911693909317929092179290921617905550565b604051636939560f60e11b81523060048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063d272ac1e90602401602060405180830381865afa15801562001218573d6000803e3d6000fd5b6001600160c01b031981166000908152600a60205260408120620010b09062003923565b6001600160601b038116600090815260136020526040808220905163697d0f1b60e11b8152600481019190915273__$0dc988b1672de335b826773df9015af2da$__9063d2fa1e36906024015b602060405180830381865af415801562001bca573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620010b09190620050d0565b306001600160a01b0316634288121d6040518163ffffffff1660e01b81526004016020604051808303816000875af115801562001c31573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001c57919062005083565b6001600160a01b0316336001600160a01b03161462001c8a5760405162461bcd60e51b815260040162000e2e906200526a565b604051806101e00160405280866001600160601b03168152602001876001600160601b03168152602001826001600160601b0316815260200160006001600160a01b0316815260200162001cdc600a90565b60ff1681526020018581526020018481526020016000815260200183815260200160405180602001604052806000815250815260200162001d1a4290565b64ffffffffff168152602001600064ffffffffff168152602001600064ffffffffff168152602001600064ffffffffff1681526020014363ffffffff1690526001600160601b0386811660009081526011602090815260409182902084518154928601519085166001600160c01b031990931692909217600160601b928516830217815591840151606085015193166001600160a01b0390931602919091176001820155608082015160028201805460ff191660ff90921691909117905560a0820151600382015560c0820151600482015560e082015160058201556101008201516006820155610120820151600782019062001e18908262005336565b50610140820151600890910180546101608401516101808501516101a08601516101c09096015163ffffffff16600160a01b0263ffffffff60a01b1964ffffffffff978816600160781b0264ffffffffff60781b19938916600160501b029390931669ffffffffffffffffffff60501b19948916650100000000000269ffffffffffffffffffff1990961698909716979097179390931791909116939093179290921792909216179055505050505050565b6000600f828154811062001ee25762001ee262005254565b9060005260206000209060029182820401919006600c029054906101000a90046001600160601b03169050919050565b60006200113e6003546001600160a01b031690565b604080518082019091526000808252602082015273__$a23651848365a6a5ca15f07b4331037f48$__632bd182d36040518163ffffffff1660e01b81526004016040805180830381865af415801562001f84573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200113e919062005402565b60006200113e6200392e565b306001600160a01b0316636fa298536040518163ffffffff1660e01b8152600401602060405180830381865afa15801562001ff5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200201b919062005083565b6001600160a01b0316336001600160a01b0316146200207d5760405162461bcd60e51b815260206004820152601f60248201527f4552524f523a434d502d3030313a4e4f545f4f574e45525f5345525649434500604482015260640162000e2e565b6040518060600160405280846001600160601b03168152602001620020a0606490565b60ff90811682526001600160a01b039384166020928301526001600160601b039586166000818152600e845260408082208651815496880151909516600160601b026001600160681b0319909616948a1694909417949094178355939092015160019182018054919095166001600160a01b031990911617909355600f805480850182559252600282047f8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac80201805492909316600c026101000a908102940219169290921790915550565b62002176828262003a90565b5050565b6000306001600160a01b0316634288121d6040518163ffffffff1660e01b81526004016020604051808303816000875af1158015620021bd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620021e3919062005083565b6001600160a01b0316336001600160a01b031614620022165760405162461bcd60e51b815260040162000e2e9062005437565b506001600160601b038083166000818152600d602090815260408083209486168352938152838220805490839055928252600c9052829020915163539eabab60e11b8152909173__$0dc988b1672de335b826773df9015af2da$__9163a73d575691620022999186906004019182526001600160601b0316602082015260400190565b602060405180830381865af4158015620022b7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620022dd919062005478565b5092915050565b6001600160601b03828116600090815260136020526040908190209051632bfdd6b960e01b81526004810182905291851660248301529073__$0dc988b1672de335b826773df9015af2da$__90632bfdd6b990604401602060405180830381865af415801562002358573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200237e919062005478565b15620023d75760405162461bcd60e51b815260206004820152602160248201527f4552524f523a504c2d3032303a42554e444c455f414c52454144595f414444456044820152601160fa1b606482015260840162000e2e565b604051631461054360e31b8152600481018290526001600160601b038516602482015273__$0dc988b1672de335b826773df9015af2da$__9063a3082a1890604401602060405180830381865af415801562002437573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200245d919062005478565b5050505050565b6001600160c01b0319821660009081526009602090815260408083206001600160a01b038516845290915281205460ff16620010ad565b6000620010b08262003d61565b6040516322f5db0f60e11b81526004810182905260009073__$fa7f345063a1bf0cf2bd14a32ccc1b6018$__906345ebb61e9060240162001bac565b6000306001600160a01b031663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa15801562002525573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200254b919062005083565b6001600160a01b0316336001600160a01b0316146200257e5760405162461bcd60e51b815260040162000e2e9062005498565b60405163e14787cb60e01b815273__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063e14787cb90620025b790859060040162004752565b602060405180830381865af4158015620025d5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620025fb9190620054cf565b905062002608816200364e565b15620026615760405162461bcd60e51b815260206004820152602160248201527f4552524f523a4143532d3031303a524f4c455f414c52454144595f45584953546044820152605360f81b606482015260840162000e2e565b6200266d818362003db8565b919050565b6000600182815481106200268a576200268a62005254565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff169050919050565b60405163e14787cb60e01b815260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063e14787cb90620026f290859060040162004752565b602060405180830381865af415801562002710573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620010b09190620054cf565b6001600160c01b0319828116600081815260076020526040902054849260c09190911b16146200277a5760405162461bcd60e51b815260040162000e2e90620054ef565b306001600160a01b031663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa158015620027b9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620027df919062005083565b6001600160a01b0316336001600160a01b031614620028125760405162461bcd60e51b815260040162000e2e9062005498565b6001600160c01b0319831660008181526009602090815260408083206001600160a01b03871684528252808320805460ff19169055928252600a9052206200285b908362003e1d565b507fab64a6bff51dad0663bf6702fca25a9e2751ecc0353d6fe92d1698754539668483836000604051620028929392919062005526565b60405180910390a1505050565b6000306001600160a01b0316636fa298536040518163ffffffff1660e01b8152600401602060405180830381865afa158015620028e0573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002906919062005083565b6001600160a01b0316336001600160a01b031614620029685760405162461bcd60e51b815260206004820152601f60248201527f4552524f523a434d502d3030313a4e4f545f4f574e45525f5345525649434500604482015260640162000e2e565b5080516040516330b8415f60e01b81526001600160601b038216600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015620029c4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620029ea919062005478565b801562002a8957506001600160601b038181166000818152600e60205260409081902054905163c4cade9d60e01b815292166004830152602482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__9063c4cade9d90604401602060405180830381865af415801562002a63573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002a89919062005478565b62002ad75760405162461bcd60e51b815260206004820152601f60248201527f4552524f523a434d502d3030363a434f4d504f4e454e545f554e4b4e4f574e00604482015260640162000e2e565b6001600160601b038082166000908152600e6020908152604091829020855181549287015160ff16600160601b026001600160681b031990931694169390931717825590920151600190920180546001600160a01b039093166001600160a01b03199093169290921790915590565b604080516101e08101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820183905260e0820183905261010082018390526101208201526101408101829052610160810182905261018081018290526101a081018290526101c08101919091526001600160601b0382811660009081526011602090815260409182902082516101e08101845281548086168252600160601b9081900486169382019390935260018201549485169381019390935292046001600160a01b03166060820152600282015460ff166080820152600382015460a0820152600482015460c0820152600582015460e082015260068201546101008201526007820180549192916101208401919062002c6d90620052ab565b80601f016020809104026020016040519081016040528092919081815260200182805462002c9b90620052ab565b801562002cec5780601f1062002cc05761010080835404028352916020019162002cec565b820191906000526020600020905b81548152906001019060200180831162002cce57829003601f168201915b50505091835250506008919091015464ffffffffff808216602084015265010000000000820481166040840152600160501b820481166060840152600160781b8204166080830152600160a01b900463ffffffff1660a09091015292915050565b6001600160c01b0319828116600081815260076020526040902054849260c09190911b161462002d915760405162461bcd60e51b815260040162000e2e90620054ef565b306001600160a01b031663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa15801562002dd0573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002df6919062005083565b6001600160a01b0316336001600160a01b03161462002e295760405162461bcd60e51b815260040162000e2e9062005498565b6001600160c01b0319831660009081526007602052604090206002015460ff1662002e975760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a4143532d3034303a524f4c455f4e4f545f414354495645000000604482015260640162000e2e565b6001600160c01b0319831660008181526009602090815260408083206001600160a01b03871684528252808320805460ff19166001179055928252600a90522062002ee3908362003e34565b506001600160c01b0319831660009081526009602090815260408083206001600160a01b0386168452909152908190205490517fab64a6bff51dad0663bf6702fca25a9e2751ecc0353d6fe92d169875453966849162002892918691869160ff9091169062005526565b6040805160608082018352600080835260208084018390528385018290526001600160c01b0319868116835260078252918590208551938401909552845460c01b9091168252600184018054939492939184019162002fac90620052ab565b80601f016020809104026020016040519081016040528092919081815260200182805462002fda90620052ab565b80156200302b5780601f1062002fff576101008083540402835291602001916200302b565b820191906000526020600020905b8154815290600101906020018083116200300d57829003601f168201915b50505091835250506002919091015460ff16151560209091015292915050565b60408051808201825260008082526020820152905163638086fd60e11b8152600481018490526024810183905273__$a23651848365a6a5ca15f07b4331037f48$__9063c7010dfa906044016040805180830381865af4158015620030b4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620010ad919062005402565b6001600160c01b0319828116600081815260076020526040902054849260c09190911b16146200311e5760405162461bcd60e51b815260040162000e2e90620054ef565b306001600160a01b031663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200315d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003183919062005083565b6001600160a01b0316336001600160a01b031614620031b65760405162461bcd60e51b815260040162000e2e9062005498565b6001600160c01b03198084166000908152600760209081526040808320815160608101909252805460c01b90941681526001840180549394919391928401916200320090620052ab565b80601f01602080910402602001604051908101604052809291908181526020018280546200322e90620052ab565b80156200327f5780601f1062003253576101008083540402835291602001916200327f565b820191906000526020600020905b8154815290600101906020018083116200326157829003601f168201915b50505091835250506002919091015460ff16151560209091015283151560408201529050620032ae8162003e4b565b604080516001600160c01b03198616815284151560208201527feaffaec948991ecc6e201ba4f67ba865fbf66aace3d2f2823dc5483cc9813fda910160405180910390a150505050565b6001600160601b038216600090815260136020526040808220905163e797d89960e01b815260048101919091526024810183905273__$0dc988b1672de335b826773df9015af2da$__9063e797d89990604401602060405180830381865af415801562003369573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620010ad919062005117565b6001600160601b0383811660009081526012602052604090819020549051630a4d29dd60e31b81529116600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906352694ee890602401602060405180830381865af4158015620033fb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003421919062005478565b6200346f5760405162461bcd60e51b815260206004820152601c60248201527f4552524f523a504c2d3031303a414c52454144595f4352454154454400000000604482015260640162000e2e565b604080516060810182526001600160601b039485168082529315156020808301918252828401948552600095865260129052919093209251835491511515600160601b026001600160681b03199092169416939093179290921781559051600190910155565b306001600160a01b0316634288121d6040518163ffffffff1660e01b81526004016020604051808303816000875af115801562003516573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200353c919062005083565b6001600160a01b0316336001600160a01b0316146200356f5760405162461bcd60e51b815260040162000e2e9062005437565b6001600160601b038381166000818152600d60209081526040808320948716808452948252808320869055928252600c90528190209051631461054360e31b81526004810191909152602481019190915273__$0dc988b1672de335b826773df9015af2da$__9063a3082a1890604401602060405180830381865af4158015620035fd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003623919062005478565b50505050565b6001600160c01b031982166000908152600a60205260408120620010ad908362003f26565b6001600160c01b0319818116600081815260076020526040812054909260c09190911b1614620010b0565b60008073__$a23651848365a6a5ca15f07b4331037f48$__63c66fb3ae85856040518363ffffffff1660e01b8152600401620036b792919062005553565b6040805180830381865af4158015620036d4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620036fa919062005572565b915091509250929050565b306001600160a01b0316636b9bf08b6040518163ffffffff1660e01b81526004016020604051808303816000875af115801562003746573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200376c919062005083565b6001600160a01b0316336001600160a01b031614620037ce5760405162461bcd60e51b815260206004820152601e60248201527f4552524f523a42444c2d3030313a4e4f545f504f4f4c5f534552564943450000604482015260640162000e2e565b62002176828262003f34565b600b546001600160a01b0316635dee4788620037f68462003d61565b600b5460405160e084901b6001600160e01b0319168152620038299291600160a01b900460ff1690869060040162005597565b600060405180830381600087803b1580156200384457600080fd5b505af115801562003859573d6000803e3d6000fd5b505050505050565b600b546001600160a01b0316636ec3d9406200387d8462003d61565b836040518363ffffffff1660e01b815260040162003829929190620055c4565b600b546060906001600160a01b03166354f6127f620038bc8462003d61565b6040518263ffffffff1660e01b8152600401620038db91815260200190565b600060405180830381865afa158015620038f9573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052620010b09190810190620055df565b6000620010b0825490565b604051636939560f60e11b815230600482015260009081906001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063d272ac1e90602401602060405180830381865afa15801562003998573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620039be919062005117565b90506001600160601b038116620039f6577f000000000000000000000000000000000000000000000000000000000000000091505090565b60405163df33330b60e01b81526001600160601b03821660048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063df33330b90602401602060405180830381865afa15801562003a64573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003a8a919062005083565b91505090565b600062003a9c620010b6565b905062003aa98162000f87565b1562003b085760405162461bcd60e51b815260206004820152602760248201527f4552524f523a56524e2d3030313a56455253494f4e5f414c52454144595f41436044820152661512559055115160ca1b606482015260840162000e2e565b6001541562003bcf57600180546000919062003b2690829062005617565b8154811062003b395762003b3962005254565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff16905062003b73828262ffffff90811691161190565b62003bcd5760405162461bcd60e51b8152602060048201526024808201527f4552524f523a56524e2d3030323a56455253494f4e5f4e4f545f494e4352454160448201526353494e4760e01b606482015260840162000e2e565b505b600180548082018255600091909152600a8082047fb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf601805462ffffff808616600394909506939093026101000a848102930219169190911790556040805160a0810182529182526001600160a01b0380861660208401528416908201526060810162003c584290565b64ffffffffff1681526020014363ffffffff90811690915262ffffff8084166000908152602081815260409182902085518154928701516001600160a01b039081166301000000026001600160b81b0319909416919095161791909117815584820151600190910180546060870151608090970151909516600160c81b0263ffffffff60c81b1964ffffffffff909716600160a01b026001600160c81b031990961692909416919091179390931793909316179055517f68e7327fca0057a787cde34ababb9ef9844ba8065ee03e8781d8122fc15d441990620028929083908690869062ffffff9390931683526001600160a01b03918216602084015216604082015260600190565b600b54604051630711349960e31b81526001600160601b0383166004820152600160a01b90910460ff16602482015260009073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__90633889a4c89060440162001bac565b604080516060810182526001600160c01b0319841681526020810183905260019181019190915262003dea8162003e4b565b7f34e1f82fc40bf14028ae2a3150f074e7715e20ed8e30e250f8789cee718c648583836040516200289292919062005639565b6000620010ad836001600160a01b03841662003f7e565b6000620010ad836001600160a01b03841662004082565b80516001600160c01b0319811660009081526007602090815260409091208351815467ffffffffffffffff191660c09190911c17815590830151839190600182019062003e99908262005336565b50604091909101516002909101805460ff191691151591909117905562003ec0816200364e565b6200217657600880546001810182556000829052600481047ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee301805460c085901c60039093169093026101000a9182026001600160401b03909202199092161790555050565b6000620010ad8383620040d4565b600b546001600160a01b031663a238accd62003f508462003d61565b6040516001600160e01b031960e084901b168152600481019190915260ff8416602482015260440162003829565b600081815260018301602052604081205480156200407757600062003fa560018362005617565b855490915060009062003fbb9060019062005617565b90508181146200402757600086600001828154811062003fdf5762003fdf62005254565b906000526020600020015490508087600001848154811062004005576200400562005254565b6000918252602080832090910192909255918252600188019052604090208390555b85548690806200403b576200403b62005660565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050620010b0565b6000915050620010b0565b6000818152600183016020526040812054620040cb57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155620010b0565b506000620010b0565b6000826000018281548110620040ee57620040ee62005254565b9060005260206000200154905092915050565b6102aa806200567783390190565b604051806080016040528060006001600160601b0316815260200160006001600160a01b0316815260200162004158604051806040016040528060008152602001600081525090565b81526020016200417b604051806040016040528060008152602001600081525090565b905290565b6040805160e08101825260008082526020808301829052828401829052606083018290526080830182905283518085019094528184528301529060a082019062004158565b600060208284031215620041d857600080fd5b81356001600160e01b031981168114620041f157600080fd5b9392505050565b6001600160601b0381168114620013cd57600080fd5b80356200266d81620041f8565b60008060008060008060a087890312156200423557600080fd5b86356200424281620041f8565b955060208701356200425481620041f8565b9450604087013593506060870135925060808701356001600160401b03808211156200427f57600080fd5b818901915089601f8301126200429457600080fd5b813581811115620042a457600080fd5b8a6020828501011115620042b757600080fd5b6020830194508093505050509295509295509295565b62ffffff81168114620013cd57600080fd5b600060208284031215620042f257600080fd5b8135620041f181620042cd565b600080604083850312156200431357600080fd5b8235915060208301358060000b81146200432c57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60405161010081016001600160401b038111828210171562004373576200437362004337565b60405290565b604080519081016001600160401b038111828210171562004373576200437362004337565b6040516101e081016001600160401b038111828210171562004373576200437362004337565b604051601f8201601f191681016001600160401b0381118282101715620043ef57620043ef62004337565b604052919050565b60006001600160401b0382111562004413576200441362004337565b50601f01601f191660200190565b6000620044386200443284620043f7565b620043c4565b90508281528383830111156200444d57600080fd5b828260208301376000602084830101529392505050565b600082601f8301126200447657600080fd5b620010ad8383356020850162004421565b64ffffffffff81168114620013cd57600080fd5b80356200266d8162004487565b600060208284031215620044bb57600080fd5b81356001600160401b0380821115620044d357600080fd5b908301906101008286031215620044e957600080fd5b620044f36200434d565b620044fe836200420e565b81526200450e602084016200420e565b60208201526040830135828111156200452657600080fd5b620045348782860162004464565b604083015250606083013560608201526080830135608082015260a083013560a08201526200456660c084016200449b565b60c08201526200457960e084016200449b565b60e082015295945050505050565b6001600160a01b0381168114620013cd57600080fd5b80356200266d8162004587565b600060408284031215620045bd57600080fd5b620045c762004379565b9050813581526020820135602082015292915050565b6000806000806000806000610120888a031215620045fa57600080fd5b87356200460781620041f8565b965060208801356200461981620041f8565b955060408801356200462b81620041f8565b945060608801356200463d8162004587565b935060808801356200464f8162004587565b9250620046608960a08a01620045aa565b9150620046718960e08a01620045aa565b905092959891949750929550565b6000602082840312156200469257600080fd5b8135620041f181620041f8565b81516001600160601b031681526020808301516001600160a01b03169082015260408083015160c0830191620046e19084018280518252602090810151910152565b50606083015180516080840152602081015160a0840152620022dd565b60005b838110156200471b57818101518382015260200162004701565b50506000910152565b600081518084526200473e816020860160208601620046fe565b601f01601f19169290920160200192915050565b602081526000620010ad602083018462004724565b6020815260006001600160601b03808451166020840152806020850151166040840152506040830151610100806060850152620047a961012085018362004724565b915060608501516080850152608085015160a085015260a085015160c085015260c0850151620047e260e086018264ffffffffff169052565b5060e085015164ffffffffff8116858301525b5090949350505050565b6000610120820190506001600160601b0380845116835280602085015116602084015280604085015116604084015250606083015160018060a01b038082166060850152806080860151166080850152505060a08301516200486e60a084018280518252602090810151910152565b5060c0830151805160e08401526020810151610100840152620022dd565b6000602082840312156200489f57600080fd5b5035919050565b60ff81168114620013cd57600080fd5b80356200266d81620048a6565b803563ffffffff811681146200266d57600080fd5b600060208284031215620048eb57600080fd5b81356001600160401b03808211156200490357600080fd5b908301906101e082860312156200491957600080fd5b620049236200439e565b6200492e836200420e565b81526200493e602084016200420e565b602082015262004951604084016200420e565b604082015262004964606084016200459d565b60608201526200497760808401620048b6565b608082015260a083013560a082015260c083013560c082015260e083013560e08201526101008084013581830152506101208084013583811115620049bb57600080fd5b620049c98882870162004464565b8284015250506101409150620049e18284016200449b565b828201526101609150620049f78284016200449b565b82820152610180915062004a0d8284016200449b565b828201526101a0915062004a238284016200449b565b828201526101c0915062004a39828401620048c3565b91810191909152949350505050565b6001600160c01b031981168114620013cd57600080fd5b60006020828403121562004a7257600080fd5b8135620041f18162004a48565b60008060008060008060c0878903121562004a9957600080fd5b863562004aa681620041f8565b9550602087013562004ab881620041f8565b945060408701359350606087013592506080870135915060a087013562004adf81620041f8565b809150509295509295509295565b815181526020808301519082015260408101620010b0565b60008060006060848603121562004b1b57600080fd5b833562004b2881620041f8565b9250602084013562004b3a81620048a6565b9150604084013562004b4c8162004587565b809150509250925092565b600080600060a0848603121562004b6d57600080fd5b833562004b7a81620041f8565b925062004b8b8560208601620045aa565b915062004b9c8560608601620045aa565b90509250925092565b6000806040838503121562004bb957600080fd5b823562004bc68162004587565b915060208301356200432c8162004587565b6000806040838503121562004bec57600080fd5b823562004bf981620041f8565b915060208301356200432c81620041f8565b60008060006060848603121562004c2157600080fd5b833562004c2e81620041f8565b9250602084013562004c4081620041f8565b929592945050506040919091013590565b6000806040838503121562004c6557600080fd5b823562004bc68162004a48565b60006020828403121562004c8557600080fd5b81356001600160401b0381111562004c9c57600080fd5b8201601f8101841362004cae57600080fd5b62004cbf8482356020840162004421565b949350505050565b60006060828403121562004cda57600080fd5b604051606081018181106001600160401b038211171562004cff5762004cff62004337565b604052823562004d0f81620041f8565b8152602083013562004d2181620048a6565b6020820152604083013562004d368162004587565b60408201529392505050565b6020815262004d5d6020820183516001600160601b03169052565b6000602083015162004d7a60408401826001600160601b03169052565b5060408301516001600160601b03811660608401525060608301516001600160a01b038116608084015250608083015160ff811660a08401525060a083015160c083015260c083015160e083015260e08301516101008181850152808501519150506101208181850152808501519150506101e0610140818186015262004e0661020086018462004724565b9086015190925061016062004e238682018364ffffffffff169052565b860151905061018062004e3e8682018364ffffffffff169052565b86015190506101a062004e598682018364ffffffffff169052565b86015190506101c062004e748682018364ffffffffff169052565b86015163ffffffff8116838701529050620047f5565b602080825282516001600160c01b031916828201528201516060604083015260009062004ebb608084018262004724565b90506040840151151560608401528091505092915050565b60008060008060c0858703121562004eea57600080fd5b843562004ef781620041f8565b9350602085013562004f098162004587565b925062004f1a8660408701620045aa565b915062004f2b8660808701620045aa565b905092959194509250565b6000806040838503121562004f4a57600080fd5b50508035926020909101359150565b8015158114620013cd57600080fd5b6000806040838503121562004f7c57600080fd5b823562004f898162004a48565b915060208301356200432c8162004f59565b6000806040838503121562004faf57600080fd5b823562004fbc81620041f8565b946020939093013593505050565b60008060006060848603121562004fe057600080fd5b833562004fed81620041f8565b9250602084013562004c408162004f59565b600080604083850312156200501357600080fd5b823562004fbc8162004a48565b600080606083850312156200503457600080fd5b82359150620050478460208501620045aa565b90509250929050565b600080604083850312156200506457600080fd5b82356200507181620041f8565b915060208301356200432c81620048a6565b6000602082840312156200509657600080fd5b8151620041f18162004587565b80516200266d8162004487565b600060208284031215620050c357600080fd5b8151620041f18162004487565b600060208284031215620050e357600080fd5b5051919050565b600060208284031215620050fd57600080fd5b8151620041f181620042cd565b80516200266d81620041f8565b6000602082840312156200512a57600080fd5b8151620041f181620041f8565b600082601f8301126200514957600080fd5b81516200515a6200443282620043f7565b8181528460208386010111156200517057600080fd5b62004cbf826020830160208701620046fe565b6000602082840312156200519657600080fd5b81516001600160401b0380821115620051ae57600080fd5b908301906101008286031215620051c457600080fd5b620051ce6200434d565b620051d9836200510a565b8152620051e9602084016200510a565b60208201526040830151828111156200520157600080fd5b6200520f8782860162005137565b604083015250606083015160608201526080830151608082015260a083015160a08201526200524160c08401620050a3565b60c08201526200457960e08401620050a3565b634e487b7160e01b600052603260045260246000fd5b60208082526021908201527f4552524f523a504f4c2d3030313a4e4f545f50524f445543545f5345525649436040820152604560f81b606082015260800190565b600181811c90821680620052c057607f821691505b602082108103620052e157634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200533157600081815260208120601f850160051c81016020861015620053105750805b601f850160051c820191505b8181101562003859578281556001016200531c565b505050565b81516001600160401b0381111562005352576200535262004337565b6200536a81620053638454620052ab565b84620052e7565b602080601f831160018114620053a25760008415620053895750858301515b600019600386901b1c1916600185901b17855562003859565b600085815260208120601f198616915b82811015620053d357888601518255948401946001909101908401620053b2565b5085821015620053f25787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000604082840312156200541557600080fd5b6200541f62004379565b82518152602083015160208201528091505092915050565b60208082526021908201527f4552524f523a42444c2d3030323a4e4f545f50524f445543545f5345525649436040820152604560f81b606082015260800190565b6000602082840312156200548b57600080fd5b8151620041f18162004f59565b60208082526017908201527f4552524f523a4143532d3030313a4e4f545f4f574e4552000000000000000000604082015260600190565b600060208284031215620054e257600080fd5b8151620041f18162004a48565b6020808252601f908201527f4552524f523a4143532d3030323a524f4c455f4e4f545f4558495354494e4700604082015260600190565b6001600160c01b03199390931683526001600160a01b039190911660208301521515604082015260600190565b82815260608101620041f1602083018480518252602090810151910152565b600080604083850312156200558657600080fd5b505080516020909101519092909150565b83815260ff83166020820152606060408201526000620055bb606083018462004724565b95945050505050565b82815260406020820152600062004cbf604083018462004724565b600060208284031215620055f257600080fd5b81516001600160401b038111156200560957600080fd5b62004cbf8482850162005137565b81810381811115620010b057634e487b7160e01b600052601160045260246000fd5b6001600160401b0360c01b8316815260406020820152600062004cbf604083018462004724565b634e487b7160e01b600052603160045260246000fdfe608060405234801561001057600080fd5b506040516102aa3803806102aa83398101604081905261002f9161005b565b6001600160a01b03166c01000000000000000000000000026001600160601b03909116176000556100ad565b6000806040838503121561006e57600080fd5b82516001600160601b038116811461008557600080fd5b60208401519092506001600160a01b03811681146100a257600080fd5b809150509250929050565b6101ee806100bc6000396000f3fe608060405234801561001057600080fd5b50600436106100405760003560e01c806251884a1461004557806321df0da71461006a578063beabacc814610095575b600080fd5b6000546040516bffffffffffffffffffffffff90911681526020015b60405180910390f35b600054600160601b90046001600160a01b03166040516001600160a01b039091168152602001610061565b6100a86100a3366004610153565b6100aa565b005b6000546040516323b872dd60e01b81526001600160a01b038581166004830152848116602483015260448201849052600160601b909204909116906323b872dd906064016020604051808303816000875af115801561010d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610131919061018f565b50505050565b80356001600160a01b038116811461014e57600080fd5b919050565b60008060006060848603121561016857600080fd5b61017184610137565b925061017f60208501610137565b9150604084013590509250925092565b6000602082840312156101a157600080fd5b815180151581146101b157600080fd5b939250505056fea26469706673582212202b9b96f8a114d50ac700f93106ae958bdf05223b6902bd79a7088ba5f33cdf3464736f6c63430008140033a26469706673582212202e64c9b04dc66dd23c47df62b2becfeb7d7976d5a1720eacc1ee5d09eef00e0b64736f6c6343000814003360806040523480156200001157600080fd5b506200001e606462000067565b6200002a607862000067565b62000036608262000067565b6200004062000195565b6200004a62000349565b600380546001600160a01b03191633179055620005d4565b606490565b60ff8116600090815260208181526040808320805460ff191660649081179091556001808452828520918552925282209091620000a2606e90565b60ff908116825260208083019390935260409182016000908120805460ff1916951515959095179094558416835260019182905282209091620000e3606e90565b60ff1660ff1681526020019081526020016000206000620001096200006260201b60201c565b60ff908116825260208083019390935260409182016000908120805460ff19169515159590951790945584168352600191829052822090916200014a606e90565b60ff1660ff168152602001908152602001600020600062000170620005b660201b60201c565b60ff1681526020810191909152604001600020805460ff191691151591909117905550565b60d2600090815260208190527fc0d27dadfcf8ee0186a0f6fe9b5805a51e99869050491e4a3040efec012a214f805460ff191660641790556001908190620001db60d290565b60ff1660ff1681526020019081526020016000206000620002016200006260201b60201c565b60ff1660ff168152602001908152602001600020600062000227620005b160201b60201c565b60ff16815260208101919091526040016000908120805460ff19169215159290921790915560019081906200025a60d290565b60ff1660ff168152602001908152602001600020600062000280620005b160201b60201c565b60ff1660ff1681526020019081526020016000206000620002a66200006260201b60201c565b60ff16815260208101919091526040016000908120805460ff1916921515929092179091556001908190620002d960d290565b60ff1660ff1681526020019081526020016000206000620002ff620005b160201b60201c565b60ff1660ff168152602001908152602001600020600062000325620005bb60201b60201c565b60ff1681526020810191909152604001600020805460ff1916911515919091179055565b60c8600090815260208190527fc5f2c791ab4e0b1a0b6c600884b07e98575b00ebd7c3166c4272a53bebf71403805460ff1916600a17905560019081906200038f60c890565b60ff1660ff1681526020019081526020016000206000620003b5620005c060201b60201c565b60ff1660ff1681526020019081526020016000206000620003db620005c560201b60201c565b60ff16815260208101919091526040016000908120805460ff19169215159290921790915560019081906200040e60c890565b60ff1660ff168152602001908152602001600020600062000434620005c060201b60201c565b60ff1660ff16815260200190815260200160002060006200045a620005ca60201b60201c565b60ff16815260208101919091526040016000908120805460ff19169215159290921790915560019081906200048d60c890565b60ff1660ff1681526020019081526020016000206000620004b3620005c060201b60201c565b60ff1660ff1681526020019081526020016000206000620004d9620005cf60201b60201c565b60ff16815260208101919091526040016000908120805460ff19169215159290921790915560019081906200050c60c890565b60ff1660ff168152602001908152602001600020600062000532620005cf60201b60201c565b60ff1660ff1681526020019081526020016000206000620005586200006260201b60201c565b60ff16815260208101919091526040016000908120805460ff19169215159290921790915560019081906200058b60c890565b60ff1660ff1681526020019081526020016000206000620002ff6200006260201b60201c565b606e90565b60d290565b60c890565b600a90565b601490565b601e90565b602890565b61184780620005e46000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c8063a238accd11610097578063b24133ec11610066578063b24133ec146102e1578063bf1db3f9146102f4578063e9e96c7014610307578063f48016ce1461034557600080fd5b8063a238accd146101ea578063a4dc7d86146101fd578063a5961b4c1461021d578063a8989675146102ce57600080fd5b806354f6127f116100d357806354f6127f146101825780635dee4788146101a25780636ec3d940146101b75780638eaa6ac0146101ca57600080fd5b806309648a9d146100fa5780630d3581811461013957806338a699a41461015f575b600080fd5b61012261010836600461122a565b600090815260026020526040902054610100900460ff1690565b60405160ff90911681526020015b60405180910390f35b610122610147366004611255565b60ff9081166000908152602081905260409020541690565b61017261016d36600461122a565b610366565b6040519015158152602001610130565b61019561019036600461122a565b6103f7565b60405161013091906112b8565b6101b56101b036600461136e565b61049c565b005b6101b56101c53660046113c7565b61076f565b6101dd6101d836600461122a565b610923565b6040516101309190611458565b6101b56101f836600461148c565b610a64565b61021061020b36600461122a565b610cd4565b60405161013091906114d2565b6102c161022b36600461122a565b6040805160a08101825260008082526020820181905291810182905260608101829052608081019190915250600090815260026020908152604091829020825160a081018452905460ff8082168352610100820416928201929092526001600160a01b03620100008304169281019290925263ffffffff600160b01b820481166060840152600160d01b90910416608082015290565b60405161013091906114e0565b6101b56102dc3660046114ee565b610d82565b6101b56102ef36600461136e565b610e78565b610172610302366004611255565b611153565b6101726103153660046114ee565b60ff9283166000908152600160209081526040808320948616835293815283822092851682529190915220541690565b610358610353366004611549565b6111a0565b604051908152602001610130565b60008181526002602052604080822054905163b2466acf60e01b815261010090910460ff16600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf906024015b602060405180830381865af41580156103cd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103f19190611577565b92915050565b600081815260026020526040902060010180546060919061041790611599565b80601f016020809104026020016040519081016040528092919081815260200182805461044390611599565b80156104905780601f1061046557610100808354040283529160200191610490565b820191906000526020600020905b81548152906001019060200180831161047357829003601f168201915b50505050509050919050565b6003546001600160a01b031633146104cf5760405162461bcd60e51b81526004016104c6906115d3565b60405180910390fd5b60405163b2466acf60e01b815260ff8316600482015273__$fb4566b39bd2075cb32f600f6f40bfaef2$__9063b2466acf90602401602060405180830381865af4158015610521573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105459190611577565b6105915760405162461bcd60e51b815260206004820152601c60248201527f4552524f523a4b56532d3031303a545950455f554e444546494e45440000000060448201526064016104c6565b600083815260026020526040908190208054915163037c8cb160e51b815261010090920460ff1660048301529073__$2a12cf1a40369f689f3a67e70f4b31dadc$__90636f91962090602401602060405180830381865af41580156105fa573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061061e9190611577565b61066a5760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a4b56532d3031323a414c52454144595f4352454154454400000060448201526064016104c6565b3343600061067786611153565b610682576064610698565b60ff808716600090815260208190526040902054165b845460ff88811661ffff1990921691909117610100918316919091021762010000600160d01b031916620100006001600160a01b0386160263ffffffff60b01b191617600160b01b63ffffffff85169081029190911763ffffffff60d01b1916600160d01b9190910217855560008881526002602052604090209091506001016107228682611658565b507f73f3182791c24ae0b300ad6af1a7068367128fc289a81ef990679ae73fd6b43261074d88610cd4565b828560405161075e93929190611718565b60405180910390a150505050505050565b6003546001600160a01b031633146107995760405162461bcd60e51b81526004016104c6906115d3565b600082815260026020526040908190208054915163b2466acf60e01b815261010090920460ff1660048301819052909173__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af4158015610805573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108299190611577565b6108755760405162461bcd60e51b815260206004820152601a60248201527f4552524f523a4b56532d3033303a4e4f545f4558495354494e4700000000000060448201526064016104c6565b60008481526002602052604090206001016108908482611658565b508154620100003390810262010000600160b01b031983161784559063ffffffff600160b01b909104166108c14390565b845463ffffffff91909116600160b01b0263ffffffff60b01b1990911617845560006108ec87610cd4565b90507f816901577d1f95b21749b8032a8c0475ee6d8f8bb5917d222ce852943b0fc1a38185858560405161075e9493929190611748565b6040805160e081018252600091810182815260608083018490526080830184905260a0830184905260c083019390935281526020810191909152600082815260026020908152604091829020825160e081018452815460ff80821695830195865261010082041660608301526001600160a01b0362010000820416608083015263ffffffff600160b01b8204811660a0840152600160d01b9091041660c082015292835260018101805491928401916109db90611599565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0790611599565b8015610a545780601f10610a2957610100808354040283529160200191610a54565b820191906000526020600020905b815481529060010190602001808311610a3757829003601f168201915b5050505050815250509050919050565b6003546001600160a01b03163314610a8e5760405162461bcd60e51b81526004016104c6906115d3565b60405163b2466acf60e01b815260ff8216600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af4158015610ae0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b049190611577565b610b505760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a4b56532d3034303a53544154455f554e444546494e454400000060448201526064016104c6565b600082815260026020526040908190208054915163b2466acf60e01b815261010090920460ff1660048301819052909173__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af4158015610bbc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610be09190611577565b610c2c5760405162461bcd60e51b815260206004820152601a60248201527f4552524f523a4b56532d3034313a4e4f545f4558495354494e4700000000000060448201526064016104c6565b8154620100003390810262010000600160b01b031960ff87166101000216610100600160b01b03198416171784559063ffffffff600160b01b90910416610c704390565b845463ffffffff91909116600160b01b0263ffffffff60b01b199091161784556000610c9b87610cd4565b90507f6858c0d3ed40228af5781ff90503acebd6c673c57f8eddec5815410aa6f21118818786868660405161075e959493929190611783565b604080518082019091526000808252602082015260405163526e3ec360e11b815260048101839052600090819073__$c8f743efd2b4f0c9300f2558c784479d3e$__9063a4dc7d86906024016040805180830381865af4158015610d3c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d6091906117c9565b6040805180820190915260ff909216825260ff19166020820152949350505050565b60ff8381166000908152602081905260409081902054905163037c8cb160e51b81529116600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__90636f91962090602401602060405180830381865af4158015610de7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e0b9190611577565b15610e1557505050565b60ff808416600090815260016020908152604080832086851684528252808320858516845290915290205416610e7357604051636bb20ea760e01b815260ff80851660048301528084166024830152821660448201526064016104c6565b505050565b6003546001600160a01b03163314610ea25760405162461bcd60e51b81526004016104c6906115d3565b60405163b2466acf60e01b815260ff8316600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af4158015610ef4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f189190611577565b610f645760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a4b56532d3032303a53544154455f554e444546494e454400000060448201526064016104c6565b600083815260026020526040908190208054915163b2466acf60e01b815261010090920460ff1660048301819052909173__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af4158015610fd0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ff49190611577565b6110405760405162461bcd60e51b815260206004820152601a60248201527f4552524f523a4b56532d3032313a4e4f545f4558495354494e4700000000000060448201526064016104c6565b600085815260026020526040902060010161105b8482611658565b508154620100003390810262010000600160b01b031960ff88166101000216610100600160b01b03198416171784559063ffffffff600160b01b909104166110a04390565b845463ffffffff91909116600160b01b0263ffffffff60b01b1990911617845560006110cb88610cd4565b90507f6858c0d3ed40228af5781ff90503acebd6c673c57f8eddec5815410aa6f211188188868686604051611104959493929190611783565b60405180910390a17f816901577d1f95b21749b8032a8c0475ee6d8f8bb5917d222ce852943b0fc1a3818885856040516111419493929190611748565b60405180910390a15050505050505050565b60ff81811660009081526020819052604080822054905163b2466acf60e01b8152921660048301529073__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf906024016103b0565b604051637a400b6760e11b815260ff8316600482015260ff198216602482015260009073__$c8f743efd2b4f0c9300f2558c784479d3e$__9063f48016ce90604401602060405180830381865af41580156111ff573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061122391906117f8565b9392505050565b60006020828403121561123c57600080fd5b5035919050565b60ff8116811461125257600080fd5b50565b60006020828403121561126757600080fd5b813561122381611243565b6000815180845260005b818110156112985760208185018101518683018201520161127c565b506000602082860101526020601f19601f83011685010191505092915050565b6020815260006112236020830184611272565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126112f257600080fd5b813567ffffffffffffffff8082111561130d5761130d6112cb565b604051601f8301601f19908116603f01168101908282118183101715611335576113356112cb565b8160405283815286602085880101111561134e57600080fd5b836020870160208301376000602085830101528094505050505092915050565b60008060006060848603121561138357600080fd5b83359250602084013561139581611243565b9150604084013567ffffffffffffffff8111156113b157600080fd5b6113bd868287016112e1565b9150509250925092565b600080604083850312156113da57600080fd5b82359150602083013567ffffffffffffffff8111156113f857600080fd5b611404858286016112e1565b9150509250929050565b60ff815116825260ff602082015116602083015260018060a01b036040820151166040830152606081015163ffffffff808216606085015280608084015116608085015250505050565b6020815261146a60208201835161140e565b6000602083015160c08084015261148460e0840182611272565b949350505050565b6000806040838503121561149f57600080fd5b8235915060208301356114b181611243565b809150509250929050565b805160ff16825260209081015160ff1916910152565b604081016103f182846114bc565b60a081016103f1828461140e565b60008060006060848603121561150357600080fd5b833561150e81611243565b9250602084013561151e81611243565b9150604084013561152e81611243565b809150509250925092565b60ff198116811461125257600080fd5b6000806040838503121561155c57600080fd5b823561156781611243565b915060208301356114b181611539565b60006020828403121561158957600080fd5b8151801515811461122357600080fd5b600181811c908216806115ad57607f821691505b6020821081036115cd57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526017908201527f4552524f523a4b56532d3030313a4e4f545f4f574e4552000000000000000000604082015260600190565b601f821115610e7357600081815260208120601f850160051c810160208610156116315750805b601f850160051c820191505b818110156116505782815560010161163d565b505050505050565b815167ffffffffffffffff811115611672576116726112cb565b611686816116808454611599565b8461160a565b602080601f8311600181146116bb57600084156116a35750858301515b600019600386901b1c1916600185901b178555611650565b600085815260208120601f198616915b828110156116ea578886015182559484019460019091019084016116cb565b50858210156117085787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6080810161172682866114bc565b60ff9390931660408201526001600160a01b0391909116606090910152919050565b60a0810161175682876114bc565b60ff9490941660408201526001600160a01b0392909216606083015263ffffffff16608090910152919050565b60c0810161179182886114bc565b60ff95861660408301529390941660608501526001600160a01b0391909116608084015263ffffffff1660a090920191909152919050565b600080604083850312156117dc57600080fd5b82516117e781611243565b60208401519092506114b181611539565b60006020828403121561180a57600080fd5b505191905056fea26469706673582212206c9aa7362d7ede9bf9088758da34b321e06de1b9c704ab032d5b56697ce2bee564736f6c63430008140033",
1879
+ "deployedBytecode": "0x60806040523480156200001157600080fd5b5060043610620004095760003560e01c8063893d20e8116200021d578063bd62faf71162000131578063dc261c3a11620000bb578063ee0fdf711162000086578063ee0fdf711462000c5e578063f0ea17c31462000c75578063f274e87d1462000d26578063fe1f18d61462000d5357600080fd5b8063dc261c3a1462000bc8578063e03eeb851462000c19578063e1f64d771462000c30578063e79597401462000c4757600080fd5b8063d0bb064c11620000fc578063d0bb064c1462000af3578063d250185c1462000b83578063dad73bed1462000b9a578063db70354c1462000bb157600080fd5b8063bd62faf71462000a79578063bd7d9d851462000a90578063c2bf7d261462000ab6578063cf5ccedb1462000acd57600080fd5b806399fd467711620001b3578063af17d38a116200017e578063af17d38a1462000a1d578063b88da7591462000a34578063b8c510671462000a4b578063b9f36dde1462000a6257600080fd5b806399fd467714620009a3578063a13df2ab14620009ba578063a310e2a314620009d1578063a90be9071462000a0657600080fd5b8063946dfcfe11620001f4578063946dfcfe14620009555780639555c4db146200095e5780639675513d146200097557806398457437146200098c57600080fd5b8063893d20e814620008e35780638b59fe2a14620008ed57806393865aec146200090457600080fd5b80634d459c90116200032157806369a44a1b11620002ab5780637fec8b3111620002765780637fec8b3114620008a05780638125ea9214620008b757806383d3331914620008c157806387c5658614620008ca57600080fd5b806369a44a1b146200084e5780636b9bf08b14620008655780636fa29853146200087757806375a07ed2146200088957600080fd5b80635ab1bd5311620002ec5780635ab1bd5314620007ef5780635fe9f2a51462000816578063644c45e0146200082d578063674d0ccf146200083757600080fd5b80634d459c9014620005e75780634fd077f514620006f85780635312fdc2146200071e57806357f80bbf146200074f57600080fd5b806320f4b65e11620003a3578063349195f9116200036e578063349195f914620005765780633bc5de30146200057f5780634288121d146200059b5780634793b4ab14620005c157600080fd5b806320f4b65e14620004fb57806331b62a3b146200051257806331e48e3214620005395780633300a8a8146200055057600080fd5b80630d0ccc5b11620003e45780630d0ccc5b14620004835780630d8e6e2c14620004a957806315dae03e14620004c85780631aa3a00814620004d857600080fd5b806301ffc9a7146200040e5780630591087414620004535780630abd8434146200046c575b600080fd5b6200043e6200041f366004620041c5565b6001600160e01b03191660009081526002602052604090205460ff1690565b60405190151581526020015b60405180910390f35b6200046a620004643660046200421b565b62000d6a565b005b6200043e6200047d366004620042df565b62000f87565b6200049a62000494366004620042ff565b6200102b565b6040519081526020016200044a565b620004b3620010b6565b60405162ffffff90911681526020016200044a565b604051603281526020016200044a565b620004e262001143565b6040516001600160601b0390911681526020016200044a565b6200046a6200050c366004620044a8565b6200123e565b7f0000000000000000000000000000000000000000000000000000000000000000620004e2565b6200046a6200054a366004620045dd565b620013d0565b62000567620005613660046200467f565b620016cc565b6040516200044a91906200469f565b600f546200049a565b604080516020810182526000815290516200044a919062004752565b6005546001600160a01b03165b6040516001600160a01b0390911681526020016200044a565b620005d8620005d23660046200467f565b62001752565b6040516200044a919062004767565b6200069a620005f8366004620042df565b6040805160a0810182526000808252602082018190529181018290526060810182905260808101919091525062ffffff90811660009081526020818152604091829020825160a0810184528154948516815263010000009094046001600160a01b03908116928501929092526001015490811691830191909152600160a01b810464ffffffffff166060830152600160c81b900463ffffffff16608082015290565b60408051825162ffffff1681526020808401516001600160a01b039081169183019190915283830151169181019190915260608083015164ffffffffff169082015260809182015163ffffffff169181019190915260a0016200044a565b6200070f620007093660046200467f565b620017db565b6040516200044a9190620047ff565b620007356200072f3660046200488c565b62001886565b6040516001600160c01b031990911681526020016200044a565b620007c1620007603660046200467f565b6040805160608082018352600080835260208084018290529284018190526001600160601b039485168152601283528390208351918201845280549485168252600160601b90940460ff161515918101919091526001909201549082015290565b6040805182516001600160601b0316815260208084015115159082015291810151908201526060016200044a565b7f0000000000000000000000000000000000000000000000000000000000000000620005a8565b6200046a62000827366004620048d8565b620018c8565b620004e262001ad3565b6200049a6200084836600462004a5f565b62001b3b565b6200049a6200085f3660046200467f565b62001b5f565b6006546001600160a01b0316620005a8565b6004546001600160a01b0316620005a8565b6200046a6200089a36600462004a7f565b62001bf0565b620004e2620008b13660046200488c565b62001eca565b620005a862001f12565b6008546200049a565b620008d462001f27565b6040516200044a919062004aed565b620005a862001faa565b6200046a620008fe36600462004b05565b62001fb6565b6200046a6200091536600462004b57565b6001600160601b03909216600090815260166020908152604090912082516001820155918101516002830155825160038301559190910151600490910155565b6001546200049a565b6200046a6200096f36600462004ba5565b6200216a565b6200049a6200098636600462004bd8565b6200217a565b6200046a6200099d36600462004c0b565b620022e4565b6200043e620009b436600462004c51565b62002464565b6200049a620009cb3660046200467f565b6200249b565b620005a8620009e23660046200467f565b6001600160601b03166000908152601760205260409020546001600160a01b031690565b6200049a62000a173660046200488c565b620024a8565b6200073562000a2e36600462004c72565b620024e4565b620004b362000a453660046200488c565b62002672565b6200073562000a5c36600462004c72565b620026b6565b6200046a62000a7336600462004c51565b62002736565b620004e262000a8a36600462004cc7565b6200289f565b62000aa762000aa13660046200467f565b62002b46565b6040516200044a919062004d42565b6200046a62000ac736600462004c51565b62002d4d565b62000ae462000ade36600462004a5f565b62002f4d565b6040516200044a919062004e8a565b6200046a62000b0436600462004ed3565b604080516080810182526001600160601b039586168082526001600160a01b039586166020808401918252838501968752606084019586526000928352601681529390912091519051909516600160601b0294909516939093178455905180516001850155820151600284015551805160038401550151600490910155565b620008d462000b9436600462004f36565b6200304b565b6200046a62000bab36600462004f68565b620030da565b620004e262000bc236600462004f9b565b620032f8565b6200046a62000bd936600462004b57565b6001600160601b03909216600090815260146020908152604090912082516003820155918101516004830155825160058301559190910151600690910155565b6200046a62000c2a36600462004fca565b6200338f565b6200046a62000c4136600462004c0b565b620034d5565b620005a862000c5836600462004fff565b62003629565b6200043e62000c6f36600462004a5f565b6200364e565b62000cee62000c863660046200467f565b6040805160608082018352600080835260208084018290529284018190526001600160601b039485168152600e83528390208351918201845280549485168252600160601b90940460ff16918101919091526001909201546001600160a01b03169082015290565b6040805182516001600160601b0316815260208084015160ff1690820152918101516001600160a01b0316908201526060016200044a565b62000d3d62000d3736600462005020565b62003679565b604080519283526020830191909152016200044a565b6200046a62000d6436600462005050565b62003705565b306001600160a01b0316636b9bf08b6040518163ffffffff1660e01b81526004016020604051808303816000875af115801562000dab573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000dd1919062005083565b6001600160a01b0316336001600160a01b03161462000e375760405162461bcd60e51b815260206004820152601e60248201527f4552524f523a42444c2d3030313a4e4f545f504f4f4c5f53455256494345000060448201526064015b60405180910390fd5b6000604051806101000160405280886001600160601b03168152602001876001600160601b0316815260200184848080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201829052509385525050506020820188905260408201526060810187905260800142604051631ded81af60e31b815264ffffffffff90911660048201526024810187905273__$d53880c81dc91c20799140d711e5ab8718$__9063ef6c0d7890604401602060405180830381865af415801562000f11573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000f379190620050b0565b64ffffffffff168152602001600064ffffffffff16815250905062000f7e878260405160200162000f69919062004767565b604051602081830303815290604052620037da565b50505050505050565b62ffffff8116600090815260208190526040808220600101549051631bbffab160e21b8152600160c81b90910463ffffffff166004820152819073__$5f476116ae21c5294e0c0761c07efa7e1c$__90636effeac490602401602060405180830381865af415801562000ffe573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620010249190620050d0565b1192915050565b604051631488c84560e01b815260048101839052600082810b60248301529073__$fa7f345063a1bf0cf2bd14a32ccc1b6018$__90631488c84590604401602060405180830381865af415801562001087573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620010ad9190620050d0565b90505b92915050565b604051632efe011360e01b815260036004820152600060248201819052604482018190529073__$c0fcb9c1c2e971ebe3d8745a7e2c5cc364$__90632efe011390606401602060405180830381865af415801562001118573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200113e9190620050ea565b905090565b60006200114f62001faa565b6001600160a01b0316336001600160a01b031614620011b15760405162461bcd60e51b815260206004820152601760248201527f4552524f523a5247422d3030313a4e4f545f4f574e4552000000000000000000604482015260640162000e2e565b604051632210724360e11b81523060048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031690634420e486906024016020604051808303816000875af115801562001218573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200113e919062005117565b306001600160a01b0316636b9bf08b6040518163ffffffff1660e01b81526004016020604051808303816000875af11580156200127f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620012a5919062005083565b6001600160a01b0316336001600160a01b031614806200133c5750306001600160a01b0316634288121d6040518163ffffffff1660e01b81526004016020604051808303816000875af115801562001301573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001327919062005083565b6001600160a01b0316336001600160a01b0316145b6200139c5760405162461bcd60e51b815260206004820152602960248201527f4552524f523a42444c2d3030333a4e4f545f504f4f4c5f4f525f50524f445543604482015268545f5345525649434560b81b606482015260840162000e2e565b620013cd816000015182604051602001620013b8919062004767565b60405160208183030381529060405262003861565b50565b6001600160601b0387166000908152601760205260409020546001600160a01b031615620014585760405162461bcd60e51b815260206004820152602e60248201527f4552524f523a5452532d3031303a544f4b454e5f48414e444c45525f414c524560448201526d10511657d49151d254d51154915160921b606482015260840162000e2e565b6001600160601b0385166000908152601760205260409020546001600160a01b031615620014e05760405162461bcd60e51b815260206004820152602e60248201527f4552524f523a5452532d3031313a544f4b454e5f48414e444c45525f414c524560448201526d10511657d49151d254d51154915160921b606482015260840162000e2e565b6001600160601b0386166000908152601760205260409020546001600160a01b031615620015685760405162461bcd60e51b815260206004820152602e60248201527f4552524f523a5452532d3031323a544f4b454e5f48414e444c45525f414c524560448201526d10511657d49151d254d51154915160921b606482015260840162000e2e565b600087856040516200157a9062004101565b6001600160601b0390921682526001600160a01b03166020820152604001604051809103906000f080158015620015b5573d6000803e3d6000fd5b506001600160601b03988916600081815260176020908152604080832080546001600160a01b039687166001600160a01b031991821681179092559b8e1680855282852080548e16831790559c8e1680855282852080548e16909217909155815160e0810183528581528084019182528083019d8e529a861660608c0190815299861660808c0190815260a08c01998a5260c08c019889529484526014835292209851895492518d16600160601b9081026001600160c01b0319909416918e1691909117929092178955995196518316029590991694909417600186015550955160028401805491909316941693909317905590518051600383015582015160048201559151805160058401550151600690910155565b620016d66200410f565b506001600160601b03908116600090815260166020908152604091829020825160808101845281549485168152600160601b9094046001600160a01b0316848301528251808401845260018201548152600282015481840152848401528251808401909352600381015483526004015490820152606082015290565b620017bb60405180610100016040528060006001600160601b0316815260200160006001600160601b0316815260200160608152602001600081526020016000815260200160008152602001600064ffffffffff168152602001600064ffffffffff1681525090565b620017c6826200389d565b806020019051810190620010b0919062005183565b620017e562004180565b506001600160601b03908116600090815260146020908152604091829020825160e08101845281548086168252600160601b908190048616828501526001830154958616828601526001600160a01b0395048516606082015260028201549094166080850152825180840184526003820154815260048201548184015260a0850152825180840190935260058101548352600601549082015260c082015290565b6000600882815481106200189e576200189e62005254565b90600052602060002090600491828204019190066008029054906101000a900460c01b9050919050565b306001600160a01b0316634288121d6040518163ffffffff1660e01b81526004016020604051808303816000875af115801562001909573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200192f919062005083565b6001600160a01b0316336001600160a01b031614620019625760405162461bcd60e51b815260040162000e2e906200526a565b80516001600160601b0390811660009081526011602090815260409182902084518154928601519085166001600160c01b031990931692909217600160601b928516830217815591840151606085015193166001600160a01b0390931602919091176001820155608082015160028201805460ff191660ff90921691909117905560a0820151600382015560c0820151600482015560e082015160058201556101008201516006820155610120820151829190600782019062001a26908262005336565b50610140820151600890910180546101608401516101808501516101a08601516101c09096015163ffffffff16600160a01b0263ffffffff60a01b1964ffffffffff978816600160781b0264ffffffffff60781b19938916600160501b029390931669ffffffffffffffffffff60501b19948916650100000000000269ffffffffffffffffffff199096169890971697909717939093179190911693909317929092179290921617905550565b604051636939560f60e11b81523060048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063d272ac1e90602401602060405180830381865afa15801562001218573d6000803e3d6000fd5b6001600160c01b031981166000908152600a60205260408120620010b09062003923565b6001600160601b038116600090815260136020526040808220905163697d0f1b60e11b8152600481019190915273__$0dc988b1672de335b826773df9015af2da$__9063d2fa1e36906024015b602060405180830381865af415801562001bca573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620010b09190620050d0565b306001600160a01b0316634288121d6040518163ffffffff1660e01b81526004016020604051808303816000875af115801562001c31573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001c57919062005083565b6001600160a01b0316336001600160a01b03161462001c8a5760405162461bcd60e51b815260040162000e2e906200526a565b604051806101e00160405280866001600160601b03168152602001876001600160601b03168152602001826001600160601b0316815260200160006001600160a01b0316815260200162001cdc600a90565b60ff1681526020018581526020018481526020016000815260200183815260200160405180602001604052806000815250815260200162001d1a4290565b64ffffffffff168152602001600064ffffffffff168152602001600064ffffffffff168152602001600064ffffffffff1681526020014363ffffffff1690526001600160601b0386811660009081526011602090815260409182902084518154928601519085166001600160c01b031990931692909217600160601b928516830217815591840151606085015193166001600160a01b0390931602919091176001820155608082015160028201805460ff191660ff90921691909117905560a0820151600382015560c0820151600482015560e082015160058201556101008201516006820155610120820151600782019062001e18908262005336565b50610140820151600890910180546101608401516101808501516101a08601516101c09096015163ffffffff16600160a01b0263ffffffff60a01b1964ffffffffff978816600160781b0264ffffffffff60781b19938916600160501b029390931669ffffffffffffffffffff60501b19948916650100000000000269ffffffffffffffffffff1990961698909716979097179390931791909116939093179290921792909216179055505050505050565b6000600f828154811062001ee25762001ee262005254565b9060005260206000209060029182820401919006600c029054906101000a90046001600160601b03169050919050565b60006200113e6003546001600160a01b031690565b604080518082019091526000808252602082015273__$a23651848365a6a5ca15f07b4331037f48$__632bd182d36040518163ffffffff1660e01b81526004016040805180830381865af415801562001f84573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200113e919062005402565b60006200113e6200392e565b306001600160a01b0316636fa298536040518163ffffffff1660e01b8152600401602060405180830381865afa15801562001ff5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200201b919062005083565b6001600160a01b0316336001600160a01b0316146200207d5760405162461bcd60e51b815260206004820152601f60248201527f4552524f523a434d502d3030313a4e4f545f4f574e45525f5345525649434500604482015260640162000e2e565b6040518060600160405280846001600160601b03168152602001620020a0606490565b60ff90811682526001600160a01b039384166020928301526001600160601b039586166000818152600e845260408082208651815496880151909516600160601b026001600160681b0319909616948a1694909417949094178355939092015160019182018054919095166001600160a01b031990911617909355600f805480850182559252600282047f8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac80201805492909316600c026101000a908102940219169290921790915550565b62002176828262003a90565b5050565b6000306001600160a01b0316634288121d6040518163ffffffff1660e01b81526004016020604051808303816000875af1158015620021bd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620021e3919062005083565b6001600160a01b0316336001600160a01b031614620022165760405162461bcd60e51b815260040162000e2e9062005437565b506001600160601b038083166000818152600d602090815260408083209486168352938152838220805490839055928252600c9052829020915163539eabab60e11b8152909173__$0dc988b1672de335b826773df9015af2da$__9163a73d575691620022999186906004019182526001600160601b0316602082015260400190565b602060405180830381865af4158015620022b7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620022dd919062005478565b5092915050565b6001600160601b03828116600090815260136020526040908190209051632bfdd6b960e01b81526004810182905291851660248301529073__$0dc988b1672de335b826773df9015af2da$__90632bfdd6b990604401602060405180830381865af415801562002358573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200237e919062005478565b15620023d75760405162461bcd60e51b815260206004820152602160248201527f4552524f523a504c2d3032303a42554e444c455f414c52454144595f414444456044820152601160fa1b606482015260840162000e2e565b604051631461054360e31b8152600481018290526001600160601b038516602482015273__$0dc988b1672de335b826773df9015af2da$__9063a3082a1890604401602060405180830381865af415801562002437573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200245d919062005478565b5050505050565b6001600160c01b0319821660009081526009602090815260408083206001600160a01b038516845290915281205460ff16620010ad565b6000620010b08262003d61565b6040516322f5db0f60e11b81526004810182905260009073__$fa7f345063a1bf0cf2bd14a32ccc1b6018$__906345ebb61e9060240162001bac565b6000306001600160a01b031663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa15801562002525573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200254b919062005083565b6001600160a01b0316336001600160a01b0316146200257e5760405162461bcd60e51b815260040162000e2e9062005498565b60405163e14787cb60e01b815273__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063e14787cb90620025b790859060040162004752565b602060405180830381865af4158015620025d5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620025fb9190620054cf565b905062002608816200364e565b15620026615760405162461bcd60e51b815260206004820152602160248201527f4552524f523a4143532d3031303a524f4c455f414c52454144595f45584953546044820152605360f81b606482015260840162000e2e565b6200266d818362003db8565b919050565b6000600182815481106200268a576200268a62005254565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff169050919050565b60405163e14787cb60e01b815260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__9063e14787cb90620026f290859060040162004752565b602060405180830381865af415801562002710573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620010b09190620054cf565b6001600160c01b0319828116600081815260076020526040902054849260c09190911b16146200277a5760405162461bcd60e51b815260040162000e2e90620054ef565b306001600160a01b031663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa158015620027b9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620027df919062005083565b6001600160a01b0316336001600160a01b031614620028125760405162461bcd60e51b815260040162000e2e9062005498565b6001600160c01b0319831660008181526009602090815260408083206001600160a01b03871684528252808320805460ff19169055928252600a9052206200285b908362003e1d565b507fab64a6bff51dad0663bf6702fca25a9e2751ecc0353d6fe92d1698754539668483836000604051620028929392919062005526565b60405180910390a1505050565b6000306001600160a01b0316636fa298536040518163ffffffff1660e01b8152600401602060405180830381865afa158015620028e0573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002906919062005083565b6001600160a01b0316336001600160a01b031614620029685760405162461bcd60e51b815260206004820152601f60248201527f4552524f523a434d502d3030313a4e4f545f4f574e45525f5345525649434500604482015260640162000e2e565b5080516040516330b8415f60e01b81526001600160601b038216600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015620029c4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620029ea919062005478565b801562002a8957506001600160601b038181166000818152600e60205260409081902054905163c4cade9d60e01b815292166004830152602482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__9063c4cade9d90604401602060405180830381865af415801562002a63573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002a89919062005478565b62002ad75760405162461bcd60e51b815260206004820152601f60248201527f4552524f523a434d502d3030363a434f4d504f4e454e545f554e4b4e4f574e00604482015260640162000e2e565b6001600160601b038082166000908152600e6020908152604091829020855181549287015160ff16600160601b026001600160681b031990931694169390931717825590920151600190920180546001600160a01b039093166001600160a01b03199093169290921790915590565b604080516101e08101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820183905260e0820183905261010082018390526101208201526101408101829052610160810182905261018081018290526101a081018290526101c08101919091526001600160601b0382811660009081526011602090815260409182902082516101e08101845281548086168252600160601b9081900486169382019390935260018201549485169381019390935292046001600160a01b03166060820152600282015460ff166080820152600382015460a0820152600482015460c0820152600582015460e082015260068201546101008201526007820180549192916101208401919062002c6d90620052ab565b80601f016020809104026020016040519081016040528092919081815260200182805462002c9b90620052ab565b801562002cec5780601f1062002cc05761010080835404028352916020019162002cec565b820191906000526020600020905b81548152906001019060200180831162002cce57829003601f168201915b50505091835250506008919091015464ffffffffff808216602084015265010000000000820481166040840152600160501b820481166060840152600160781b8204166080830152600160a01b900463ffffffff1660a09091015292915050565b6001600160c01b0319828116600081815260076020526040902054849260c09190911b161462002d915760405162461bcd60e51b815260040162000e2e90620054ef565b306001600160a01b031663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa15801562002dd0573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062002df6919062005083565b6001600160a01b0316336001600160a01b03161462002e295760405162461bcd60e51b815260040162000e2e9062005498565b6001600160c01b0319831660009081526007602052604090206002015460ff1662002e975760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a4143532d3034303a524f4c455f4e4f545f414354495645000000604482015260640162000e2e565b6001600160c01b0319831660008181526009602090815260408083206001600160a01b03871684528252808320805460ff19166001179055928252600a90522062002ee3908362003e34565b506001600160c01b0319831660009081526009602090815260408083206001600160a01b0386168452909152908190205490517fab64a6bff51dad0663bf6702fca25a9e2751ecc0353d6fe92d169875453966849162002892918691869160ff9091169062005526565b6040805160608082018352600080835260208084018390528385018290526001600160c01b0319868116835260078252918590208551938401909552845460c01b9091168252600184018054939492939184019162002fac90620052ab565b80601f016020809104026020016040519081016040528092919081815260200182805462002fda90620052ab565b80156200302b5780601f1062002fff576101008083540402835291602001916200302b565b820191906000526020600020905b8154815290600101906020018083116200300d57829003601f168201915b50505091835250506002919091015460ff16151560209091015292915050565b60408051808201825260008082526020820152905163638086fd60e11b8152600481018490526024810183905273__$a23651848365a6a5ca15f07b4331037f48$__9063c7010dfa906044016040805180830381865af4158015620030b4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620010ad919062005402565b6001600160c01b0319828116600081815260076020526040902054849260c09190911b16146200311e5760405162461bcd60e51b815260040162000e2e90620054ef565b306001600160a01b031663893d20e86040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200315d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003183919062005083565b6001600160a01b0316336001600160a01b031614620031b65760405162461bcd60e51b815260040162000e2e9062005498565b6001600160c01b03198084166000908152600760209081526040808320815160608101909252805460c01b90941681526001840180549394919391928401916200320090620052ab565b80601f01602080910402602001604051908101604052809291908181526020018280546200322e90620052ab565b80156200327f5780601f1062003253576101008083540402835291602001916200327f565b820191906000526020600020905b8154815290600101906020018083116200326157829003601f168201915b50505091835250506002919091015460ff16151560209091015283151560408201529050620032ae8162003e4b565b604080516001600160c01b03198616815284151560208201527feaffaec948991ecc6e201ba4f67ba865fbf66aace3d2f2823dc5483cc9813fda910160405180910390a150505050565b6001600160601b038216600090815260136020526040808220905163e797d89960e01b815260048101919091526024810183905273__$0dc988b1672de335b826773df9015af2da$__9063e797d89990604401602060405180830381865af415801562003369573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620010ad919062005117565b6001600160601b0383811660009081526012602052604090819020549051630a4d29dd60e31b81529116600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906352694ee890602401602060405180830381865af4158015620033fb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003421919062005478565b6200346f5760405162461bcd60e51b815260206004820152601c60248201527f4552524f523a504c2d3031303a414c52454144595f4352454154454400000000604482015260640162000e2e565b604080516060810182526001600160601b039485168082529315156020808301918252828401948552600095865260129052919093209251835491511515600160601b026001600160681b03199092169416939093179290921781559051600190910155565b306001600160a01b0316634288121d6040518163ffffffff1660e01b81526004016020604051808303816000875af115801562003516573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200353c919062005083565b6001600160a01b0316336001600160a01b0316146200356f5760405162461bcd60e51b815260040162000e2e9062005437565b6001600160601b038381166000818152600d60209081526040808320948716808452948252808320869055928252600c90528190209051631461054360e31b81526004810191909152602481019190915273__$0dc988b1672de335b826773df9015af2da$__9063a3082a1890604401602060405180830381865af4158015620035fd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003623919062005478565b50505050565b6001600160c01b031982166000908152600a60205260408120620010ad908362003f26565b6001600160c01b0319818116600081815260076020526040812054909260c09190911b1614620010b0565b60008073__$a23651848365a6a5ca15f07b4331037f48$__63c66fb3ae85856040518363ffffffff1660e01b8152600401620036b792919062005553565b6040805180830381865af4158015620036d4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620036fa919062005572565b915091509250929050565b306001600160a01b0316636b9bf08b6040518163ffffffff1660e01b81526004016020604051808303816000875af115801562003746573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200376c919062005083565b6001600160a01b0316336001600160a01b031614620037ce5760405162461bcd60e51b815260206004820152601e60248201527f4552524f523a42444c2d3030313a4e4f545f504f4f4c5f534552564943450000604482015260640162000e2e565b62002176828262003f34565b600b546001600160a01b0316635dee4788620037f68462003d61565b600b5460405160e084901b6001600160e01b0319168152620038299291600160a01b900460ff1690869060040162005597565b600060405180830381600087803b1580156200384457600080fd5b505af115801562003859573d6000803e3d6000fd5b505050505050565b600b546001600160a01b0316636ec3d9406200387d8462003d61565b836040518363ffffffff1660e01b815260040162003829929190620055c4565b600b546060906001600160a01b03166354f6127f620038bc8462003d61565b6040518263ffffffff1660e01b8152600401620038db91815260200190565b600060405180830381865afa158015620038f9573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052620010b09190810190620055df565b6000620010b0825490565b604051636939560f60e11b815230600482015260009081906001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063d272ac1e90602401602060405180830381865afa15801562003998573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620039be919062005117565b90506001600160601b038116620039f6577f000000000000000000000000000000000000000000000000000000000000000091505090565b60405163df33330b60e01b81526001600160601b03821660048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063df33330b90602401602060405180830381865afa15801562003a64573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062003a8a919062005083565b91505090565b600062003a9c620010b6565b905062003aa98162000f87565b1562003b085760405162461bcd60e51b815260206004820152602760248201527f4552524f523a56524e2d3030313a56455253494f4e5f414c52454144595f41436044820152661512559055115160ca1b606482015260840162000e2e565b6001541562003bcf57600180546000919062003b2690829062005617565b8154811062003b395762003b3962005254565b90600052602060002090600a91828204019190066003029054906101000a900462ffffff16905062003b73828262ffffff90811691161190565b62003bcd5760405162461bcd60e51b8152602060048201526024808201527f4552524f523a56524e2d3030323a56455253494f4e5f4e4f545f494e4352454160448201526353494e4760e01b606482015260840162000e2e565b505b600180548082018255600091909152600a8082047fb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf601805462ffffff808616600394909506939093026101000a848102930219169190911790556040805160a0810182529182526001600160a01b0380861660208401528416908201526060810162003c584290565b64ffffffffff1681526020014363ffffffff90811690915262ffffff8084166000908152602081815260409182902085518154928701516001600160a01b039081166301000000026001600160b81b0319909416919095161791909117815584820151600190910180546060870151608090970151909516600160c81b0263ffffffff60c81b1964ffffffffff909716600160a01b026001600160c81b031990961692909416919091179390931793909316179055517f68e7327fca0057a787cde34ababb9ef9844ba8065ee03e8781d8122fc15d441990620028929083908690869062ffffff9390931683526001600160a01b03918216602084015216604082015260600190565b600b54604051630711349960e31b81526001600160601b0383166004820152600160a01b90910460ff16602482015260009073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__90633889a4c89060440162001bac565b604080516060810182526001600160c01b0319841681526020810183905260019181019190915262003dea8162003e4b565b7f34e1f82fc40bf14028ae2a3150f074e7715e20ed8e30e250f8789cee718c648583836040516200289292919062005639565b6000620010ad836001600160a01b03841662003f7e565b6000620010ad836001600160a01b03841662004082565b80516001600160c01b0319811660009081526007602090815260409091208351815467ffffffffffffffff191660c09190911c17815590830151839190600182019062003e99908262005336565b50604091909101516002909101805460ff191691151591909117905562003ec0816200364e565b6200217657600880546001810182556000829052600481047ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee301805460c085901c60039093169093026101000a9182026001600160401b03909202199092161790555050565b6000620010ad8383620040d4565b600b546001600160a01b031663a238accd62003f508462003d61565b6040516001600160e01b031960e084901b168152600481019190915260ff8416602482015260440162003829565b600081815260018301602052604081205480156200407757600062003fa560018362005617565b855490915060009062003fbb9060019062005617565b90508181146200402757600086600001828154811062003fdf5762003fdf62005254565b906000526020600020015490508087600001848154811062004005576200400562005254565b6000918252602080832090910192909255918252600188019052604090208390555b85548690806200403b576200403b62005660565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050620010b0565b6000915050620010b0565b6000818152600183016020526040812054620040cb57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155620010b0565b506000620010b0565b6000826000018281548110620040ee57620040ee62005254565b9060005260206000200154905092915050565b6102aa806200567783390190565b604051806080016040528060006001600160601b0316815260200160006001600160a01b0316815260200162004158604051806040016040528060008152602001600081525090565b81526020016200417b604051806040016040528060008152602001600081525090565b905290565b6040805160e08101825260008082526020808301829052828401829052606083018290526080830182905283518085019094528184528301529060a082019062004158565b600060208284031215620041d857600080fd5b81356001600160e01b031981168114620041f157600080fd5b9392505050565b6001600160601b0381168114620013cd57600080fd5b80356200266d81620041f8565b60008060008060008060a087890312156200423557600080fd5b86356200424281620041f8565b955060208701356200425481620041f8565b9450604087013593506060870135925060808701356001600160401b03808211156200427f57600080fd5b818901915089601f8301126200429457600080fd5b813581811115620042a457600080fd5b8a6020828501011115620042b757600080fd5b6020830194508093505050509295509295509295565b62ffffff81168114620013cd57600080fd5b600060208284031215620042f257600080fd5b8135620041f181620042cd565b600080604083850312156200431357600080fd5b8235915060208301358060000b81146200432c57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60405161010081016001600160401b038111828210171562004373576200437362004337565b60405290565b604080519081016001600160401b038111828210171562004373576200437362004337565b6040516101e081016001600160401b038111828210171562004373576200437362004337565b604051601f8201601f191681016001600160401b0381118282101715620043ef57620043ef62004337565b604052919050565b60006001600160401b0382111562004413576200441362004337565b50601f01601f191660200190565b6000620044386200443284620043f7565b620043c4565b90508281528383830111156200444d57600080fd5b828260208301376000602084830101529392505050565b600082601f8301126200447657600080fd5b620010ad8383356020850162004421565b64ffffffffff81168114620013cd57600080fd5b80356200266d8162004487565b600060208284031215620044bb57600080fd5b81356001600160401b0380821115620044d357600080fd5b908301906101008286031215620044e957600080fd5b620044f36200434d565b620044fe836200420e565b81526200450e602084016200420e565b60208201526040830135828111156200452657600080fd5b620045348782860162004464565b604083015250606083013560608201526080830135608082015260a083013560a08201526200456660c084016200449b565b60c08201526200457960e084016200449b565b60e082015295945050505050565b6001600160a01b0381168114620013cd57600080fd5b80356200266d8162004587565b600060408284031215620045bd57600080fd5b620045c762004379565b9050813581526020820135602082015292915050565b6000806000806000806000610120888a031215620045fa57600080fd5b87356200460781620041f8565b965060208801356200461981620041f8565b955060408801356200462b81620041f8565b945060608801356200463d8162004587565b935060808801356200464f8162004587565b9250620046608960a08a01620045aa565b9150620046718960e08a01620045aa565b905092959891949750929550565b6000602082840312156200469257600080fd5b8135620041f181620041f8565b81516001600160601b031681526020808301516001600160a01b03169082015260408083015160c0830191620046e19084018280518252602090810151910152565b50606083015180516080840152602081015160a0840152620022dd565b60005b838110156200471b57818101518382015260200162004701565b50506000910152565b600081518084526200473e816020860160208601620046fe565b601f01601f19169290920160200192915050565b602081526000620010ad602083018462004724565b6020815260006001600160601b03808451166020840152806020850151166040840152506040830151610100806060850152620047a961012085018362004724565b915060608501516080850152608085015160a085015260a085015160c085015260c0850151620047e260e086018264ffffffffff169052565b5060e085015164ffffffffff8116858301525b5090949350505050565b6000610120820190506001600160601b0380845116835280602085015116602084015280604085015116604084015250606083015160018060a01b038082166060850152806080860151166080850152505060a08301516200486e60a084018280518252602090810151910152565b5060c0830151805160e08401526020810151610100840152620022dd565b6000602082840312156200489f57600080fd5b5035919050565b60ff81168114620013cd57600080fd5b80356200266d81620048a6565b803563ffffffff811681146200266d57600080fd5b600060208284031215620048eb57600080fd5b81356001600160401b03808211156200490357600080fd5b908301906101e082860312156200491957600080fd5b620049236200439e565b6200492e836200420e565b81526200493e602084016200420e565b602082015262004951604084016200420e565b604082015262004964606084016200459d565b60608201526200497760808401620048b6565b608082015260a083013560a082015260c083013560c082015260e083013560e08201526101008084013581830152506101208084013583811115620049bb57600080fd5b620049c98882870162004464565b8284015250506101409150620049e18284016200449b565b828201526101609150620049f78284016200449b565b82820152610180915062004a0d8284016200449b565b828201526101a0915062004a238284016200449b565b828201526101c0915062004a39828401620048c3565b91810191909152949350505050565b6001600160c01b031981168114620013cd57600080fd5b60006020828403121562004a7257600080fd5b8135620041f18162004a48565b60008060008060008060c0878903121562004a9957600080fd5b863562004aa681620041f8565b9550602087013562004ab881620041f8565b945060408701359350606087013592506080870135915060a087013562004adf81620041f8565b809150509295509295509295565b815181526020808301519082015260408101620010b0565b60008060006060848603121562004b1b57600080fd5b833562004b2881620041f8565b9250602084013562004b3a81620048a6565b9150604084013562004b4c8162004587565b809150509250925092565b600080600060a0848603121562004b6d57600080fd5b833562004b7a81620041f8565b925062004b8b8560208601620045aa565b915062004b9c8560608601620045aa565b90509250925092565b6000806040838503121562004bb957600080fd5b823562004bc68162004587565b915060208301356200432c8162004587565b6000806040838503121562004bec57600080fd5b823562004bf981620041f8565b915060208301356200432c81620041f8565b60008060006060848603121562004c2157600080fd5b833562004c2e81620041f8565b9250602084013562004c4081620041f8565b929592945050506040919091013590565b6000806040838503121562004c6557600080fd5b823562004bc68162004a48565b60006020828403121562004c8557600080fd5b81356001600160401b0381111562004c9c57600080fd5b8201601f8101841362004cae57600080fd5b62004cbf8482356020840162004421565b949350505050565b60006060828403121562004cda57600080fd5b604051606081018181106001600160401b038211171562004cff5762004cff62004337565b604052823562004d0f81620041f8565b8152602083013562004d2181620048a6565b6020820152604083013562004d368162004587565b60408201529392505050565b6020815262004d5d6020820183516001600160601b03169052565b6000602083015162004d7a60408401826001600160601b03169052565b5060408301516001600160601b03811660608401525060608301516001600160a01b038116608084015250608083015160ff811660a08401525060a083015160c083015260c083015160e083015260e08301516101008181850152808501519150506101208181850152808501519150506101e0610140818186015262004e0661020086018462004724565b9086015190925061016062004e238682018364ffffffffff169052565b860151905061018062004e3e8682018364ffffffffff169052565b86015190506101a062004e598682018364ffffffffff169052565b86015190506101c062004e748682018364ffffffffff169052565b86015163ffffffff8116838701529050620047f5565b602080825282516001600160c01b031916828201528201516060604083015260009062004ebb608084018262004724565b90506040840151151560608401528091505092915050565b60008060008060c0858703121562004eea57600080fd5b843562004ef781620041f8565b9350602085013562004f098162004587565b925062004f1a8660408701620045aa565b915062004f2b8660808701620045aa565b905092959194509250565b6000806040838503121562004f4a57600080fd5b50508035926020909101359150565b8015158114620013cd57600080fd5b6000806040838503121562004f7c57600080fd5b823562004f898162004a48565b915060208301356200432c8162004f59565b6000806040838503121562004faf57600080fd5b823562004fbc81620041f8565b946020939093013593505050565b60008060006060848603121562004fe057600080fd5b833562004fed81620041f8565b9250602084013562004c408162004f59565b600080604083850312156200501357600080fd5b823562004fbc8162004a48565b600080606083850312156200503457600080fd5b82359150620050478460208501620045aa565b90509250929050565b600080604083850312156200506457600080fd5b82356200507181620041f8565b915060208301356200432c81620048a6565b6000602082840312156200509657600080fd5b8151620041f18162004587565b80516200266d8162004487565b600060208284031215620050c357600080fd5b8151620041f18162004487565b600060208284031215620050e357600080fd5b5051919050565b600060208284031215620050fd57600080fd5b8151620041f181620042cd565b80516200266d81620041f8565b6000602082840312156200512a57600080fd5b8151620041f181620041f8565b600082601f8301126200514957600080fd5b81516200515a6200443282620043f7565b8181528460208386010111156200517057600080fd5b62004cbf826020830160208701620046fe565b6000602082840312156200519657600080fd5b81516001600160401b0380821115620051ae57600080fd5b908301906101008286031215620051c457600080fd5b620051ce6200434d565b620051d9836200510a565b8152620051e9602084016200510a565b60208201526040830151828111156200520157600080fd5b6200520f8782860162005137565b604083015250606083015160608201526080830151608082015260a083015160a08201526200524160c08401620050a3565b60c08201526200457960e08401620050a3565b634e487b7160e01b600052603260045260246000fd5b60208082526021908201527f4552524f523a504f4c2d3030313a4e4f545f50524f445543545f5345525649436040820152604560f81b606082015260800190565b600181811c90821680620052c057607f821691505b602082108103620052e157634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200533157600081815260208120601f850160051c81016020861015620053105750805b601f850160051c820191505b8181101562003859578281556001016200531c565b505050565b81516001600160401b0381111562005352576200535262004337565b6200536a81620053638454620052ab565b84620052e7565b602080601f831160018114620053a25760008415620053895750858301515b600019600386901b1c1916600185901b17855562003859565b600085815260208120601f198616915b82811015620053d357888601518255948401946001909101908401620053b2565b5085821015620053f25787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000604082840312156200541557600080fd5b6200541f62004379565b82518152602083015160208201528091505092915050565b60208082526021908201527f4552524f523a42444c2d3030323a4e4f545f50524f445543545f5345525649436040820152604560f81b606082015260800190565b6000602082840312156200548b57600080fd5b8151620041f18162004f59565b60208082526017908201527f4552524f523a4143532d3030313a4e4f545f4f574e4552000000000000000000604082015260600190565b600060208284031215620054e257600080fd5b8151620041f18162004a48565b6020808252601f908201527f4552524f523a4143532d3030323a524f4c455f4e4f545f4558495354494e4700604082015260600190565b6001600160c01b03199390931683526001600160a01b039190911660208301521515604082015260600190565b82815260608101620041f1602083018480518252602090810151910152565b600080604083850312156200558657600080fd5b505080516020909101519092909150565b83815260ff83166020820152606060408201526000620055bb606083018462004724565b95945050505050565b82815260406020820152600062004cbf604083018462004724565b600060208284031215620055f257600080fd5b81516001600160401b038111156200560957600080fd5b62004cbf8482850162005137565b81810381811115620010b057634e487b7160e01b600052601160045260246000fd5b6001600160401b0360c01b8316815260406020820152600062004cbf604083018462004724565b634e487b7160e01b600052603160045260246000fdfe608060405234801561001057600080fd5b506040516102aa3803806102aa83398101604081905261002f9161005b565b6001600160a01b03166c01000000000000000000000000026001600160601b03909116176000556100ad565b6000806040838503121561006e57600080fd5b82516001600160601b038116811461008557600080fd5b60208401519092506001600160a01b03811681146100a257600080fd5b809150509250929050565b6101ee806100bc6000396000f3fe608060405234801561001057600080fd5b50600436106100405760003560e01c806251884a1461004557806321df0da71461006a578063beabacc814610095575b600080fd5b6000546040516bffffffffffffffffffffffff90911681526020015b60405180910390f35b600054600160601b90046001600160a01b03166040516001600160a01b039091168152602001610061565b6100a86100a3366004610153565b6100aa565b005b6000546040516323b872dd60e01b81526001600160a01b038581166004830152848116602483015260448201849052600160601b909204909116906323b872dd906064016020604051808303816000875af115801561010d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610131919061018f565b50505050565b80356001600160a01b038116811461014e57600080fd5b919050565b60008060006060848603121561016857600080fd5b61017184610137565b925061017f60208501610137565b9150604084013590509250925092565b6000602082840312156101a157600080fd5b815180151581146101b157600080fd5b939250505056fea26469706673582212202b9b96f8a114d50ac700f93106ae958bdf05223b6902bd79a7088ba5f33cdf3464736f6c63430008140033a26469706673582212202e64c9b04dc66dd23c47df62b2becfeb7d7976d5a1720eacc1ee5d09eef00e0b64736f6c63430008140033",
1880
+ "linkReferences": {
1881
+ "contracts/types/Blocknumber.sol": {
1882
+ "BlocknumberLib": [
1883
+ {
1884
+ "length": 20,
1885
+ "start": 3028
1886
+ },
1887
+ {
1888
+ "length": 20,
1889
+ "start": 8651
1890
+ }
1891
+ ]
1892
+ },
1893
+ "contracts/types/Fee.sol": {
1894
+ "FeeLib": [
1895
+ {
1896
+ "length": 20,
1897
+ "start": 12613
1898
+ },
1899
+ {
1900
+ "length": 20,
1901
+ "start": 17026
1902
+ },
1903
+ {
1904
+ "length": 20,
1905
+ "start": 18566
1906
+ }
1907
+ ]
1908
+ },
1909
+ "contracts/types/Key32.sol": {
1910
+ "Key32Lib": [
1911
+ {
1912
+ "length": 20,
1913
+ "start": 32325
1914
+ },
1915
+ {
1916
+ "length": 20,
1917
+ "start": 33543
1918
+ }
1919
+ ]
1920
+ },
1921
+ "contracts/types/NftId.sol": {
1922
+ "NftIdLib": [
1923
+ {
1924
+ "length": 20,
1925
+ "start": 15249
1926
+ },
1927
+ {
1928
+ "length": 20,
1929
+ "start": 15408
1930
+ },
1931
+ {
1932
+ "length": 20,
1933
+ "start": 17864
1934
+ },
1935
+ {
1936
+ "length": 20,
1937
+ "start": 20381
1938
+ }
1939
+ ]
1940
+ },
1941
+ "contracts/types/NftIdSet.sol": {
1942
+ "LibNftIdSet": [
1943
+ {
1944
+ "length": 20,
1945
+ "start": 11670
1946
+ },
1947
+ {
1948
+ "length": 20,
1949
+ "start": 13414
1950
+ },
1951
+ {
1952
+ "length": 20,
1953
+ "start": 13605
1954
+ },
1955
+ {
1956
+ "length": 20,
1957
+ "start": 13828
1958
+ },
1959
+ {
1960
+ "length": 20,
1961
+ "start": 17718
1962
+ },
1963
+ {
1964
+ "length": 20,
1965
+ "start": 18378
1966
+ }
1967
+ ]
1968
+ },
1969
+ "contracts/types/ObjectType.sol": {
1970
+ "ObjectTypeLib": [
1971
+ {
1972
+ "length": 20,
1973
+ "start": 30249
1974
+ }
1975
+ ]
1976
+ },
1977
+ "contracts/types/RoleId.sol": {
1978
+ "RoleIdLib": [
1979
+ {
1980
+ "length": 20,
1981
+ "start": 2356
1982
+ },
1983
+ {
1984
+ "length": 20,
1985
+ "start": 2616
1986
+ },
1987
+ {
1988
+ "length": 20,
1989
+ "start": 2705
1990
+ },
1991
+ {
1992
+ "length": 20,
1993
+ "start": 2797
1994
+ },
1995
+ {
1996
+ "length": 20,
1997
+ "start": 14229
1998
+ },
1999
+ {
2000
+ "length": 20,
2001
+ "start": 14544
2002
+ }
2003
+ ]
2004
+ },
2005
+ "contracts/types/StateId.sol": {
2006
+ "StateIdLib": [
2007
+ {
2008
+ "length": 20,
2009
+ "start": 29908
2010
+ },
2011
+ {
2012
+ "length": 20,
2013
+ "start": 30466
2014
+ },
2015
+ {
2016
+ "length": 20,
2017
+ "start": 30989
2018
+ },
2019
+ {
2020
+ "length": 20,
2021
+ "start": 31720
2022
+ },
2023
+ {
2024
+ "length": 20,
2025
+ "start": 31940
2026
+ },
2027
+ {
2028
+ "length": 20,
2029
+ "start": 32495
2030
+ },
2031
+ {
2032
+ "length": 20,
2033
+ "start": 32764
2034
+ },
2035
+ {
2036
+ "length": 20,
2037
+ "start": 32984
2038
+ },
2039
+ {
2040
+ "length": 20,
2041
+ "start": 33472
2042
+ }
2043
+ ]
2044
+ },
2045
+ "contracts/types/Timestamp.sol": {
2046
+ "TimestampLib": [
2047
+ {
2048
+ "length": 20,
2049
+ "start": 8414
2050
+ }
2051
+ ]
2052
+ },
2053
+ "contracts/types/UFixed.sol": {
2054
+ "UFixedMathLib": [
2055
+ {
2056
+ "length": 20,
2057
+ "start": 8788
2058
+ },
2059
+ {
2060
+ "length": 20,
2061
+ "start": 14025
2062
+ }
2063
+ ]
2064
+ },
2065
+ "contracts/types/Version.sol": {
2066
+ "VersionLib": [
2067
+ {
2068
+ "length": 20,
2069
+ "start": 1922
2070
+ },
2071
+ {
2072
+ "length": 20,
2073
+ "start": 2871
2074
+ },
2075
+ {
2076
+ "length": 20,
2077
+ "start": 8933
2078
+ }
2079
+ ]
2080
+ }
2081
+ },
2082
+ "deployedLinkReferences": {
2083
+ "contracts/types/Blocknumber.sol": {
2084
+ "BlocknumberLib": [
2085
+ {
2086
+ "length": 20,
2087
+ "start": 4035
2088
+ }
2089
+ ]
2090
+ },
2091
+ "contracts/types/Fee.sol": {
2092
+ "FeeLib": [
2093
+ {
2094
+ "length": 20,
2095
+ "start": 7997
2096
+ },
2097
+ {
2098
+ "length": 20,
2099
+ "start": 12410
2100
+ },
2101
+ {
2102
+ "length": 20,
2103
+ "start": 13950
2104
+ }
2105
+ ]
2106
+ },
2107
+ "contracts/types/NftId.sol": {
2108
+ "NftIdLib": [
2109
+ {
2110
+ "length": 20,
2111
+ "start": 10633
2112
+ },
2113
+ {
2114
+ "length": 20,
2115
+ "start": 10792
2116
+ },
2117
+ {
2118
+ "length": 20,
2119
+ "start": 13248
2120
+ },
2121
+ {
2122
+ "length": 20,
2123
+ "start": 15765
2124
+ }
2125
+ ]
2126
+ },
2127
+ "contracts/types/NftIdSet.sol": {
2128
+ "LibNftIdSet": [
2129
+ {
2130
+ "length": 20,
2131
+ "start": 7054
2132
+ },
2133
+ {
2134
+ "length": 20,
2135
+ "start": 8798
2136
+ },
2137
+ {
2138
+ "length": 20,
2139
+ "start": 8989
2140
+ },
2141
+ {
2142
+ "length": 20,
2143
+ "start": 9212
2144
+ },
2145
+ {
2146
+ "length": 20,
2147
+ "start": 13102
2148
+ },
2149
+ {
2150
+ "length": 20,
2151
+ "start": 13762
2152
+ }
2153
+ ]
2154
+ },
2155
+ "contracts/types/RoleId.sol": {
2156
+ "RoleIdLib": [
2157
+ {
2158
+ "length": 20,
2159
+ "start": 9613
2160
+ },
2161
+ {
2162
+ "length": 20,
2163
+ "start": 9928
2164
+ }
2165
+ ]
2166
+ },
2167
+ "contracts/types/Timestamp.sol": {
2168
+ "TimestampLib": [
2169
+ {
2170
+ "length": 20,
2171
+ "start": 3798
2172
+ }
2173
+ ]
2174
+ },
2175
+ "contracts/types/UFixed.sol": {
2176
+ "UFixedMathLib": [
2177
+ {
2178
+ "length": 20,
2179
+ "start": 4172
2180
+ },
2181
+ {
2182
+ "length": 20,
2183
+ "start": 9409
2184
+ }
2185
+ ]
2186
+ },
2187
+ "contracts/types/Version.sol": {
2188
+ "VersionLib": [
2189
+ {
2190
+ "length": 20,
2191
+ "start": 4317
2192
+ }
2193
+ ]
2194
+ }
2195
+ }
1009
2196
  }