@etherisc/gif-next 0.0.2-f0d86c2-077 → 0.0.2-f4f92b3-338
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +242 -11
- package/artifacts/contracts/components/Component.sol/Component.dbg.json +4 -0
- package/artifacts/contracts/components/Component.sol/Component.json +656 -0
- package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +4 -0
- package/artifacts/contracts/components/Distribution.sol/Distribution.json +849 -0
- package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +4 -0
- package/artifacts/contracts/{registry/IChainNft.sol/IChainNft.json → components/IComponent.sol/IComponent.json} +244 -241
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +4 -0
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +648 -0
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +510 -51
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +533 -64
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
- package/artifacts/contracts/components/Pool.sol/Pool.json +687 -58
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
- package/artifacts/contracts/components/Product.sol/Product.json +711 -67
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.dbg.json +4 -0
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.json +66 -0
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.dbg.json +4 -0
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.json +24 -0
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.dbg.json +4 -0
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.json +42 -0
- package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +1 -1
- package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +2 -2
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.json +2 -2
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +2 -2
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +1 -1
- package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +1 -1
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +4 -0
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +764 -0
- package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +4 -0
- package/artifacts/contracts/instance/Cloneable.sol/Cloneable.json +185 -0
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +1137 -1023
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +4 -0
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +565 -0
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +1987 -1124
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +1034 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +1381 -0
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +964 -0
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +473 -0
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +4 -0
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +261 -0
- package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.json +603 -0
- package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +1 -1
- package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.json +45 -127
- package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +1 -1
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +1 -1
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +55 -245
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +1 -1
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +4 -4
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +4 -0
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +254 -0
- package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +4 -0
- package/artifacts/contracts/instance/module/{bundle/IBundle.sol → IBundle.sol}/IBundle.json +1 -1
- package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +4 -0
- package/artifacts/contracts/instance/module/{access/IAccess.sol/IAccess.json → IDistribution.sol/IDistribution.json} +2 -2
- package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +4 -0
- package/artifacts/contracts/instance/module/{policy/IPolicy.sol → IPolicy.sol}/IPolicy.json +1 -1
- package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +4 -0
- package/artifacts/contracts/instance/module/{risk/IRisk.sol → IRisk.sol}/IRisk.json +1 -1
- package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +4 -0
- package/artifacts/contracts/instance/{base/ModuleBase.sol/ModuleBase.json → module/ISetup.sol/ISetup.json} +2 -2
- package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +4 -0
- package/artifacts/contracts/instance/module/{treasury/ITreasury.sol → ITreasury.sol}/ITreasury.json +1 -1
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +1102 -0
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +449 -0
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +772 -0
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +437 -0
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.json +715 -0
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +4 -0
- package/artifacts/contracts/instance/{base/IService.sol/IService.json → service/IDistributionService.sol/IDistributionService.json} +202 -61
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.json +766 -0
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +198 -80
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +204 -150
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +1227 -0
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +505 -0
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +423 -88
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +437 -0
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +398 -215
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +437 -0
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +186 -12
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +455 -36
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +4 -0
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +981 -0
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +4 -0
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +34 -0
- package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.json +465 -111
- package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +285 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +1200 -0
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +464 -0
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +4 -0
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +547 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +4 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +394 -0
- package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +4 -0
- package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.json +107 -0
- package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +1 -1
- package/artifacts/contracts/shared/ERC165.sol/ERC165.json +2 -2
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +4 -0
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +127 -0
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +112 -37
- package/artifacts/contracts/shared/IService.sol/IService.dbg.json +4 -0
- package/artifacts/contracts/{instance/service/IComponentOwnerService.sol/IComponentOwnerService.json → shared/IService.sol/IService.json} +169 -117
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +1 -1
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.json +55 -14
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +4 -0
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +171 -0
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +4 -0
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +362 -0
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +193 -32
- package/artifacts/contracts/shared/Service.sol/Service.dbg.json +4 -0
- package/artifacts/contracts/{instance/base/InstanceBase.sol/InstanceBase.json → shared/Service.sol/Service.json} +221 -71
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +4 -0
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +96 -0
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +129 -0
- package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +1 -1
- package/artifacts/contracts/shared/Versionable.sol/Versionable.json +78 -14
- package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +1 -1
- package/artifacts/contracts/test/TestFee.sol/TestFee.json +4 -4
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +1 -1
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +207 -31
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +1 -1
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +14 -14
- package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +1 -1
- package/artifacts/contracts/test/TestService.sol/TestService.json +292 -63
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +1 -1
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.json +91 -53
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +1 -1
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +2 -2
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +1 -1
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +103 -23
- package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +1 -1
- package/artifacts/contracts/test/Usdc.sol/USDC.json +91 -53
- package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +1 -1
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
- package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +4 -0
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +104 -0
- package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +1 -1
- package/artifacts/contracts/types/Fee.sol/FeeLib.json +52 -13
- package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +1 -1
- package/artifacts/contracts/types/Key32.sol/Key32Lib.json +31 -17
- package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/NftId.sol/NftIdLib.json +2 -2
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +1 -1
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +26 -3
- package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/NumberId.sol/NumberIdLib.json +100 -0
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +2 -2
- package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +4 -0
- package/artifacts/contracts/types/Referral.sol/ReferralLib.json +123 -0
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +86 -0
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +134 -8
- package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/StateId.sol/StateIdLib.json +2 -2
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +1 -1
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +15 -2
- package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +4 -0
- package/artifacts/contracts/types/UFixed.sol/MathLib.json +10 -0
- package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +4 -0
- package/artifacts/contracts/types/UFixed.sol/{UFixedMathLib.json → UFixedLib.json} +3 -3
- package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +1 -1
- package/artifacts/contracts/types/Version.sol/VersionLib.json +40 -2
- package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +1 -1
- package/artifacts/contracts/types/Version.sol/VersionPartLib.json +22 -3
- package/contracts/components/Component.sol +222 -0
- package/contracts/components/Distribution.sol +144 -0
- package/contracts/components/IComponent.sol +43 -0
- package/contracts/components/IDistributionComponent.sol +47 -0
- package/contracts/components/IPoolComponent.sol +24 -11
- package/contracts/components/IProductComponent.sol +29 -9
- package/contracts/components/Pool.sol +121 -54
- package/contracts/components/Product.sol +182 -41
- package/contracts/experiment/cloning/Cloner.sol +47 -0
- package/contracts/instance/BundleManager.sol +125 -0
- package/contracts/instance/Cloneable.sol +46 -0
- package/contracts/instance/IInstance.sol +65 -45
- package/contracts/instance/IInstanceService.sol +40 -0
- package/contracts/instance/Instance.sol +254 -53
- package/contracts/instance/InstanceAccessManager.sol +298 -0
- package/contracts/instance/InstanceReader.sol +293 -0
- package/contracts/instance/InstanceService.sol +362 -0
- package/contracts/instance/InstanceServiceManager.sol +54 -0
- package/contracts/instance/ObjectManager.sol +84 -0
- package/contracts/instance/base/ComponentService.sol +134 -0
- package/contracts/instance/base/IKeyValueStore.sol +13 -13
- package/contracts/instance/base/ILifecycle.sol +3 -3
- package/contracts/instance/base/KeyValueStore.sol +53 -37
- package/contracts/instance/base/Lifecycle.sol +16 -11
- package/contracts/instance/module/IAccess.sol +48 -0
- package/contracts/instance/module/IBundle.sol +20 -0
- package/contracts/instance/module/IDistribution.sol +39 -0
- package/contracts/instance/module/IPolicy.sol +45 -0
- package/contracts/instance/module/IRisk.sol +11 -0
- package/contracts/instance/module/ISetup.sol +46 -0
- package/contracts/instance/module/ITreasury.sol +23 -0
- package/contracts/instance/service/BundleService.sol +293 -0
- package/contracts/instance/service/BundleServiceManager.sol +51 -0
- package/contracts/instance/service/DistributionService.sol +106 -0
- package/contracts/instance/service/DistributionServiceManager.sol +51 -0
- package/contracts/instance/service/IBundleService.sol +44 -0
- package/contracts/instance/service/IDistributionService.sol +12 -0
- package/contracts/instance/service/IPolicyService.sol +94 -0
- package/contracts/instance/service/IPoolService.sol +8 -18
- package/contracts/instance/service/IProductService.sol +21 -39
- package/contracts/instance/service/PolicyService.sol +538 -0
- package/contracts/instance/service/PolicyServiceManager.sol +54 -0
- package/contracts/instance/service/PoolService.sol +77 -91
- package/contracts/instance/service/PoolServiceManager.sol +51 -0
- package/contracts/instance/service/ProductService.sol +167 -289
- package/contracts/instance/service/ProductServiceManager.sol +54 -0
- package/contracts/registry/ChainNft.sol +79 -36
- package/contracts/registry/IRegistry.sol +65 -24
- package/contracts/registry/IRegistryService.sol +65 -0
- package/contracts/registry/ITransferInterceptor.sol +6 -0
- package/contracts/registry/Registry.sol +358 -287
- package/contracts/registry/RegistryAccessManager.sol +216 -0
- package/contracts/registry/RegistryService.sol +262 -0
- package/contracts/registry/RegistryServiceManager.sol +62 -0
- package/contracts/registry/ReleaseManager.sol +332 -0
- package/contracts/registry/TokenRegistry.sol +112 -0
- package/contracts/shared/ContractDeployerLib.sol +72 -0
- package/contracts/shared/ERC165.sol +6 -2
- package/contracts/shared/INftOwnable.sol +22 -0
- package/contracts/shared/IRegisterable.sol +8 -17
- package/contracts/shared/IService.sol +16 -0
- package/contracts/shared/IVersionable.sol +55 -11
- package/contracts/shared/NftOwnable.sol +139 -0
- package/contracts/shared/ProxyManager.sol +94 -0
- package/contracts/shared/Registerable.sol +59 -59
- package/contracts/shared/Service.sol +60 -0
- package/contracts/shared/TokenHandler.sol +27 -0
- package/contracts/shared/UpgradableProxyWithAdmin.sol +16 -0
- package/contracts/shared/Versionable.sol +113 -55
- package/contracts/test/TestFee.sol +2 -2
- package/contracts/test/TestRegisterable.sol +5 -6
- package/contracts/test/TestRoleId.sol +1 -1
- package/contracts/test/TestService.sol +7 -14
- package/contracts/types/DistributorType.sol +55 -0
- package/contracts/types/Fee.sol +10 -5
- package/contracts/types/Key32.sol +8 -3
- package/contracts/types/NftIdSet.sol +26 -24
- package/contracts/types/NumberId.sol +52 -0
- package/contracts/types/ObjectType.sol +51 -14
- package/contracts/types/Referral.sol +85 -0
- package/contracts/types/RiskId.sol +43 -0
- package/contracts/types/RoleId.sol +62 -10
- package/contracts/types/StateId.sol +5 -1
- package/contracts/types/Timestamp.sol +7 -3
- package/contracts/types/UFixed.sol +128 -12
- package/contracts/types/Version.sol +13 -1
- package/package.json +4 -3
- package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +0 -4
- package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.json +0 -174
- package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +0 -4
- package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.json +0 -174
- package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.dbg.json +0 -4
- package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.json +0 -24
- package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +0 -4
- package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.json +0 -300
- package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +0 -4
- package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +0 -63
- package/artifacts/contracts/instance/base/IService.sol/IService.dbg.json +0 -4
- package/artifacts/contracts/instance/base/InstanceBase.sol/InstanceBase.dbg.json +0 -4
- package/artifacts/contracts/instance/base/ModuleBase.sol/ModuleBase.dbg.json +0 -4
- package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.dbg.json +0 -4
- package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.json +0 -300
- package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.json +0 -333
- package/artifacts/contracts/instance/module/access/IAccess.sol/IAccess.dbg.json +0 -4
- package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.json +0 -333
- package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.json +0 -296
- package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundle.dbg.json +0 -4
- package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.json +0 -296
- package/artifacts/contracts/instance/module/compensation/CompensationModule.sol/CompensationModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/compensation/CompensationModule.sol/CompensationModule.json +0 -10
- package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensation.dbg.json +0 -4
- package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensation.json +0 -10
- package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensationModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensationModule.json +0 -10
- package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.json +0 -188
- package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.dbg.json +0 -4
- package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.json +0 -10
- package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.json +0 -188
- package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicy.dbg.json +0 -4
- package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.json +0 -261
- package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.json +0 -261
- package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.dbg.json +0 -4
- package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.json +0 -10
- package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.json +0 -149
- package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.json +0 -149
- package/artifacts/contracts/instance/module/risk/IRisk.sol/IRisk.dbg.json +0 -4
- package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.json +0 -10
- package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.json +0 -10
- package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasury.dbg.json +0 -4
- package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.json +0 -533
- package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.dbg.json +0 -4
- package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.json +0 -76
- package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.json +0 -533
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +0 -523
- package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +0 -4
- package/artifacts/contracts/registry/IRegistryLinked.sol/IRegistryLinked.dbg.json +0 -4
- package/artifacts/contracts/registry/IRegistryLinked.sol/IRegistryLinked.json +0 -24
- package/artifacts/contracts/shared/IOwnable.sol/IOwnable.dbg.json +0 -4
- package/artifacts/contracts/shared/IOwnable.sol/IOwnable.json +0 -24
- package/artifacts/contracts/test/TestPool.sol/TestPool.dbg.json +0 -4
- package/artifacts/contracts/test/TestPool.sol/TestPool.json +0 -387
- package/artifacts/contracts/test/TestProduct.sol/TestProduct.dbg.json +0 -4
- package/artifacts/contracts/test/TestProduct.sol/TestProduct.json +0 -393
- package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +0 -4
- package/contracts/components/BaseComponent.sol +0 -88
- package/contracts/components/IBaseComponent.sol +0 -19
- package/contracts/experiment/statemachine/README.md +0 -112
- package/contracts/instance/IInstanceLinked.sol +0 -8
- package/contracts/instance/base/ComponentServiceBase.sol +0 -42
- package/contracts/instance/base/IInstanceBase.sol +0 -14
- package/contracts/instance/base/IService.sol +0 -15
- package/contracts/instance/base/InstanceBase.sol +0 -80
- package/contracts/instance/base/ModuleBase.sol +0 -52
- package/contracts/instance/base/ServiceBase.sol +0 -37
- package/contracts/instance/module/access/Access.sol +0 -149
- package/contracts/instance/module/access/IAccess.sol +0 -53
- package/contracts/instance/module/bundle/BundleModule.sol +0 -136
- package/contracts/instance/module/bundle/IBundle.sol +0 -58
- package/contracts/instance/module/compensation/CompensationModule.sol +0 -8
- package/contracts/instance/module/compensation/ICompensation.sol +0 -10
- package/contracts/instance/module/component/ComponentModule.sol +0 -95
- package/contracts/instance/module/component/IComponent.sol +0 -53
- package/contracts/instance/module/policy/IPolicy.sol +0 -60
- package/contracts/instance/module/policy/PolicyModule.sol +0 -76
- package/contracts/instance/module/pool/IPoolModule.sol +0 -41
- package/contracts/instance/module/pool/PoolModule.sol +0 -87
- package/contracts/instance/module/risk/IRisk.sol +0 -10
- package/contracts/instance/module/risk/RiskModule.sol +0 -8
- package/contracts/instance/module/treasury/ITreasury.sol +0 -103
- package/contracts/instance/module/treasury/TokenHandler.sol +0 -48
- package/contracts/instance/module/treasury/TreasuryModule.sol +0 -152
- package/contracts/instance/service/ComponentOwnerService.sol +0 -170
- package/contracts/instance/service/IComponentOwnerService.sol +0 -22
- package/contracts/registry/IChainNft.sol +0 -21
- package/contracts/registry/IRegistryLinked.sol +0 -8
- package/contracts/shared/IOwnable.sol +0 -6
- package/contracts/test/TestPool.sol +0 -22
- package/contracts/test/TestProduct.sol +0 -44
| @@ -0,0 +1,171 @@ | |
| 1 | 
            +
            {
         | 
| 2 | 
            +
              "_format": "hh-sol-artifact-1",
         | 
| 3 | 
            +
              "contractName": "NftOwnable",
         | 
| 4 | 
            +
              "sourceName": "contracts/shared/NftOwnable.sol",
         | 
| 5 | 
            +
              "abi": [
         | 
| 6 | 
            +
                {
         | 
| 7 | 
            +
                  "inputs": [],
         | 
| 8 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 9 | 
            +
                  "type": "constructor"
         | 
| 10 | 
            +
                },
         | 
| 11 | 
            +
                {
         | 
| 12 | 
            +
                  "inputs": [
         | 
| 13 | 
            +
                    {
         | 
| 14 | 
            +
                      "internalType": "address",
         | 
| 15 | 
            +
                      "name": "registry",
         | 
| 16 | 
            +
                      "type": "address"
         | 
| 17 | 
            +
                    },
         | 
| 18 | 
            +
                    {
         | 
| 19 | 
            +
                      "internalType": "NftId",
         | 
| 20 | 
            +
                      "name": "nftId",
         | 
| 21 | 
            +
                      "type": "uint96"
         | 
| 22 | 
            +
                    }
         | 
| 23 | 
            +
                  ],
         | 
| 24 | 
            +
                  "name": "ErrorAlreadyLinked",
         | 
| 25 | 
            +
                  "type": "error"
         | 
| 26 | 
            +
                },
         | 
| 27 | 
            +
                {
         | 
| 28 | 
            +
                  "inputs": [
         | 
| 29 | 
            +
                    {
         | 
| 30 | 
            +
                      "internalType": "address",
         | 
| 31 | 
            +
                      "name": "contractAddress",
         | 
| 32 | 
            +
                      "type": "address"
         | 
| 33 | 
            +
                    }
         | 
| 34 | 
            +
                  ],
         | 
| 35 | 
            +
                  "name": "ErrorContractNotRegistered",
         | 
| 36 | 
            +
                  "type": "error"
         | 
| 37 | 
            +
                },
         | 
| 38 | 
            +
                {
         | 
| 39 | 
            +
                  "inputs": [
         | 
| 40 | 
            +
                    {
         | 
| 41 | 
            +
                      "internalType": "address",
         | 
| 42 | 
            +
                      "name": "account",
         | 
| 43 | 
            +
                      "type": "address"
         | 
| 44 | 
            +
                    }
         | 
| 45 | 
            +
                  ],
         | 
| 46 | 
            +
                  "name": "ErrorNotOwner",
         | 
| 47 | 
            +
                  "type": "error"
         | 
| 48 | 
            +
                },
         | 
| 49 | 
            +
                {
         | 
| 50 | 
            +
                  "inputs": [
         | 
| 51 | 
            +
                    {
         | 
| 52 | 
            +
                      "internalType": "address",
         | 
| 53 | 
            +
                      "name": "registryAddress",
         | 
| 54 | 
            +
                      "type": "address"
         | 
| 55 | 
            +
                    }
         | 
| 56 | 
            +
                  ],
         | 
| 57 | 
            +
                  "name": "ErrorNotRegistry",
         | 
| 58 | 
            +
                  "type": "error"
         | 
| 59 | 
            +
                },
         | 
| 60 | 
            +
                {
         | 
| 61 | 
            +
                  "inputs": [],
         | 
| 62 | 
            +
                  "name": "ErrorRegistryAddressZero",
         | 
| 63 | 
            +
                  "type": "error"
         | 
| 64 | 
            +
                },
         | 
| 65 | 
            +
                {
         | 
| 66 | 
            +
                  "inputs": [
         | 
| 67 | 
            +
                    {
         | 
| 68 | 
            +
                      "internalType": "address",
         | 
| 69 | 
            +
                      "name": "registry",
         | 
| 70 | 
            +
                      "type": "address"
         | 
| 71 | 
            +
                    }
         | 
| 72 | 
            +
                  ],
         | 
| 73 | 
            +
                  "name": "ErrorRegistryAlreadyInitialized",
         | 
| 74 | 
            +
                  "type": "error"
         | 
| 75 | 
            +
                },
         | 
| 76 | 
            +
                {
         | 
| 77 | 
            +
                  "inputs": [],
         | 
| 78 | 
            +
                  "name": "ErrorRegistryNotInitialized",
         | 
| 79 | 
            +
                  "type": "error"
         | 
| 80 | 
            +
                },
         | 
| 81 | 
            +
                {
         | 
| 82 | 
            +
                  "inputs": [],
         | 
| 83 | 
            +
                  "name": "getInitialOwner",
         | 
| 84 | 
            +
                  "outputs": [
         | 
| 85 | 
            +
                    {
         | 
| 86 | 
            +
                      "internalType": "address",
         | 
| 87 | 
            +
                      "name": "",
         | 
| 88 | 
            +
                      "type": "address"
         | 
| 89 | 
            +
                    }
         | 
| 90 | 
            +
                  ],
         | 
| 91 | 
            +
                  "stateMutability": "view",
         | 
| 92 | 
            +
                  "type": "function"
         | 
| 93 | 
            +
                },
         | 
| 94 | 
            +
                {
         | 
| 95 | 
            +
                  "inputs": [],
         | 
| 96 | 
            +
                  "name": "getNftId",
         | 
| 97 | 
            +
                  "outputs": [
         | 
| 98 | 
            +
                    {
         | 
| 99 | 
            +
                      "internalType": "NftId",
         | 
| 100 | 
            +
                      "name": "",
         | 
| 101 | 
            +
                      "type": "uint96"
         | 
| 102 | 
            +
                    }
         | 
| 103 | 
            +
                  ],
         | 
| 104 | 
            +
                  "stateMutability": "view",
         | 
| 105 | 
            +
                  "type": "function"
         | 
| 106 | 
            +
                },
         | 
| 107 | 
            +
                {
         | 
| 108 | 
            +
                  "inputs": [],
         | 
| 109 | 
            +
                  "name": "getOwner",
         | 
| 110 | 
            +
                  "outputs": [
         | 
| 111 | 
            +
                    {
         | 
| 112 | 
            +
                      "internalType": "address",
         | 
| 113 | 
            +
                      "name": "",
         | 
| 114 | 
            +
                      "type": "address"
         | 
| 115 | 
            +
                    }
         | 
| 116 | 
            +
                  ],
         | 
| 117 | 
            +
                  "stateMutability": "view",
         | 
| 118 | 
            +
                  "type": "function"
         | 
| 119 | 
            +
                },
         | 
| 120 | 
            +
                {
         | 
| 121 | 
            +
                  "inputs": [],
         | 
| 122 | 
            +
                  "name": "getRegistry",
         | 
| 123 | 
            +
                  "outputs": [
         | 
| 124 | 
            +
                    {
         | 
| 125 | 
            +
                      "internalType": "contract IRegistry",
         | 
| 126 | 
            +
                      "name": "",
         | 
| 127 | 
            +
                      "type": "address"
         | 
| 128 | 
            +
                    }
         | 
| 129 | 
            +
                  ],
         | 
| 130 | 
            +
                  "stateMutability": "view",
         | 
| 131 | 
            +
                  "type": "function"
         | 
| 132 | 
            +
                },
         | 
| 133 | 
            +
                {
         | 
| 134 | 
            +
                  "inputs": [],
         | 
| 135 | 
            +
                  "name": "linkToRegisteredNftId",
         | 
| 136 | 
            +
                  "outputs": [],
         | 
| 137 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 138 | 
            +
                  "type": "function"
         | 
| 139 | 
            +
                }
         | 
| 140 | 
            +
              ],
         | 
| 141 | 
            +
              "bytecode": "0x608060405234801561001057600080fd5b50600180546001600160a01b031916331790556104c3806100326000396000f3fe608060405234801561001057600080fd5b50600436106100575760003560e01c8063138461e01461005c5780635ab1bd5314610066578063644c45e014610090578063893d20e8146100bb578063fb2cb101146100c3575b600080fd5b6100646100d4565b005b6000546001600160a01b03165b6040516001600160a01b0390911681526020015b60405180910390f35b600054600160a01b90046001600160601b03166040516001600160601b039091168152602001610087565b6100736102f6565b6001546001600160a01b0316610073565b6000546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610136573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061015a9190610412565b156101a1576000546040516316322c0f60e31b81526001600160a01b0382166004820152600160a01b9091046001600160601b031660248201526044015b60405180910390fd5b6000546001600160a01b03166101ca5760405163cf29926160e01b815260040160405180910390fd5b60005460405163c3c5a54760e01b81523060048201819052916001600160a01b03169063c3c5a54790602401602060405180830381865afa158015610213573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102379190610412565b61025f576040516372657a5160e01b81526001600160a01b0382166004820152602401610198565b600054604051636939560f60e11b81526001600160a01b0383811660048301529091169063d272ac1e90602401602060405180830381865afa1580156102a9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102cd919061043b565b600060146101000a8154816001600160601b0302191690836001600160601b0316021790555050565b600080546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610359573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061037d9190610412565b1561040257600054604051631c5da14d60e11b8152600160a01b82046001600160601b031660048201526001600160a01b03909116906338bb429a90602401602060405180830381865afa1580156103d9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103fd9190610464565b905090565b506001546001600160a01b031690565b60006020828403121561042457600080fd5b8151801515811461043457600080fd5b9392505050565b60006020828403121561044d57600080fd5b81516001600160601b038116811461043457600080fd5b60006020828403121561047657600080fd5b81516001600160a01b038116811461043457600080fdfea2646970667358221220653d3fdba0f5cde09031e9a12dfb07bc434e0413909eb1e47332fa91b682e0d864736f6c63430008140033",
         | 
| 142 | 
            +
              "deployedBytecode": "0x608060405234801561001057600080fd5b50600436106100575760003560e01c8063138461e01461005c5780635ab1bd5314610066578063644c45e014610090578063893d20e8146100bb578063fb2cb101146100c3575b600080fd5b6100646100d4565b005b6000546001600160a01b03165b6040516001600160a01b0390911681526020015b60405180910390f35b600054600160a01b90046001600160601b03166040516001600160601b039091168152602001610087565b6100736102f6565b6001546001600160a01b0316610073565b6000546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610136573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061015a9190610412565b156101a1576000546040516316322c0f60e31b81526001600160a01b0382166004820152600160a01b9091046001600160601b031660248201526044015b60405180910390fd5b6000546001600160a01b03166101ca5760405163cf29926160e01b815260040160405180910390fd5b60005460405163c3c5a54760e01b81523060048201819052916001600160a01b03169063c3c5a54790602401602060405180830381865afa158015610213573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102379190610412565b61025f576040516372657a5160e01b81526001600160a01b0382166004820152602401610198565b600054604051636939560f60e11b81526001600160a01b0383811660048301529091169063d272ac1e90602401602060405180830381865afa1580156102a9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102cd919061043b565b600060146101000a8154816001600160601b0302191690836001600160601b0316021790555050565b600080546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610359573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061037d9190610412565b1561040257600054604051631c5da14d60e11b8152600160a01b82046001600160601b031660048201526001600160a01b03909116906338bb429a90602401602060405180830381865afa1580156103d9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103fd9190610464565b905090565b506001546001600160a01b031690565b60006020828403121561042457600080fd5b8151801515811461043457600080fd5b9392505050565b60006020828403121561044d57600080fd5b81516001600160601b038116811461043457600080fd5b60006020828403121561047657600080fd5b81516001600160a01b038116811461043457600080fdfea2646970667358221220653d3fdba0f5cde09031e9a12dfb07bc434e0413909eb1e47332fa91b682e0d864736f6c63430008140033",
         | 
| 143 | 
            +
              "linkReferences": {
         | 
| 144 | 
            +
                "contracts/types/NftId.sol": {
         | 
| 145 | 
            +
                  "NftIdLib": [
         | 
| 146 | 
            +
                    {
         | 
| 147 | 
            +
                      "length": 20,
         | 
| 148 | 
            +
                      "start": 302
         | 
| 149 | 
            +
                    },
         | 
| 150 | 
            +
                    {
         | 
| 151 | 
            +
                      "length": 20,
         | 
| 152 | 
            +
                      "start": 849
         | 
| 153 | 
            +
                    }
         | 
| 154 | 
            +
                  ]
         | 
| 155 | 
            +
                }
         | 
| 156 | 
            +
              },
         | 
| 157 | 
            +
              "deployedLinkReferences": {
         | 
| 158 | 
            +
                "contracts/types/NftId.sol": {
         | 
| 159 | 
            +
                  "NftIdLib": [
         | 
| 160 | 
            +
                    {
         | 
| 161 | 
            +
                      "length": 20,
         | 
| 162 | 
            +
                      "start": 252
         | 
| 163 | 
            +
                    },
         | 
| 164 | 
            +
                    {
         | 
| 165 | 
            +
                      "length": 20,
         | 
| 166 | 
            +
                      "start": 799
         | 
| 167 | 
            +
                    }
         | 
| 168 | 
            +
                  ]
         | 
| 169 | 
            +
                }
         | 
| 170 | 
            +
              }
         | 
| 171 | 
            +
            }
         | 
| @@ -0,0 +1,362 @@ | |
| 1 | 
            +
            {
         | 
| 2 | 
            +
              "_format": "hh-sol-artifact-1",
         | 
| 3 | 
            +
              "contractName": "ProxyManager",
         | 
| 4 | 
            +
              "sourceName": "contracts/shared/ProxyManager.sol",
         | 
| 5 | 
            +
              "abi": [
         | 
| 6 | 
            +
                {
         | 
| 7 | 
            +
                  "inputs": [],
         | 
| 8 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 9 | 
            +
                  "type": "constructor"
         | 
| 10 | 
            +
                },
         | 
| 11 | 
            +
                {
         | 
| 12 | 
            +
                  "inputs": [],
         | 
| 13 | 
            +
                  "name": "ErrorAlreadyDeployed",
         | 
| 14 | 
            +
                  "type": "error"
         | 
| 15 | 
            +
                },
         | 
| 16 | 
            +
                {
         | 
| 17 | 
            +
                  "inputs": [],
         | 
| 18 | 
            +
                  "name": "ErrorAlreadyDeployedWithSalt",
         | 
| 19 | 
            +
                  "type": "error"
         | 
| 20 | 
            +
                },
         | 
| 21 | 
            +
                {
         | 
| 22 | 
            +
                  "inputs": [
         | 
| 23 | 
            +
                    {
         | 
| 24 | 
            +
                      "internalType": "address",
         | 
| 25 | 
            +
                      "name": "registry",
         | 
| 26 | 
            +
                      "type": "address"
         | 
| 27 | 
            +
                    },
         | 
| 28 | 
            +
                    {
         | 
| 29 | 
            +
                      "internalType": "NftId",
         | 
| 30 | 
            +
                      "name": "nftId",
         | 
| 31 | 
            +
                      "type": "uint96"
         | 
| 32 | 
            +
                    }
         | 
| 33 | 
            +
                  ],
         | 
| 34 | 
            +
                  "name": "ErrorAlreadyLinked",
         | 
| 35 | 
            +
                  "type": "error"
         | 
| 36 | 
            +
                },
         | 
| 37 | 
            +
                {
         | 
| 38 | 
            +
                  "inputs": [
         | 
| 39 | 
            +
                    {
         | 
| 40 | 
            +
                      "internalType": "address",
         | 
| 41 | 
            +
                      "name": "contractAddress",
         | 
| 42 | 
            +
                      "type": "address"
         | 
| 43 | 
            +
                    }
         | 
| 44 | 
            +
                  ],
         | 
| 45 | 
            +
                  "name": "ErrorContractNotRegistered",
         | 
| 46 | 
            +
                  "type": "error"
         | 
| 47 | 
            +
                },
         | 
| 48 | 
            +
                {
         | 
| 49 | 
            +
                  "inputs": [
         | 
| 50 | 
            +
                    {
         | 
| 51 | 
            +
                      "internalType": "address",
         | 
| 52 | 
            +
                      "name": "account",
         | 
| 53 | 
            +
                      "type": "address"
         | 
| 54 | 
            +
                    }
         | 
| 55 | 
            +
                  ],
         | 
| 56 | 
            +
                  "name": "ErrorNotOwner",
         | 
| 57 | 
            +
                  "type": "error"
         | 
| 58 | 
            +
                },
         | 
| 59 | 
            +
                {
         | 
| 60 | 
            +
                  "inputs": [
         | 
| 61 | 
            +
                    {
         | 
| 62 | 
            +
                      "internalType": "address",
         | 
| 63 | 
            +
                      "name": "registryAddress",
         | 
| 64 | 
            +
                      "type": "address"
         | 
| 65 | 
            +
                    }
         | 
| 66 | 
            +
                  ],
         | 
| 67 | 
            +
                  "name": "ErrorNotRegistry",
         | 
| 68 | 
            +
                  "type": "error"
         | 
| 69 | 
            +
                },
         | 
| 70 | 
            +
                {
         | 
| 71 | 
            +
                  "inputs": [],
         | 
| 72 | 
            +
                  "name": "ErrorNotYetDeployed",
         | 
| 73 | 
            +
                  "type": "error"
         | 
| 74 | 
            +
                },
         | 
| 75 | 
            +
                {
         | 
| 76 | 
            +
                  "inputs": [],
         | 
| 77 | 
            +
                  "name": "ErrorRegistryAddressZero",
         | 
| 78 | 
            +
                  "type": "error"
         | 
| 79 | 
            +
                },
         | 
| 80 | 
            +
                {
         | 
| 81 | 
            +
                  "inputs": [
         | 
| 82 | 
            +
                    {
         | 
| 83 | 
            +
                      "internalType": "address",
         | 
| 84 | 
            +
                      "name": "registry",
         | 
| 85 | 
            +
                      "type": "address"
         | 
| 86 | 
            +
                    }
         | 
| 87 | 
            +
                  ],
         | 
| 88 | 
            +
                  "name": "ErrorRegistryAlreadyInitialized",
         | 
| 89 | 
            +
                  "type": "error"
         | 
| 90 | 
            +
                },
         | 
| 91 | 
            +
                {
         | 
| 92 | 
            +
                  "inputs": [],
         | 
| 93 | 
            +
                  "name": "ErrorRegistryNotInitialized",
         | 
| 94 | 
            +
                  "type": "error"
         | 
| 95 | 
            +
                },
         | 
| 96 | 
            +
                {
         | 
| 97 | 
            +
                  "anonymous": false,
         | 
| 98 | 
            +
                  "inputs": [
         | 
| 99 | 
            +
                    {
         | 
| 100 | 
            +
                      "indexed": true,
         | 
| 101 | 
            +
                      "internalType": "address",
         | 
| 102 | 
            +
                      "name": "proxy",
         | 
| 103 | 
            +
                      "type": "address"
         | 
| 104 | 
            +
                    },
         | 
| 105 | 
            +
                    {
         | 
| 106 | 
            +
                      "indexed": false,
         | 
| 107 | 
            +
                      "internalType": "address",
         | 
| 108 | 
            +
                      "name": "initialImplementation",
         | 
| 109 | 
            +
                      "type": "address"
         | 
| 110 | 
            +
                    }
         | 
| 111 | 
            +
                  ],
         | 
| 112 | 
            +
                  "name": "LogProxyDeployed",
         | 
| 113 | 
            +
                  "type": "event"
         | 
| 114 | 
            +
                },
         | 
| 115 | 
            +
                {
         | 
| 116 | 
            +
                  "anonymous": false,
         | 
| 117 | 
            +
                  "inputs": [
         | 
| 118 | 
            +
                    {
         | 
| 119 | 
            +
                      "indexed": true,
         | 
| 120 | 
            +
                      "internalType": "address",
         | 
| 121 | 
            +
                      "name": "proxy",
         | 
| 122 | 
            +
                      "type": "address"
         | 
| 123 | 
            +
                    },
         | 
| 124 | 
            +
                    {
         | 
| 125 | 
            +
                      "indexed": false,
         | 
| 126 | 
            +
                      "internalType": "address",
         | 
| 127 | 
            +
                      "name": "initialImplementation",
         | 
| 128 | 
            +
                      "type": "address"
         | 
| 129 | 
            +
                    }
         | 
| 130 | 
            +
                  ],
         | 
| 131 | 
            +
                  "name": "LogProxyDeployedWithSalt",
         | 
| 132 | 
            +
                  "type": "event"
         | 
| 133 | 
            +
                },
         | 
| 134 | 
            +
                {
         | 
| 135 | 
            +
                  "anonymous": false,
         | 
| 136 | 
            +
                  "inputs": [
         | 
| 137 | 
            +
                    {
         | 
| 138 | 
            +
                      "indexed": true,
         | 
| 139 | 
            +
                      "internalType": "address",
         | 
| 140 | 
            +
                      "name": "proxy",
         | 
| 141 | 
            +
                      "type": "address"
         | 
| 142 | 
            +
                    },
         | 
| 143 | 
            +
                    {
         | 
| 144 | 
            +
                      "indexed": false,
         | 
| 145 | 
            +
                      "internalType": "address",
         | 
| 146 | 
            +
                      "name": "upgradedImplementation",
         | 
| 147 | 
            +
                      "type": "address"
         | 
| 148 | 
            +
                    }
         | 
| 149 | 
            +
                  ],
         | 
| 150 | 
            +
                  "name": "LogProxyUpgraded",
         | 
| 151 | 
            +
                  "type": "event"
         | 
| 152 | 
            +
                },
         | 
| 153 | 
            +
                {
         | 
| 154 | 
            +
                  "inputs": [
         | 
| 155 | 
            +
                    {
         | 
| 156 | 
            +
                      "internalType": "address",
         | 
| 157 | 
            +
                      "name": "initialImplementation",
         | 
| 158 | 
            +
                      "type": "address"
         | 
| 159 | 
            +
                    },
         | 
| 160 | 
            +
                    {
         | 
| 161 | 
            +
                      "internalType": "bytes",
         | 
| 162 | 
            +
                      "name": "initializationData",
         | 
| 163 | 
            +
                      "type": "bytes"
         | 
| 164 | 
            +
                    }
         | 
| 165 | 
            +
                  ],
         | 
| 166 | 
            +
                  "name": "deploy",
         | 
| 167 | 
            +
                  "outputs": [
         | 
| 168 | 
            +
                    {
         | 
| 169 | 
            +
                      "internalType": "contract IVersionable",
         | 
| 170 | 
            +
                      "name": "versionable",
         | 
| 171 | 
            +
                      "type": "address"
         | 
| 172 | 
            +
                    }
         | 
| 173 | 
            +
                  ],
         | 
| 174 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 175 | 
            +
                  "type": "function"
         | 
| 176 | 
            +
                },
         | 
| 177 | 
            +
                {
         | 
| 178 | 
            +
                  "inputs": [
         | 
| 179 | 
            +
                    {
         | 
| 180 | 
            +
                      "internalType": "address",
         | 
| 181 | 
            +
                      "name": "implementation",
         | 
| 182 | 
            +
                      "type": "address"
         | 
| 183 | 
            +
                    },
         | 
| 184 | 
            +
                    {
         | 
| 185 | 
            +
                      "internalType": "address",
         | 
| 186 | 
            +
                      "name": "proxyOwner",
         | 
| 187 | 
            +
                      "type": "address"
         | 
| 188 | 
            +
                    },
         | 
| 189 | 
            +
                    {
         | 
| 190 | 
            +
                      "internalType": "bytes",
         | 
| 191 | 
            +
                      "name": "deployData",
         | 
| 192 | 
            +
                      "type": "bytes"
         | 
| 193 | 
            +
                    }
         | 
| 194 | 
            +
                  ],
         | 
| 195 | 
            +
                  "name": "getDeployData",
         | 
| 196 | 
            +
                  "outputs": [
         | 
| 197 | 
            +
                    {
         | 
| 198 | 
            +
                      "internalType": "bytes",
         | 
| 199 | 
            +
                      "name": "data",
         | 
| 200 | 
            +
                      "type": "bytes"
         | 
| 201 | 
            +
                    }
         | 
| 202 | 
            +
                  ],
         | 
| 203 | 
            +
                  "stateMutability": "pure",
         | 
| 204 | 
            +
                  "type": "function"
         | 
| 205 | 
            +
                },
         | 
| 206 | 
            +
                {
         | 
| 207 | 
            +
                  "inputs": [],
         | 
| 208 | 
            +
                  "name": "getInitialOwner",
         | 
| 209 | 
            +
                  "outputs": [
         | 
| 210 | 
            +
                    {
         | 
| 211 | 
            +
                      "internalType": "address",
         | 
| 212 | 
            +
                      "name": "",
         | 
| 213 | 
            +
                      "type": "address"
         | 
| 214 | 
            +
                    }
         | 
| 215 | 
            +
                  ],
         | 
| 216 | 
            +
                  "stateMutability": "view",
         | 
| 217 | 
            +
                  "type": "function"
         | 
| 218 | 
            +
                },
         | 
| 219 | 
            +
                {
         | 
| 220 | 
            +
                  "inputs": [],
         | 
| 221 | 
            +
                  "name": "getNftId",
         | 
| 222 | 
            +
                  "outputs": [
         | 
| 223 | 
            +
                    {
         | 
| 224 | 
            +
                      "internalType": "NftId",
         | 
| 225 | 
            +
                      "name": "",
         | 
| 226 | 
            +
                      "type": "uint96"
         | 
| 227 | 
            +
                    }
         | 
| 228 | 
            +
                  ],
         | 
| 229 | 
            +
                  "stateMutability": "view",
         | 
| 230 | 
            +
                  "type": "function"
         | 
| 231 | 
            +
                },
         | 
| 232 | 
            +
                {
         | 
| 233 | 
            +
                  "inputs": [],
         | 
| 234 | 
            +
                  "name": "getOwner",
         | 
| 235 | 
            +
                  "outputs": [
         | 
| 236 | 
            +
                    {
         | 
| 237 | 
            +
                      "internalType": "address",
         | 
| 238 | 
            +
                      "name": "",
         | 
| 239 | 
            +
                      "type": "address"
         | 
| 240 | 
            +
                    }
         | 
| 241 | 
            +
                  ],
         | 
| 242 | 
            +
                  "stateMutability": "view",
         | 
| 243 | 
            +
                  "type": "function"
         | 
| 244 | 
            +
                },
         | 
| 245 | 
            +
                {
         | 
| 246 | 
            +
                  "inputs": [],
         | 
| 247 | 
            +
                  "name": "getProxy",
         | 
| 248 | 
            +
                  "outputs": [
         | 
| 249 | 
            +
                    {
         | 
| 250 | 
            +
                      "internalType": "contract UpgradableProxyWithAdmin",
         | 
| 251 | 
            +
                      "name": "",
         | 
| 252 | 
            +
                      "type": "address"
         | 
| 253 | 
            +
                    }
         | 
| 254 | 
            +
                  ],
         | 
| 255 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 256 | 
            +
                  "type": "function"
         | 
| 257 | 
            +
                },
         | 
| 258 | 
            +
                {
         | 
| 259 | 
            +
                  "inputs": [],
         | 
| 260 | 
            +
                  "name": "getRegistry",
         | 
| 261 | 
            +
                  "outputs": [
         | 
| 262 | 
            +
                    {
         | 
| 263 | 
            +
                      "internalType": "contract IRegistry",
         | 
| 264 | 
            +
                      "name": "",
         | 
| 265 | 
            +
                      "type": "address"
         | 
| 266 | 
            +
                    }
         | 
| 267 | 
            +
                  ],
         | 
| 268 | 
            +
                  "stateMutability": "view",
         | 
| 269 | 
            +
                  "type": "function"
         | 
| 270 | 
            +
                },
         | 
| 271 | 
            +
                {
         | 
| 272 | 
            +
                  "inputs": [
         | 
| 273 | 
            +
                    {
         | 
| 274 | 
            +
                      "internalType": "address",
         | 
| 275 | 
            +
                      "name": "implementation",
         | 
| 276 | 
            +
                      "type": "address"
         | 
| 277 | 
            +
                    },
         | 
| 278 | 
            +
                    {
         | 
| 279 | 
            +
                      "internalType": "address",
         | 
| 280 | 
            +
                      "name": "proxyOwner",
         | 
| 281 | 
            +
                      "type": "address"
         | 
| 282 | 
            +
                    },
         | 
| 283 | 
            +
                    {
         | 
| 284 | 
            +
                      "internalType": "bytes",
         | 
| 285 | 
            +
                      "name": "upgradeData",
         | 
| 286 | 
            +
                      "type": "bytes"
         | 
| 287 | 
            +
                    }
         | 
| 288 | 
            +
                  ],
         | 
| 289 | 
            +
                  "name": "getUpgradeData",
         | 
| 290 | 
            +
                  "outputs": [
         | 
| 291 | 
            +
                    {
         | 
| 292 | 
            +
                      "internalType": "bytes",
         | 
| 293 | 
            +
                      "name": "data",
         | 
| 294 | 
            +
                      "type": "bytes"
         | 
| 295 | 
            +
                    }
         | 
| 296 | 
            +
                  ],
         | 
| 297 | 
            +
                  "stateMutability": "pure",
         | 
| 298 | 
            +
                  "type": "function"
         | 
| 299 | 
            +
                },
         | 
| 300 | 
            +
                {
         | 
| 301 | 
            +
                  "inputs": [],
         | 
| 302 | 
            +
                  "name": "linkToRegisteredNftId",
         | 
| 303 | 
            +
                  "outputs": [],
         | 
| 304 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 305 | 
            +
                  "type": "function"
         | 
| 306 | 
            +
                },
         | 
| 307 | 
            +
                {
         | 
| 308 | 
            +
                  "inputs": [
         | 
| 309 | 
            +
                    {
         | 
| 310 | 
            +
                      "internalType": "address",
         | 
| 311 | 
            +
                      "name": "newImplementation",
         | 
| 312 | 
            +
                      "type": "address"
         | 
| 313 | 
            +
                    },
         | 
| 314 | 
            +
                    {
         | 
| 315 | 
            +
                      "internalType": "bytes",
         | 
| 316 | 
            +
                      "name": "upgradeData",
         | 
| 317 | 
            +
                      "type": "bytes"
         | 
| 318 | 
            +
                    }
         | 
| 319 | 
            +
                  ],
         | 
| 320 | 
            +
                  "name": "upgrade",
         | 
| 321 | 
            +
                  "outputs": [
         | 
| 322 | 
            +
                    {
         | 
| 323 | 
            +
                      "internalType": "contract IVersionable",
         | 
| 324 | 
            +
                      "name": "versionable",
         | 
| 325 | 
            +
                      "type": "address"
         | 
| 326 | 
            +
                    }
         | 
| 327 | 
            +
                  ],
         | 
| 328 | 
            +
                  "stateMutability": "nonpayable",
         | 
| 329 | 
            +
                  "type": "function"
         | 
| 330 | 
            +
                }
         | 
| 331 | 
            +
              ],
         | 
| 332 | 
            +
              "bytecode": "0x608060405234801561001057600080fd5b50600180546001600160a01b03191633179055611a86806100326000396000f3fe60806040523480156200001157600080fd5b5060043610620000ab5760003560e01c8063aef485a0116200006e578063aef485a0146200012e578063c987336c1462000154578063e97fac05146200016b578063f68767681462000182578063fb2cb101146200019957600080fd5b8063138461e014620000b05780635ab1bd5314620000bc578063644c45e014620000e6578063893d20e81462000112578063933a9ce8146200011c575b600080fd5b620000ba620001ab565b005b6000546001600160a01b03165b6040516001600160a01b0390911681526020015b60405180910390f35b600054600160a01b90046001600160601b03166040516001600160601b039091168152602001620000dd565b620000c9620003da565b6002546001600160a01b0316620000c9565b620001456200013f36600462000957565b620004fd565b604051620000dd919062000a09565b620000c96200016536600462000a25565b62000559565b620000c96200017c36600462000a25565b62000726565b620001456200019336600462000957565b62000864565b6001546001600160a01b0316620000c9565b6000546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af41580156200020e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000234919062000a7b565b156200027c576000546040516316322c0f60e31b81526001600160a01b0382166004820152600160a01b9091046001600160601b031660248201526044015b60405180910390fd5b6000546001600160a01b0316620002a65760405163cf29926160e01b815260040160405180910390fd5b60005460405163c3c5a54760e01b81523060048201819052916001600160a01b03169063c3c5a54790602401602060405180830381865afa158015620002f0573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000316919062000a7b565b62000340576040516372657a5160e01b81526001600160a01b038216600482015260240162000273565b600054604051636939560f60e11b81526001600160a01b0383811660048301529091169063d272ac1e90602401602060405180830381865afa1580156200038b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003b1919062000a9f565b600060146101000a8154816001600160601b0302191690836001600160601b0316021790555050565b600080546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af41580156200043e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000464919062000a7b565b15620004ed57600054604051631c5da14d60e11b8152600160a01b82046001600160601b031660048201526001600160a01b03909116906338bb429a90602401602060405180830381865afa158015620004c2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004e8919062000aca565b905090565b506001546001600160a01b031690565b606063a745e3df60e01b8484846040516024016200051e9392919062000aea565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915290509392505050565b600062000565620003da565b6001600160a01b0316336001600160a01b0316146200059a5760405163700dd81160e01b815233600482015260240162000273565b600254600160a01b900460ff16620005c557604051631e35411160e31b815260040160405180910390fd5b6000620005d1620003da565b90506000620005e86002546001600160a01b031690565b6001600160a01b0316638b3240a06040518163ffffffff1660e01b81526004016020604051808303816000875af115801562000628573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200064e919062000aca565b6002549091506001600160a01b031660006200066c878588620004fd565b604051639623609d60e01b81529091506001600160a01b03841690639623609d90620006a19085908b90869060040162000aea565b600060405180830381600087803b158015620006bc57600080fd5b505af1158015620006d1573d6000803e3d6000fd5b50506002546040516001600160a01b038b8116825290911697508792507f5f1d3094af018381967fbedd54b80ffb09c5a9799db985f5e17e322672686306915060200160405180910390a25050505092915050565b600062000732620003da565b6001600160a01b0316336001600160a01b031614620007675760405163700dd81160e01b815233600482015260240162000273565b600254600160a01b900460ff161562000793576040516375842f8760e01b815260040160405180910390fd5b6002805460ff60a01b1916600160a01b1790556000620007b2620003da565b9050306000620007c486848762000864565b9050858282604051620007d79062000885565b620007e59392919062000aea565b604051809103906000f08015801562000802573d6000803e3d6000fd5b50600280546001600160a01b0319166001600160a01b039283169081179091556040519188168252945084907fc5c7b8d20d7cac78e56fc596f8d26c700e5077f096017736e3526ab8af4850359060200160405180910390a250505092915050565b606063cf7a1d7760e01b8484846040516024016200051e9392919062000aea565b610f2f8062000b2283390190565b6001600160a01b0381168114620008a957600080fd5b50565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620008d457600080fd5b813567ffffffffffffffff80821115620008f257620008f2620008ac565b604051601f8301601f19908116603f011681019082821181831017156200091d576200091d620008ac565b816040528381528660208588010111156200093757600080fd5b836020870160208301376000602085830101528094505050505092915050565b6000806000606084860312156200096d57600080fd5b83356200097a8162000893565b925060208401356200098c8162000893565b9150604084013567ffffffffffffffff811115620009a957600080fd5b620009b786828701620008c2565b9150509250925092565b6000815180845260005b81811015620009e957602081850181015186830182015201620009cb565b506000602082860101526020601f19601f83011685010191505092915050565b60208152600062000a1e6020830184620009c1565b9392505050565b6000806040838503121562000a3957600080fd5b823562000a468162000893565b9150602083013567ffffffffffffffff81111562000a6357600080fd5b62000a7185828601620008c2565b9150509250929050565b60006020828403121562000a8e57600080fd5b8151801515811462000a1e57600080fd5b60006020828403121562000ab257600080fd5b81516001600160601b038116811462000a1e57600080fd5b60006020828403121562000add57600080fd5b815162000a1e8162000893565b6001600160a01b0384811682528316602082015260606040820181905260009062000b1890830184620009c1565b9594505050505056fe60a06040523480156200001157600080fd5b5060405162000f2f38038062000f2f8339810160408190526200003491620003e1565b8282828281620000458282620000b0565b50508160405162000056906200037a565b6001600160a01b039091168152602001604051809103906000f08015801562000083573d6000803e3d6000fd5b506001600160a01b0316608052620000a46200009e60805190565b62000116565b505050505050620004df565b620000bb8262000188565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a2805115620001085762000103828262000208565b505050565b6200011262000285565b5050565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f6200015860008051602062000f0f833981519152546001600160a01b031690565b604080516001600160a01b03928316815291841660208301520160405180910390a16200018581620002a7565b50565b806001600160a01b03163b600003620001c457604051634c9c8ce360e01b81526001600160a01b03821660048201526024015b60405180910390fd5b807f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5b80546001600160a01b0319166001600160a01b039290921691909117905550565b6060600080846001600160a01b031684604051620002279190620004c1565b600060405180830381855af49150503d806000811462000264576040519150601f19603f3d011682016040523d82523d6000602084013e62000269565b606091505b5090925090506200027c858383620002ea565b95945050505050565b3415620002a55760405163b398979f60e01b815260040160405180910390fd5b565b6001600160a01b038116620002d357604051633173bdd160e11b815260006004820152602401620001bb565b8060008051602062000f0f833981519152620001e7565b6060826200030357620002fd8262000350565b62000349565b81511580156200031b57506001600160a01b0384163b155b156200034657604051639996b31560e01b81526001600160a01b0385166004820152602401620001bb565b50805b9392505050565b805115620003615780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b61052480620009eb83390190565b80516001600160a01b0381168114620003a057600080fd5b919050565b634e487b7160e01b600052604160045260246000fd5b60005b83811015620003d8578181015183820152602001620003be565b50506000910152565b600080600060608486031215620003f757600080fd5b620004028462000388565b9250620004126020850162000388565b60408501519092506001600160401b03808211156200043057600080fd5b818601915086601f8301126200044557600080fd5b8151818111156200045a576200045a620003a5565b604051601f8201601f19908116603f01168101908382118183101715620004855762000485620003a5565b816040528281528960208487010111156200049f57600080fd5b620004b2836020830160208801620003bb565b80955050505050509250925092565b60008251620004d5818460208701620003bb565b9190910192915050565b6080516104eb620005006000396000818160370152607401526104eb6000f3fe60806040526004361061001e5760003560e01c80638b3240a014610028575b610026610072565b005b34801561003457600080fd5b507f00000000000000000000000000000000000000000000000000000000000000006040516001600160a01b03909116815260200160405180910390f35b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031633036100df576000356001600160e01b03191663278f794360e11b146100d5576040516334ad5dbb60e21b815260040160405180910390fd5b6100dd6100ec565b565b6100dd61011b565b905090565b6000806100fc3660048184610376565b81019061010991906103b6565b91509150610117828261012b565b5050565b6100dd610126610186565b6101b9565b610134826101dd565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a280511561017e576101798282610259565b505050565b6101176102cf565b60006100e77f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b3660008037600080366000845af43d6000803e8080156101d8573d6000f35b3d6000fd5b806001600160a01b03163b60000361021857604051634c9c8ce360e01b81526001600160a01b03821660048201526024015b60405180910390fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc80546001600160a01b0319166001600160a01b0392909216919091179055565b6060600080846001600160a01b0316846040516102769190610486565b600060405180830381855af49150503d80600081146102b1576040519150601f19603f3d011682016040523d82523d6000602084013e6102b6565b606091505b50915091506102c68583836102ee565b95945050505050565b34156100dd5760405163b398979f60e01b815260040160405180910390fd5b606082610303576102fe8261034d565b610346565b815115801561031a57506001600160a01b0384163b155b1561034357604051639996b31560e01b81526001600160a01b038516600482015260240161020f565b50805b9392505050565b80511561035d5780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b6000808585111561038657600080fd5b8386111561039357600080fd5b5050820193919092039150565b634e487b7160e01b600052604160045260246000fd5b600080604083850312156103c957600080fd5b82356001600160a01b03811681146103e057600080fd5b9150602083013567ffffffffffffffff808211156103fd57600080fd5b818501915085601f83011261041157600080fd5b813581811115610423576104236103a0565b604051601f8201601f19908116603f0116810190838211818310171561044b5761044b6103a0565b8160405282815288602084870101111561046457600080fd5b8260208601602083013760006020848301015280955050505050509250929050565b6000825160005b818110156104a7576020818601810151858301520161048d565b50600092019182525091905056fea264697066735822122061d21ea0f293a274302e47ad0e30c5fb666a07dc4f8e1cfa79d3064668655aa064736f6c63430008140033608060405234801561001057600080fd5b5060405161052438038061052483398101604081905261002f916100be565b806001600160a01b03811661005e57604051631e4fbdf760e01b81526000600482015260240160405180910390fd5b6100678161006e565b50506100ee565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000602082840312156100d057600080fd5b81516001600160a01b03811681146100e757600080fd5b9392505050565b610427806100fd6000396000f3fe60806040526004361061004a5760003560e01c8063715018a61461004f5780638da5cb5b146100665780639623609d14610093578063ad3cb1cc146100a6578063f2fde38b146100e4575b600080fd5b34801561005b57600080fd5b50610064610104565b005b34801561007257600080fd5b506000546040516001600160a01b0390911681526020015b60405180910390f35b6100646100a1366004610272565b610118565b3480156100b257600080fd5b506100d7604051806040016040528060058152602001640352e302e360dc1b81525081565b60405161008a919061038e565b3480156100f057600080fd5b506100646100ff3660046103a8565b610187565b61010c6101ca565b61011660006101f7565b565b6101206101ca565b60405163278f794360e11b81526001600160a01b03841690634f1ef28690349061015090869086906004016103c5565b6000604051808303818588803b15801561016957600080fd5b505af115801561017d573d6000803e3d6000fd5b5050505050505050565b61018f6101ca565b6001600160a01b0381166101be57604051631e4fbdf760e01b8152600060048201526024015b60405180910390fd5b6101c7816101f7565b50565b6000546001600160a01b031633146101165760405163118cdaa760e01b81523360048201526024016101b5565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b03811681146101c757600080fd5b634e487b7160e01b600052604160045260246000fd5b60008060006060848603121561028757600080fd5b833561029281610247565b925060208401356102a281610247565b9150604084013567ffffffffffffffff808211156102bf57600080fd5b818601915086601f8301126102d357600080fd5b8135818111156102e5576102e561025c565b604051601f8201601f19908116603f0116810190838211818310171561030d5761030d61025c565b8160405282815289602084870101111561032657600080fd5b8260208601602083013760006020848301015280955050505050509250925092565b6000815180845260005b8181101561036e57602081850181015186830182015201610352565b506000602082860101526020601f19601f83011685010191505092915050565b6020815260006103a16020830184610348565b9392505050565b6000602082840312156103ba57600080fd5b81356103a181610247565b6001600160a01b03831681526040602082018190526000906103e990830184610348565b94935050505056fea2646970667358221220cb46d8eee562c2068d4d3afab9e2a7f48be119bb61a6a1c3d7ef6ba5a8aff09464736f6c63430008140033b53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103a2646970667358221220579d06a7d19a63628acf9efd58b1a5c0da0906af019003f869c7f17a642ac9a164736f6c63430008140033",
         | 
| 333 | 
            +
              "deployedBytecode": "0x60806040523480156200001157600080fd5b5060043610620000ab5760003560e01c8063aef485a0116200006e578063aef485a0146200012e578063c987336c1462000154578063e97fac05146200016b578063f68767681462000182578063fb2cb101146200019957600080fd5b8063138461e014620000b05780635ab1bd5314620000bc578063644c45e014620000e6578063893d20e81462000112578063933a9ce8146200011c575b600080fd5b620000ba620001ab565b005b6000546001600160a01b03165b6040516001600160a01b0390911681526020015b60405180910390f35b600054600160a01b90046001600160601b03166040516001600160601b039091168152602001620000dd565b620000c9620003da565b6002546001600160a01b0316620000c9565b620001456200013f36600462000957565b620004fd565b604051620000dd919062000a09565b620000c96200016536600462000a25565b62000559565b620000c96200017c36600462000a25565b62000726565b620001456200019336600462000957565b62000864565b6001546001600160a01b0316620000c9565b6000546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af41580156200020e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000234919062000a7b565b156200027c576000546040516316322c0f60e31b81526001600160a01b0382166004820152600160a01b9091046001600160601b031660248201526044015b60405180910390fd5b6000546001600160a01b0316620002a65760405163cf29926160e01b815260040160405180910390fd5b60005460405163c3c5a54760e01b81523060048201819052916001600160a01b03169063c3c5a54790602401602060405180830381865afa158015620002f0573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000316919062000a7b565b62000340576040516372657a5160e01b81526001600160a01b038216600482015260240162000273565b600054604051636939560f60e11b81526001600160a01b0383811660048301529091169063d272ac1e90602401602060405180830381865afa1580156200038b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003b1919062000a9f565b600060146101000a8154816001600160601b0302191690836001600160601b0316021790555050565b600080546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af41580156200043e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000464919062000a7b565b15620004ed57600054604051631c5da14d60e11b8152600160a01b82046001600160601b031660048201526001600160a01b03909116906338bb429a90602401602060405180830381865afa158015620004c2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004e8919062000aca565b905090565b506001546001600160a01b031690565b606063a745e3df60e01b8484846040516024016200051e9392919062000aea565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915290509392505050565b600062000565620003da565b6001600160a01b0316336001600160a01b0316146200059a5760405163700dd81160e01b815233600482015260240162000273565b600254600160a01b900460ff16620005c557604051631e35411160e31b815260040160405180910390fd5b6000620005d1620003da565b90506000620005e86002546001600160a01b031690565b6001600160a01b0316638b3240a06040518163ffffffff1660e01b81526004016020604051808303816000875af115801562000628573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200064e919062000aca565b6002549091506001600160a01b031660006200066c878588620004fd565b604051639623609d60e01b81529091506001600160a01b03841690639623609d90620006a19085908b90869060040162000aea565b600060405180830381600087803b158015620006bc57600080fd5b505af1158015620006d1573d6000803e3d6000fd5b50506002546040516001600160a01b038b8116825290911697508792507f5f1d3094af018381967fbedd54b80ffb09c5a9799db985f5e17e322672686306915060200160405180910390a25050505092915050565b600062000732620003da565b6001600160a01b0316336001600160a01b031614620007675760405163700dd81160e01b815233600482015260240162000273565b600254600160a01b900460ff161562000793576040516375842f8760e01b815260040160405180910390fd5b6002805460ff60a01b1916600160a01b1790556000620007b2620003da565b9050306000620007c486848762000864565b9050858282604051620007d79062000885565b620007e59392919062000aea565b604051809103906000f08015801562000802573d6000803e3d6000fd5b50600280546001600160a01b0319166001600160a01b039283169081179091556040519188168252945084907fc5c7b8d20d7cac78e56fc596f8d26c700e5077f096017736e3526ab8af4850359060200160405180910390a250505092915050565b606063cf7a1d7760e01b8484846040516024016200051e9392919062000aea565b610f2f8062000b2283390190565b6001600160a01b0381168114620008a957600080fd5b50565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620008d457600080fd5b813567ffffffffffffffff80821115620008f257620008f2620008ac565b604051601f8301601f19908116603f011681019082821181831017156200091d576200091d620008ac565b816040528381528660208588010111156200093757600080fd5b836020870160208301376000602085830101528094505050505092915050565b6000806000606084860312156200096d57600080fd5b83356200097a8162000893565b925060208401356200098c8162000893565b9150604084013567ffffffffffffffff811115620009a957600080fd5b620009b786828701620008c2565b9150509250925092565b6000815180845260005b81811015620009e957602081850181015186830182015201620009cb565b506000602082860101526020601f19601f83011685010191505092915050565b60208152600062000a1e6020830184620009c1565b9392505050565b6000806040838503121562000a3957600080fd5b823562000a468162000893565b9150602083013567ffffffffffffffff81111562000a6357600080fd5b62000a7185828601620008c2565b9150509250929050565b60006020828403121562000a8e57600080fd5b8151801515811462000a1e57600080fd5b60006020828403121562000ab257600080fd5b81516001600160601b038116811462000a1e57600080fd5b60006020828403121562000add57600080fd5b815162000a1e8162000893565b6001600160a01b0384811682528316602082015260606040820181905260009062000b1890830184620009c1565b9594505050505056fe60a06040523480156200001157600080fd5b5060405162000f2f38038062000f2f8339810160408190526200003491620003e1565b8282828281620000458282620000b0565b50508160405162000056906200037a565b6001600160a01b039091168152602001604051809103906000f08015801562000083573d6000803e3d6000fd5b506001600160a01b0316608052620000a46200009e60805190565b62000116565b505050505050620004df565b620000bb8262000188565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a2805115620001085762000103828262000208565b505050565b6200011262000285565b5050565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f6200015860008051602062000f0f833981519152546001600160a01b031690565b604080516001600160a01b03928316815291841660208301520160405180910390a16200018581620002a7565b50565b806001600160a01b03163b600003620001c457604051634c9c8ce360e01b81526001600160a01b03821660048201526024015b60405180910390fd5b807f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5b80546001600160a01b0319166001600160a01b039290921691909117905550565b6060600080846001600160a01b031684604051620002279190620004c1565b600060405180830381855af49150503d806000811462000264576040519150601f19603f3d011682016040523d82523d6000602084013e62000269565b606091505b5090925090506200027c858383620002ea565b95945050505050565b3415620002a55760405163b398979f60e01b815260040160405180910390fd5b565b6001600160a01b038116620002d357604051633173bdd160e11b815260006004820152602401620001bb565b8060008051602062000f0f833981519152620001e7565b6060826200030357620002fd8262000350565b62000349565b81511580156200031b57506001600160a01b0384163b155b156200034657604051639996b31560e01b81526001600160a01b0385166004820152602401620001bb565b50805b9392505050565b805115620003615780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b61052480620009eb83390190565b80516001600160a01b0381168114620003a057600080fd5b919050565b634e487b7160e01b600052604160045260246000fd5b60005b83811015620003d8578181015183820152602001620003be565b50506000910152565b600080600060608486031215620003f757600080fd5b620004028462000388565b9250620004126020850162000388565b60408501519092506001600160401b03808211156200043057600080fd5b818601915086601f8301126200044557600080fd5b8151818111156200045a576200045a620003a5565b604051601f8201601f19908116603f01168101908382118183101715620004855762000485620003a5565b816040528281528960208487010111156200049f57600080fd5b620004b2836020830160208801620003bb565b80955050505050509250925092565b60008251620004d5818460208701620003bb565b9190910192915050565b6080516104eb620005006000396000818160370152607401526104eb6000f3fe60806040526004361061001e5760003560e01c80638b3240a014610028575b610026610072565b005b34801561003457600080fd5b507f00000000000000000000000000000000000000000000000000000000000000006040516001600160a01b03909116815260200160405180910390f35b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031633036100df576000356001600160e01b03191663278f794360e11b146100d5576040516334ad5dbb60e21b815260040160405180910390fd5b6100dd6100ec565b565b6100dd61011b565b905090565b6000806100fc3660048184610376565b81019061010991906103b6565b91509150610117828261012b565b5050565b6100dd610126610186565b6101b9565b610134826101dd565b6040516001600160a01b038316907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a280511561017e576101798282610259565b505050565b6101176102cf565b60006100e77f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b3660008037600080366000845af43d6000803e8080156101d8573d6000f35b3d6000fd5b806001600160a01b03163b60000361021857604051634c9c8ce360e01b81526001600160a01b03821660048201526024015b60405180910390fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc80546001600160a01b0319166001600160a01b0392909216919091179055565b6060600080846001600160a01b0316846040516102769190610486565b600060405180830381855af49150503d80600081146102b1576040519150601f19603f3d011682016040523d82523d6000602084013e6102b6565b606091505b50915091506102c68583836102ee565b95945050505050565b34156100dd5760405163b398979f60e01b815260040160405180910390fd5b606082610303576102fe8261034d565b610346565b815115801561031a57506001600160a01b0384163b155b1561034357604051639996b31560e01b81526001600160a01b038516600482015260240161020f565b50805b9392505050565b80511561035d5780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b6000808585111561038657600080fd5b8386111561039357600080fd5b5050820193919092039150565b634e487b7160e01b600052604160045260246000fd5b600080604083850312156103c957600080fd5b82356001600160a01b03811681146103e057600080fd5b9150602083013567ffffffffffffffff808211156103fd57600080fd5b818501915085601f83011261041157600080fd5b813581811115610423576104236103a0565b604051601f8201601f19908116603f0116810190838211818310171561044b5761044b6103a0565b8160405282815288602084870101111561046457600080fd5b8260208601602083013760006020848301015280955050505050509250929050565b6000825160005b818110156104a7576020818601810151858301520161048d565b50600092019182525091905056fea264697066735822122061d21ea0f293a274302e47ad0e30c5fb666a07dc4f8e1cfa79d3064668655aa064736f6c63430008140033608060405234801561001057600080fd5b5060405161052438038061052483398101604081905261002f916100be565b806001600160a01b03811661005e57604051631e4fbdf760e01b81526000600482015260240160405180910390fd5b6100678161006e565b50506100ee565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000602082840312156100d057600080fd5b81516001600160a01b03811681146100e757600080fd5b9392505050565b610427806100fd6000396000f3fe60806040526004361061004a5760003560e01c8063715018a61461004f5780638da5cb5b146100665780639623609d14610093578063ad3cb1cc146100a6578063f2fde38b146100e4575b600080fd5b34801561005b57600080fd5b50610064610104565b005b34801561007257600080fd5b506000546040516001600160a01b0390911681526020015b60405180910390f35b6100646100a1366004610272565b610118565b3480156100b257600080fd5b506100d7604051806040016040528060058152602001640352e302e360dc1b81525081565b60405161008a919061038e565b3480156100f057600080fd5b506100646100ff3660046103a8565b610187565b61010c6101ca565b61011660006101f7565b565b6101206101ca565b60405163278f794360e11b81526001600160a01b03841690634f1ef28690349061015090869086906004016103c5565b6000604051808303818588803b15801561016957600080fd5b505af115801561017d573d6000803e3d6000fd5b5050505050505050565b61018f6101ca565b6001600160a01b0381166101be57604051631e4fbdf760e01b8152600060048201526024015b60405180910390fd5b6101c7816101f7565b50565b6000546001600160a01b031633146101165760405163118cdaa760e01b81523360048201526024016101b5565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b03811681146101c757600080fd5b634e487b7160e01b600052604160045260246000fd5b60008060006060848603121561028757600080fd5b833561029281610247565b925060208401356102a281610247565b9150604084013567ffffffffffffffff808211156102bf57600080fd5b818601915086601f8301126102d357600080fd5b8135818111156102e5576102e561025c565b604051601f8201601f19908116603f0116810190838211818310171561030d5761030d61025c565b8160405282815289602084870101111561032657600080fd5b8260208601602083013760006020848301015280955050505050509250925092565b6000815180845260005b8181101561036e57602081850181015186830182015201610352565b506000602082860101526020601f19601f83011685010191505092915050565b6020815260006103a16020830184610348565b9392505050565b6000602082840312156103ba57600080fd5b81356103a181610247565b6001600160a01b03831681526040602082018190526000906103e990830184610348565b94935050505056fea2646970667358221220cb46d8eee562c2068d4d3afab9e2a7f48be119bb61a6a1c3d7ef6ba5a8aff09464736f6c63430008140033b53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103a2646970667358221220579d06a7d19a63628acf9efd58b1a5c0da0906af019003f869c7f17a642ac9a164736f6c63430008140033",
         | 
| 334 | 
            +
              "linkReferences": {
         | 
| 335 | 
            +
                "contracts/types/NftId.sol": {
         | 
| 336 | 
            +
                  "NftIdLib": [
         | 
| 337 | 
            +
                    {
         | 
| 338 | 
            +
                      "length": 20,
         | 
| 339 | 
            +
                      "start": 517
         | 
| 340 | 
            +
                    },
         | 
| 341 | 
            +
                    {
         | 
| 342 | 
            +
                      "length": 20,
         | 
| 343 | 
            +
                      "start": 1077
         | 
| 344 | 
            +
                    }
         | 
| 345 | 
            +
                  ]
         | 
| 346 | 
            +
                }
         | 
| 347 | 
            +
              },
         | 
| 348 | 
            +
              "deployedLinkReferences": {
         | 
| 349 | 
            +
                "contracts/types/NftId.sol": {
         | 
| 350 | 
            +
                  "NftIdLib": [
         | 
| 351 | 
            +
                    {
         | 
| 352 | 
            +
                      "length": 20,
         | 
| 353 | 
            +
                      "start": 467
         | 
| 354 | 
            +
                    },
         | 
| 355 | 
            +
                    {
         | 
| 356 | 
            +
                      "length": 20,
         | 
| 357 | 
            +
                      "start": 1027
         | 
| 358 | 
            +
                    }
         | 
| 359 | 
            +
                  ]
         | 
| 360 | 
            +
                }
         | 
| 361 | 
            +
              }
         | 
| 362 | 
            +
            }
         |