@etherisc/gif-next 0.0.2-f30e0eb-805 → 0.0.2-f398177-971
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +6 -83
- package/artifacts/contracts/components/Component.sol/Component.dbg.json +1 -1
- package/artifacts/contracts/components/Component.sol/Component.json +47 -6
- package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +1 -1
- package/artifacts/contracts/components/Distribution.sol/Distribution.json +70 -13
- package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IComponent.sol/IComponent.json +137 -6
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +144 -13
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +161 -20
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +151 -20
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
- package/artifacts/contracts/components/Pool.sol/Pool.json +71 -20
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
- package/artifacts/contracts/components/Product.sol/Product.json +62 -21
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +1 -1
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +2 -2
- package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +310 -2004
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +101 -52
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +425 -2757
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +95 -58
- package/artifacts/contracts/instance/InstanceAuthorizationsLib.sol/InstanceAuthorizationsLib.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceAuthorizationsLib.sol/InstanceAuthorizationsLib.json +124 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +348 -58
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +153 -207
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +38 -83
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +2788 -0
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +1 -1
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +2 -2
- package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.dbg.json +1 -1
- package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.json +113 -34
- package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +1 -1
- 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 +8 -8
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +1 -1
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +6 -6
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +6 -6
- package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +1 -1
- package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +1 -1
- package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.json +186 -236
- package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +38 -55
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +377 -182
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +74 -39
- package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.json +713 -83
- package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.json +147 -32
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +266 -442
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +82 -107
- package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.json +111 -174
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.json +233 -128
- package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.json +385 -51
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +109 -282
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.json +210 -99
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +682 -33
- package/artifacts/contracts/instance/service/IPricingService.sol/IPricingService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IPricingService.sol/IPricingService.json +510 -0
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +85 -27
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +420 -160
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +104 -53
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +880 -82
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +90 -39
- package/artifacts/contracts/instance/service/PricingService.sol/PricingService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PricingService.sol/PricingService.json +1004 -0
- package/artifacts/contracts/instance/service/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PricingServiceManager.sol/PricingServiceManager.json +688 -0
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +144 -57
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +28 -37
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +5 -37
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.json +2 -2
- package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +2 -2
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +22 -49
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +21 -34
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +1 -1
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +23 -11
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +10 -23
- package/artifacts/contracts/shared/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.dbg.json +4 -0
- package/artifacts/contracts/{instance → shared}/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.json +3 -3
- package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +1 -1
- package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +1 -1
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.json +0 -13
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +1 -1
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +69 -9
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +0 -13
- package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.json +0 -13
- package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
- package/artifacts/contracts/shared/IService.sol/IService.json +85 -27
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +1 -1
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +6 -19
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +1 -1
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +80 -26
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +1 -1
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +14 -27
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +6 -19
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +1 -1
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +2 -15
- package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
- package/artifacts/contracts/shared/Service.sol/Service.json +91 -28
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +24 -6
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +1 -1
- package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +1 -1
- package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +1 -1
- package/artifacts/contracts/test/TestFee.sol/TestFee.json +2 -2
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +1 -1
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +6 -19
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +1 -1
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +2 -2
- package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +1 -1
- package/artifacts/contracts/test/TestService.sol/TestService.json +106 -39
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +1 -1
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +1 -1
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +1 -1
- package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +1 -1
- package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +1 -1
- package/artifacts/contracts/types/Amount.sol/AmountLib.dbg.json +4 -0
- package/artifacts/contracts/types/Amount.sol/AmountLib.json +281 -0
- 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/ClaimId.sol/ClaimIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.json +83 -4
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +1 -1
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +2 -2
- package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +1 -1
- package/artifacts/contracts/types/Fee.sol/FeeLib.json +74 -19
- package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +1 -1
- package/artifacts/contracts/types/Key32.sol/Key32Lib.json +2 -2
- 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 +2 -2
- package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +1 -1
- 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/PayoutId.sol/PayoutIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.json +116 -7
- package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +1 -1
- package/artifacts/contracts/types/Referral.sol/ReferralLib.json +2 -2
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +2 -2
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +2 -2
- package/artifacts/contracts/types/Seconds.sol/SecondsLib.dbg.json +1 -1
- 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 +17 -4
- package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +1 -1
- package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +1 -1
- package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +1 -1
- package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +1 -1
- package/contracts/components/Component.sol +25 -4
- package/contracts/components/Distribution.sol +11 -6
- package/contracts/components/IComponent.sol +19 -3
- package/contracts/components/IPoolComponent.sol +8 -7
- package/contracts/components/IProductComponent.sol +5 -4
- package/contracts/components/Pool.sol +17 -14
- package/contracts/components/Product.sol +144 -62
- package/contracts/instance/BundleManager.sol +3 -4
- package/contracts/instance/IInstance.sol +32 -53
- package/contracts/instance/IInstanceService.sol +15 -14
- package/contracts/instance/Instance.sol +107 -205
- package/contracts/instance/InstanceAccessManager.sol +44 -25
- package/contracts/instance/InstanceAuthorizationsLib.sol +308 -0
- package/contracts/instance/InstanceReader.sol +85 -7
- package/contracts/instance/InstanceService.sol +102 -289
- package/contracts/instance/InstanceStore.sol +212 -0
- package/contracts/instance/ObjectManager.sol +1 -1
- package/contracts/instance/base/ComponentService.sol +53 -39
- package/contracts/instance/base/KeyValueStore.sol +8 -34
- package/contracts/instance/base/Lifecycle.sol +15 -4
- package/contracts/instance/module/IAccess.sol +2 -2
- package/contracts/instance/module/IBundle.sol +6 -4
- package/contracts/instance/module/IComponents.sol +7 -1
- package/contracts/instance/module/IDistribution.sol +3 -2
- package/contracts/instance/module/IPolicy.sol +13 -8
- package/contracts/instance/service/ApplicationService.sol +62 -226
- package/contracts/instance/service/BundleService.sol +172 -126
- package/contracts/instance/service/ClaimService.sol +318 -32
- package/contracts/instance/service/DistributionService.sol +71 -190
- package/contracts/instance/service/IApplicationService.sol +8 -28
- package/contracts/instance/service/IBundleService.sol +82 -26
- package/contracts/instance/service/IClaimService.sol +52 -23
- package/contracts/instance/service/IDistributionService.sol +11 -22
- package/contracts/instance/service/IPolicyService.sol +24 -16
- package/contracts/instance/service/IPoolService.sol +82 -3
- package/contracts/instance/service/IPricingService.sol +37 -0
- package/contracts/instance/service/PolicyService.sol +152 -179
- package/contracts/instance/service/PoolService.sol +239 -56
- package/contracts/instance/service/PricingService.sol +275 -0
- package/contracts/instance/service/PricingServiceManager.sol +51 -0
- package/contracts/instance/service/ProductService.sol +27 -58
- package/contracts/registry/IRegistryService.sol +2 -3
- package/contracts/registry/RegistryService.sol +24 -21
- package/contracts/registry/ReleaseManager.sol +20 -18
- package/contracts/shared/IPolicyHolder.sol +23 -9
- package/contracts/shared/IRegistryLinked.sol +0 -1
- package/contracts/shared/IService.sol +6 -6
- package/contracts/shared/NftOwnable.sol +0 -2
- package/contracts/shared/PolicyHolder.sol +30 -17
- package/contracts/shared/Registerable.sol +10 -9
- package/contracts/shared/RegistryLinked.sol +0 -5
- package/contracts/shared/Service.sol +21 -7
- package/contracts/shared/TokenHandler.sol +4 -2
- package/contracts/test/TestService.sol +1 -1
- package/contracts/types/Amount.sol +109 -0
- package/contracts/types/ClaimId.sol +25 -2
- package/contracts/types/Fee.sol +16 -8
- package/contracts/types/ObjectType.sol +9 -5
- package/contracts/types/PayoutId.sol +33 -5
- package/contracts/types/StateId.sol +6 -2
- package/contracts/types/Timestamp.sol +5 -0
- package/package.json +1 -1
- package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.dbg.json +0 -4
- /package/contracts/{instance → shared}/AccessManagerUpgradeableInitializeable.sol +0 -0
@@ -44,203 +44,166 @@
|
|
44
44
|
{
|
45
45
|
"inputs": [
|
46
46
|
{
|
47
|
-
"internalType": "
|
48
|
-
"name": "
|
49
|
-
"type": "
|
50
|
-
},
|
51
|
-
{
|
52
|
-
"internalType": "StateId",
|
53
|
-
"name": "fromStateId",
|
54
|
-
"type": "uint8"
|
55
|
-
},
|
56
|
-
{
|
57
|
-
"internalType": "StateId",
|
58
|
-
"name": "toStateId",
|
59
|
-
"type": "uint8"
|
47
|
+
"internalType": "address",
|
48
|
+
"name": "instanceBundleManager",
|
49
|
+
"type": "address"
|
60
50
|
}
|
61
51
|
],
|
62
|
-
"name": "
|
52
|
+
"name": "ErrorInstanceBundleManagerAlreadySet",
|
63
53
|
"type": "error"
|
64
54
|
},
|
65
55
|
{
|
66
56
|
"inputs": [
|
67
57
|
{
|
68
|
-
"internalType": "
|
69
|
-
"name": "
|
70
|
-
"type": "
|
58
|
+
"internalType": "address",
|
59
|
+
"name": "instanceAuthority",
|
60
|
+
"type": "address"
|
71
61
|
}
|
72
62
|
],
|
73
|
-
"name": "
|
63
|
+
"name": "ErrorInstanceBundleManagerAuthorityMismatch",
|
74
64
|
"type": "error"
|
75
65
|
},
|
76
66
|
{
|
77
67
|
"inputs": [
|
78
68
|
{
|
79
69
|
"internalType": "address",
|
80
|
-
"name": "
|
70
|
+
"name": "instance",
|
81
71
|
"type": "address"
|
82
72
|
}
|
83
73
|
],
|
84
|
-
"name": "
|
74
|
+
"name": "ErrorInstanceBundleManagerInstanceMismatch",
|
85
75
|
"type": "error"
|
86
76
|
},
|
87
77
|
{
|
88
|
-
"inputs": [
|
89
|
-
|
78
|
+
"inputs": [
|
79
|
+
{
|
80
|
+
"internalType": "address",
|
81
|
+
"name": "instanceAccessManager",
|
82
|
+
"type": "address"
|
83
|
+
}
|
84
|
+
],
|
85
|
+
"name": "ErrorInstanceInstanceAccessManagerAlreadySet",
|
90
86
|
"type": "error"
|
91
87
|
},
|
92
88
|
{
|
93
89
|
"inputs": [
|
94
90
|
{
|
95
91
|
"internalType": "address",
|
96
|
-
"name": "
|
92
|
+
"name": "instanceAuthority",
|
97
93
|
"type": "address"
|
98
94
|
}
|
99
95
|
],
|
100
|
-
"name": "
|
96
|
+
"name": "ErrorInstanceInstanceAccessManagerAuthorityMismatch",
|
97
|
+
"type": "error"
|
98
|
+
},
|
99
|
+
{
|
100
|
+
"inputs": [],
|
101
|
+
"name": "ErrorInstanceInstanceAccessManagerZero",
|
101
102
|
"type": "error"
|
102
103
|
},
|
103
104
|
{
|
104
105
|
"inputs": [
|
105
106
|
{
|
106
|
-
"internalType": "
|
107
|
-
"name": "
|
108
|
-
"type": "
|
109
|
-
},
|
110
|
-
{
|
111
|
-
"internalType": "ObjectType",
|
112
|
-
"name": "objectType",
|
113
|
-
"type": "uint8"
|
107
|
+
"internalType": "address",
|
108
|
+
"name": "instanceAuthority",
|
109
|
+
"type": "address"
|
114
110
|
}
|
115
111
|
],
|
116
|
-
"name": "
|
112
|
+
"name": "ErrorInstanceInstanceReaderInstanceMismatch",
|
117
113
|
"type": "error"
|
118
114
|
},
|
119
115
|
{
|
120
116
|
"inputs": [
|
121
117
|
{
|
122
118
|
"internalType": "address",
|
123
|
-
"name": "
|
119
|
+
"name": "instanceStore",
|
124
120
|
"type": "address"
|
125
121
|
}
|
126
122
|
],
|
127
|
-
"name": "
|
123
|
+
"name": "ErrorInstanceInstanceStoreAlreadySet",
|
128
124
|
"type": "error"
|
129
125
|
},
|
130
126
|
{
|
131
|
-
"inputs": [
|
132
|
-
|
127
|
+
"inputs": [
|
128
|
+
{
|
129
|
+
"internalType": "address",
|
130
|
+
"name": "instanceAuthority",
|
131
|
+
"type": "address"
|
132
|
+
}
|
133
|
+
],
|
134
|
+
"name": "ErrorInstanceInstanceStoreAuthorityMismatch",
|
133
135
|
"type": "error"
|
134
136
|
},
|
135
137
|
{
|
136
|
-
"inputs": [
|
137
|
-
|
138
|
+
"inputs": [
|
139
|
+
{
|
140
|
+
"internalType": "NftId",
|
141
|
+
"name": "nftId",
|
142
|
+
"type": "uint96"
|
143
|
+
}
|
144
|
+
],
|
145
|
+
"name": "ErrorNftOwnableAlreadyLinked",
|
138
146
|
"type": "error"
|
139
147
|
},
|
140
148
|
{
|
141
|
-
"anonymous": false,
|
142
149
|
"inputs": [
|
143
150
|
{
|
144
|
-
"indexed": false,
|
145
151
|
"internalType": "address",
|
146
|
-
"name": "
|
152
|
+
"name": "contractAddress",
|
147
153
|
"type": "address"
|
148
154
|
}
|
149
155
|
],
|
150
|
-
"name": "
|
151
|
-
"type": "
|
156
|
+
"name": "ErrorNftOwnableContractNotRegistered",
|
157
|
+
"type": "error"
|
158
|
+
},
|
159
|
+
{
|
160
|
+
"inputs": [],
|
161
|
+
"name": "ErrorNftOwnableInitialOwnerZero",
|
162
|
+
"type": "error"
|
152
163
|
},
|
153
164
|
{
|
154
|
-
"anonymous": false,
|
155
165
|
"inputs": [
|
156
166
|
{
|
157
|
-
"
|
158
|
-
"
|
159
|
-
"
|
160
|
-
"type": "uint64"
|
167
|
+
"internalType": "address",
|
168
|
+
"name": "account",
|
169
|
+
"type": "address"
|
161
170
|
}
|
162
171
|
],
|
163
|
-
"name": "
|
164
|
-
"type": "
|
172
|
+
"name": "ErrorNftOwnableNotOwner",
|
173
|
+
"type": "error"
|
165
174
|
},
|
166
175
|
{
|
167
|
-
"anonymous": false,
|
168
176
|
"inputs": [
|
169
177
|
{
|
170
|
-
"indexed": false,
|
171
|
-
"internalType": "ObjectType",
|
172
|
-
"name": "objectType",
|
173
|
-
"type": "uint8"
|
174
|
-
},
|
175
|
-
{
|
176
|
-
"indexed": false,
|
177
|
-
"internalType": "KeyId",
|
178
|
-
"name": "keyId",
|
179
|
-
"type": "bytes31"
|
180
|
-
},
|
181
|
-
{
|
182
|
-
"indexed": false,
|
183
|
-
"internalType": "StateId",
|
184
|
-
"name": "state",
|
185
|
-
"type": "uint8"
|
186
|
-
},
|
187
|
-
{
|
188
|
-
"indexed": false,
|
189
|
-
"internalType": "address",
|
190
|
-
"name": "createdBy",
|
191
|
-
"type": "address"
|
192
|
-
},
|
193
|
-
{
|
194
|
-
"indexed": false,
|
195
178
|
"internalType": "address",
|
196
|
-
"name": "
|
179
|
+
"name": "registryAddress",
|
197
180
|
"type": "address"
|
198
181
|
}
|
199
182
|
],
|
200
|
-
"name": "
|
201
|
-
"type": "
|
183
|
+
"name": "ErrorNotRegistry",
|
184
|
+
"type": "error"
|
185
|
+
},
|
186
|
+
{
|
187
|
+
"inputs": [],
|
188
|
+
"name": "InvalidInitialization",
|
189
|
+
"type": "error"
|
190
|
+
},
|
191
|
+
{
|
192
|
+
"inputs": [],
|
193
|
+
"name": "NotInitializing",
|
194
|
+
"type": "error"
|
202
195
|
},
|
203
196
|
{
|
204
197
|
"anonymous": false,
|
205
198
|
"inputs": [
|
206
|
-
{
|
207
|
-
"indexed": false,
|
208
|
-
"internalType": "ObjectType",
|
209
|
-
"name": "objectType",
|
210
|
-
"type": "uint8"
|
211
|
-
},
|
212
|
-
{
|
213
|
-
"indexed": false,
|
214
|
-
"internalType": "KeyId",
|
215
|
-
"name": "keyId",
|
216
|
-
"type": "bytes31"
|
217
|
-
},
|
218
|
-
{
|
219
|
-
"indexed": false,
|
220
|
-
"internalType": "StateId",
|
221
|
-
"name": "state",
|
222
|
-
"type": "uint8"
|
223
|
-
},
|
224
|
-
{
|
225
|
-
"indexed": false,
|
226
|
-
"internalType": "address",
|
227
|
-
"name": "updatedBy",
|
228
|
-
"type": "address"
|
229
|
-
},
|
230
199
|
{
|
231
200
|
"indexed": false,
|
232
201
|
"internalType": "address",
|
233
|
-
"name": "
|
202
|
+
"name": "authority",
|
234
203
|
"type": "address"
|
235
|
-
},
|
236
|
-
{
|
237
|
-
"indexed": false,
|
238
|
-
"internalType": "Blocknumber",
|
239
|
-
"name": "lastUpdatedIn",
|
240
|
-
"type": "uint32"
|
241
204
|
}
|
242
205
|
],
|
243
|
-
"name": "
|
206
|
+
"name": "AuthorityUpdated",
|
244
207
|
"type": "event"
|
245
208
|
},
|
246
209
|
{
|
@@ -248,58 +211,22 @@
|
|
248
211
|
"inputs": [
|
249
212
|
{
|
250
213
|
"indexed": false,
|
251
|
-
"internalType": "
|
252
|
-
"name": "
|
253
|
-
"type": "
|
254
|
-
},
|
255
|
-
{
|
256
|
-
"indexed": false,
|
257
|
-
"internalType": "KeyId",
|
258
|
-
"name": "keyId",
|
259
|
-
"type": "bytes31"
|
260
|
-
},
|
261
|
-
{
|
262
|
-
"indexed": false,
|
263
|
-
"internalType": "StateId",
|
264
|
-
"name": "stateOld",
|
265
|
-
"type": "uint8"
|
266
|
-
},
|
267
|
-
{
|
268
|
-
"indexed": false,
|
269
|
-
"internalType": "StateId",
|
270
|
-
"name": "stateNew",
|
271
|
-
"type": "uint8"
|
272
|
-
},
|
273
|
-
{
|
274
|
-
"indexed": false,
|
275
|
-
"internalType": "address",
|
276
|
-
"name": "updatedBy",
|
277
|
-
"type": "address"
|
278
|
-
},
|
279
|
-
{
|
280
|
-
"indexed": false,
|
281
|
-
"internalType": "address",
|
282
|
-
"name": "txOrigin",
|
283
|
-
"type": "address"
|
284
|
-
},
|
285
|
-
{
|
286
|
-
"indexed": false,
|
287
|
-
"internalType": "Blocknumber",
|
288
|
-
"name": "lastUpdatedIn",
|
289
|
-
"type": "uint32"
|
214
|
+
"internalType": "uint64",
|
215
|
+
"name": "version",
|
216
|
+
"type": "uint64"
|
290
217
|
}
|
291
218
|
],
|
292
|
-
"name": "
|
219
|
+
"name": "Initialized",
|
293
220
|
"type": "event"
|
294
221
|
},
|
295
222
|
{
|
296
223
|
"inputs": [],
|
297
|
-
"name": "
|
224
|
+
"name": "GIF_MAJOR_VERSION",
|
298
225
|
"outputs": [
|
299
226
|
{
|
300
|
-
"internalType": "
|
227
|
+
"internalType": "uint256",
|
301
228
|
"name": "",
|
302
|
-
"type": "
|
229
|
+
"type": "uint256"
|
303
230
|
}
|
304
231
|
],
|
305
232
|
"stateMutability": "view",
|
@@ -307,12 +234,12 @@
|
|
307
234
|
},
|
308
235
|
{
|
309
236
|
"inputs": [],
|
310
|
-
"name": "
|
237
|
+
"name": "NFT_OWNABLE_STORAGE_LOCATION_V1",
|
311
238
|
"outputs": [
|
312
239
|
{
|
313
|
-
"internalType": "
|
240
|
+
"internalType": "bytes32",
|
314
241
|
"name": "",
|
315
|
-
"type": "
|
242
|
+
"type": "bytes32"
|
316
243
|
}
|
317
244
|
],
|
318
245
|
"stateMutability": "view",
|
@@ -320,12 +247,12 @@
|
|
320
247
|
},
|
321
248
|
{
|
322
249
|
"inputs": [],
|
323
|
-
"name": "
|
250
|
+
"name": "REGISTERABLE_LOCATION_V1",
|
324
251
|
"outputs": [
|
325
252
|
{
|
326
|
-
"internalType": "
|
253
|
+
"internalType": "bytes32",
|
327
254
|
"name": "",
|
328
|
-
"type": "
|
255
|
+
"type": "bytes32"
|
329
256
|
}
|
330
257
|
],
|
331
258
|
"stateMutability": "view",
|
@@ -333,51 +260,72 @@
|
|
333
260
|
},
|
334
261
|
{
|
335
262
|
"inputs": [],
|
336
|
-
"name": "
|
263
|
+
"name": "authority",
|
337
264
|
"outputs": [
|
338
265
|
{
|
339
|
-
"internalType": "
|
266
|
+
"internalType": "address",
|
340
267
|
"name": "",
|
341
|
-
"type": "
|
268
|
+
"type": "address"
|
342
269
|
}
|
343
270
|
],
|
344
271
|
"stateMutability": "view",
|
345
272
|
"type": "function"
|
346
273
|
},
|
347
274
|
{
|
348
|
-
"inputs": [
|
349
|
-
|
275
|
+
"inputs": [
|
276
|
+
{
|
277
|
+
"internalType": "string",
|
278
|
+
"name": "roleName",
|
279
|
+
"type": "string"
|
280
|
+
},
|
281
|
+
{
|
282
|
+
"internalType": "string",
|
283
|
+
"name": "adminName",
|
284
|
+
"type": "string"
|
285
|
+
}
|
286
|
+
],
|
287
|
+
"name": "createRole",
|
350
288
|
"outputs": [
|
351
289
|
{
|
352
|
-
"internalType": "
|
353
|
-
"name": "",
|
354
|
-
"type": "
|
290
|
+
"internalType": "RoleId",
|
291
|
+
"name": "roleId",
|
292
|
+
"type": "uint64"
|
293
|
+
},
|
294
|
+
{
|
295
|
+
"internalType": "RoleId",
|
296
|
+
"name": "admin",
|
297
|
+
"type": "uint64"
|
355
298
|
}
|
356
299
|
],
|
357
|
-
"stateMutability": "
|
300
|
+
"stateMutability": "nonpayable",
|
358
301
|
"type": "function"
|
359
302
|
},
|
360
303
|
{
|
361
|
-
"inputs": [
|
362
|
-
"name": "PUBLIC_ROLE",
|
363
|
-
"outputs": [
|
304
|
+
"inputs": [
|
364
305
|
{
|
365
|
-
"internalType": "
|
366
|
-
"name": "",
|
367
|
-
"type": "
|
306
|
+
"internalType": "address",
|
307
|
+
"name": "target",
|
308
|
+
"type": "address"
|
309
|
+
},
|
310
|
+
{
|
311
|
+
"internalType": "string",
|
312
|
+
"name": "name",
|
313
|
+
"type": "string"
|
368
314
|
}
|
369
315
|
],
|
370
|
-
"
|
316
|
+
"name": "createTarget",
|
317
|
+
"outputs": [],
|
318
|
+
"stateMutability": "nonpayable",
|
371
319
|
"type": "function"
|
372
320
|
},
|
373
321
|
{
|
374
322
|
"inputs": [],
|
375
|
-
"name": "
|
323
|
+
"name": "getBundleManager",
|
376
324
|
"outputs": [
|
377
325
|
{
|
378
|
-
"internalType": "
|
326
|
+
"internalType": "contract BundleManager",
|
379
327
|
"name": "",
|
380
|
-
"type": "
|
328
|
+
"type": "address"
|
381
329
|
}
|
382
330
|
],
|
383
331
|
"stateMutability": "view",
|
@@ -385,10 +333,10 @@
|
|
385
333
|
},
|
386
334
|
{
|
387
335
|
"inputs": [],
|
388
|
-
"name": "
|
336
|
+
"name": "getBundleService",
|
389
337
|
"outputs": [
|
390
338
|
{
|
391
|
-
"internalType": "
|
339
|
+
"internalType": "contract IBundleService",
|
392
340
|
"name": "",
|
393
341
|
"type": "address"
|
394
342
|
}
|
@@ -397,1967 +345,212 @@
|
|
397
345
|
"type": "function"
|
398
346
|
},
|
399
347
|
{
|
400
|
-
"inputs": [
|
401
|
-
|
402
|
-
|
403
|
-
"name": "objectType",
|
404
|
-
"type": "uint8"
|
405
|
-
},
|
406
|
-
{
|
407
|
-
"internalType": "StateId",
|
408
|
-
"name": "fromId",
|
409
|
-
"type": "uint8"
|
410
|
-
},
|
348
|
+
"inputs": [],
|
349
|
+
"name": "getDistributionService",
|
350
|
+
"outputs": [
|
411
351
|
{
|
412
|
-
"internalType": "
|
413
|
-
"name": "
|
414
|
-
"type": "
|
352
|
+
"internalType": "contract IDistributionService",
|
353
|
+
"name": "",
|
354
|
+
"type": "address"
|
415
355
|
}
|
416
356
|
],
|
417
|
-
"name": "checkTransition",
|
418
|
-
"outputs": [],
|
419
357
|
"stateMutability": "view",
|
420
358
|
"type": "function"
|
421
359
|
},
|
422
360
|
{
|
423
|
-
"inputs": [
|
424
|
-
|
425
|
-
|
426
|
-
"name": "applicationNftId",
|
427
|
-
"type": "uint96"
|
428
|
-
},
|
429
|
-
{
|
430
|
-
"components": [
|
431
|
-
{
|
432
|
-
"internalType": "NftId",
|
433
|
-
"name": "productNftId",
|
434
|
-
"type": "uint96"
|
435
|
-
},
|
436
|
-
{
|
437
|
-
"internalType": "NftId",
|
438
|
-
"name": "bundleNftId",
|
439
|
-
"type": "uint96"
|
440
|
-
},
|
441
|
-
{
|
442
|
-
"internalType": "ReferralId",
|
443
|
-
"name": "referralId",
|
444
|
-
"type": "bytes8"
|
445
|
-
},
|
446
|
-
{
|
447
|
-
"internalType": "RiskId",
|
448
|
-
"name": "riskId",
|
449
|
-
"type": "bytes8"
|
450
|
-
},
|
451
|
-
{
|
452
|
-
"internalType": "uint256",
|
453
|
-
"name": "sumInsuredAmount",
|
454
|
-
"type": "uint256"
|
455
|
-
},
|
456
|
-
{
|
457
|
-
"internalType": "uint256",
|
458
|
-
"name": "premiumAmount",
|
459
|
-
"type": "uint256"
|
460
|
-
},
|
461
|
-
{
|
462
|
-
"internalType": "uint256",
|
463
|
-
"name": "premiumPaidAmount",
|
464
|
-
"type": "uint256"
|
465
|
-
},
|
466
|
-
{
|
467
|
-
"internalType": "Seconds",
|
468
|
-
"name": "lifetime",
|
469
|
-
"type": "uint40"
|
470
|
-
},
|
471
|
-
{
|
472
|
-
"internalType": "bytes",
|
473
|
-
"name": "applicationData",
|
474
|
-
"type": "bytes"
|
475
|
-
},
|
476
|
-
{
|
477
|
-
"internalType": "bytes",
|
478
|
-
"name": "policyData",
|
479
|
-
"type": "bytes"
|
480
|
-
},
|
481
|
-
{
|
482
|
-
"internalType": "uint16",
|
483
|
-
"name": "claimsCount",
|
484
|
-
"type": "uint16"
|
485
|
-
},
|
486
|
-
{
|
487
|
-
"internalType": "uint16",
|
488
|
-
"name": "openClaimsCount",
|
489
|
-
"type": "uint16"
|
490
|
-
},
|
491
|
-
{
|
492
|
-
"internalType": "uint256",
|
493
|
-
"name": "payoutAmount",
|
494
|
-
"type": "uint256"
|
495
|
-
},
|
496
|
-
{
|
497
|
-
"internalType": "Timestamp",
|
498
|
-
"name": "activatedAt",
|
499
|
-
"type": "uint40"
|
500
|
-
},
|
501
|
-
{
|
502
|
-
"internalType": "Timestamp",
|
503
|
-
"name": "expiredAt",
|
504
|
-
"type": "uint40"
|
505
|
-
},
|
506
|
-
{
|
507
|
-
"internalType": "Timestamp",
|
508
|
-
"name": "closedAt",
|
509
|
-
"type": "uint40"
|
510
|
-
}
|
511
|
-
],
|
512
|
-
"internalType": "struct IPolicy.PolicyInfo",
|
513
|
-
"name": "policy",
|
514
|
-
"type": "tuple"
|
515
|
-
}
|
516
|
-
],
|
517
|
-
"name": "createApplication",
|
518
|
-
"outputs": [],
|
519
|
-
"stateMutability": "nonpayable",
|
520
|
-
"type": "function"
|
521
|
-
},
|
522
|
-
{
|
523
|
-
"inputs": [
|
524
|
-
{
|
525
|
-
"internalType": "NftId",
|
526
|
-
"name": "bundleNftId",
|
527
|
-
"type": "uint96"
|
528
|
-
},
|
361
|
+
"inputs": [],
|
362
|
+
"name": "getInitialInfo",
|
363
|
+
"outputs": [
|
529
364
|
{
|
530
365
|
"components": [
|
531
366
|
{
|
532
367
|
"internalType": "NftId",
|
533
|
-
"name": "
|
368
|
+
"name": "nftId",
|
534
369
|
"type": "uint96"
|
535
370
|
},
|
536
|
-
{
|
537
|
-
"components": [
|
538
|
-
{
|
539
|
-
"internalType": "UFixed",
|
540
|
-
"name": "fractionalFee",
|
541
|
-
"type": "uint256"
|
542
|
-
},
|
543
|
-
{
|
544
|
-
"internalType": "uint256",
|
545
|
-
"name": "fixedFee",
|
546
|
-
"type": "uint256"
|
547
|
-
}
|
548
|
-
],
|
549
|
-
"internalType": "struct Fee",
|
550
|
-
"name": "fee",
|
551
|
-
"type": "tuple"
|
552
|
-
},
|
553
|
-
{
|
554
|
-
"internalType": "bytes",
|
555
|
-
"name": "filter",
|
556
|
-
"type": "bytes"
|
557
|
-
},
|
558
|
-
{
|
559
|
-
"internalType": "uint256",
|
560
|
-
"name": "capitalAmount",
|
561
|
-
"type": "uint256"
|
562
|
-
},
|
563
|
-
{
|
564
|
-
"internalType": "uint256",
|
565
|
-
"name": "lockedAmount",
|
566
|
-
"type": "uint256"
|
567
|
-
},
|
568
|
-
{
|
569
|
-
"internalType": "uint256",
|
570
|
-
"name": "balanceAmount",
|
571
|
-
"type": "uint256"
|
572
|
-
},
|
573
|
-
{
|
574
|
-
"internalType": "Seconds",
|
575
|
-
"name": "lifetime",
|
576
|
-
"type": "uint40"
|
577
|
-
},
|
578
|
-
{
|
579
|
-
"internalType": "Timestamp",
|
580
|
-
"name": "expiredAt",
|
581
|
-
"type": "uint40"
|
582
|
-
},
|
583
|
-
{
|
584
|
-
"internalType": "Timestamp",
|
585
|
-
"name": "closedAt",
|
586
|
-
"type": "uint40"
|
587
|
-
}
|
588
|
-
],
|
589
|
-
"internalType": "struct IBundle.BundleInfo",
|
590
|
-
"name": "bundle",
|
591
|
-
"type": "tuple"
|
592
|
-
}
|
593
|
-
],
|
594
|
-
"name": "createBundle",
|
595
|
-
"outputs": [],
|
596
|
-
"stateMutability": "nonpayable",
|
597
|
-
"type": "function"
|
598
|
-
},
|
599
|
-
{
|
600
|
-
"inputs": [
|
601
|
-
{
|
602
|
-
"internalType": "NftId",
|
603
|
-
"name": "policyNftId",
|
604
|
-
"type": "uint96"
|
605
|
-
},
|
606
|
-
{
|
607
|
-
"internalType": "ClaimId",
|
608
|
-
"name": "claimId",
|
609
|
-
"type": "uint16"
|
610
|
-
},
|
611
|
-
{
|
612
|
-
"components": [
|
613
|
-
{
|
614
|
-
"internalType": "uint256",
|
615
|
-
"name": "claimAmount",
|
616
|
-
"type": "uint256"
|
617
|
-
},
|
618
|
-
{
|
619
|
-
"internalType": "uint256",
|
620
|
-
"name": "paidAmount",
|
621
|
-
"type": "uint256"
|
622
|
-
},
|
623
|
-
{
|
624
|
-
"internalType": "bytes",
|
625
|
-
"name": "data",
|
626
|
-
"type": "bytes"
|
627
|
-
},
|
628
|
-
{
|
629
|
-
"internalType": "Timestamp",
|
630
|
-
"name": "closedAt",
|
631
|
-
"type": "uint40"
|
632
|
-
}
|
633
|
-
],
|
634
|
-
"internalType": "struct IPolicy.ClaimInfo",
|
635
|
-
"name": "claim",
|
636
|
-
"type": "tuple"
|
637
|
-
}
|
638
|
-
],
|
639
|
-
"name": "createClaim",
|
640
|
-
"outputs": [],
|
641
|
-
"stateMutability": "nonpayable",
|
642
|
-
"type": "function"
|
643
|
-
},
|
644
|
-
{
|
645
|
-
"inputs": [
|
646
|
-
{
|
647
|
-
"internalType": "NftId",
|
648
|
-
"name": "distributionNftId",
|
649
|
-
"type": "uint96"
|
650
|
-
},
|
651
|
-
{
|
652
|
-
"components": [
|
653
371
|
{
|
654
372
|
"internalType": "NftId",
|
655
|
-
"name": "
|
373
|
+
"name": "parentNftId",
|
656
374
|
"type": "uint96"
|
657
375
|
},
|
658
376
|
{
|
659
|
-
"internalType": "
|
660
|
-
"name": "
|
661
|
-
"type": "
|
662
|
-
},
|
663
|
-
{
|
664
|
-
"components": [
|
665
|
-
{
|
666
|
-
"internalType": "UFixed",
|
667
|
-
"name": "fractionalFee",
|
668
|
-
"type": "uint256"
|
669
|
-
},
|
670
|
-
{
|
671
|
-
"internalType": "uint256",
|
672
|
-
"name": "fixedFee",
|
673
|
-
"type": "uint256"
|
674
|
-
}
|
675
|
-
],
|
676
|
-
"internalType": "struct Fee",
|
677
|
-
"name": "minDistributionOwnerFee",
|
678
|
-
"type": "tuple"
|
679
|
-
},
|
680
|
-
{
|
681
|
-
"components": [
|
682
|
-
{
|
683
|
-
"internalType": "UFixed",
|
684
|
-
"name": "fractionalFee",
|
685
|
-
"type": "uint256"
|
686
|
-
},
|
687
|
-
{
|
688
|
-
"internalType": "uint256",
|
689
|
-
"name": "fixedFee",
|
690
|
-
"type": "uint256"
|
691
|
-
}
|
692
|
-
],
|
693
|
-
"internalType": "struct Fee",
|
694
|
-
"name": "distributionFee",
|
695
|
-
"type": "tuple"
|
696
|
-
},
|
697
|
-
{
|
698
|
-
"internalType": "address",
|
699
|
-
"name": "wallet",
|
700
|
-
"type": "address"
|
701
|
-
},
|
702
|
-
{
|
703
|
-
"internalType": "uint256",
|
704
|
-
"name": "sumDistributionOwnerFees",
|
705
|
-
"type": "uint256"
|
706
|
-
}
|
707
|
-
],
|
708
|
-
"internalType": "struct ISetup.DistributionSetupInfo",
|
709
|
-
"name": "setup",
|
710
|
-
"type": "tuple"
|
711
|
-
}
|
712
|
-
],
|
713
|
-
"name": "createDistributionSetup",
|
714
|
-
"outputs": [],
|
715
|
-
"stateMutability": "nonpayable",
|
716
|
-
"type": "function"
|
717
|
-
},
|
718
|
-
{
|
719
|
-
"inputs": [
|
720
|
-
{
|
721
|
-
"internalType": "NftId",
|
722
|
-
"name": "nftId",
|
723
|
-
"type": "uint96"
|
724
|
-
},
|
725
|
-
{
|
726
|
-
"components": [
|
727
|
-
{
|
728
|
-
"internalType": "DistributorType",
|
729
|
-
"name": "distributorType",
|
730
|
-
"type": "bytes8"
|
731
|
-
},
|
732
|
-
{
|
733
|
-
"internalType": "bool",
|
734
|
-
"name": "active",
|
735
|
-
"type": "bool"
|
736
|
-
},
|
737
|
-
{
|
738
|
-
"internalType": "bytes",
|
739
|
-
"name": "data",
|
740
|
-
"type": "bytes"
|
741
|
-
},
|
742
|
-
{
|
743
|
-
"internalType": "uint256",
|
744
|
-
"name": "sumCommisions",
|
745
|
-
"type": "uint256"
|
746
|
-
},
|
747
|
-
{
|
748
|
-
"internalType": "uint256",
|
749
|
-
"name": "numPoliciesSold",
|
750
|
-
"type": "uint256"
|
751
|
-
}
|
752
|
-
],
|
753
|
-
"internalType": "struct IDistribution.DistributorInfo",
|
754
|
-
"name": "info",
|
755
|
-
"type": "tuple"
|
756
|
-
}
|
757
|
-
],
|
758
|
-
"name": "createDistributor",
|
759
|
-
"outputs": [],
|
760
|
-
"stateMutability": "nonpayable",
|
761
|
-
"type": "function"
|
762
|
-
},
|
763
|
-
{
|
764
|
-
"inputs": [
|
765
|
-
{
|
766
|
-
"internalType": "Key32",
|
767
|
-
"name": "distributorKey",
|
768
|
-
"type": "bytes32"
|
769
|
-
},
|
770
|
-
{
|
771
|
-
"components": [
|
772
|
-
{
|
773
|
-
"internalType": "string",
|
774
|
-
"name": "name",
|
775
|
-
"type": "string"
|
776
|
-
},
|
777
|
-
{
|
778
|
-
"internalType": "UFixed",
|
779
|
-
"name": "minDiscountPercentage",
|
780
|
-
"type": "uint256"
|
781
|
-
},
|
782
|
-
{
|
783
|
-
"internalType": "UFixed",
|
784
|
-
"name": "maxDiscountPercentage",
|
785
|
-
"type": "uint256"
|
786
|
-
},
|
787
|
-
{
|
788
|
-
"internalType": "UFixed",
|
789
|
-
"name": "commissionPercentage",
|
790
|
-
"type": "uint256"
|
791
|
-
},
|
792
|
-
{
|
793
|
-
"internalType": "uint32",
|
794
|
-
"name": "maxReferralCount",
|
795
|
-
"type": "uint32"
|
796
|
-
},
|
797
|
-
{
|
798
|
-
"internalType": "uint32",
|
799
|
-
"name": "maxReferralLifetime",
|
800
|
-
"type": "uint32"
|
801
|
-
},
|
802
|
-
{
|
803
|
-
"internalType": "bool",
|
804
|
-
"name": "allowSelfReferrals",
|
805
|
-
"type": "bool"
|
377
|
+
"internalType": "ObjectType",
|
378
|
+
"name": "objectType",
|
379
|
+
"type": "uint8"
|
806
380
|
},
|
807
381
|
{
|
808
382
|
"internalType": "bool",
|
809
|
-
"name": "
|
383
|
+
"name": "isInterceptor",
|
810
384
|
"type": "bool"
|
811
385
|
},
|
812
386
|
{
|
813
|
-
"internalType": "
|
814
|
-
"name": "
|
815
|
-
"type": "
|
816
|
-
}
|
817
|
-
],
|
818
|
-
"internalType": "struct IDistribution.DistributorTypeInfo",
|
819
|
-
"name": "info",
|
820
|
-
"type": "tuple"
|
821
|
-
}
|
822
|
-
],
|
823
|
-
"name": "createDistributorType",
|
824
|
-
"outputs": [],
|
825
|
-
"stateMutability": "nonpayable",
|
826
|
-
"type": "function"
|
827
|
-
},
|
828
|
-
{
|
829
|
-
"inputs": [
|
830
|
-
{
|
831
|
-
"internalType": "NftId",
|
832
|
-
"name": "policyNftId",
|
833
|
-
"type": "uint96"
|
834
|
-
},
|
835
|
-
{
|
836
|
-
"internalType": "NumberId",
|
837
|
-
"name": "payoutId",
|
838
|
-
"type": "uint32"
|
839
|
-
},
|
840
|
-
{
|
841
|
-
"components": [
|
842
|
-
{
|
843
|
-
"internalType": "ClaimId",
|
844
|
-
"name": "claimId",
|
845
|
-
"type": "uint16"
|
846
|
-
},
|
847
|
-
{
|
848
|
-
"internalType": "uint256",
|
849
|
-
"name": "amount",
|
850
|
-
"type": "uint256"
|
851
|
-
},
|
852
|
-
{
|
853
|
-
"internalType": "bytes",
|
854
|
-
"name": "data",
|
855
|
-
"type": "bytes"
|
856
|
-
},
|
857
|
-
{
|
858
|
-
"internalType": "Timestamp",
|
859
|
-
"name": "paidAt",
|
860
|
-
"type": "uint40"
|
861
|
-
}
|
862
|
-
],
|
863
|
-
"internalType": "struct IPolicy.PayoutInfo",
|
864
|
-
"name": "payout",
|
865
|
-
"type": "tuple"
|
866
|
-
}
|
867
|
-
],
|
868
|
-
"name": "createPayout",
|
869
|
-
"outputs": [],
|
870
|
-
"stateMutability": "nonpayable",
|
871
|
-
"type": "function"
|
872
|
-
},
|
873
|
-
{
|
874
|
-
"inputs": [
|
875
|
-
{
|
876
|
-
"internalType": "NftId",
|
877
|
-
"name": "poolNftId",
|
878
|
-
"type": "uint96"
|
879
|
-
},
|
880
|
-
{
|
881
|
-
"components": [
|
882
|
-
{
|
883
|
-
"internalType": "string",
|
884
|
-
"name": "name",
|
885
|
-
"type": "string"
|
886
|
-
},
|
887
|
-
{
|
888
|
-
"internalType": "contract IERC20Metadata",
|
889
|
-
"name": "token",
|
890
|
-
"type": "address"
|
891
|
-
},
|
892
|
-
{
|
893
|
-
"internalType": "contract TokenHandler",
|
894
|
-
"name": "tokenHandler",
|
895
|
-
"type": "address"
|
896
|
-
},
|
897
|
-
{
|
898
|
-
"internalType": "address",
|
899
|
-
"name": "wallet",
|
900
|
-
"type": "address"
|
901
|
-
},
|
902
|
-
{
|
903
|
-
"internalType": "bytes",
|
904
|
-
"name": "data",
|
905
|
-
"type": "bytes"
|
906
|
-
}
|
907
|
-
],
|
908
|
-
"internalType": "struct IComponents.ComponentInfo",
|
909
|
-
"name": "info",
|
910
|
-
"type": "tuple"
|
911
|
-
}
|
912
|
-
],
|
913
|
-
"name": "createPoolSetup",
|
914
|
-
"outputs": [],
|
915
|
-
"stateMutability": "nonpayable",
|
916
|
-
"type": "function"
|
917
|
-
},
|
918
|
-
{
|
919
|
-
"inputs": [
|
920
|
-
{
|
921
|
-
"internalType": "NftId",
|
922
|
-
"name": "productNftId",
|
923
|
-
"type": "uint96"
|
924
|
-
},
|
925
|
-
{
|
926
|
-
"components": [
|
927
|
-
{
|
928
|
-
"internalType": "contract IERC20Metadata",
|
929
|
-
"name": "token",
|
930
|
-
"type": "address"
|
931
|
-
},
|
932
|
-
{
|
933
|
-
"internalType": "contract TokenHandler",
|
934
|
-
"name": "tokenHandler",
|
935
|
-
"type": "address"
|
936
|
-
},
|
937
|
-
{
|
938
|
-
"internalType": "NftId",
|
939
|
-
"name": "distributionNftId",
|
940
|
-
"type": "uint96"
|
941
|
-
},
|
942
|
-
{
|
943
|
-
"internalType": "NftId",
|
944
|
-
"name": "poolNftId",
|
945
|
-
"type": "uint96"
|
946
|
-
},
|
947
|
-
{
|
948
|
-
"components": [
|
949
|
-
{
|
950
|
-
"internalType": "UFixed",
|
951
|
-
"name": "fractionalFee",
|
952
|
-
"type": "uint256"
|
953
|
-
},
|
954
|
-
{
|
955
|
-
"internalType": "uint256",
|
956
|
-
"name": "fixedFee",
|
957
|
-
"type": "uint256"
|
958
|
-
}
|
959
|
-
],
|
960
|
-
"internalType": "struct Fee",
|
961
|
-
"name": "productFee",
|
962
|
-
"type": "tuple"
|
963
|
-
},
|
964
|
-
{
|
965
|
-
"components": [
|
966
|
-
{
|
967
|
-
"internalType": "UFixed",
|
968
|
-
"name": "fractionalFee",
|
969
|
-
"type": "uint256"
|
970
|
-
},
|
971
|
-
{
|
972
|
-
"internalType": "uint256",
|
973
|
-
"name": "fixedFee",
|
974
|
-
"type": "uint256"
|
975
|
-
}
|
976
|
-
],
|
977
|
-
"internalType": "struct Fee",
|
978
|
-
"name": "processingFee",
|
979
|
-
"type": "tuple"
|
980
|
-
},
|
981
|
-
{
|
982
|
-
"internalType": "bool",
|
983
|
-
"name": "isIntercepting",
|
984
|
-
"type": "bool"
|
985
|
-
},
|
986
|
-
{
|
987
|
-
"internalType": "address",
|
988
|
-
"name": "wallet",
|
989
|
-
"type": "address"
|
990
|
-
}
|
991
|
-
],
|
992
|
-
"internalType": "struct ISetup.ProductSetupInfo",
|
993
|
-
"name": "setup",
|
994
|
-
"type": "tuple"
|
995
|
-
}
|
996
|
-
],
|
997
|
-
"name": "createProductSetup",
|
998
|
-
"outputs": [],
|
999
|
-
"stateMutability": "nonpayable",
|
1000
|
-
"type": "function"
|
1001
|
-
},
|
1002
|
-
{
|
1003
|
-
"inputs": [
|
1004
|
-
{
|
1005
|
-
"internalType": "Key32",
|
1006
|
-
"name": "referralKey",
|
1007
|
-
"type": "bytes32"
|
1008
|
-
},
|
1009
|
-
{
|
1010
|
-
"components": [
|
1011
|
-
{
|
1012
|
-
"internalType": "NftId",
|
1013
|
-
"name": "distributorNftId",
|
1014
|
-
"type": "uint96"
|
1015
|
-
},
|
1016
|
-
{
|
1017
|
-
"internalType": "string",
|
1018
|
-
"name": "referralCode",
|
1019
|
-
"type": "string"
|
1020
|
-
},
|
1021
|
-
{
|
1022
|
-
"internalType": "UFixed",
|
1023
|
-
"name": "discountPercentage",
|
1024
|
-
"type": "uint256"
|
1025
|
-
},
|
1026
|
-
{
|
1027
|
-
"internalType": "uint32",
|
1028
|
-
"name": "maxReferrals",
|
1029
|
-
"type": "uint32"
|
1030
|
-
},
|
1031
|
-
{
|
1032
|
-
"internalType": "uint32",
|
1033
|
-
"name": "usedReferrals",
|
1034
|
-
"type": "uint32"
|
1035
|
-
},
|
1036
|
-
{
|
1037
|
-
"internalType": "Timestamp",
|
1038
|
-
"name": "expiryAt",
|
1039
|
-
"type": "uint40"
|
1040
|
-
},
|
1041
|
-
{
|
1042
|
-
"internalType": "bytes",
|
1043
|
-
"name": "data",
|
1044
|
-
"type": "bytes"
|
1045
|
-
}
|
1046
|
-
],
|
1047
|
-
"internalType": "struct IDistribution.ReferralInfo",
|
1048
|
-
"name": "referralInfo",
|
1049
|
-
"type": "tuple"
|
1050
|
-
}
|
1051
|
-
],
|
1052
|
-
"name": "createReferral",
|
1053
|
-
"outputs": [],
|
1054
|
-
"stateMutability": "nonpayable",
|
1055
|
-
"type": "function"
|
1056
|
-
},
|
1057
|
-
{
|
1058
|
-
"inputs": [
|
1059
|
-
{
|
1060
|
-
"internalType": "RiskId",
|
1061
|
-
"name": "riskId",
|
1062
|
-
"type": "bytes8"
|
1063
|
-
},
|
1064
|
-
{
|
1065
|
-
"components": [
|
1066
|
-
{
|
1067
|
-
"internalType": "NftId",
|
1068
|
-
"name": "productNftId",
|
1069
|
-
"type": "uint96"
|
1070
|
-
},
|
1071
|
-
{
|
1072
|
-
"internalType": "bytes",
|
1073
|
-
"name": "data",
|
1074
|
-
"type": "bytes"
|
1075
|
-
}
|
1076
|
-
],
|
1077
|
-
"internalType": "struct IRisk.RiskInfo",
|
1078
|
-
"name": "risk",
|
1079
|
-
"type": "tuple"
|
1080
|
-
}
|
1081
|
-
],
|
1082
|
-
"name": "createRisk",
|
1083
|
-
"outputs": [],
|
1084
|
-
"stateMutability": "nonpayable",
|
1085
|
-
"type": "function"
|
1086
|
-
},
|
1087
|
-
{
|
1088
|
-
"inputs": [
|
1089
|
-
{
|
1090
|
-
"internalType": "Key32",
|
1091
|
-
"name": "key32",
|
1092
|
-
"type": "bytes32"
|
1093
|
-
}
|
1094
|
-
],
|
1095
|
-
"name": "exists",
|
1096
|
-
"outputs": [
|
1097
|
-
{
|
1098
|
-
"internalType": "bool",
|
1099
|
-
"name": "",
|
1100
|
-
"type": "bool"
|
1101
|
-
}
|
1102
|
-
],
|
1103
|
-
"stateMutability": "view",
|
1104
|
-
"type": "function"
|
1105
|
-
},
|
1106
|
-
{
|
1107
|
-
"inputs": [
|
1108
|
-
{
|
1109
|
-
"internalType": "Key32",
|
1110
|
-
"name": "key32",
|
1111
|
-
"type": "bytes32"
|
1112
|
-
}
|
1113
|
-
],
|
1114
|
-
"name": "get",
|
1115
|
-
"outputs": [
|
1116
|
-
{
|
1117
|
-
"components": [
|
1118
|
-
{
|
1119
|
-
"components": [
|
1120
|
-
{
|
1121
|
-
"internalType": "ObjectType",
|
1122
|
-
"name": "objectType",
|
1123
|
-
"type": "uint8"
|
1124
|
-
},
|
1125
|
-
{
|
1126
|
-
"internalType": "StateId",
|
1127
|
-
"name": "state",
|
1128
|
-
"type": "uint8"
|
1129
|
-
},
|
1130
|
-
{
|
1131
|
-
"internalType": "address",
|
1132
|
-
"name": "updatedBy",
|
1133
|
-
"type": "address"
|
1134
|
-
},
|
1135
|
-
{
|
1136
|
-
"internalType": "Blocknumber",
|
1137
|
-
"name": "updatedIn",
|
1138
|
-
"type": "uint32"
|
1139
|
-
},
|
1140
|
-
{
|
1141
|
-
"internalType": "Blocknumber",
|
1142
|
-
"name": "createdIn",
|
1143
|
-
"type": "uint32"
|
1144
|
-
}
|
1145
|
-
],
|
1146
|
-
"internalType": "struct IKeyValueStore.Metadata",
|
1147
|
-
"name": "metadata",
|
1148
|
-
"type": "tuple"
|
1149
|
-
},
|
1150
|
-
{
|
1151
|
-
"internalType": "bytes",
|
1152
|
-
"name": "data",
|
1153
|
-
"type": "bytes"
|
1154
|
-
}
|
1155
|
-
],
|
1156
|
-
"internalType": "struct IKeyValueStore.Value",
|
1157
|
-
"name": "value",
|
1158
|
-
"type": "tuple"
|
1159
|
-
}
|
1160
|
-
],
|
1161
|
-
"stateMutability": "view",
|
1162
|
-
"type": "function"
|
1163
|
-
},
|
1164
|
-
{
|
1165
|
-
"inputs": [],
|
1166
|
-
"name": "getBundleManager",
|
1167
|
-
"outputs": [
|
1168
|
-
{
|
1169
|
-
"internalType": "contract BundleManager",
|
1170
|
-
"name": "",
|
1171
|
-
"type": "address"
|
1172
|
-
}
|
1173
|
-
],
|
1174
|
-
"stateMutability": "view",
|
1175
|
-
"type": "function"
|
1176
|
-
},
|
1177
|
-
{
|
1178
|
-
"inputs": [],
|
1179
|
-
"name": "getBundleService",
|
1180
|
-
"outputs": [
|
1181
|
-
{
|
1182
|
-
"internalType": "contract IBundleService",
|
1183
|
-
"name": "",
|
1184
|
-
"type": "address"
|
1185
|
-
}
|
1186
|
-
],
|
1187
|
-
"stateMutability": "view",
|
1188
|
-
"type": "function"
|
1189
|
-
},
|
1190
|
-
{
|
1191
|
-
"inputs": [
|
1192
|
-
{
|
1193
|
-
"internalType": "Key32",
|
1194
|
-
"name": "key32",
|
1195
|
-
"type": "bytes32"
|
1196
|
-
}
|
1197
|
-
],
|
1198
|
-
"name": "getData",
|
1199
|
-
"outputs": [
|
1200
|
-
{
|
1201
|
-
"internalType": "bytes",
|
1202
|
-
"name": "data",
|
1203
|
-
"type": "bytes"
|
1204
|
-
}
|
1205
|
-
],
|
1206
|
-
"stateMutability": "view",
|
1207
|
-
"type": "function"
|
1208
|
-
},
|
1209
|
-
{
|
1210
|
-
"inputs": [],
|
1211
|
-
"name": "getDistributionService",
|
1212
|
-
"outputs": [
|
1213
|
-
{
|
1214
|
-
"internalType": "contract IDistributionService",
|
1215
|
-
"name": "",
|
1216
|
-
"type": "address"
|
1217
|
-
}
|
1218
|
-
],
|
1219
|
-
"stateMutability": "view",
|
1220
|
-
"type": "function"
|
1221
|
-
},
|
1222
|
-
{
|
1223
|
-
"inputs": [],
|
1224
|
-
"name": "getInitialInfo",
|
1225
|
-
"outputs": [
|
1226
|
-
{
|
1227
|
-
"components": [
|
1228
|
-
{
|
1229
|
-
"internalType": "NftId",
|
1230
|
-
"name": "nftId",
|
1231
|
-
"type": "uint96"
|
1232
|
-
},
|
1233
|
-
{
|
1234
|
-
"internalType": "NftId",
|
1235
|
-
"name": "parentNftId",
|
1236
|
-
"type": "uint96"
|
1237
|
-
},
|
1238
|
-
{
|
1239
|
-
"internalType": "ObjectType",
|
1240
|
-
"name": "objectType",
|
1241
|
-
"type": "uint8"
|
1242
|
-
},
|
1243
|
-
{
|
1244
|
-
"internalType": "bool",
|
1245
|
-
"name": "isInterceptor",
|
1246
|
-
"type": "bool"
|
1247
|
-
},
|
1248
|
-
{
|
1249
|
-
"internalType": "address",
|
1250
|
-
"name": "objectAddress",
|
1251
|
-
"type": "address"
|
1252
|
-
},
|
1253
|
-
{
|
1254
|
-
"internalType": "address",
|
1255
|
-
"name": "initialOwner",
|
1256
|
-
"type": "address"
|
1257
|
-
},
|
1258
|
-
{
|
1259
|
-
"internalType": "bytes",
|
1260
|
-
"name": "data",
|
1261
|
-
"type": "bytes"
|
1262
|
-
}
|
1263
|
-
],
|
1264
|
-
"internalType": "struct IRegistry.ObjectInfo",
|
1265
|
-
"name": "info",
|
1266
|
-
"type": "tuple"
|
1267
|
-
}
|
1268
|
-
],
|
1269
|
-
"stateMutability": "view",
|
1270
|
-
"type": "function"
|
1271
|
-
},
|
1272
|
-
{
|
1273
|
-
"inputs": [
|
1274
|
-
{
|
1275
|
-
"internalType": "ObjectType",
|
1276
|
-
"name": "objectType",
|
1277
|
-
"type": "uint8"
|
1278
|
-
}
|
1279
|
-
],
|
1280
|
-
"name": "getInitialState",
|
1281
|
-
"outputs": [
|
1282
|
-
{
|
1283
|
-
"internalType": "StateId",
|
1284
|
-
"name": "",
|
1285
|
-
"type": "uint8"
|
1286
|
-
}
|
1287
|
-
],
|
1288
|
-
"stateMutability": "view",
|
1289
|
-
"type": "function"
|
1290
|
-
},
|
1291
|
-
{
|
1292
|
-
"inputs": [],
|
1293
|
-
"name": "getInstanceAccessManager",
|
1294
|
-
"outputs": [
|
1295
|
-
{
|
1296
|
-
"internalType": "contract InstanceAccessManager",
|
1297
|
-
"name": "",
|
1298
|
-
"type": "address"
|
1299
|
-
}
|
1300
|
-
],
|
1301
|
-
"stateMutability": "view",
|
1302
|
-
"type": "function"
|
1303
|
-
},
|
1304
|
-
{
|
1305
|
-
"inputs": [],
|
1306
|
-
"name": "getInstanceReader",
|
1307
|
-
"outputs": [
|
1308
|
-
{
|
1309
|
-
"internalType": "contract InstanceReader",
|
1310
|
-
"name": "",
|
1311
|
-
"type": "address"
|
1312
|
-
}
|
1313
|
-
],
|
1314
|
-
"stateMutability": "view",
|
1315
|
-
"type": "function"
|
1316
|
-
},
|
1317
|
-
{
|
1318
|
-
"inputs": [],
|
1319
|
-
"name": "getMajorVersion",
|
1320
|
-
"outputs": [
|
1321
|
-
{
|
1322
|
-
"internalType": "VersionPart",
|
1323
|
-
"name": "majorVersion",
|
1324
|
-
"type": "uint8"
|
1325
|
-
}
|
1326
|
-
],
|
1327
|
-
"stateMutability": "pure",
|
1328
|
-
"type": "function"
|
1329
|
-
},
|
1330
|
-
{
|
1331
|
-
"inputs": [
|
1332
|
-
{
|
1333
|
-
"internalType": "Key32",
|
1334
|
-
"name": "key32",
|
1335
|
-
"type": "bytes32"
|
1336
|
-
}
|
1337
|
-
],
|
1338
|
-
"name": "getMetadata",
|
1339
|
-
"outputs": [
|
1340
|
-
{
|
1341
|
-
"components": [
|
1342
|
-
{
|
1343
|
-
"internalType": "ObjectType",
|
1344
|
-
"name": "objectType",
|
1345
|
-
"type": "uint8"
|
1346
|
-
},
|
1347
|
-
{
|
1348
|
-
"internalType": "StateId",
|
1349
|
-
"name": "state",
|
1350
|
-
"type": "uint8"
|
1351
|
-
},
|
1352
|
-
{
|
1353
|
-
"internalType": "address",
|
1354
|
-
"name": "updatedBy",
|
1355
|
-
"type": "address"
|
1356
|
-
},
|
1357
|
-
{
|
1358
|
-
"internalType": "Blocknumber",
|
1359
|
-
"name": "updatedIn",
|
1360
|
-
"type": "uint32"
|
1361
|
-
},
|
1362
|
-
{
|
1363
|
-
"internalType": "Blocknumber",
|
1364
|
-
"name": "createdIn",
|
1365
|
-
"type": "uint32"
|
1366
|
-
}
|
1367
|
-
],
|
1368
|
-
"internalType": "struct IKeyValueStore.Metadata",
|
1369
|
-
"name": "metadata",
|
1370
|
-
"type": "tuple"
|
1371
|
-
}
|
1372
|
-
],
|
1373
|
-
"stateMutability": "view",
|
1374
|
-
"type": "function"
|
1375
|
-
},
|
1376
|
-
{
|
1377
|
-
"inputs": [],
|
1378
|
-
"name": "getNftId",
|
1379
|
-
"outputs": [
|
1380
|
-
{
|
1381
|
-
"internalType": "NftId",
|
1382
|
-
"name": "",
|
1383
|
-
"type": "uint96"
|
1384
|
-
}
|
1385
|
-
],
|
1386
|
-
"stateMutability": "view",
|
1387
|
-
"type": "function"
|
1388
|
-
},
|
1389
|
-
{
|
1390
|
-
"inputs": [],
|
1391
|
-
"name": "getOwner",
|
1392
|
-
"outputs": [
|
1393
|
-
{
|
1394
|
-
"internalType": "address",
|
1395
|
-
"name": "",
|
1396
|
-
"type": "address"
|
1397
|
-
}
|
1398
|
-
],
|
1399
|
-
"stateMutability": "view",
|
1400
|
-
"type": "function"
|
1401
|
-
},
|
1402
|
-
{
|
1403
|
-
"inputs": [],
|
1404
|
-
"name": "getPolicyService",
|
1405
|
-
"outputs": [
|
1406
|
-
{
|
1407
|
-
"internalType": "contract IPolicyService",
|
1408
|
-
"name": "",
|
1409
|
-
"type": "address"
|
1410
|
-
}
|
1411
|
-
],
|
1412
|
-
"stateMutability": "view",
|
1413
|
-
"type": "function"
|
1414
|
-
},
|
1415
|
-
{
|
1416
|
-
"inputs": [],
|
1417
|
-
"name": "getPoolService",
|
1418
|
-
"outputs": [
|
1419
|
-
{
|
1420
|
-
"internalType": "contract IPoolService",
|
1421
|
-
"name": "",
|
1422
|
-
"type": "address"
|
1423
|
-
}
|
1424
|
-
],
|
1425
|
-
"stateMutability": "view",
|
1426
|
-
"type": "function"
|
1427
|
-
},
|
1428
|
-
{
|
1429
|
-
"inputs": [],
|
1430
|
-
"name": "getProductService",
|
1431
|
-
"outputs": [
|
1432
|
-
{
|
1433
|
-
"internalType": "contract IProductService",
|
1434
|
-
"name": "",
|
1435
|
-
"type": "address"
|
1436
|
-
}
|
1437
|
-
],
|
1438
|
-
"stateMutability": "view",
|
1439
|
-
"type": "function"
|
1440
|
-
},
|
1441
|
-
{
|
1442
|
-
"inputs": [],
|
1443
|
-
"name": "getRegistry",
|
1444
|
-
"outputs": [
|
1445
|
-
{
|
1446
|
-
"internalType": "contract IRegistry",
|
1447
|
-
"name": "",
|
1448
|
-
"type": "address"
|
1449
|
-
}
|
1450
|
-
],
|
1451
|
-
"stateMutability": "view",
|
1452
|
-
"type": "function"
|
1453
|
-
},
|
1454
|
-
{
|
1455
|
-
"inputs": [],
|
1456
|
-
"name": "getRegistryAddress",
|
1457
|
-
"outputs": [
|
1458
|
-
{
|
1459
|
-
"internalType": "address",
|
1460
|
-
"name": "",
|
1461
|
-
"type": "address"
|
1462
|
-
}
|
1463
|
-
],
|
1464
|
-
"stateMutability": "view",
|
1465
|
-
"type": "function"
|
1466
|
-
},
|
1467
|
-
{
|
1468
|
-
"inputs": [
|
1469
|
-
{
|
1470
|
-
"internalType": "Key32",
|
1471
|
-
"name": "key32",
|
1472
|
-
"type": "bytes32"
|
1473
|
-
}
|
1474
|
-
],
|
1475
|
-
"name": "getState",
|
1476
|
-
"outputs": [
|
1477
|
-
{
|
1478
|
-
"internalType": "StateId",
|
1479
|
-
"name": "state",
|
1480
|
-
"type": "uint8"
|
1481
|
-
}
|
1482
|
-
],
|
1483
|
-
"stateMutability": "view",
|
1484
|
-
"type": "function"
|
1485
|
-
},
|
1486
|
-
{
|
1487
|
-
"inputs": [
|
1488
|
-
{
|
1489
|
-
"internalType": "ObjectType",
|
1490
|
-
"name": "objectType",
|
1491
|
-
"type": "uint8"
|
1492
|
-
}
|
1493
|
-
],
|
1494
|
-
"name": "hasLifecycle",
|
1495
|
-
"outputs": [
|
1496
|
-
{
|
1497
|
-
"internalType": "bool",
|
1498
|
-
"name": "",
|
1499
|
-
"type": "bool"
|
1500
|
-
}
|
1501
|
-
],
|
1502
|
-
"stateMutability": "view",
|
1503
|
-
"type": "function"
|
1504
|
-
},
|
1505
|
-
{
|
1506
|
-
"inputs": [
|
1507
|
-
{
|
1508
|
-
"internalType": "address",
|
1509
|
-
"name": "authority",
|
1510
|
-
"type": "address"
|
1511
|
-
},
|
1512
|
-
{
|
1513
|
-
"internalType": "address",
|
1514
|
-
"name": "registryAddress",
|
1515
|
-
"type": "address"
|
1516
|
-
},
|
1517
|
-
{
|
1518
|
-
"internalType": "address",
|
1519
|
-
"name": "initialOwner",
|
1520
|
-
"type": "address"
|
1521
|
-
}
|
1522
|
-
],
|
1523
|
-
"name": "initialize",
|
1524
|
-
"outputs": [],
|
1525
|
-
"stateMutability": "nonpayable",
|
1526
|
-
"type": "function"
|
1527
|
-
},
|
1528
|
-
{
|
1529
|
-
"inputs": [],
|
1530
|
-
"name": "initializeERC165",
|
1531
|
-
"outputs": [],
|
1532
|
-
"stateMutability": "nonpayable",
|
1533
|
-
"type": "function"
|
1534
|
-
},
|
1535
|
-
{
|
1536
|
-
"inputs": [],
|
1537
|
-
"name": "initializeLifecycle",
|
1538
|
-
"outputs": [],
|
1539
|
-
"stateMutability": "nonpayable",
|
1540
|
-
"type": "function"
|
1541
|
-
},
|
1542
|
-
{
|
1543
|
-
"inputs": [
|
1544
|
-
{
|
1545
|
-
"internalType": "address",
|
1546
|
-
"name": "initialOwner",
|
1547
|
-
"type": "address"
|
1548
|
-
},
|
1549
|
-
{
|
1550
|
-
"internalType": "address",
|
1551
|
-
"name": "registryAddress",
|
1552
|
-
"type": "address"
|
1553
|
-
}
|
1554
|
-
],
|
1555
|
-
"name": "initializeNftOwnable",
|
1556
|
-
"outputs": [],
|
1557
|
-
"stateMutability": "nonpayable",
|
1558
|
-
"type": "function"
|
1559
|
-
},
|
1560
|
-
{
|
1561
|
-
"inputs": [
|
1562
|
-
{
|
1563
|
-
"internalType": "address",
|
1564
|
-
"name": "registryAddress",
|
1565
|
-
"type": "address"
|
1566
|
-
},
|
1567
|
-
{
|
1568
|
-
"internalType": "NftId",
|
1569
|
-
"name": "parentNftId",
|
1570
|
-
"type": "uint96"
|
1571
|
-
},
|
1572
|
-
{
|
1573
|
-
"internalType": "ObjectType",
|
1574
|
-
"name": "objectType",
|
1575
|
-
"type": "uint8"
|
1576
|
-
},
|
1577
|
-
{
|
1578
|
-
"internalType": "bool",
|
1579
|
-
"name": "isInterceptor",
|
1580
|
-
"type": "bool"
|
1581
|
-
},
|
1582
|
-
{
|
1583
|
-
"internalType": "address",
|
1584
|
-
"name": "initialOwner",
|
1585
|
-
"type": "address"
|
1586
|
-
},
|
1587
|
-
{
|
1588
|
-
"internalType": "bytes",
|
1589
|
-
"name": "registryData",
|
1590
|
-
"type": "bytes"
|
1591
|
-
}
|
1592
|
-
],
|
1593
|
-
"name": "initializeRegisterable",
|
1594
|
-
"outputs": [],
|
1595
|
-
"stateMutability": "nonpayable",
|
1596
|
-
"type": "function"
|
1597
|
-
},
|
1598
|
-
{
|
1599
|
-
"inputs": [
|
1600
|
-
{
|
1601
|
-
"internalType": "address",
|
1602
|
-
"name": "registryAddress",
|
1603
|
-
"type": "address"
|
1604
|
-
}
|
1605
|
-
],
|
1606
|
-
"name": "initializeRegistryLinked",
|
1607
|
-
"outputs": [],
|
1608
|
-
"stateMutability": "nonpayable",
|
1609
|
-
"type": "function"
|
1610
|
-
},
|
1611
|
-
{
|
1612
|
-
"inputs": [],
|
1613
|
-
"name": "isConsumingScheduledOp",
|
1614
|
-
"outputs": [
|
1615
|
-
{
|
1616
|
-
"internalType": "bytes4",
|
1617
|
-
"name": "",
|
1618
|
-
"type": "bytes4"
|
1619
|
-
}
|
1620
|
-
],
|
1621
|
-
"stateMutability": "view",
|
1622
|
-
"type": "function"
|
1623
|
-
},
|
1624
|
-
{
|
1625
|
-
"inputs": [
|
1626
|
-
{
|
1627
|
-
"internalType": "ObjectType",
|
1628
|
-
"name": "objectType",
|
1629
|
-
"type": "uint8"
|
1630
|
-
},
|
1631
|
-
{
|
1632
|
-
"internalType": "StateId",
|
1633
|
-
"name": "fromId",
|
1634
|
-
"type": "uint8"
|
1635
|
-
},
|
1636
|
-
{
|
1637
|
-
"internalType": "StateId",
|
1638
|
-
"name": "toId",
|
1639
|
-
"type": "uint8"
|
1640
|
-
}
|
1641
|
-
],
|
1642
|
-
"name": "isValidTransition",
|
1643
|
-
"outputs": [
|
1644
|
-
{
|
1645
|
-
"internalType": "bool",
|
1646
|
-
"name": "",
|
1647
|
-
"type": "bool"
|
1648
|
-
}
|
1649
|
-
],
|
1650
|
-
"stateMutability": "view",
|
1651
|
-
"type": "function"
|
1652
|
-
},
|
1653
|
-
{
|
1654
|
-
"inputs": [],
|
1655
|
-
"name": "linkToRegisteredNftId",
|
1656
|
-
"outputs": [],
|
1657
|
-
"stateMutability": "nonpayable",
|
1658
|
-
"type": "function"
|
1659
|
-
},
|
1660
|
-
{
|
1661
|
-
"inputs": [
|
1662
|
-
{
|
1663
|
-
"internalType": "address",
|
1664
|
-
"name": "to",
|
1665
|
-
"type": "address"
|
1666
|
-
},
|
1667
|
-
{
|
1668
|
-
"internalType": "uint256",
|
1669
|
-
"name": "tokenId",
|
1670
|
-
"type": "uint256"
|
1671
|
-
}
|
1672
|
-
],
|
1673
|
-
"name": "nftMint",
|
1674
|
-
"outputs": [],
|
1675
|
-
"stateMutability": "nonpayable",
|
1676
|
-
"type": "function"
|
1677
|
-
},
|
1678
|
-
{
|
1679
|
-
"inputs": [
|
1680
|
-
{
|
1681
|
-
"internalType": "address",
|
1682
|
-
"name": "from",
|
1683
|
-
"type": "address"
|
1684
|
-
},
|
1685
|
-
{
|
1686
|
-
"internalType": "address",
|
1687
|
-
"name": "to",
|
1688
|
-
"type": "address"
|
1689
|
-
},
|
1690
|
-
{
|
1691
|
-
"internalType": "uint256",
|
1692
|
-
"name": "tokenId",
|
1693
|
-
"type": "uint256"
|
1694
|
-
}
|
1695
|
-
],
|
1696
|
-
"name": "nftTransferFrom",
|
1697
|
-
"outputs": [],
|
1698
|
-
"stateMutability": "nonpayable",
|
1699
|
-
"type": "function"
|
1700
|
-
},
|
1701
|
-
{
|
1702
|
-
"inputs": [
|
1703
|
-
{
|
1704
|
-
"internalType": "bytes4",
|
1705
|
-
"name": "interfaceId",
|
1706
|
-
"type": "bytes4"
|
1707
|
-
}
|
1708
|
-
],
|
1709
|
-
"name": "registerInterface",
|
1710
|
-
"outputs": [],
|
1711
|
-
"stateMutability": "nonpayable",
|
1712
|
-
"type": "function"
|
1713
|
-
},
|
1714
|
-
{
|
1715
|
-
"inputs": [
|
1716
|
-
{
|
1717
|
-
"internalType": "address",
|
1718
|
-
"name": "newAuthority",
|
1719
|
-
"type": "address"
|
1720
|
-
}
|
1721
|
-
],
|
1722
|
-
"name": "setAuthority",
|
1723
|
-
"outputs": [],
|
1724
|
-
"stateMutability": "nonpayable",
|
1725
|
-
"type": "function"
|
1726
|
-
},
|
1727
|
-
{
|
1728
|
-
"inputs": [
|
1729
|
-
{
|
1730
|
-
"internalType": "contract BundleManager",
|
1731
|
-
"name": "bundleManager",
|
1732
|
-
"type": "address"
|
1733
|
-
}
|
1734
|
-
],
|
1735
|
-
"name": "setBundleManager",
|
1736
|
-
"outputs": [],
|
1737
|
-
"stateMutability": "nonpayable",
|
1738
|
-
"type": "function"
|
1739
|
-
},
|
1740
|
-
{
|
1741
|
-
"inputs": [
|
1742
|
-
{
|
1743
|
-
"internalType": "contract InstanceAccessManager",
|
1744
|
-
"name": "accessManager",
|
1745
|
-
"type": "address"
|
1746
|
-
}
|
1747
|
-
],
|
1748
|
-
"name": "setInstanceAccessManager",
|
1749
|
-
"outputs": [],
|
1750
|
-
"stateMutability": "nonpayable",
|
1751
|
-
"type": "function"
|
1752
|
-
},
|
1753
|
-
{
|
1754
|
-
"inputs": [
|
1755
|
-
{
|
1756
|
-
"internalType": "contract InstanceReader",
|
1757
|
-
"name": "instanceReader",
|
1758
|
-
"type": "address"
|
1759
|
-
}
|
1760
|
-
],
|
1761
|
-
"name": "setInstanceReader",
|
1762
|
-
"outputs": [],
|
1763
|
-
"stateMutability": "nonpayable",
|
1764
|
-
"type": "function"
|
1765
|
-
},
|
1766
|
-
{
|
1767
|
-
"inputs": [
|
1768
|
-
{
|
1769
|
-
"internalType": "bytes4",
|
1770
|
-
"name": "interfaceId",
|
1771
|
-
"type": "bytes4"
|
1772
|
-
}
|
1773
|
-
],
|
1774
|
-
"name": "supportsInterface",
|
1775
|
-
"outputs": [
|
1776
|
-
{
|
1777
|
-
"internalType": "bool",
|
1778
|
-
"name": "",
|
1779
|
-
"type": "bool"
|
1780
|
-
}
|
1781
|
-
],
|
1782
|
-
"stateMutability": "view",
|
1783
|
-
"type": "function"
|
1784
|
-
},
|
1785
|
-
{
|
1786
|
-
"inputs": [
|
1787
|
-
{
|
1788
|
-
"internalType": "NftId",
|
1789
|
-
"name": "bundleNftId",
|
1790
|
-
"type": "uint96"
|
1791
|
-
}
|
1792
|
-
],
|
1793
|
-
"name": "toBundleKey32",
|
1794
|
-
"outputs": [
|
1795
|
-
{
|
1796
|
-
"internalType": "Key32",
|
1797
|
-
"name": "",
|
1798
|
-
"type": "bytes32"
|
1799
|
-
}
|
1800
|
-
],
|
1801
|
-
"stateMutability": "pure",
|
1802
|
-
"type": "function"
|
1803
|
-
},
|
1804
|
-
{
|
1805
|
-
"inputs": [
|
1806
|
-
{
|
1807
|
-
"internalType": "NftId",
|
1808
|
-
"name": "distNftId",
|
1809
|
-
"type": "uint96"
|
1810
|
-
}
|
1811
|
-
],
|
1812
|
-
"name": "toDistributionKey32",
|
1813
|
-
"outputs": [
|
1814
|
-
{
|
1815
|
-
"internalType": "Key32",
|
1816
|
-
"name": "",
|
1817
|
-
"type": "bytes32"
|
1818
|
-
}
|
1819
|
-
],
|
1820
|
-
"stateMutability": "pure",
|
1821
|
-
"type": "function"
|
1822
|
-
},
|
1823
|
-
{
|
1824
|
-
"inputs": [
|
1825
|
-
{
|
1826
|
-
"internalType": "NftId",
|
1827
|
-
"name": "distNftId",
|
1828
|
-
"type": "uint96"
|
1829
|
-
}
|
1830
|
-
],
|
1831
|
-
"name": "toDistributorKey32",
|
1832
|
-
"outputs": [
|
1833
|
-
{
|
1834
|
-
"internalType": "Key32",
|
1835
|
-
"name": "",
|
1836
|
-
"type": "bytes32"
|
1837
|
-
}
|
1838
|
-
],
|
1839
|
-
"stateMutability": "pure",
|
1840
|
-
"type": "function"
|
1841
|
-
},
|
1842
|
-
{
|
1843
|
-
"inputs": [
|
1844
|
-
{
|
1845
|
-
"internalType": "NftId",
|
1846
|
-
"name": "distNftId",
|
1847
|
-
"type": "uint96"
|
1848
|
-
}
|
1849
|
-
],
|
1850
|
-
"name": "toDistributorTypeKey32",
|
1851
|
-
"outputs": [
|
1852
|
-
{
|
1853
|
-
"internalType": "Key32",
|
1854
|
-
"name": "",
|
1855
|
-
"type": "bytes32"
|
1856
|
-
}
|
1857
|
-
],
|
1858
|
-
"stateMutability": "pure",
|
1859
|
-
"type": "function"
|
1860
|
-
},
|
1861
|
-
{
|
1862
|
-
"inputs": [
|
1863
|
-
{
|
1864
|
-
"internalType": "ObjectType",
|
1865
|
-
"name": "objectType",
|
1866
|
-
"type": "uint8"
|
1867
|
-
},
|
1868
|
-
{
|
1869
|
-
"internalType": "KeyId",
|
1870
|
-
"name": "id",
|
1871
|
-
"type": "bytes31"
|
1872
|
-
}
|
1873
|
-
],
|
1874
|
-
"name": "toKey32",
|
1875
|
-
"outputs": [
|
1876
|
-
{
|
1877
|
-
"internalType": "Key32",
|
1878
|
-
"name": "",
|
1879
|
-
"type": "bytes32"
|
1880
|
-
}
|
1881
|
-
],
|
1882
|
-
"stateMutability": "pure",
|
1883
|
-
"type": "function"
|
1884
|
-
},
|
1885
|
-
{
|
1886
|
-
"inputs": [
|
1887
|
-
{
|
1888
|
-
"internalType": "NftId",
|
1889
|
-
"name": "policyNftId",
|
1890
|
-
"type": "uint96"
|
1891
|
-
}
|
1892
|
-
],
|
1893
|
-
"name": "toPolicyKey32",
|
1894
|
-
"outputs": [
|
1895
|
-
{
|
1896
|
-
"internalType": "Key32",
|
1897
|
-
"name": "",
|
1898
|
-
"type": "bytes32"
|
1899
|
-
}
|
1900
|
-
],
|
1901
|
-
"stateMutability": "pure",
|
1902
|
-
"type": "function"
|
1903
|
-
},
|
1904
|
-
{
|
1905
|
-
"inputs": [
|
1906
|
-
{
|
1907
|
-
"internalType": "NftId",
|
1908
|
-
"name": "applicationNftId",
|
1909
|
-
"type": "uint96"
|
1910
|
-
},
|
1911
|
-
{
|
1912
|
-
"components": [
|
1913
|
-
{
|
1914
|
-
"internalType": "NftId",
|
1915
|
-
"name": "productNftId",
|
1916
|
-
"type": "uint96"
|
1917
|
-
},
|
1918
|
-
{
|
1919
|
-
"internalType": "NftId",
|
1920
|
-
"name": "bundleNftId",
|
1921
|
-
"type": "uint96"
|
1922
|
-
},
|
1923
|
-
{
|
1924
|
-
"internalType": "ReferralId",
|
1925
|
-
"name": "referralId",
|
1926
|
-
"type": "bytes8"
|
1927
|
-
},
|
1928
|
-
{
|
1929
|
-
"internalType": "RiskId",
|
1930
|
-
"name": "riskId",
|
1931
|
-
"type": "bytes8"
|
1932
|
-
},
|
1933
|
-
{
|
1934
|
-
"internalType": "uint256",
|
1935
|
-
"name": "sumInsuredAmount",
|
1936
|
-
"type": "uint256"
|
1937
|
-
},
|
1938
|
-
{
|
1939
|
-
"internalType": "uint256",
|
1940
|
-
"name": "premiumAmount",
|
1941
|
-
"type": "uint256"
|
1942
|
-
},
|
1943
|
-
{
|
1944
|
-
"internalType": "uint256",
|
1945
|
-
"name": "premiumPaidAmount",
|
1946
|
-
"type": "uint256"
|
1947
|
-
},
|
1948
|
-
{
|
1949
|
-
"internalType": "Seconds",
|
1950
|
-
"name": "lifetime",
|
1951
|
-
"type": "uint40"
|
1952
|
-
},
|
1953
|
-
{
|
1954
|
-
"internalType": "bytes",
|
1955
|
-
"name": "applicationData",
|
1956
|
-
"type": "bytes"
|
1957
|
-
},
|
1958
|
-
{
|
1959
|
-
"internalType": "bytes",
|
1960
|
-
"name": "policyData",
|
1961
|
-
"type": "bytes"
|
1962
|
-
},
|
1963
|
-
{
|
1964
|
-
"internalType": "uint16",
|
1965
|
-
"name": "claimsCount",
|
1966
|
-
"type": "uint16"
|
1967
|
-
},
|
1968
|
-
{
|
1969
|
-
"internalType": "uint16",
|
1970
|
-
"name": "openClaimsCount",
|
1971
|
-
"type": "uint16"
|
1972
|
-
},
|
1973
|
-
{
|
1974
|
-
"internalType": "uint256",
|
1975
|
-
"name": "payoutAmount",
|
1976
|
-
"type": "uint256"
|
1977
|
-
},
|
1978
|
-
{
|
1979
|
-
"internalType": "Timestamp",
|
1980
|
-
"name": "activatedAt",
|
1981
|
-
"type": "uint40"
|
1982
|
-
},
|
1983
|
-
{
|
1984
|
-
"internalType": "Timestamp",
|
1985
|
-
"name": "expiredAt",
|
1986
|
-
"type": "uint40"
|
1987
|
-
},
|
1988
|
-
{
|
1989
|
-
"internalType": "Timestamp",
|
1990
|
-
"name": "closedAt",
|
1991
|
-
"type": "uint40"
|
1992
|
-
}
|
1993
|
-
],
|
1994
|
-
"internalType": "struct IPolicy.PolicyInfo",
|
1995
|
-
"name": "policy",
|
1996
|
-
"type": "tuple"
|
1997
|
-
},
|
1998
|
-
{
|
1999
|
-
"internalType": "StateId",
|
2000
|
-
"name": "newState",
|
2001
|
-
"type": "uint8"
|
2002
|
-
}
|
2003
|
-
],
|
2004
|
-
"name": "updateApplication",
|
2005
|
-
"outputs": [],
|
2006
|
-
"stateMutability": "nonpayable",
|
2007
|
-
"type": "function"
|
2008
|
-
},
|
2009
|
-
{
|
2010
|
-
"inputs": [
|
2011
|
-
{
|
2012
|
-
"internalType": "NftId",
|
2013
|
-
"name": "applicationNftId",
|
2014
|
-
"type": "uint96"
|
2015
|
-
},
|
2016
|
-
{
|
2017
|
-
"internalType": "StateId",
|
2018
|
-
"name": "newState",
|
2019
|
-
"type": "uint8"
|
2020
|
-
}
|
2021
|
-
],
|
2022
|
-
"name": "updateApplicationState",
|
2023
|
-
"outputs": [],
|
2024
|
-
"stateMutability": "nonpayable",
|
2025
|
-
"type": "function"
|
2026
|
-
},
|
2027
|
-
{
|
2028
|
-
"inputs": [
|
2029
|
-
{
|
2030
|
-
"internalType": "NftId",
|
2031
|
-
"name": "bundleNftId",
|
2032
|
-
"type": "uint96"
|
2033
|
-
},
|
2034
|
-
{
|
2035
|
-
"components": [
|
2036
|
-
{
|
2037
|
-
"internalType": "NftId",
|
2038
|
-
"name": "poolNftId",
|
2039
|
-
"type": "uint96"
|
2040
|
-
},
|
2041
|
-
{
|
2042
|
-
"components": [
|
2043
|
-
{
|
2044
|
-
"internalType": "UFixed",
|
2045
|
-
"name": "fractionalFee",
|
2046
|
-
"type": "uint256"
|
2047
|
-
},
|
2048
|
-
{
|
2049
|
-
"internalType": "uint256",
|
2050
|
-
"name": "fixedFee",
|
2051
|
-
"type": "uint256"
|
2052
|
-
}
|
2053
|
-
],
|
2054
|
-
"internalType": "struct Fee",
|
2055
|
-
"name": "fee",
|
2056
|
-
"type": "tuple"
|
2057
|
-
},
|
2058
|
-
{
|
2059
|
-
"internalType": "bytes",
|
2060
|
-
"name": "filter",
|
2061
|
-
"type": "bytes"
|
2062
|
-
},
|
2063
|
-
{
|
2064
|
-
"internalType": "uint256",
|
2065
|
-
"name": "capitalAmount",
|
2066
|
-
"type": "uint256"
|
2067
|
-
},
|
2068
|
-
{
|
2069
|
-
"internalType": "uint256",
|
2070
|
-
"name": "lockedAmount",
|
2071
|
-
"type": "uint256"
|
2072
|
-
},
|
2073
|
-
{
|
2074
|
-
"internalType": "uint256",
|
2075
|
-
"name": "balanceAmount",
|
2076
|
-
"type": "uint256"
|
2077
|
-
},
|
2078
|
-
{
|
2079
|
-
"internalType": "Seconds",
|
2080
|
-
"name": "lifetime",
|
2081
|
-
"type": "uint40"
|
387
|
+
"internalType": "address",
|
388
|
+
"name": "objectAddress",
|
389
|
+
"type": "address"
|
2082
390
|
},
|
2083
391
|
{
|
2084
|
-
"internalType": "
|
2085
|
-
"name": "
|
2086
|
-
"type": "
|
392
|
+
"internalType": "address",
|
393
|
+
"name": "initialOwner",
|
394
|
+
"type": "address"
|
2087
395
|
},
|
2088
396
|
{
|
2089
|
-
"internalType": "
|
2090
|
-
"name": "
|
2091
|
-
"type": "
|
397
|
+
"internalType": "bytes",
|
398
|
+
"name": "data",
|
399
|
+
"type": "bytes"
|
2092
400
|
}
|
2093
401
|
],
|
2094
|
-
"internalType": "struct
|
2095
|
-
"name": "
|
402
|
+
"internalType": "struct IRegistry.ObjectInfo",
|
403
|
+
"name": "info",
|
2096
404
|
"type": "tuple"
|
2097
|
-
},
|
2098
|
-
{
|
2099
|
-
"internalType": "StateId",
|
2100
|
-
"name": "newState",
|
2101
|
-
"type": "uint8"
|
2102
405
|
}
|
2103
406
|
],
|
2104
|
-
"
|
2105
|
-
"outputs": [],
|
2106
|
-
"stateMutability": "nonpayable",
|
407
|
+
"stateMutability": "view",
|
2107
408
|
"type": "function"
|
2108
409
|
},
|
2109
410
|
{
|
2110
|
-
"inputs": [
|
2111
|
-
|
2112
|
-
|
2113
|
-
"name": "bundleNftId",
|
2114
|
-
"type": "uint96"
|
2115
|
-
},
|
411
|
+
"inputs": [],
|
412
|
+
"name": "getInstanceAccessManager",
|
413
|
+
"outputs": [
|
2116
414
|
{
|
2117
|
-
"internalType": "
|
2118
|
-
"name": "
|
2119
|
-
"type": "
|
415
|
+
"internalType": "contract InstanceAccessManager",
|
416
|
+
"name": "",
|
417
|
+
"type": "address"
|
2120
418
|
}
|
2121
419
|
],
|
2122
|
-
"
|
2123
|
-
"outputs": [],
|
2124
|
-
"stateMutability": "nonpayable",
|
420
|
+
"stateMutability": "view",
|
2125
421
|
"type": "function"
|
2126
422
|
},
|
2127
423
|
{
|
2128
|
-
"inputs": [
|
2129
|
-
|
2130
|
-
|
2131
|
-
"name": "policyNftId",
|
2132
|
-
"type": "uint96"
|
2133
|
-
},
|
2134
|
-
{
|
2135
|
-
"internalType": "ClaimId",
|
2136
|
-
"name": "claimId",
|
2137
|
-
"type": "uint16"
|
2138
|
-
},
|
2139
|
-
{
|
2140
|
-
"components": [
|
2141
|
-
{
|
2142
|
-
"internalType": "uint256",
|
2143
|
-
"name": "claimAmount",
|
2144
|
-
"type": "uint256"
|
2145
|
-
},
|
2146
|
-
{
|
2147
|
-
"internalType": "uint256",
|
2148
|
-
"name": "paidAmount",
|
2149
|
-
"type": "uint256"
|
2150
|
-
},
|
2151
|
-
{
|
2152
|
-
"internalType": "bytes",
|
2153
|
-
"name": "data",
|
2154
|
-
"type": "bytes"
|
2155
|
-
},
|
2156
|
-
{
|
2157
|
-
"internalType": "Timestamp",
|
2158
|
-
"name": "closedAt",
|
2159
|
-
"type": "uint40"
|
2160
|
-
}
|
2161
|
-
],
|
2162
|
-
"internalType": "struct IPolicy.ClaimInfo",
|
2163
|
-
"name": "claim",
|
2164
|
-
"type": "tuple"
|
2165
|
-
},
|
424
|
+
"inputs": [],
|
425
|
+
"name": "getInstanceReader",
|
426
|
+
"outputs": [
|
2166
427
|
{
|
2167
|
-
"internalType": "
|
2168
|
-
"name": "
|
2169
|
-
"type": "
|
428
|
+
"internalType": "contract InstanceReader",
|
429
|
+
"name": "",
|
430
|
+
"type": "address"
|
2170
431
|
}
|
2171
432
|
],
|
2172
|
-
"
|
2173
|
-
"outputs": [],
|
2174
|
-
"stateMutability": "nonpayable",
|
433
|
+
"stateMutability": "view",
|
2175
434
|
"type": "function"
|
2176
435
|
},
|
2177
436
|
{
|
2178
|
-
"inputs": [
|
2179
|
-
|
2180
|
-
|
2181
|
-
"name": "policyNftId",
|
2182
|
-
"type": "uint96"
|
2183
|
-
},
|
437
|
+
"inputs": [],
|
438
|
+
"name": "getInstanceStore",
|
439
|
+
"outputs": [
|
2184
440
|
{
|
2185
|
-
"internalType": "
|
2186
|
-
"name": "
|
2187
|
-
"type": "
|
2188
|
-
}
|
441
|
+
"internalType": "contract InstanceStore",
|
442
|
+
"name": "",
|
443
|
+
"type": "address"
|
444
|
+
}
|
445
|
+
],
|
446
|
+
"stateMutability": "view",
|
447
|
+
"type": "function"
|
448
|
+
},
|
449
|
+
{
|
450
|
+
"inputs": [],
|
451
|
+
"name": "getMajorVersion",
|
452
|
+
"outputs": [
|
2189
453
|
{
|
2190
|
-
"internalType": "
|
2191
|
-
"name": "
|
454
|
+
"internalType": "VersionPart",
|
455
|
+
"name": "majorVersion",
|
2192
456
|
"type": "uint8"
|
2193
457
|
}
|
2194
458
|
],
|
2195
|
-
"
|
2196
|
-
"outputs": [],
|
2197
|
-
"stateMutability": "nonpayable",
|
459
|
+
"stateMutability": "pure",
|
2198
460
|
"type": "function"
|
2199
461
|
},
|
2200
462
|
{
|
2201
|
-
"inputs": [
|
463
|
+
"inputs": [],
|
464
|
+
"name": "getNftId",
|
465
|
+
"outputs": [
|
2202
466
|
{
|
2203
467
|
"internalType": "NftId",
|
2204
|
-
"name": "
|
468
|
+
"name": "",
|
2205
469
|
"type": "uint96"
|
2206
|
-
},
|
2207
|
-
{
|
2208
|
-
"components": [
|
2209
|
-
{
|
2210
|
-
"internalType": "NftId",
|
2211
|
-
"name": "productNftId",
|
2212
|
-
"type": "uint96"
|
2213
|
-
},
|
2214
|
-
{
|
2215
|
-
"internalType": "contract TokenHandler",
|
2216
|
-
"name": "tokenHandler",
|
2217
|
-
"type": "address"
|
2218
|
-
},
|
2219
|
-
{
|
2220
|
-
"components": [
|
2221
|
-
{
|
2222
|
-
"internalType": "UFixed",
|
2223
|
-
"name": "fractionalFee",
|
2224
|
-
"type": "uint256"
|
2225
|
-
},
|
2226
|
-
{
|
2227
|
-
"internalType": "uint256",
|
2228
|
-
"name": "fixedFee",
|
2229
|
-
"type": "uint256"
|
2230
|
-
}
|
2231
|
-
],
|
2232
|
-
"internalType": "struct Fee",
|
2233
|
-
"name": "minDistributionOwnerFee",
|
2234
|
-
"type": "tuple"
|
2235
|
-
},
|
2236
|
-
{
|
2237
|
-
"components": [
|
2238
|
-
{
|
2239
|
-
"internalType": "UFixed",
|
2240
|
-
"name": "fractionalFee",
|
2241
|
-
"type": "uint256"
|
2242
|
-
},
|
2243
|
-
{
|
2244
|
-
"internalType": "uint256",
|
2245
|
-
"name": "fixedFee",
|
2246
|
-
"type": "uint256"
|
2247
|
-
}
|
2248
|
-
],
|
2249
|
-
"internalType": "struct Fee",
|
2250
|
-
"name": "distributionFee",
|
2251
|
-
"type": "tuple"
|
2252
|
-
},
|
2253
|
-
{
|
2254
|
-
"internalType": "address",
|
2255
|
-
"name": "wallet",
|
2256
|
-
"type": "address"
|
2257
|
-
},
|
2258
|
-
{
|
2259
|
-
"internalType": "uint256",
|
2260
|
-
"name": "sumDistributionOwnerFees",
|
2261
|
-
"type": "uint256"
|
2262
|
-
}
|
2263
|
-
],
|
2264
|
-
"internalType": "struct ISetup.DistributionSetupInfo",
|
2265
|
-
"name": "setup",
|
2266
|
-
"type": "tuple"
|
2267
|
-
},
|
2268
|
-
{
|
2269
|
-
"internalType": "StateId",
|
2270
|
-
"name": "newState",
|
2271
|
-
"type": "uint8"
|
2272
470
|
}
|
2273
471
|
],
|
2274
|
-
"
|
2275
|
-
"outputs": [],
|
2276
|
-
"stateMutability": "nonpayable",
|
472
|
+
"stateMutability": "view",
|
2277
473
|
"type": "function"
|
2278
474
|
},
|
2279
475
|
{
|
2280
|
-
"inputs": [
|
476
|
+
"inputs": [],
|
477
|
+
"name": "getOwner",
|
478
|
+
"outputs": [
|
2281
479
|
{
|
2282
|
-
"internalType": "
|
2283
|
-
"name": "
|
2284
|
-
"type": "
|
2285
|
-
}
|
480
|
+
"internalType": "address",
|
481
|
+
"name": "",
|
482
|
+
"type": "address"
|
483
|
+
}
|
484
|
+
],
|
485
|
+
"stateMutability": "view",
|
486
|
+
"type": "function"
|
487
|
+
},
|
488
|
+
{
|
489
|
+
"inputs": [],
|
490
|
+
"name": "getPolicyService",
|
491
|
+
"outputs": [
|
2286
492
|
{
|
2287
|
-
"internalType": "
|
2288
|
-
"name": "
|
2289
|
-
"type": "
|
493
|
+
"internalType": "contract IPolicyService",
|
494
|
+
"name": "",
|
495
|
+
"type": "address"
|
2290
496
|
}
|
2291
497
|
],
|
2292
|
-
"
|
2293
|
-
"outputs": [],
|
2294
|
-
"stateMutability": "nonpayable",
|
498
|
+
"stateMutability": "view",
|
2295
499
|
"type": "function"
|
2296
500
|
},
|
2297
501
|
{
|
2298
|
-
"inputs": [
|
502
|
+
"inputs": [],
|
503
|
+
"name": "getPoolService",
|
504
|
+
"outputs": [
|
2299
505
|
{
|
2300
|
-
"internalType": "
|
2301
|
-
"name": "
|
2302
|
-
"type": "
|
2303
|
-
}
|
506
|
+
"internalType": "contract IPoolService",
|
507
|
+
"name": "",
|
508
|
+
"type": "address"
|
509
|
+
}
|
510
|
+
],
|
511
|
+
"stateMutability": "view",
|
512
|
+
"type": "function"
|
513
|
+
},
|
514
|
+
{
|
515
|
+
"inputs": [],
|
516
|
+
"name": "getProductService",
|
517
|
+
"outputs": [
|
2304
518
|
{
|
2305
|
-
"
|
2306
|
-
|
2307
|
-
|
2308
|
-
|
2309
|
-
|
2310
|
-
|
2311
|
-
|
2312
|
-
|
2313
|
-
|
2314
|
-
|
2315
|
-
|
2316
|
-
|
2317
|
-
"internalType": "bytes",
|
2318
|
-
"name": "data",
|
2319
|
-
"type": "bytes"
|
2320
|
-
},
|
2321
|
-
{
|
2322
|
-
"internalType": "uint256",
|
2323
|
-
"name": "sumCommisions",
|
2324
|
-
"type": "uint256"
|
2325
|
-
},
|
2326
|
-
{
|
2327
|
-
"internalType": "uint256",
|
2328
|
-
"name": "numPoliciesSold",
|
2329
|
-
"type": "uint256"
|
2330
|
-
}
|
2331
|
-
],
|
2332
|
-
"internalType": "struct IDistribution.DistributorInfo",
|
2333
|
-
"name": "info",
|
2334
|
-
"type": "tuple"
|
2335
|
-
},
|
519
|
+
"internalType": "contract IProductService",
|
520
|
+
"name": "",
|
521
|
+
"type": "address"
|
522
|
+
}
|
523
|
+
],
|
524
|
+
"stateMutability": "view",
|
525
|
+
"type": "function"
|
526
|
+
},
|
527
|
+
{
|
528
|
+
"inputs": [],
|
529
|
+
"name": "getRegistry",
|
530
|
+
"outputs": [
|
2336
531
|
{
|
2337
|
-
"internalType": "
|
2338
|
-
"name": "
|
2339
|
-
"type": "
|
532
|
+
"internalType": "contract IRegistry",
|
533
|
+
"name": "",
|
534
|
+
"type": "address"
|
2340
535
|
}
|
2341
536
|
],
|
2342
|
-
"
|
2343
|
-
"outputs": [],
|
2344
|
-
"stateMutability": "nonpayable",
|
537
|
+
"stateMutability": "view",
|
2345
538
|
"type": "function"
|
2346
539
|
},
|
2347
540
|
{
|
2348
541
|
"inputs": [
|
2349
542
|
{
|
2350
|
-
"internalType": "
|
2351
|
-
"name": "
|
2352
|
-
"type": "
|
543
|
+
"internalType": "RoleId",
|
544
|
+
"name": "roleId",
|
545
|
+
"type": "uint64"
|
2353
546
|
},
|
2354
547
|
{
|
2355
|
-
"internalType": "
|
2356
|
-
"name": "
|
2357
|
-
"type": "
|
548
|
+
"internalType": "address",
|
549
|
+
"name": "account",
|
550
|
+
"type": "address"
|
2358
551
|
}
|
2359
552
|
],
|
2360
|
-
"name": "
|
553
|
+
"name": "grantRole",
|
2361
554
|
"outputs": [],
|
2362
555
|
"stateMutability": "nonpayable",
|
2363
556
|
"type": "function"
|
@@ -2365,69 +558,29 @@
|
|
2365
558
|
{
|
2366
559
|
"inputs": [
|
2367
560
|
{
|
2368
|
-
"internalType": "
|
2369
|
-
"name": "
|
2370
|
-
"type": "
|
561
|
+
"internalType": "address",
|
562
|
+
"name": "authority",
|
563
|
+
"type": "address"
|
2371
564
|
},
|
2372
565
|
{
|
2373
|
-
"
|
2374
|
-
|
2375
|
-
|
2376
|
-
"name": "name",
|
2377
|
-
"type": "string"
|
2378
|
-
},
|
2379
|
-
{
|
2380
|
-
"internalType": "UFixed",
|
2381
|
-
"name": "minDiscountPercentage",
|
2382
|
-
"type": "uint256"
|
2383
|
-
},
|
2384
|
-
{
|
2385
|
-
"internalType": "UFixed",
|
2386
|
-
"name": "maxDiscountPercentage",
|
2387
|
-
"type": "uint256"
|
2388
|
-
},
|
2389
|
-
{
|
2390
|
-
"internalType": "UFixed",
|
2391
|
-
"name": "commissionPercentage",
|
2392
|
-
"type": "uint256"
|
2393
|
-
},
|
2394
|
-
{
|
2395
|
-
"internalType": "uint32",
|
2396
|
-
"name": "maxReferralCount",
|
2397
|
-
"type": "uint32"
|
2398
|
-
},
|
2399
|
-
{
|
2400
|
-
"internalType": "uint32",
|
2401
|
-
"name": "maxReferralLifetime",
|
2402
|
-
"type": "uint32"
|
2403
|
-
},
|
2404
|
-
{
|
2405
|
-
"internalType": "bool",
|
2406
|
-
"name": "allowSelfReferrals",
|
2407
|
-
"type": "bool"
|
2408
|
-
},
|
2409
|
-
{
|
2410
|
-
"internalType": "bool",
|
2411
|
-
"name": "allowRenewals",
|
2412
|
-
"type": "bool"
|
2413
|
-
},
|
2414
|
-
{
|
2415
|
-
"internalType": "bytes",
|
2416
|
-
"name": "data",
|
2417
|
-
"type": "bytes"
|
2418
|
-
}
|
2419
|
-
],
|
2420
|
-
"internalType": "struct IDistribution.DistributorTypeInfo",
|
2421
|
-
"name": "info",
|
2422
|
-
"type": "tuple"
|
566
|
+
"internalType": "address",
|
567
|
+
"name": "registryAddress",
|
568
|
+
"type": "address"
|
2423
569
|
},
|
2424
570
|
{
|
2425
|
-
"internalType": "
|
2426
|
-
"name": "
|
2427
|
-
"type": "
|
571
|
+
"internalType": "address",
|
572
|
+
"name": "initialOwner",
|
573
|
+
"type": "address"
|
2428
574
|
}
|
2429
575
|
],
|
2430
|
-
"name": "
|
576
|
+
"name": "initialize",
|
577
|
+
"outputs": [],
|
578
|
+
"stateMutability": "nonpayable",
|
579
|
+
"type": "function"
|
580
|
+
},
|
581
|
+
{
|
582
|
+
"inputs": [],
|
583
|
+
"name": "initializeERC165",
|
2431
584
|
"outputs": [],
|
2432
585
|
"stateMutability": "nonpayable",
|
2433
586
|
"type": "function"
|
@@ -2435,67 +588,55 @@
|
|
2435
588
|
{
|
2436
589
|
"inputs": [
|
2437
590
|
{
|
2438
|
-
"internalType": "
|
2439
|
-
"name": "
|
2440
|
-
"type": "
|
591
|
+
"internalType": "address",
|
592
|
+
"name": "initialOwner",
|
593
|
+
"type": "address"
|
2441
594
|
},
|
2442
595
|
{
|
2443
|
-
"internalType": "
|
2444
|
-
"name": "
|
2445
|
-
"type": "
|
596
|
+
"internalType": "address",
|
597
|
+
"name": "registryAddress",
|
598
|
+
"type": "address"
|
2446
599
|
}
|
2447
600
|
],
|
2448
|
-
"name": "
|
601
|
+
"name": "initializeNftOwnable",
|
2449
602
|
"outputs": [],
|
2450
603
|
"stateMutability": "nonpayable",
|
2451
604
|
"type": "function"
|
2452
605
|
},
|
2453
606
|
{
|
2454
607
|
"inputs": [
|
608
|
+
{
|
609
|
+
"internalType": "address",
|
610
|
+
"name": "registryAddress",
|
611
|
+
"type": "address"
|
612
|
+
},
|
2455
613
|
{
|
2456
614
|
"internalType": "NftId",
|
2457
|
-
"name": "
|
615
|
+
"name": "parentNftId",
|
2458
616
|
"type": "uint96"
|
2459
617
|
},
|
2460
618
|
{
|
2461
|
-
"internalType": "
|
2462
|
-
"name": "
|
2463
|
-
"type": "
|
619
|
+
"internalType": "ObjectType",
|
620
|
+
"name": "objectType",
|
621
|
+
"type": "uint8"
|
2464
622
|
},
|
2465
623
|
{
|
2466
|
-
"
|
2467
|
-
|
2468
|
-
|
2469
|
-
"name": "claimId",
|
2470
|
-
"type": "uint16"
|
2471
|
-
},
|
2472
|
-
{
|
2473
|
-
"internalType": "uint256",
|
2474
|
-
"name": "amount",
|
2475
|
-
"type": "uint256"
|
2476
|
-
},
|
2477
|
-
{
|
2478
|
-
"internalType": "bytes",
|
2479
|
-
"name": "data",
|
2480
|
-
"type": "bytes"
|
2481
|
-
},
|
2482
|
-
{
|
2483
|
-
"internalType": "Timestamp",
|
2484
|
-
"name": "paidAt",
|
2485
|
-
"type": "uint40"
|
2486
|
-
}
|
2487
|
-
],
|
2488
|
-
"internalType": "struct IPolicy.PayoutInfo",
|
2489
|
-
"name": "payout",
|
2490
|
-
"type": "tuple"
|
624
|
+
"internalType": "bool",
|
625
|
+
"name": "isInterceptor",
|
626
|
+
"type": "bool"
|
2491
627
|
},
|
2492
628
|
{
|
2493
|
-
"internalType": "
|
2494
|
-
"name": "
|
2495
|
-
"type": "
|
629
|
+
"internalType": "address",
|
630
|
+
"name": "initialOwner",
|
631
|
+
"type": "address"
|
632
|
+
},
|
633
|
+
{
|
634
|
+
"internalType": "bytes",
|
635
|
+
"name": "registryData",
|
636
|
+
"type": "bytes"
|
2496
637
|
}
|
2497
638
|
],
|
2498
|
-
"name": "
|
639
|
+
"name": "initializeRegisterable",
|
2499
640
|
"outputs": [],
|
2500
641
|
"stateMutability": "nonpayable",
|
2501
642
|
"type": "function"
|
@@ -2503,122 +644,32 @@
|
|
2503
644
|
{
|
2504
645
|
"inputs": [
|
2505
646
|
{
|
2506
|
-
"internalType": "
|
2507
|
-
"name": "
|
2508
|
-
"type": "
|
2509
|
-
},
|
2510
|
-
{
|
2511
|
-
"internalType": "StateId",
|
2512
|
-
"name": "newState",
|
2513
|
-
"type": "uint8"
|
647
|
+
"internalType": "address",
|
648
|
+
"name": "registryAddress",
|
649
|
+
"type": "address"
|
2514
650
|
}
|
2515
651
|
],
|
2516
|
-
"name": "
|
652
|
+
"name": "initializeRegistryLinked",
|
2517
653
|
"outputs": [],
|
2518
654
|
"stateMutability": "nonpayable",
|
2519
655
|
"type": "function"
|
2520
656
|
},
|
2521
657
|
{
|
2522
|
-
"inputs": [
|
2523
|
-
|
2524
|
-
|
2525
|
-
"name": "policyNftId",
|
2526
|
-
"type": "uint96"
|
2527
|
-
},
|
2528
|
-
{
|
2529
|
-
"components": [
|
2530
|
-
{
|
2531
|
-
"internalType": "NftId",
|
2532
|
-
"name": "productNftId",
|
2533
|
-
"type": "uint96"
|
2534
|
-
},
|
2535
|
-
{
|
2536
|
-
"internalType": "NftId",
|
2537
|
-
"name": "bundleNftId",
|
2538
|
-
"type": "uint96"
|
2539
|
-
},
|
2540
|
-
{
|
2541
|
-
"internalType": "ReferralId",
|
2542
|
-
"name": "referralId",
|
2543
|
-
"type": "bytes8"
|
2544
|
-
},
|
2545
|
-
{
|
2546
|
-
"internalType": "RiskId",
|
2547
|
-
"name": "riskId",
|
2548
|
-
"type": "bytes8"
|
2549
|
-
},
|
2550
|
-
{
|
2551
|
-
"internalType": "uint256",
|
2552
|
-
"name": "sumInsuredAmount",
|
2553
|
-
"type": "uint256"
|
2554
|
-
},
|
2555
|
-
{
|
2556
|
-
"internalType": "uint256",
|
2557
|
-
"name": "premiumAmount",
|
2558
|
-
"type": "uint256"
|
2559
|
-
},
|
2560
|
-
{
|
2561
|
-
"internalType": "uint256",
|
2562
|
-
"name": "premiumPaidAmount",
|
2563
|
-
"type": "uint256"
|
2564
|
-
},
|
2565
|
-
{
|
2566
|
-
"internalType": "Seconds",
|
2567
|
-
"name": "lifetime",
|
2568
|
-
"type": "uint40"
|
2569
|
-
},
|
2570
|
-
{
|
2571
|
-
"internalType": "bytes",
|
2572
|
-
"name": "applicationData",
|
2573
|
-
"type": "bytes"
|
2574
|
-
},
|
2575
|
-
{
|
2576
|
-
"internalType": "bytes",
|
2577
|
-
"name": "policyData",
|
2578
|
-
"type": "bytes"
|
2579
|
-
},
|
2580
|
-
{
|
2581
|
-
"internalType": "uint16",
|
2582
|
-
"name": "claimsCount",
|
2583
|
-
"type": "uint16"
|
2584
|
-
},
|
2585
|
-
{
|
2586
|
-
"internalType": "uint16",
|
2587
|
-
"name": "openClaimsCount",
|
2588
|
-
"type": "uint16"
|
2589
|
-
},
|
2590
|
-
{
|
2591
|
-
"internalType": "uint256",
|
2592
|
-
"name": "payoutAmount",
|
2593
|
-
"type": "uint256"
|
2594
|
-
},
|
2595
|
-
{
|
2596
|
-
"internalType": "Timestamp",
|
2597
|
-
"name": "activatedAt",
|
2598
|
-
"type": "uint40"
|
2599
|
-
},
|
2600
|
-
{
|
2601
|
-
"internalType": "Timestamp",
|
2602
|
-
"name": "expiredAt",
|
2603
|
-
"type": "uint40"
|
2604
|
-
},
|
2605
|
-
{
|
2606
|
-
"internalType": "Timestamp",
|
2607
|
-
"name": "closedAt",
|
2608
|
-
"type": "uint40"
|
2609
|
-
}
|
2610
|
-
],
|
2611
|
-
"internalType": "struct IPolicy.PolicyInfo",
|
2612
|
-
"name": "policy",
|
2613
|
-
"type": "tuple"
|
2614
|
-
},
|
658
|
+
"inputs": [],
|
659
|
+
"name": "isConsumingScheduledOp",
|
660
|
+
"outputs": [
|
2615
661
|
{
|
2616
|
-
"internalType": "
|
2617
|
-
"name": "
|
2618
|
-
"type": "
|
662
|
+
"internalType": "bytes4",
|
663
|
+
"name": "",
|
664
|
+
"type": "bytes4"
|
2619
665
|
}
|
2620
666
|
],
|
2621
|
-
"
|
667
|
+
"stateMutability": "view",
|
668
|
+
"type": "function"
|
669
|
+
},
|
670
|
+
{
|
671
|
+
"inputs": [],
|
672
|
+
"name": "linkToRegisteredNftId",
|
2622
673
|
"outputs": [],
|
2623
674
|
"stateMutability": "nonpayable",
|
2624
675
|
"type": "function"
|
@@ -2626,17 +677,17 @@
|
|
2626
677
|
{
|
2627
678
|
"inputs": [
|
2628
679
|
{
|
2629
|
-
"internalType": "
|
2630
|
-
"name": "
|
2631
|
-
"type": "
|
680
|
+
"internalType": "address",
|
681
|
+
"name": "to",
|
682
|
+
"type": "address"
|
2632
683
|
},
|
2633
684
|
{
|
2634
|
-
"internalType": "
|
2635
|
-
"name": "
|
2636
|
-
"type": "
|
685
|
+
"internalType": "uint256",
|
686
|
+
"name": "tokenId",
|
687
|
+
"type": "uint256"
|
2637
688
|
}
|
2638
689
|
],
|
2639
|
-
"name": "
|
690
|
+
"name": "nftMint",
|
2640
691
|
"outputs": [],
|
2641
692
|
"stateMutability": "nonpayable",
|
2642
693
|
"type": "function"
|
@@ -2644,49 +695,22 @@
|
|
2644
695
|
{
|
2645
696
|
"inputs": [
|
2646
697
|
{
|
2647
|
-
"internalType": "
|
2648
|
-
"name": "
|
2649
|
-
"type": "
|
698
|
+
"internalType": "address",
|
699
|
+
"name": "from",
|
700
|
+
"type": "address"
|
2650
701
|
},
|
2651
702
|
{
|
2652
|
-
"
|
2653
|
-
|
2654
|
-
|
2655
|
-
"name": "name",
|
2656
|
-
"type": "string"
|
2657
|
-
},
|
2658
|
-
{
|
2659
|
-
"internalType": "contract IERC20Metadata",
|
2660
|
-
"name": "token",
|
2661
|
-
"type": "address"
|
2662
|
-
},
|
2663
|
-
{
|
2664
|
-
"internalType": "contract TokenHandler",
|
2665
|
-
"name": "tokenHandler",
|
2666
|
-
"type": "address"
|
2667
|
-
},
|
2668
|
-
{
|
2669
|
-
"internalType": "address",
|
2670
|
-
"name": "wallet",
|
2671
|
-
"type": "address"
|
2672
|
-
},
|
2673
|
-
{
|
2674
|
-
"internalType": "bytes",
|
2675
|
-
"name": "data",
|
2676
|
-
"type": "bytes"
|
2677
|
-
}
|
2678
|
-
],
|
2679
|
-
"internalType": "struct IComponents.ComponentInfo",
|
2680
|
-
"name": "info",
|
2681
|
-
"type": "tuple"
|
703
|
+
"internalType": "address",
|
704
|
+
"name": "to",
|
705
|
+
"type": "address"
|
2682
706
|
},
|
2683
707
|
{
|
2684
|
-
"internalType": "
|
2685
|
-
"name": "
|
2686
|
-
"type": "
|
708
|
+
"internalType": "uint256",
|
709
|
+
"name": "tokenId",
|
710
|
+
"type": "uint256"
|
2687
711
|
}
|
2688
712
|
],
|
2689
|
-
"name": "
|
713
|
+
"name": "nftTransferFrom",
|
2690
714
|
"outputs": [],
|
2691
715
|
"stateMutability": "nonpayable",
|
2692
716
|
"type": "function"
|
@@ -2694,17 +718,12 @@
|
|
2694
718
|
{
|
2695
719
|
"inputs": [
|
2696
720
|
{
|
2697
|
-
"internalType": "
|
2698
|
-
"name": "
|
2699
|
-
"type": "
|
2700
|
-
},
|
2701
|
-
{
|
2702
|
-
"internalType": "StateId",
|
2703
|
-
"name": "newState",
|
2704
|
-
"type": "uint8"
|
721
|
+
"internalType": "bytes4",
|
722
|
+
"name": "interfaceId",
|
723
|
+
"type": "bytes4"
|
2705
724
|
}
|
2706
725
|
],
|
2707
|
-
"name": "
|
726
|
+
"name": "registerInterface",
|
2708
727
|
"outputs": [],
|
2709
728
|
"stateMutability": "nonpayable",
|
2710
729
|
"type": "function"
|
@@ -2712,88 +731,30 @@
|
|
2712
731
|
{
|
2713
732
|
"inputs": [
|
2714
733
|
{
|
2715
|
-
"internalType": "
|
2716
|
-
"name": "
|
2717
|
-
"type": "
|
734
|
+
"internalType": "RoleId",
|
735
|
+
"name": "roleId",
|
736
|
+
"type": "uint64"
|
2718
737
|
},
|
2719
738
|
{
|
2720
|
-
"
|
2721
|
-
|
2722
|
-
|
2723
|
-
|
2724
|
-
|
2725
|
-
|
2726
|
-
|
2727
|
-
|
2728
|
-
|
2729
|
-
|
2730
|
-
|
2731
|
-
|
2732
|
-
"internalType": "NftId",
|
2733
|
-
"name": "distributionNftId",
|
2734
|
-
"type": "uint96"
|
2735
|
-
},
|
2736
|
-
{
|
2737
|
-
"internalType": "NftId",
|
2738
|
-
"name": "poolNftId",
|
2739
|
-
"type": "uint96"
|
2740
|
-
},
|
2741
|
-
{
|
2742
|
-
"components": [
|
2743
|
-
{
|
2744
|
-
"internalType": "UFixed",
|
2745
|
-
"name": "fractionalFee",
|
2746
|
-
"type": "uint256"
|
2747
|
-
},
|
2748
|
-
{
|
2749
|
-
"internalType": "uint256",
|
2750
|
-
"name": "fixedFee",
|
2751
|
-
"type": "uint256"
|
2752
|
-
}
|
2753
|
-
],
|
2754
|
-
"internalType": "struct Fee",
|
2755
|
-
"name": "productFee",
|
2756
|
-
"type": "tuple"
|
2757
|
-
},
|
2758
|
-
{
|
2759
|
-
"components": [
|
2760
|
-
{
|
2761
|
-
"internalType": "UFixed",
|
2762
|
-
"name": "fractionalFee",
|
2763
|
-
"type": "uint256"
|
2764
|
-
},
|
2765
|
-
{
|
2766
|
-
"internalType": "uint256",
|
2767
|
-
"name": "fixedFee",
|
2768
|
-
"type": "uint256"
|
2769
|
-
}
|
2770
|
-
],
|
2771
|
-
"internalType": "struct Fee",
|
2772
|
-
"name": "processingFee",
|
2773
|
-
"type": "tuple"
|
2774
|
-
},
|
2775
|
-
{
|
2776
|
-
"internalType": "bool",
|
2777
|
-
"name": "isIntercepting",
|
2778
|
-
"type": "bool"
|
2779
|
-
},
|
2780
|
-
{
|
2781
|
-
"internalType": "address",
|
2782
|
-
"name": "wallet",
|
2783
|
-
"type": "address"
|
2784
|
-
}
|
2785
|
-
],
|
2786
|
-
"internalType": "struct ISetup.ProductSetupInfo",
|
2787
|
-
"name": "setup",
|
2788
|
-
"type": "tuple"
|
2789
|
-
},
|
739
|
+
"internalType": "address",
|
740
|
+
"name": "account",
|
741
|
+
"type": "address"
|
742
|
+
}
|
743
|
+
],
|
744
|
+
"name": "revokeRole",
|
745
|
+
"outputs": [],
|
746
|
+
"stateMutability": "nonpayable",
|
747
|
+
"type": "function"
|
748
|
+
},
|
749
|
+
{
|
750
|
+
"inputs": [
|
2790
751
|
{
|
2791
|
-
"internalType": "
|
2792
|
-
"name": "
|
2793
|
-
"type": "
|
752
|
+
"internalType": "address",
|
753
|
+
"name": "newAuthority",
|
754
|
+
"type": "address"
|
2794
755
|
}
|
2795
756
|
],
|
2796
|
-
"name": "
|
757
|
+
"name": "setAuthority",
|
2797
758
|
"outputs": [],
|
2798
759
|
"stateMutability": "nonpayable",
|
2799
760
|
"type": "function"
|
@@ -2801,17 +762,38 @@
|
|
2801
762
|
{
|
2802
763
|
"inputs": [
|
2803
764
|
{
|
2804
|
-
"internalType": "
|
2805
|
-
"name": "
|
2806
|
-
"type": "
|
2807
|
-
}
|
765
|
+
"internalType": "contract BundleManager",
|
766
|
+
"name": "bundleManager",
|
767
|
+
"type": "address"
|
768
|
+
}
|
769
|
+
],
|
770
|
+
"name": "setBundleManager",
|
771
|
+
"outputs": [],
|
772
|
+
"stateMutability": "nonpayable",
|
773
|
+
"type": "function"
|
774
|
+
},
|
775
|
+
{
|
776
|
+
"inputs": [
|
2808
777
|
{
|
2809
|
-
"internalType": "
|
2810
|
-
"name": "
|
2811
|
-
"type": "
|
778
|
+
"internalType": "contract InstanceAccessManager",
|
779
|
+
"name": "accessManager",
|
780
|
+
"type": "address"
|
781
|
+
}
|
782
|
+
],
|
783
|
+
"name": "setInstanceAccessManager",
|
784
|
+
"outputs": [],
|
785
|
+
"stateMutability": "nonpayable",
|
786
|
+
"type": "function"
|
787
|
+
},
|
788
|
+
{
|
789
|
+
"inputs": [
|
790
|
+
{
|
791
|
+
"internalType": "contract InstanceReader",
|
792
|
+
"name": "instanceReader",
|
793
|
+
"type": "address"
|
2812
794
|
}
|
2813
795
|
],
|
2814
|
-
"name": "
|
796
|
+
"name": "setInstanceReader",
|
2815
797
|
"outputs": [],
|
2816
798
|
"stateMutability": "nonpayable",
|
2817
799
|
"type": "function"
|
@@ -2819,59 +801,12 @@
|
|
2819
801
|
{
|
2820
802
|
"inputs": [
|
2821
803
|
{
|
2822
|
-
"internalType": "
|
2823
|
-
"name": "
|
2824
|
-
"type": "
|
2825
|
-
},
|
2826
|
-
{
|
2827
|
-
"components": [
|
2828
|
-
{
|
2829
|
-
"internalType": "NftId",
|
2830
|
-
"name": "distributorNftId",
|
2831
|
-
"type": "uint96"
|
2832
|
-
},
|
2833
|
-
{
|
2834
|
-
"internalType": "string",
|
2835
|
-
"name": "referralCode",
|
2836
|
-
"type": "string"
|
2837
|
-
},
|
2838
|
-
{
|
2839
|
-
"internalType": "UFixed",
|
2840
|
-
"name": "discountPercentage",
|
2841
|
-
"type": "uint256"
|
2842
|
-
},
|
2843
|
-
{
|
2844
|
-
"internalType": "uint32",
|
2845
|
-
"name": "maxReferrals",
|
2846
|
-
"type": "uint32"
|
2847
|
-
},
|
2848
|
-
{
|
2849
|
-
"internalType": "uint32",
|
2850
|
-
"name": "usedReferrals",
|
2851
|
-
"type": "uint32"
|
2852
|
-
},
|
2853
|
-
{
|
2854
|
-
"internalType": "Timestamp",
|
2855
|
-
"name": "expiryAt",
|
2856
|
-
"type": "uint40"
|
2857
|
-
},
|
2858
|
-
{
|
2859
|
-
"internalType": "bytes",
|
2860
|
-
"name": "data",
|
2861
|
-
"type": "bytes"
|
2862
|
-
}
|
2863
|
-
],
|
2864
|
-
"internalType": "struct IDistribution.ReferralInfo",
|
2865
|
-
"name": "referralInfo",
|
2866
|
-
"type": "tuple"
|
2867
|
-
},
|
2868
|
-
{
|
2869
|
-
"internalType": "StateId",
|
2870
|
-
"name": "newState",
|
2871
|
-
"type": "uint8"
|
804
|
+
"internalType": "contract InstanceStore",
|
805
|
+
"name": "instanceStore",
|
806
|
+
"type": "address"
|
2872
807
|
}
|
2873
808
|
],
|
2874
|
-
"name": "
|
809
|
+
"name": "setInstanceStore",
|
2875
810
|
"outputs": [],
|
2876
811
|
"stateMutability": "nonpayable",
|
2877
812
|
"type": "function"
|
@@ -2879,17 +814,22 @@
|
|
2879
814
|
{
|
2880
815
|
"inputs": [
|
2881
816
|
{
|
2882
|
-
"internalType": "
|
2883
|
-
"name": "
|
2884
|
-
"type": "
|
817
|
+
"internalType": "string",
|
818
|
+
"name": "targetName",
|
819
|
+
"type": "string"
|
2885
820
|
},
|
2886
821
|
{
|
2887
|
-
"internalType": "
|
2888
|
-
"name": "
|
2889
|
-
"type": "
|
822
|
+
"internalType": "bytes4[]",
|
823
|
+
"name": "selectors",
|
824
|
+
"type": "bytes4[]"
|
825
|
+
},
|
826
|
+
{
|
827
|
+
"internalType": "RoleId",
|
828
|
+
"name": "roleId",
|
829
|
+
"type": "uint64"
|
2890
830
|
}
|
2891
831
|
],
|
2892
|
-
"name": "
|
832
|
+
"name": "setTargetFunctionRole",
|
2893
833
|
"outputs": [],
|
2894
834
|
"stateMutability": "nonpayable",
|
2895
835
|
"type": "function"
|
@@ -2897,34 +837,17 @@
|
|
2897
837
|
{
|
2898
838
|
"inputs": [
|
2899
839
|
{
|
2900
|
-
"internalType": "
|
2901
|
-
"name": "
|
2902
|
-
"type": "
|
2903
|
-
},
|
2904
|
-
{
|
2905
|
-
"components": [
|
2906
|
-
{
|
2907
|
-
"internalType": "NftId",
|
2908
|
-
"name": "productNftId",
|
2909
|
-
"type": "uint96"
|
2910
|
-
},
|
2911
|
-
{
|
2912
|
-
"internalType": "bytes",
|
2913
|
-
"name": "data",
|
2914
|
-
"type": "bytes"
|
2915
|
-
}
|
2916
|
-
],
|
2917
|
-
"internalType": "struct IRisk.RiskInfo",
|
2918
|
-
"name": "risk",
|
2919
|
-
"type": "tuple"
|
840
|
+
"internalType": "address",
|
841
|
+
"name": "target",
|
842
|
+
"type": "address"
|
2920
843
|
},
|
2921
844
|
{
|
2922
|
-
"internalType": "
|
2923
|
-
"name": "
|
2924
|
-
"type": "
|
845
|
+
"internalType": "bool",
|
846
|
+
"name": "locked",
|
847
|
+
"type": "bool"
|
2925
848
|
}
|
2926
849
|
],
|
2927
|
-
"name": "
|
850
|
+
"name": "setTargetLocked",
|
2928
851
|
"outputs": [],
|
2929
852
|
"stateMutability": "nonpayable",
|
2930
853
|
"type": "function"
|
@@ -2932,126 +855,35 @@
|
|
2932
855
|
{
|
2933
856
|
"inputs": [
|
2934
857
|
{
|
2935
|
-
"internalType": "
|
2936
|
-
"name": "
|
2937
|
-
"type": "
|
2938
|
-
}
|
858
|
+
"internalType": "bytes4",
|
859
|
+
"name": "interfaceId",
|
860
|
+
"type": "bytes4"
|
861
|
+
}
|
862
|
+
],
|
863
|
+
"name": "supportsInterface",
|
864
|
+
"outputs": [
|
2939
865
|
{
|
2940
|
-
"internalType": "
|
2941
|
-
"name": "
|
2942
|
-
"type": "
|
866
|
+
"internalType": "bool",
|
867
|
+
"name": "",
|
868
|
+
"type": "bool"
|
2943
869
|
}
|
2944
870
|
],
|
2945
|
-
"
|
2946
|
-
"outputs": [],
|
2947
|
-
"stateMutability": "nonpayable",
|
871
|
+
"stateMutability": "view",
|
2948
872
|
"type": "function"
|
2949
873
|
}
|
2950
874
|
],
|
2951
|
-
"bytecode": "0x608060405234801561001057600080fd5b50615d3980620000216000396000f3fe608060405234801561001057600080fd5b50600436106104d85760003560e01c806375b238fc11610283578063bf7e214f1161015c578063e9e96c70116100ce578063f7c34ee011610092578063f7c34ee014610bcb578063fa145b6d14610bde578063fb4a8e3414610bf1578063fbc1a3a014610c04578063fe1f18d614610c17578063fed3d63f14610c2a57600080fd5b8063e9e96c7014610b54578063f21de1e814610830578063f48016ce14610b92578063f7b442d114610ba5578063f7bc431c14610bb857600080fd5b8063cf947d2011610120578063cf947d2014610aea578063d2f21a2914610afd578063dee3262314610b10578063e1033e7d14610b23578063e5f6cd2714610b2b578063e7f7fb8614610b4157600080fd5b8063bf7e214f14610abf578063c0c53b8b14610ac7578063c29948fc14610635578063ca600b1c14610ada578063cde749f414610ae257600080fd5b8063a5961b4c116101f5578063afa5e130116101b9578063afa5e130146107c4578063afcc743914610a60578063b3260e9314610a73578063b6d7cd6214610a86578063bb1e0e5914610a99578063bf1db3f914610aac57600080fd5b8063a5961b4c14610961578063a671495e14610a12578063a76ee01814610a25578063a898967514610a38578063ada9652e14610a4b57600080fd5b80638e28413f116102475780638e28413f146108e75780638eaa6ac0146108fa5780638fb360371461091a5780639df0280b146105f25780639e90178c1461093b578063a13df2ab1461094e57600080fd5b806375b238fc1461089e5780637a9e5e4b146108a65780637b8c388f146108b95780637cef4842146108cc578063893d20e8146108df57600080fd5b806338a699a4116103b557806354d747a8116103275780635d4345cc116102eb5780635d4345cc146105f25780635dfa73db1461084157806361f5f4201461084a578063644c45e01461085b578063675393bf146108835780636b9bf08b1461089657600080fd5b806354d747a8146107d757806354f6127f146107ea5780635772b1011461080a57806358dff9ea1461081d5780635ab1bd531461083057600080fd5b8063422c9d0011610379578063422c9d001461077b5780634288121d1461078e578063447fc48f14610796578063468a1867146107a9578063468bce06146107bc5780635378cd3c146107c457600080fd5b806338a699a4146107095780633c0d6a411461071c5780633ca7c02a1461072f5780633e35aba81461075557806340529b0f1461076857600080fd5b8063138461e01161044e5780632781d443116104125780632781d443146106a357806327953f48146106ab57806327bb7a33146106be5780632f61088a146106d157806336fc697e146106e457806337f135d7146106ec57600080fd5b8063138461e01461062d5780631518afb9146106355780631b38d5f4146106485780631eff4b2214610669578063214cdb801461069057600080fd5b80630f03144a116104a05780630f03144a146105b95780630f526f7d146105cc5780630f749a89146105df5780630fad0eb1146105f25780630fec111c146106055780631204b5531461061a57600080fd5b806301ffc9a7146104dd57806302cd30711461051f57806309648a9d146105445780630cbc6b891461057e5780630d35818114610593575b600080fd5b61050a6104eb366004613ec1565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6006546001600160a01b03165b6040516001600160a01b039091168152602001610516565b61056c610552366004613eeb565b600090815260046020526040902054610100900460ff1690565b60405160ff9091168152602001610516565b61059161058c366004614157565b610c32565b005b61056c6105a13660046141a3565b60ff9081166000908152600260205260409020541690565b6105916105c7366004614328565b610c78565b6105916105da366004614377565b610cb6565b6105916105ed3660046143b0565b610cd3565b610591610600366004614377565b610e41565b61060d610e56565b604051610516919061441d565b6105916106283660046144a8565b611005565b61059161102b565b61059161064336600461467e565b61122d565b61065b6106563660046146c5565b611253565b604051908152602001610516565b61065b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b61059161069e366004613ec1565b6112f2565b61065b600381565b6105916106b93660046147d2565b61131f565b6105916106cc36600461480e565b61133d565b6105916106df366004614900565b6113c9565b610591611464565b6106f4600081565b60405163ffffffff9091168152602001610516565b61050a610717366004613eeb565b6114aa565b61059161072a3660046149bc565b611539565b61073d6001600160401b0381565b6040516001600160401b039091168152602001610516565b61065b6107633660046146c5565b61155f565b610591610776366004614377565b61158c565b6105916107893660046143b0565b6115a1565b61052c6117a7565b6105916107a4366004614a1d565b61183a565b61065b6107b73660046146c5565b611866565b610591611893565b6105916107d2366004614a91565b6118bd565b6105916107e5366004614b72565b6118d0565b6107fd6107f8366004613eeb565b6118ee565b6040516105169190614bae565b610591610818366004614c04565b611993565b61059161082b366004614d0c565b6119b9565b6001546001600160a01b031661052c565b61073d61271081565b6007546001600160a01b031661052c565b600080516020615cc4833981519152546040516001600160601b039091168152602001610516565b6105916108913660046143b0565b6119e1565b61052c611aed565b61073d600081565b6105916108b43660046143b0565b611b16565b61065b6108c73660046146c5565b611b99565b6105916108da366004614d53565b611bc6565b61052c611c50565b6105916108f5366004614d71565b611d87565b61090d610908366004613eeb565b611daf565b6040516105169190614e00565b610922611ef0565b6040516001600160e01b03199091168152602001610516565b610591610949366004614ed1565b611f28565b61065b61095c3660046146c5565b611f50565b610a0561096f366004613eeb565b6040805160a08101825260008082526020820181905291810182905260608101829052608081019190915250600090815260046020908152604091829020825160a081018452905460ff8082168352610100820416928201929092526001600160a01b03620100008304169281019290925263ffffffff600160b01b820481166060840152600160d01b90910416608082015290565b6040516105169190614f08565b610591610a20366004614f97565b611f7d565b610591610a33366004614fdc565b611fa3565b610591610a46366004615023565b61203e565b61065b600080516020615cc483398151915281565b610591610a6e366004615063565b61212f565b610591610a813660046150a8565b612155565b610591610a943660046150e6565b612173565b610591610aa7366004615116565b612188565b61050a610aba3660046141a3565b61234d565b61052c61239a565b610591610ad5366004615142565b6123b6565b61052c612563565b61056c61258c565b610591610af8366004615182565b612603565b610591610b0b366004614377565b612621565b610591610b1e366004614377565b612638565b61052c61264f565b60055461010090046001600160a01b031661052c565b610591610b4f3660046151c0565b612678565b61050a610b62366004615023565b60ff9283166000908152600360209081526040808320948616835293815283822092851682529190915220541690565b61065b610ba0366004615211565b612852565b610591610bb336600461523f565b6128dd565b610591610bc63660046143b0565b612905565b610591610bd9366004615280565b6129f2565b610591610bec3660046152ae565b612a69565b610591610bff366004615305565b612a8f565b610591610c1236600461534c565b612ab5565b610591610c25366004614377565b612add565b61052c612af2565b610c3f335b600036612b1b565b610c73610c4d84606e612c21565b83604051602001610c5e919061537a565b60405160208183030381529060405283612c6d565b505050565b610c8133610c37565b610cb2610c8d83611f50565b82604051602001610c9e9190615429565b604051602081830303815290604052612c78565b5050565b610cbf33610c37565b610cb2610ccd83608c612c21565b82612c82565b610cdc33610c37565b60055461010090046001600160a01b031615610d3f5760405162461bcd60e51b815260206004820152601c60248201527f496e7374616e63654163636573734d616e61676572206973207365740000000060448201526064015b60405180910390fd5b610d4761239a565b6001600160a01b0316816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d8e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610db291906154e5565b6001600160a01b031614610e195760405162461bcd60e51b815260206004820152602860248201527f496e7374616e63654163636573734d616e6167657220617574686f72697479206044820152670dad2e6dac2e8c6d60c31b6064820152608401610d36565b600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b610e4a33610c37565b610cb2610ccd83611866565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820152907f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa3006040805160808101825282546001600160601b038116825260ff600160601b820481166020840152600160681b90910416151591810191909152600182018054919291606084019190610f0190615502565b80601f0160208091040260200160405190810160405280929190818152602001828054610f2d90615502565b8015610f7a5780601f10610f4f57610100808354040283529160200191610f7a565b820191906000526020600020905b815481529060010190602001808311610f5d57829003601f168201915b50505050508152505090506040518060e00160405280610f98600090565b6001600160601b0316815260200182600001516001600160601b03168152602001826020015160ff168152602001826040015115158152602001306001600160a01b03168152602001610fe9611c50565b6001600160a01b03168152602001826060015181525091505090565b61100e33610c37565b610c7361101a84611f50565b83604051602001610c5e9190615429565b6000600080516020615cc483398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af415801561109a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110be919061553c565b156110ea5780546040516301ab8b6760e21b81526001600160601b039091166004820152602401610d36565b306110fd6001546001600160a01b031690565b60405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa158015611145573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611169919061553c565b6111915760405163b9304b0d60e01b81526001600160a01b0382166004820152602401610d36565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038381166004830152919091169063d272ac1e90602401602060405180830381865afa1580156111e5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112099190615559565b82546bffffffffffffffffffffffff19166001600160601b03919091161790915550565b61123633610c37565b610c7361124284611866565b83604051602001610c5e9190615576565b600073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__633889a4c86001600160601b03841660795b6040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff166024820152604401602060405180830381865af41580156112c8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112ec91906156c4565b92915050565b6112fa612c8c565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b61132833610c37565b610cb28282604051602001610c9e91906156dd565b611345612c8c565b61134f82876129f2565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b861515021781559050600181016113bf83826157d3565b5050505050505050565b6113d233610c37565b6040516355ee627560e01b81526001600160c01b031983166004820152610cb29073__$19a201e37be2e25dc57bd4aa563a0edb25$__906355ee627590602401602060405180830381865af415801561142f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061145391906156c4565b82604051602001610c9e9190615892565b61146c612c8c565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b600081815260046020819052604080832054905163b2466acf60e01b815261010090910460ff169181019190915273__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf906024015b602060405180830381865af4158015611515573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112ec919061553c565b61154233610c37565b610c7361154e84611866565b82604051602001610c9e91906158c0565b600073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__633889a4c86001600160601b038416607861127c565b61159533610c37565b610cb2610ccd83611b99565b6115aa33610c37565b6007546001600160a01b0316156115fa5760405162461bcd60e51b8152602060048201526014602482015273109d5b991b1953585b9859d95c881a5cc81cd95d60621b6044820152606401610d36565b306001600160a01b0316816001600160a01b031663de7b5d146040518163ffffffff1660e01b8152600401602060405180830381865afa158015611642573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061166691906154e5565b6001600160a01b0316146116bc5760405162461bcd60e51b815260206004820152601f60248201527f42756e646c654d616e6167657220696e7374616e6365206d69736d61746368006044820152606401610d36565b6116c461239a565b6001600160a01b0316816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561170b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061172f91906154e5565b6001600160a01b0316146117855760405162461bcd60e51b815260206004820181905260248201527f42756e646c654d616e6167657220617574686f72697479206d69736d617463686044820152606401610d36565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b60006117bb6001546001600160a01b031690565b6001600160a01b031663d39e6043606e5b6040516001600160e01b031960e084901b16815260ff909116600482015260036024820152604401602060405180830381865afa158015611811573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061183591906154e5565b905090565b61184333610c37565b61186061184f85611866565b83604051602001610c5e91906158c0565b50505050565b600073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__633889a4c86001600160601b03841660d361127c565b61189b612c8c565b6118a3612cd5565b6118ab612df8565b6118b3612eeb565b6118bb612ff9565b565b6118c633610c37565b610cb28282612c82565b6118d933610c37565b610cb28282604051602001610c9e9190615911565b600081815260046020526040902060010180546060919061190e90615502565b80601f016020809104026020016040519081016040528092919081815260200182805461193a90615502565b80156119875780601f1061195c57610100808354040283529160200191611987565b820191906000526020600020905b81548152906001019060200180831161196a57829003601f168201915b50505050509050919050565b61199c33610c37565b6118606119a885611866565b83604051602001610c5e91906159ac565b6119c233610c37565b610c736119d084608c612c21565b83604051602001610c5e91906159dc565b6119e9612c8c565b806001600160a01b03163b600003611a1f5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610d36565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b8152630a3888e560e31b60048201526301ffc9a790602401602060405180830381865afa925050508015611a99575060408051601f3d908101601f19168201909252611a969181019061553c565b60015b611ac15760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610d36565b80610cb25760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610d36565b50565b6000611b016001546001600160a01b031690565b6001600160a01b031663d39e6043608c6117cc565b33611b1f61239a565b6001600160a01b0316816001600160a01b031614611b5a5760405162d1953b60e31b81526001600160a01b0382166004820152602401610d36565b816001600160a01b03163b600003611b90576040516361798f2f60e11b81526001600160a01b0383166004820152602401610d36565b610cb2826130b5565b600073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__633889a4c86001600160601b038416607a61127c565b611bcf33610c37565b6040516355ee627560e01b81526001600160c01b031983166004820152610cb29073__$19a201e37be2e25dc57bd4aa563a0edb25$__906355ee627590602401602060405180830381865af4158015611c2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ccd91906156c4565b600080600080516020615cc483398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015611cc0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ce4919061553c565b15611d71576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611d47573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d6b91906154e5565b91505090565b54600160601b90046001600160a01b0316919050565b611d9033610c37565b610cb2611d9e83608c612c21565b82604051602001610c9e91906159dc565b6040805160e081018252600091810182815260608083018490526080830184905260a0830184905260c083019390935281526020810191909152600082815260046020908152604091829020825160e081018452815460ff80821695830195865261010082041660608301526001600160a01b0362010000820416608083015263ffffffff600160b01b8204811660a0840152600160d01b9091041660c08201529283526001810180549192840191611e6790615502565b80601f0160208091040260200160405190810160405280929190818152602001828054611e9390615502565b8015611ee05780601f10611eb557610100808354040283529160200191611ee0565b820191906000526020600020905b815481529060010190602001808311611ec357829003601f168201915b5050505050815250509050919050565b600080516020615ce4833981519152805460009190600160a01b900460ff16611f1a576000611d6b565b638fb3603760e01b91505090565b611f3133610c37565b610cb2611f3f836078612c21565b82604051602001610c9e9190615a43565b600073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__633889a4c86001600160601b03841660dc61127c565b611f8633610c37565b610cb2611f9283611b99565b82604051602001610c9e9190615ab7565b611fac33610c37565b6040516355ee627560e01b81526001600160c01b031984166004820152610c739073__$19a201e37be2e25dc57bd4aa563a0edb25$__906355ee627590602401602060405180830381865af4158015612009573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061202d91906156c4565b83604051602001610c5e9190615892565b60ff8381166000908152600260205260409081902054905163037c8cb160e51b81529116600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__90636f91962090602401602060405180830381865af41580156120a3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120c7919061553c565b156120d157505050565b60ff808416600090815260036020908152604080832086851684528252808320858516845290915290205416610c7357604051636bb20ea760e01b815260ff8085166004830152808416602483015282166044820152606401610d36565b61213833610c37565b610cb261214483611866565b82604051602001610c9e9190615576565b61215e33610c37565b610c738383604051602001610c5e91906156dd565b61217c33610c37565b610c73610ccd84611866565b6001546001600160a01b03166001600160a01b031663120726c36040518163ffffffff1660e01b8152600401602060405180830381865afa1580156121d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121f591906154e5565b6001600160a01b0316336001600160a01b03161461221257600080fd5b60055461010090046001600160a01b03166303014974612230613116565b6040516001600160e01b031960e084901b1681526001600160401b039091166004820152602401602060405180830381865afa158015612274573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061229891906156c4565b156122a5576122a5615b15565b60055461010090046001600160a01b031663b428b0b06122c3613116565b6040516001600160e01b031960e084901b1681526001600160401b0390911660048201526001600160a01b03851660248201526044016020604051808303816000875af1158015612318573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061233c919061553c565b1515600114610cb257610cb2615b15565b60ff81811660009081526002602052604080822054905163b2466acf60e01b8152921660048301529073__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf906024016114f8565b600080516020615ce4833981519152546001600160a01b031690565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff1615906001600160401b03166000811580156123fb5750825b90506000826001600160401b031660011480156124175750303b155b905081158015612425575080155b156124435760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561246d57845460ff60401b1916600160401b1785555b6124768861318e565b60008790506124fb88826001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa1580156124bd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124e19190615559565b604660018b6040518060200160405280600081525061133d565b612503611893565b61251363200c173160e01b6112f2565b5083156113bf57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15050505050505050565b60006125776001546001600160a01b031690565b6001600160a01b031663d39e604360786117cc565b604051632392b61b60e21b81526003600482015260009073__$9dab98ad7ae1a426029e5739f922230a41$__90638e4ad86c90602401602060405180830381865af41580156125df573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118359190615b2b565b61260c33610c37565b610c738383604051602001610c5e9190615911565b61262a33610c37565b610cb2610ccd836078612c21565b61264133610c37565b610cb2610ccd83606e612c21565b60006126636001546001600160a01b031690565b6001600160a01b031663d39e604360d36117cc565b6001546001600160a01b03166001600160a01b031663120726c36040518163ffffffff1660e01b8152600401602060405180830381865afa1580156126c1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126e591906154e5565b6001600160a01b0316336001600160a01b03161461270257600080fd5b60055461010090046001600160a01b031663b7d2b162612720613116565b6040516001600160e01b031960e084901b1681526001600160401b0390911660048201526001600160a01b03861660248201526044016020604051808303816000875af1158015612775573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612799919061553c565b15156001146127aa576127aa615b15565b60055461010090046001600160a01b031663b428b0b06127c8613116565b6040516001600160e01b031960e084901b1681526001600160401b0390911660048201526001600160a01b03851660248201526044016020604051808303816000875af115801561281d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612841919061553c565b1515600114610c7357610c73615b15565b604051637a400b6760e11b815260ff8316600482015260ff198216602482015260009073__$c8f743efd2b4f0c9300f2558c784479d3e$__9063f48016ce906044015b602060405180830381865af41580156128b2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128d691906156c4565b9392505050565b6128e633610c37565b610c736128f4846078612c21565b83604051602001610c5e9190615a43565b61290e33610c37565b306001600160a01b0316816001600160a01b031663de7b5d146040518163ffffffff1660e01b8152600401602060405180830381865afa158015612956573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061297a91906154e5565b6001600160a01b0316146129d05760405162461bcd60e51b815260206004820181905260248201527f496e7374616e636552656164657220696e7374616e6365206d69736d617463686044820152606401610d36565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6129fa612c8c565b612a03816119e1565b612a0b611464565b6001600160a01b038216612a325760405163f17ef42d60e01b815260040160405180910390fd5b50600080516020615cc483398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b612a7233610c37565b610c73612a7e84611866565b82604051602001610c9e91906159ac565b612a9833610c37565b610c73612aa484611b99565b83604051602001610c5e9190615ab7565b612abe33610c37565b610cb2612acc83606e612c21565b82604051602001610c9e919061537a565b612ae633610c37565b610cb2610ccd83611f50565b6000612b066001546001600160a01b031690565b6001600160a01b031663d39e604360dc6117cc565b600080516020615ce4833981519152600080612b56612b3861239a565b8730612b48600460008a8c615b48565b612b5191615b72565b61319f565b9150915081612c195763ffffffff811615612bf657825460ff60a01b1916600160a01b178355612b8461239a565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b8152600401612bb393929190615ba2565b600060405180830381600087803b158015612bcd57600080fd5b505af1158015612be1573d6000803e3d6000fd5b5050845460ff60a01b1916855550612c199050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401610d36565b505050505050565b604051630711349960e31b81526001600160601b038316600482015260ff8216602482015260009073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__90633889a4c890604401612895565b610c738383836132ab565b610cb28282613753565b610cb28282613b6c565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff166118bb57604051631afcd79f60e31b815260040160405180910390fd5b7f4bee8dc518469fb8c73831886b94afa96b3ef3e3ee55b9076720259192220ef08054606460ff19918216179091557ffb39f406c8d3ff86a211d5f8c6729c90fce2fed80808bb47b6dc39e975a7d4d68054821660019081179091557fe59968928be831d9cd5403370c74d9f1dac318690d88a2efef2b29079332ee4f80548316821790557fe78520cf30689bb50fce16ae1e25040217df710de55e9ed38f2b2722b2a984688054909216811790915560dc600090815260036020527fa093975c0a88af8b2bf4799c5b4be14d42fc326c2a331b9f3fb3caecbaa5104f90606e5b60ff1660ff1681526020019081526020016000206000612dd460c890565b60ff1681526020810191909152604001600020805460ff1916911515919091179055565b7f7673bcbb3401a7cbae68f81d40eea2cf35afdaf7ecd016ebf3f02857fcc1260a8054606460ff1991821681179092557fa1c69de77e78d12e062170d002ba111ba52c8f452f3b0ca326991b7298fd7aaf80548216600190811790915560008381527f6dcc58afd04aec67a07f8168234edce351865815e87e6f9a62e977830ebfce226020527f5267f8fb4089eaca6dac10383f9a063927ca0092f9c59d7ca3b3d61812638b028054909316821790925591600391905b60ff1660ff1681526020019081526020016000206000612ecd606e90565b60ff1660ff1681526020019081526020016000206000612dd460d290565b7feb6856e0ae0d71a8a9e0bc42aca98fe96c3be13699c5c2d551c94a190e39043d8054600a60ff19918216179091557f4b5a0a5953a753e51be29e6e2b638995162612852ea3b46cff09cbac61f9cb568054821660019081179091557fb7939d1e06f7236b22c8e9bf344ab29b7c87eec9f53e55d389378ef7585ffd7e80548316821790557f158b1af96972c14cb1a5e39cbdbd793a3bc4f7c57c85ef22cf298bf517d6e0b380548316821790557f6160f9e22b3793ed435de7ac6b8dd0ee9d3110d626fe8135ffbb7d38470f229a8054909216811790915560d3600090815260036020527fb0b6d2d73fcb69de4c434c711239319c2c669ebf6407f36fc258ff9f98f803fa906064612db6565b7fec56eb74d500f9b1bf8f0c5cc42ff5ed51e8d9e3a2ebb6e83a26383f297e0f1e8054606460ff1991821681179092557fe63626ccd25c67b6e53c3bd622e9c77c962be121e55eb3904854ac631eb8f9f080548216600190811790915560009283527fa74711c3b0f698a9dde85849aefdd2d454c235a4c161e6f019356c5ec8490c816020527fbed2f4a35dfbfdf2c5294831261529ea73fa5b94705484f5af8ba1bc3cb59362805490921681179091559060039060c8612eaf565b600080516020615ce483398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b6040516368aebf7b60e01b815261076c600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b90602401602060405180830381865af415801561316a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118359190615be2565b613196612c8c565b611aea81613eb0565b6040516001600160a01b03848116602483015283811660448301526001600160e01b03198316606483015260009182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b1790525161320e9190615c0b565b600060405180830381855afa9150503d8060008114613249576040519150601f19603f3d011682016040523d82523d6000602084013e61324e565b606091505b509150915081156132a057604081511061328057808060200190518101906132769190615c27565b90945092506132a0565b60208151106132a0578080602001905181019061329d919061553c565b93505b505094509492505050565b60405163b2466acf60e01b815260ff8216600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af41580156132fd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613321919061553c565b61336d5760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a4b56532d3032303a53544154455f554e444546494e45440000006044820152606401610d36565b6000838152600460208190526040918290208054925163b2466acf60e01b815261010090930460ff169183018290529173__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af41580156133d9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133fd919061553c565b6134495760405162461bcd60e51b815260206004820152601a60248201527f4552524f523a4b56532d3032313a4e4f545f4558495354494e470000000000006044820152606401610d36565b600085815260046020526040902060010161346485826157d3565b508154620100003390810262010000600160b01b031960ff87166101000216610100600160b01b03198416171784559063ffffffff600160b01b909104166134a94390565b845463ffffffff91909116600160b01b0263ffffffff60b01b19909116178455604051634b00e98f60e11b8152600481018890527fe41a93c15e024a0b2371127599959a8e543dd6a8d820238e906c93a3004248fa9073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af415801561353b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061355f9190615b2b565b604051630713cfad60e31b8152600481018a905273__$c8f743efd2b4f0c9300f2558c784479d3e$__9063389e7d6890602401602060405180830381865af41580156135af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135d39190615c56565b85888632876040516135eb9796959493929190615c73565b60405180910390a1604051634b00e98f60e11b8152600481018890527f7bd0ab7f1746bd20a814d6705a46876c84f1aa2d35c80d8c173e268bd6d4b26c9073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af4158015613665573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906136899190615b2b565b604051630713cfad60e31b8152600481018a905273__$c8f743efd2b4f0c9300f2558c784479d3e$__9063389e7d6890602401602060405180830381865af41580156136d9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906136fd9190615c56565b6040805160ff938416815260ff199092166020830152918816918101919091526001600160a01b038416606082015232608082015263ffffffff831660a082015260c0015b60405180910390a150505050505050565b604051634b00e98f60e11b81526004810183905260009073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af41580156137a6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906137ca9190615b2b565b60405163b2466acf60e01b815260ff8216600482015290915073__$fb4566b39bd2075cb32f600f6f40bfaef2$__9063b2466acf90602401602060405180830381865af415801561381f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613843919061553c565b61388f5760405162461bcd60e51b815260206004820152601c60248201527f4552524f523a4b56532d3031303a545950455f554e444546494e4544000000006044820152606401610d36565b6000838152600460208190526040918290208054925163037c8cb160e51b815261010090930460ff16918301919091529073__$2a12cf1a40369f689f3a67e70f4b31dadc$__90636f91962090602401602060405180830381865af41580156138fc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613920919061553c565b61396c5760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a4b56532d3031323a414c52454144595f435245415445440000006044820152606401610d36565b334360006139798561234d565b61398457606461399a565b60ff808616600090815260026020526040902054165b845460ff87811661ffff1990921691909117610100918316919091021762010000600160d01b031916620100006001600160a01b0386160263ffffffff60b01b191617600160b01b63ffffffff85169081029190911763ffffffff60d01b1916600160d01b919091021785556000888152600460205260409020909150600101613a2487826157d3565b50604051634b00e98f60e11b8152600481018890527ffcb75eb7b317145f986c763e1a3eab5f9b4dbaf7955504f70f986d799c3ab39d9073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af4158015613a97573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613abb9190615b2b565b604051630713cfad60e31b8152600481018a905273__$c8f743efd2b4f0c9300f2558c784479d3e$__9063389e7d6890602401602060405180830381865af4158015613b0b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613b2f9190615c56565b6040805160ff938416815260ff199092166020830152918416918101919091526001600160a01b038516606082015232608082015260a001613742565b60405163b2466acf60e01b815260ff8216600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af4158015613bbe573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613be2919061553c565b613c2e5760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a4b56532d3034303a53544154455f554e444546494e45440000006044820152606401610d36565b6000828152600460208190526040918290208054925163b2466acf60e01b815261010090930460ff169183018290529173__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af4158015613c9a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613cbe919061553c565b613d0a5760405162461bcd60e51b815260206004820152601a60248201527f4552524f523a4b56532d3034313a4e4f545f4558495354494e470000000000006044820152606401610d36565b8154613d1a9060ff16828561203e565b8154620100003390810262010000600160b01b031960ff87166101000216610100600160b01b03198416171784559063ffffffff600160b01b90910416613d5e4390565b845463ffffffff91909116600160b01b0263ffffffff60b01b19909116178455604051634b00e98f60e11b8152600481018790527fe41a93c15e024a0b2371127599959a8e543dd6a8d820238e906c93a3004248fa9073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af4158015613df0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613e149190615b2b565b604051630713cfad60e31b81526004810189905273__$c8f743efd2b4f0c9300f2558c784479d3e$__9063389e7d6890602401602060405180830381865af4158015613e64573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613e889190615c56565b8588863287604051613ea09796959493929190615c73565b60405180910390a1505050505050565b613eb8612c8c565b611aea816130b5565b600060208284031215613ed357600080fd5b81356001600160e01b0319811681146128d657600080fd5b600060208284031215613efd57600080fd5b5035919050565b6001600160601b0381168114611aea57600080fd5b8035613f2481613f04565b919050565b634e487b7160e01b600052604160045260246000fd5b604080519081016001600160401b0381118282101715613f6157613f61613f29565b60405290565b60405161010081016001600160401b0381118282101715613f6157613f61613f29565b60405161012081016001600160401b0381118282101715613f6157613f61613f29565b60405161020081016001600160401b0381118282101715613f6157613f61613f29565b604051608081016001600160401b0381118282101715613f6157613f61613f29565b60405160e081016001600160401b0381118282101715613f6157613f61613f29565b60405160a081016001600160401b0381118282101715613f6157613f61613f29565b6001600160a01b0381168114611aea57600080fd5b8035613f2481614036565b60006040828403121561406857600080fd5b614070613f3f565b9050813581526020820135602082015292915050565b8015158114611aea57600080fd5b8035613f2481614086565b600061014082840312156140b257600080fd5b6140ba613f67565b90506140c58261404b565b81526140d36020830161404b565b60208201526140e460408301613f19565b60408201526140f560608301613f19565b60608201526141078360808401614056565b60808201526141198360c08401614056565b60a082015261412b6101008301614094565b60c082015261413d610120830161404b565b60e082015292915050565b60ff81168114611aea57600080fd5b6000806000610180848603121561416d57600080fd5b833561417881613f04565b9250614187856020860161409f565b915061016084013561419881614148565b809150509250925092565b6000602082840312156141b557600080fd5b81356128d681614148565b600082601f8301126141d157600080fd5b81356001600160401b03808211156141eb576141eb613f29565b604051601f8301601f19908116603f0116810190828211818310171561421357614213613f29565b8160405283815286602085880101111561422c57600080fd5b836020870160208301376000602085830101528094505050505092915050565b64ffffffffff81168114611aea57600080fd5b8035613f248161424c565b6000610140828403121561427d57600080fd5b614285613f8a565b905061429082613f19565b815261429f8360208401614056565b602082015260608201356001600160401b038111156142bd57600080fd5b6142c9848285016141c0565b6040830152506080820135606082015260a0820135608082015260c082013560a08201526142f960e0830161425f565b60c082015261010061430c81840161425f565b60e083015261431e610120840161425f565b9082015292915050565b6000806040838503121561433b57600080fd5b823561434681613f04565b915060208301356001600160401b0381111561436157600080fd5b61436d8582860161426a565b9150509250929050565b6000806040838503121561438a57600080fd5b823561439581613f04565b915060208301356143a581614148565b809150509250929050565b6000602082840312156143c257600080fd5b81356128d681614036565b60005b838110156143e85781810151838201526020016143d0565b50506000910152565b600081518084526144098160208601602086016143cd565b601f01601f19169290920160200192915050565b6020815260006001600160601b038084511660208401528060208501511660408401525060ff604084015116606083015260608301511515608083015260018060a01b0360808401511660a083015260a083015161448660c08401826001600160a01b03169052565b5060c083015160e0808401526144a06101008401826143f1565b949350505050565b6000806000606084860312156144bd57600080fd5b83356144c881613f04565b925060208401356001600160401b038111156144e357600080fd5b6144ef8682870161426a565b925050604084013561419881614148565b6001600160c01b031981168114611aea57600080fd5b8035613f2481614500565b61ffff81168114611aea57600080fd5b8035613f2481614521565b6000610200828403121561454f57600080fd5b614557613fad565b905061456282613f19565b815261457060208301613f19565b602082015261458160408301614516565b604082015261459260608301614516565b60608201526080820135608082015260a082013560a082015260c082013560c08201526145c160e0830161425f565b60e0820152610100808301356001600160401b03808211156145e257600080fd5b6145ee868387016141c0565b8385015261012092508285013591508082111561460a57600080fd5b50614617858286016141c0565b82840152505061014061462b818401614531565b9082015261016061463d838201614531565b9082015261018082810135908201526101a061465a81840161425f565b908201526101c061466c83820161425f565b908201526101e061431e83820161425f565b60008060006060848603121561469357600080fd5b833561469e81613f04565b925060208401356001600160401b038111156146b957600080fd5b6144ef8682870161453c565b6000602082840312156146d757600080fd5b81356128d681613f04565b63ffffffff81168114611aea57600080fd5b8035613f24816146e2565b6000610120828403121561471257600080fd5b61471a613f8a565b905081356001600160401b038082111561473357600080fd5b61473f858386016141c0565b835260208401356020840152604084013560408401526060840135606084015261476b608085016146f4565b608084015261477c60a085016146f4565b60a084015261478d60c08501614094565b60c084015261479e60e08501614094565b60e0840152610100915081840135818111156147b957600080fd5b6147c5868287016141c0565b8385015250505092915050565b600080604083850312156147e557600080fd5b8235915060208301356001600160401b0381111561480257600080fd5b61436d858286016146ff565b60008060008060008060c0878903121561482757600080fd5b863561483281614036565b9550602087013561484281613f04565b9450604087013561485281614148565b9350606087013561486281614086565b9250608087013561487281614036565b915060a08701356001600160401b0381111561488d57600080fd5b61489989828a016141c0565b9150509295509295509295565b6000604082840312156148b857600080fd5b6148c0613f3f565b905081356148cd81613f04565b815260208201356001600160401b038111156148e857600080fd5b6148f4848285016141c0565b60208301525092915050565b6000806040838503121561491357600080fd5b823561491e81614500565b915060208301356001600160401b0381111561493957600080fd5b61436d858286016148a6565b60006080828403121561495757600080fd5b61495f613fd0565b9050813561496c81614521565b81526020828101359082015260408201356001600160401b0381111561499157600080fd5b61499d848285016141c0565b60408301525060608201356149b18161424c565b606082015292915050565b6000806000606084860312156149d157600080fd5b83356149dc81613f04565b925060208401356149ec816146e2565b915060408401356001600160401b03811115614a0757600080fd5b614a1386828701614945565b9150509250925092565b60008060008060808587031215614a3357600080fd5b8435614a3e81613f04565b93506020850135614a4e816146e2565b925060408501356001600160401b03811115614a6957600080fd5b614a7587828801614945565b9250506060850135614a8681614148565b939692955090935050565b60008060408385031215614aa457600080fd5b8235915060208301356143a581614148565b600060e08284031215614ac857600080fd5b614ad0613ff2565b9050614adb82613f19565b815260208201356001600160401b0380821115614af757600080fd5b614b03858386016141c0565b602084015260408401356040840152614b1e606085016146f4565b6060840152614b2f608085016146f4565b6080840152614b4060a0850161425f565b60a084015260c0840135915080821115614b5957600080fd5b50614b66848285016141c0565b60c08301525092915050565b60008060408385031215614b8557600080fd5b8235915060208301356001600160401b03811115614ba257600080fd5b61436d85828601614ab6565b6020815260006128d660208301846143f1565b600060808284031215614bd357600080fd5b614bdb613fd0565b9050813581526020820135602082015260408201356001600160401b0381111561499157600080fd5b60008060008060808587031215614c1a57600080fd5b8435614c2581613f04565b93506020850135614c3581614521565b925060408501356001600160401b03811115614c5057600080fd5b614a7587828801614bc1565b600060a08284031215614c6e57600080fd5b614c76614014565b905081356001600160401b0380821115614c8f57600080fd5b614c9b858386016141c0565b835260208401359150614cad82614036565b81602084015260408401359150614cc382614036565b81604084015260608401359150614cd982614036565b8160608401526080840135915080821115614cf357600080fd5b50614d00848285016141c0565b60808301525092915050565b600080600060608486031215614d2157600080fd5b8335614d2c81613f04565b925060208401356001600160401b03811115614d4757600080fd5b6144ef86828701614c5c565b60008060408385031215614d6657600080fd5b823561439581614500565b60008060408385031215614d8457600080fd5b8235614d8f81613f04565b915060208301356001600160401b03811115614daa57600080fd5b61436d85828601614c5c565b60ff815116825260ff602082015116602083015260018060a01b036040820151166040830152606081015163ffffffff808216606085015280608084015116608085015250505050565b60208152614e12602082018351614db6565b6000602083015160c0808401526144a060e08401826143f1565b60006101008284031215614e3f57600080fd5b60405160c081018181106001600160401b0382111715614e6157614e61613f29565b6040529050808235614e7281613f04565b81526020830135614e8281614036565b6020820152614e948460408501614056565b6040820152614ea68460808501614056565b606082015260c0830135614eb981614036565b8060808301525060e083013560a08201525092915050565b6000806101208385031215614ee557600080fd5b8235614ef081613f04565b9150614eff8460208501614e2c565b90509250929050565b60a081016112ec8284614db6565b600060a08284031215614f2857600080fd5b614f30614014565b90508135614f3d81614500565b81526020820135614f4d81614086565b602082015260408201356001600160401b03811115614f6b57600080fd5b614f77848285016141c0565b604083015250606082013560608201526080820135608082015292915050565b60008060408385031215614faa57600080fd5b8235614fb581613f04565b915060208301356001600160401b03811115614fd057600080fd5b61436d85828601614f16565b600080600060608486031215614ff157600080fd5b8335614ffc81614500565b925060208401356001600160401b0381111561501757600080fd5b6144ef868287016148a6565b60008060006060848603121561503857600080fd5b833561504381614148565b9250602084013561505381614148565b9150604084013561419881614148565b6000806040838503121561507657600080fd5b823561508181613f04565b915060208301356001600160401b0381111561509c57600080fd5b61436d8582860161453c565b6000806000606084860312156150bd57600080fd5b8335925060208401356001600160401b038111156150da57600080fd5b6144ef868287016146ff565b6000806000606084860312156150fb57600080fd5b833561510681613f04565b9250602084013561505381614521565b6000806040838503121561512957600080fd5b823561513481614036565b946020939093013593505050565b60008060006060848603121561515757600080fd5b833561516281614036565b9250602084013561517281614036565b9150604084013561419881614036565b60008060006060848603121561519757600080fd5b8335925060208401356001600160401b038111156151b457600080fd5b6144ef86828701614ab6565b6000806000606084860312156151d557600080fd5b83356151e081614036565b925060208401356151f081614036565b929592945050506040919091013590565b60ff1981168114611aea57600080fd5b6000806040838503121561522457600080fd5b823561522f81614148565b915060208301356143a581615201565b6000806000610140848603121561525557600080fd5b833561526081613f04565b925061526f8560208601614e2c565b915061012084013561419881614148565b6000806040838503121561529357600080fd5b823561529e81614036565b915060208301356143a581614036565b6000806000606084860312156152c357600080fd5b83356152ce81613f04565b925060208401356152de81614521565b915060408401356001600160401b038111156152f957600080fd5b614a1386828701614bc1565b60008060006060848603121561531a57600080fd5b833561532581613f04565b925060208401356001600160401b0381111561534057600080fd5b6144ef86828701614f16565b600080610160838503121561536057600080fd5b823561536b81613f04565b9150614eff846020850161409f565b81516001600160a01b039081168252602080840151909116908201526040808301516001600160601b0316908201526060808301516101408301916153c9908401826001600160601b03169052565b5060808301516153e6608084018280518252602090810151910152565b5060a0830151805160c0840152602081015160e08401525060c08301518015156101008401525060e08301516001600160a01b0381166101208401525092915050565b602081526154436020820183516001600160601b03169052565b60006020830151615461604084018280518252602090810151910152565b50604083015161014080608085015261547e6101608501836143f1565b9150606085015160a0850152608085015160c085015260a085015160e085015260c08501516101006154b88187018364ffffffffff169052565b60e087015164ffffffffff811661012088015291505b9095015164ffffffffff1693019290925250919050565b6000602082840312156154f757600080fd5b81516128d681614036565b600181811c9082168061551657607f821691505b60208210810361553657634e487b7160e01b600052602260045260246000fd5b50919050565b60006020828403121561554e57600080fd5b81516128d681614086565b60006020828403121561556b57600080fd5b81516128d681613f04565b602081526155906020820183516001600160601b03169052565b600060208301516155ac60408401826001600160601b03169052565b5060408301516001600160c01b0319811660608401525060608301516001600160c01b03198116608084015250608083015160a083015260a083015160c083015260c083015160e083015260e08301516101006156118185018364ffffffffff169052565b8085015191505061020061012081818601526156316102208601846143f1565b9250808601519050610140601f19868503018187015261565184836143f1565b93508087015191505061016061566c8187018361ffff169052565b86015190506101806156838682018361ffff169052565b8601516101a08681019190915286015190506101c06156aa8187018364ffffffffff169052565b86015190506101e06154ce8682018364ffffffffff169052565b6000602082840312156156d657600080fd5b5051919050565b60208152600082516101208060208501526156fc6101408501836143f1565b9150602085015160408501526040850151606085015260608501516080850152608085015161573360a086018263ffffffff169052565b5060a085015163ffffffff811660c08601525060c085015180151560e08601525060e08501516101006157698187018315159052565b860151858403601f190183870152905061578383826143f1565b9695505050505050565b601f821115610c7357600081815260208120601f850160051c810160208610156157b45750805b601f850160051c820191505b81811015612c19578281556001016157c0565b81516001600160401b038111156157ec576157ec613f29565b615800816157fa8454615502565b8461578d565b602080601f831160018114615835576000841561581d5750858301515b600019600386901b1c1916600185901b178555612c19565b600085815260208120601f198616915b8281101561586457888601518255948401946001909101908401615845565b50858210156158825787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b602081526001600160601b038251166020820152600060208301516040808401526144a060608401826143f1565b6020815261ffff82511660208201526020820151604082015260006040830151608060608401526158f460a08401826143f1565b905064ffffffffff60608501511660808401528091505092915050565b602081526001600160601b0382511660208201526000602083015160e060408401526159416101008401826143f1565b90506040840151606084015263ffffffff6060850151166080840152608084015161597460a085018263ffffffff169052565b5060a084015164ffffffffff811660c08501525060c0840151838203601f190160e08501526159a382826143f1565b95945050505050565b60208152815160208201526020820151604082015260006040830151608060608401526158f460a08401826143f1565b602081526000825160a060208401526159f860c08401826143f1565b9050602084015160018060a01b03808216604086015280604087015116606086015280606087015116608086015250506080840151601f198483030160a08501526159a382826143f1565b81516001600160601b031681526020808301516001600160a01b039081168284015260408085015180519185019190915291820151606084015261010083019190606085015180516080860152602081015160a0860152915060808501511660c08401525060a09092015160e09091015290565b602081526001600160401b0360c01b82511660208201526020820151151560408201526000604083015160a06060840152615af560c08401826143f1565b905060608401516080840152608084015160a08401528091505092915050565b634e487b7160e01b600052600160045260246000fd5b600060208284031215615b3d57600080fd5b81516128d681614148565b60008085851115615b5857600080fd5b83861115615b6557600080fd5b5050820193919092039150565b6001600160e01b03198135818116916004851015615b9a5780818660040360031b1b83161692505b505092915050565b6001600160a01b03841681526040602082018190528101829052818360608301376000818301606090810191909152601f909201601f1916010192915050565b600060208284031215615bf457600080fd5b81516001600160401b03811681146128d657600080fd5b60008251615c1d8184602087016143cd565b9190910192915050565b60008060408385031215615c3a57600080fd5b8251615c4581614086565b60208401519092506143a5816146e2565b600060208284031215615c6857600080fd5b81516128d681615201565b60ff978816815260ff1996909616602087015293861660408601529190941660608401526001600160a01b03938416608084015290921660a082015263ffffffff9190911660c082015260e0019056fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00a2646970667358221220e049e50ee6b5934f82ffdbad61686d21dbc2f26f8dde3b29d305a89ee52bac4364736f6c63430008140033",
|
2952
|
-
"deployedBytecode": "0x608060405234801561001057600080fd5b50600436106104d85760003560e01c806375b238fc11610283578063bf7e214f1161015c578063e9e96c70116100ce578063f7c34ee011610092578063f7c34ee014610bcb578063fa145b6d14610bde578063fb4a8e3414610bf1578063fbc1a3a014610c04578063fe1f18d614610c17578063fed3d63f14610c2a57600080fd5b8063e9e96c7014610b54578063f21de1e814610830578063f48016ce14610b92578063f7b442d114610ba5578063f7bc431c14610bb857600080fd5b8063cf947d2011610120578063cf947d2014610aea578063d2f21a2914610afd578063dee3262314610b10578063e1033e7d14610b23578063e5f6cd2714610b2b578063e7f7fb8614610b4157600080fd5b8063bf7e214f14610abf578063c0c53b8b14610ac7578063c29948fc14610635578063ca600b1c14610ada578063cde749f414610ae257600080fd5b8063a5961b4c116101f5578063afa5e130116101b9578063afa5e130146107c4578063afcc743914610a60578063b3260e9314610a73578063b6d7cd6214610a86578063bb1e0e5914610a99578063bf1db3f914610aac57600080fd5b8063a5961b4c14610961578063a671495e14610a12578063a76ee01814610a25578063a898967514610a38578063ada9652e14610a4b57600080fd5b80638e28413f116102475780638e28413f146108e75780638eaa6ac0146108fa5780638fb360371461091a5780639df0280b146105f25780639e90178c1461093b578063a13df2ab1461094e57600080fd5b806375b238fc1461089e5780637a9e5e4b146108a65780637b8c388f146108b95780637cef4842146108cc578063893d20e8146108df57600080fd5b806338a699a4116103b557806354d747a8116103275780635d4345cc116102eb5780635d4345cc146105f25780635dfa73db1461084157806361f5f4201461084a578063644c45e01461085b578063675393bf146108835780636b9bf08b1461089657600080fd5b806354d747a8146107d757806354f6127f146107ea5780635772b1011461080a57806358dff9ea1461081d5780635ab1bd531461083057600080fd5b8063422c9d0011610379578063422c9d001461077b5780634288121d1461078e578063447fc48f14610796578063468a1867146107a9578063468bce06146107bc5780635378cd3c146107c457600080fd5b806338a699a4146107095780633c0d6a411461071c5780633ca7c02a1461072f5780633e35aba81461075557806340529b0f1461076857600080fd5b8063138461e01161044e5780632781d443116104125780632781d443146106a357806327953f48146106ab57806327bb7a33146106be5780632f61088a146106d157806336fc697e146106e457806337f135d7146106ec57600080fd5b8063138461e01461062d5780631518afb9146106355780631b38d5f4146106485780631eff4b2214610669578063214cdb801461069057600080fd5b80630f03144a116104a05780630f03144a146105b95780630f526f7d146105cc5780630f749a89146105df5780630fad0eb1146105f25780630fec111c146106055780631204b5531461061a57600080fd5b806301ffc9a7146104dd57806302cd30711461051f57806309648a9d146105445780630cbc6b891461057e5780630d35818114610593575b600080fd5b61050a6104eb366004613ec1565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6006546001600160a01b03165b6040516001600160a01b039091168152602001610516565b61056c610552366004613eeb565b600090815260046020526040902054610100900460ff1690565b60405160ff9091168152602001610516565b61059161058c366004614157565b610c32565b005b61056c6105a13660046141a3565b60ff9081166000908152600260205260409020541690565b6105916105c7366004614328565b610c78565b6105916105da366004614377565b610cb6565b6105916105ed3660046143b0565b610cd3565b610591610600366004614377565b610e41565b61060d610e56565b604051610516919061441d565b6105916106283660046144a8565b611005565b61059161102b565b61059161064336600461467e565b61122d565b61065b6106563660046146c5565b611253565b604051908152602001610516565b61065b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b61059161069e366004613ec1565b6112f2565b61065b600381565b6105916106b93660046147d2565b61131f565b6105916106cc36600461480e565b61133d565b6105916106df366004614900565b6113c9565b610591611464565b6106f4600081565b60405163ffffffff9091168152602001610516565b61050a610717366004613eeb565b6114aa565b61059161072a3660046149bc565b611539565b61073d6001600160401b0381565b6040516001600160401b039091168152602001610516565b61065b6107633660046146c5565b61155f565b610591610776366004614377565b61158c565b6105916107893660046143b0565b6115a1565b61052c6117a7565b6105916107a4366004614a1d565b61183a565b61065b6107b73660046146c5565b611866565b610591611893565b6105916107d2366004614a91565b6118bd565b6105916107e5366004614b72565b6118d0565b6107fd6107f8366004613eeb565b6118ee565b6040516105169190614bae565b610591610818366004614c04565b611993565b61059161082b366004614d0c565b6119b9565b6001546001600160a01b031661052c565b61073d61271081565b6007546001600160a01b031661052c565b600080516020615cc4833981519152546040516001600160601b039091168152602001610516565b6105916108913660046143b0565b6119e1565b61052c611aed565b61073d600081565b6105916108b43660046143b0565b611b16565b61065b6108c73660046146c5565b611b99565b6105916108da366004614d53565b611bc6565b61052c611c50565b6105916108f5366004614d71565b611d87565b61090d610908366004613eeb565b611daf565b6040516105169190614e00565b610922611ef0565b6040516001600160e01b03199091168152602001610516565b610591610949366004614ed1565b611f28565b61065b61095c3660046146c5565b611f50565b610a0561096f366004613eeb565b6040805160a08101825260008082526020820181905291810182905260608101829052608081019190915250600090815260046020908152604091829020825160a081018452905460ff8082168352610100820416928201929092526001600160a01b03620100008304169281019290925263ffffffff600160b01b820481166060840152600160d01b90910416608082015290565b6040516105169190614f08565b610591610a20366004614f97565b611f7d565b610591610a33366004614fdc565b611fa3565b610591610a46366004615023565b61203e565b61065b600080516020615cc483398151915281565b610591610a6e366004615063565b61212f565b610591610a813660046150a8565b612155565b610591610a943660046150e6565b612173565b610591610aa7366004615116565b612188565b61050a610aba3660046141a3565b61234d565b61052c61239a565b610591610ad5366004615142565b6123b6565b61052c612563565b61056c61258c565b610591610af8366004615182565b612603565b610591610b0b366004614377565b612621565b610591610b1e366004614377565b612638565b61052c61264f565b60055461010090046001600160a01b031661052c565b610591610b4f3660046151c0565b612678565b61050a610b62366004615023565b60ff9283166000908152600360209081526040808320948616835293815283822092851682529190915220541690565b61065b610ba0366004615211565b612852565b610591610bb336600461523f565b6128dd565b610591610bc63660046143b0565b612905565b610591610bd9366004615280565b6129f2565b610591610bec3660046152ae565b612a69565b610591610bff366004615305565b612a8f565b610591610c1236600461534c565b612ab5565b610591610c25366004614377565b612add565b61052c612af2565b610c3f335b600036612b1b565b610c73610c4d84606e612c21565b83604051602001610c5e919061537a565b60405160208183030381529060405283612c6d565b505050565b610c8133610c37565b610cb2610c8d83611f50565b82604051602001610c9e9190615429565b604051602081830303815290604052612c78565b5050565b610cbf33610c37565b610cb2610ccd83608c612c21565b82612c82565b610cdc33610c37565b60055461010090046001600160a01b031615610d3f5760405162461bcd60e51b815260206004820152601c60248201527f496e7374616e63654163636573734d616e61676572206973207365740000000060448201526064015b60405180910390fd5b610d4761239a565b6001600160a01b0316816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d8e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610db291906154e5565b6001600160a01b031614610e195760405162461bcd60e51b815260206004820152602860248201527f496e7374616e63654163636573734d616e6167657220617574686f72697479206044820152670dad2e6dac2e8c6d60c31b6064820152608401610d36565b600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b610e4a33610c37565b610cb2610ccd83611866565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c0820152907f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa3006040805160808101825282546001600160601b038116825260ff600160601b820481166020840152600160681b90910416151591810191909152600182018054919291606084019190610f0190615502565b80601f0160208091040260200160405190810160405280929190818152602001828054610f2d90615502565b8015610f7a5780601f10610f4f57610100808354040283529160200191610f7a565b820191906000526020600020905b815481529060010190602001808311610f5d57829003601f168201915b50505050508152505090506040518060e00160405280610f98600090565b6001600160601b0316815260200182600001516001600160601b03168152602001826020015160ff168152602001826040015115158152602001306001600160a01b03168152602001610fe9611c50565b6001600160a01b03168152602001826060015181525091505090565b61100e33610c37565b610c7361101a84611f50565b83604051602001610c5e9190615429565b6000600080516020615cc483398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af415801561109a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110be919061553c565b156110ea5780546040516301ab8b6760e21b81526001600160601b039091166004820152602401610d36565b306110fd6001546001600160a01b031690565b60405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa158015611145573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611169919061553c565b6111915760405163b9304b0d60e01b81526001600160a01b0382166004820152602401610d36565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038381166004830152919091169063d272ac1e90602401602060405180830381865afa1580156111e5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112099190615559565b82546bffffffffffffffffffffffff19166001600160601b03919091161790915550565b61123633610c37565b610c7361124284611866565b83604051602001610c5e9190615576565b600073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__633889a4c86001600160601b03841660795b6040516001600160e01b031960e085901b1681526001600160601b03909216600483015260ff166024820152604401602060405180830381865af41580156112c8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112ec91906156c4565b92915050565b6112fa612c8c565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b61132833610c37565b610cb28282604051602001610c9e91906156dd565b611345612c8c565b61134f82876129f2565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166cffffffffffffffffffffffffff1990911617600160601b60ff8816021760ff60681b1916600160681b861515021781559050600181016113bf83826157d3565b5050505050505050565b6113d233610c37565b6040516355ee627560e01b81526001600160c01b031983166004820152610cb29073__$19a201e37be2e25dc57bd4aa563a0edb25$__906355ee627590602401602060405180830381865af415801561142f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061145391906156c4565b82604051602001610c9e9190615892565b61146c612c8c565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b600081815260046020819052604080832054905163b2466acf60e01b815261010090910460ff169181019190915273__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf906024015b602060405180830381865af4158015611515573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112ec919061553c565b61154233610c37565b610c7361154e84611866565b82604051602001610c9e91906158c0565b600073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__633889a4c86001600160601b038416607861127c565b61159533610c37565b610cb2610ccd83611b99565b6115aa33610c37565b6007546001600160a01b0316156115fa5760405162461bcd60e51b8152602060048201526014602482015273109d5b991b1953585b9859d95c881a5cc81cd95d60621b6044820152606401610d36565b306001600160a01b0316816001600160a01b031663de7b5d146040518163ffffffff1660e01b8152600401602060405180830381865afa158015611642573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061166691906154e5565b6001600160a01b0316146116bc5760405162461bcd60e51b815260206004820152601f60248201527f42756e646c654d616e6167657220696e7374616e6365206d69736d61746368006044820152606401610d36565b6116c461239a565b6001600160a01b0316816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561170b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061172f91906154e5565b6001600160a01b0316146117855760405162461bcd60e51b815260206004820181905260248201527f42756e646c654d616e6167657220617574686f72697479206d69736d617463686044820152606401610d36565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b60006117bb6001546001600160a01b031690565b6001600160a01b031663d39e6043606e5b6040516001600160e01b031960e084901b16815260ff909116600482015260036024820152604401602060405180830381865afa158015611811573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061183591906154e5565b905090565b61184333610c37565b61186061184f85611866565b83604051602001610c5e91906158c0565b50505050565b600073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__633889a4c86001600160601b03841660d361127c565b61189b612c8c565b6118a3612cd5565b6118ab612df8565b6118b3612eeb565b6118bb612ff9565b565b6118c633610c37565b610cb28282612c82565b6118d933610c37565b610cb28282604051602001610c9e9190615911565b600081815260046020526040902060010180546060919061190e90615502565b80601f016020809104026020016040519081016040528092919081815260200182805461193a90615502565b80156119875780601f1061195c57610100808354040283529160200191611987565b820191906000526020600020905b81548152906001019060200180831161196a57829003601f168201915b50505050509050919050565b61199c33610c37565b6118606119a885611866565b83604051602001610c5e91906159ac565b6119c233610c37565b610c736119d084608c612c21565b83604051602001610c5e91906159dc565b6119e9612c8c565b806001600160a01b03163b600003611a1f5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610d36565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b8152630a3888e560e31b60048201526301ffc9a790602401602060405180830381865afa925050508015611a99575060408051601f3d908101601f19168201909252611a969181019061553c565b60015b611ac15760405163fdeac91f60e01b81526001600160a01b0382166004820152602401610d36565b80610cb25760405163fdeac91f60e01b81526001600160a01b0383166004820152602401610d36565b50565b6000611b016001546001600160a01b031690565b6001600160a01b031663d39e6043608c6117cc565b33611b1f61239a565b6001600160a01b0316816001600160a01b031614611b5a5760405162d1953b60e31b81526001600160a01b0382166004820152602401610d36565b816001600160a01b03163b600003611b90576040516361798f2f60e11b81526001600160a01b0383166004820152602401610d36565b610cb2826130b5565b600073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__633889a4c86001600160601b038416607a61127c565b611bcf33610c37565b6040516355ee627560e01b81526001600160c01b031983166004820152610cb29073__$19a201e37be2e25dc57bd4aa563a0edb25$__906355ee627590602401602060405180830381865af4158015611c2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ccd91906156c4565b600080600080516020615cc483398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015611cc0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ce4919061553c565b15611d71576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa158015611d47573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d6b91906154e5565b91505090565b54600160601b90046001600160a01b0316919050565b611d9033610c37565b610cb2611d9e83608c612c21565b82604051602001610c9e91906159dc565b6040805160e081018252600091810182815260608083018490526080830184905260a0830184905260c083019390935281526020810191909152600082815260046020908152604091829020825160e081018452815460ff80821695830195865261010082041660608301526001600160a01b0362010000820416608083015263ffffffff600160b01b8204811660a0840152600160d01b9091041660c08201529283526001810180549192840191611e6790615502565b80601f0160208091040260200160405190810160405280929190818152602001828054611e9390615502565b8015611ee05780601f10611eb557610100808354040283529160200191611ee0565b820191906000526020600020905b815481529060010190602001808311611ec357829003601f168201915b5050505050815250509050919050565b600080516020615ce4833981519152805460009190600160a01b900460ff16611f1a576000611d6b565b638fb3603760e01b91505090565b611f3133610c37565b610cb2611f3f836078612c21565b82604051602001610c9e9190615a43565b600073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__633889a4c86001600160601b03841660dc61127c565b611f8633610c37565b610cb2611f9283611b99565b82604051602001610c9e9190615ab7565b611fac33610c37565b6040516355ee627560e01b81526001600160c01b031984166004820152610c739073__$19a201e37be2e25dc57bd4aa563a0edb25$__906355ee627590602401602060405180830381865af4158015612009573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061202d91906156c4565b83604051602001610c5e9190615892565b60ff8381166000908152600260205260409081902054905163037c8cb160e51b81529116600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__90636f91962090602401602060405180830381865af41580156120a3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120c7919061553c565b156120d157505050565b60ff808416600090815260036020908152604080832086851684528252808320858516845290915290205416610c7357604051636bb20ea760e01b815260ff8085166004830152808416602483015282166044820152606401610d36565b61213833610c37565b610cb261214483611866565b82604051602001610c9e9190615576565b61215e33610c37565b610c738383604051602001610c5e91906156dd565b61217c33610c37565b610c73610ccd84611866565b6001546001600160a01b03166001600160a01b031663120726c36040518163ffffffff1660e01b8152600401602060405180830381865afa1580156121d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121f591906154e5565b6001600160a01b0316336001600160a01b03161461221257600080fd5b60055461010090046001600160a01b03166303014974612230613116565b6040516001600160e01b031960e084901b1681526001600160401b039091166004820152602401602060405180830381865afa158015612274573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061229891906156c4565b156122a5576122a5615b15565b60055461010090046001600160a01b031663b428b0b06122c3613116565b6040516001600160e01b031960e084901b1681526001600160401b0390911660048201526001600160a01b03851660248201526044016020604051808303816000875af1158015612318573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061233c919061553c565b1515600114610cb257610cb2615b15565b60ff81811660009081526002602052604080822054905163b2466acf60e01b8152921660048301529073__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf906024016114f8565b600080516020615ce4833981519152546001600160a01b031690565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff1615906001600160401b03166000811580156123fb5750825b90506000826001600160401b031660011480156124175750303b155b905081158015612425575080155b156124435760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561246d57845460ff60401b1916600160401b1785555b6124768861318e565b60008790506124fb88826001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa1580156124bd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124e19190615559565b604660018b6040518060200160405280600081525061133d565b612503611893565b61251363200c173160e01b6112f2565b5083156113bf57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15050505050505050565b60006125776001546001600160a01b031690565b6001600160a01b031663d39e604360786117cc565b604051632392b61b60e21b81526003600482015260009073__$9dab98ad7ae1a426029e5739f922230a41$__90638e4ad86c90602401602060405180830381865af41580156125df573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118359190615b2b565b61260c33610c37565b610c738383604051602001610c5e9190615911565b61262a33610c37565b610cb2610ccd836078612c21565b61264133610c37565b610cb2610ccd83606e612c21565b60006126636001546001600160a01b031690565b6001600160a01b031663d39e604360d36117cc565b6001546001600160a01b03166001600160a01b031663120726c36040518163ffffffff1660e01b8152600401602060405180830381865afa1580156126c1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126e591906154e5565b6001600160a01b0316336001600160a01b03161461270257600080fd5b60055461010090046001600160a01b031663b7d2b162612720613116565b6040516001600160e01b031960e084901b1681526001600160401b0390911660048201526001600160a01b03861660248201526044016020604051808303816000875af1158015612775573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612799919061553c565b15156001146127aa576127aa615b15565b60055461010090046001600160a01b031663b428b0b06127c8613116565b6040516001600160e01b031960e084901b1681526001600160401b0390911660048201526001600160a01b03851660248201526044016020604051808303816000875af115801561281d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612841919061553c565b1515600114610c7357610c73615b15565b604051637a400b6760e11b815260ff8316600482015260ff198216602482015260009073__$c8f743efd2b4f0c9300f2558c784479d3e$__9063f48016ce906044015b602060405180830381865af41580156128b2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128d691906156c4565b9392505050565b6128e633610c37565b610c736128f4846078612c21565b83604051602001610c5e9190615a43565b61290e33610c37565b306001600160a01b0316816001600160a01b031663de7b5d146040518163ffffffff1660e01b8152600401602060405180830381865afa158015612956573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061297a91906154e5565b6001600160a01b0316146129d05760405162461bcd60e51b815260206004820181905260248201527f496e7374616e636552656164657220696e7374616e6365206d69736d617463686044820152606401610d36565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6129fa612c8c565b612a03816119e1565b612a0b611464565b6001600160a01b038216612a325760405163f17ef42d60e01b815260040160405180910390fd5b50600080516020615cc483398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b612a7233610c37565b610c73612a7e84611866565b82604051602001610c9e91906159ac565b612a9833610c37565b610c73612aa484611b99565b83604051602001610c5e9190615ab7565b612abe33610c37565b610cb2612acc83606e612c21565b82604051602001610c9e919061537a565b612ae633610c37565b610cb2610ccd83611f50565b6000612b066001546001600160a01b031690565b6001600160a01b031663d39e604360dc6117cc565b600080516020615ce4833981519152600080612b56612b3861239a565b8730612b48600460008a8c615b48565b612b5191615b72565b61319f565b9150915081612c195763ffffffff811615612bf657825460ff60a01b1916600160a01b178355612b8461239a565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b8152600401612bb393929190615ba2565b600060405180830381600087803b158015612bcd57600080fd5b505af1158015612be1573d6000803e3d6000fd5b5050845460ff60a01b1916855550612c199050565b60405162d1953b60e31b81526001600160a01b0387166004820152602401610d36565b505050505050565b604051630711349960e31b81526001600160601b038316600482015260ff8216602482015260009073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__90633889a4c890604401612895565b610c738383836132ab565b610cb28282613753565b610cb28282613b6c565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff166118bb57604051631afcd79f60e31b815260040160405180910390fd5b7f4bee8dc518469fb8c73831886b94afa96b3ef3e3ee55b9076720259192220ef08054606460ff19918216179091557ffb39f406c8d3ff86a211d5f8c6729c90fce2fed80808bb47b6dc39e975a7d4d68054821660019081179091557fe59968928be831d9cd5403370c74d9f1dac318690d88a2efef2b29079332ee4f80548316821790557fe78520cf30689bb50fce16ae1e25040217df710de55e9ed38f2b2722b2a984688054909216811790915560dc600090815260036020527fa093975c0a88af8b2bf4799c5b4be14d42fc326c2a331b9f3fb3caecbaa5104f90606e5b60ff1660ff1681526020019081526020016000206000612dd460c890565b60ff1681526020810191909152604001600020805460ff1916911515919091179055565b7f7673bcbb3401a7cbae68f81d40eea2cf35afdaf7ecd016ebf3f02857fcc1260a8054606460ff1991821681179092557fa1c69de77e78d12e062170d002ba111ba52c8f452f3b0ca326991b7298fd7aaf80548216600190811790915560008381527f6dcc58afd04aec67a07f8168234edce351865815e87e6f9a62e977830ebfce226020527f5267f8fb4089eaca6dac10383f9a063927ca0092f9c59d7ca3b3d61812638b028054909316821790925591600391905b60ff1660ff1681526020019081526020016000206000612ecd606e90565b60ff1660ff1681526020019081526020016000206000612dd460d290565b7feb6856e0ae0d71a8a9e0bc42aca98fe96c3be13699c5c2d551c94a190e39043d8054600a60ff19918216179091557f4b5a0a5953a753e51be29e6e2b638995162612852ea3b46cff09cbac61f9cb568054821660019081179091557fb7939d1e06f7236b22c8e9bf344ab29b7c87eec9f53e55d389378ef7585ffd7e80548316821790557f158b1af96972c14cb1a5e39cbdbd793a3bc4f7c57c85ef22cf298bf517d6e0b380548316821790557f6160f9e22b3793ed435de7ac6b8dd0ee9d3110d626fe8135ffbb7d38470f229a8054909216811790915560d3600090815260036020527fb0b6d2d73fcb69de4c434c711239319c2c669ebf6407f36fc258ff9f98f803fa906064612db6565b7fec56eb74d500f9b1bf8f0c5cc42ff5ed51e8d9e3a2ebb6e83a26383f297e0f1e8054606460ff1991821681179092557fe63626ccd25c67b6e53c3bd622e9c77c962be121e55eb3904854ac631eb8f9f080548216600190811790915560009283527fa74711c3b0f698a9dde85849aefdd2d454c235a4c161e6f019356c5ec8490c816020527fbed2f4a35dfbfdf2c5294831261529ea73fa5b94705484f5af8ba1bc3cb59362805490921681179091559060039060c8612eaf565b600080516020615ce483398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b6040516368aebf7b60e01b815261076c600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b90602401602060405180830381865af415801561316a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118359190615be2565b613196612c8c565b611aea81613eb0565b6040516001600160a01b03848116602483015283811660448301526001600160e01b03198316606483015260009182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b1790525161320e9190615c0b565b600060405180830381855afa9150503d8060008114613249576040519150601f19603f3d011682016040523d82523d6000602084013e61324e565b606091505b509150915081156132a057604081511061328057808060200190518101906132769190615c27565b90945092506132a0565b60208151106132a0578080602001905181019061329d919061553c565b93505b505094509492505050565b60405163b2466acf60e01b815260ff8216600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af41580156132fd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613321919061553c565b61336d5760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a4b56532d3032303a53544154455f554e444546494e45440000006044820152606401610d36565b6000838152600460208190526040918290208054925163b2466acf60e01b815261010090930460ff169183018290529173__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af41580156133d9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133fd919061553c565b6134495760405162461bcd60e51b815260206004820152601a60248201527f4552524f523a4b56532d3032313a4e4f545f4558495354494e470000000000006044820152606401610d36565b600085815260046020526040902060010161346485826157d3565b508154620100003390810262010000600160b01b031960ff87166101000216610100600160b01b03198416171784559063ffffffff600160b01b909104166134a94390565b845463ffffffff91909116600160b01b0263ffffffff60b01b19909116178455604051634b00e98f60e11b8152600481018890527fe41a93c15e024a0b2371127599959a8e543dd6a8d820238e906c93a3004248fa9073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af415801561353b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061355f9190615b2b565b604051630713cfad60e31b8152600481018a905273__$c8f743efd2b4f0c9300f2558c784479d3e$__9063389e7d6890602401602060405180830381865af41580156135af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135d39190615c56565b85888632876040516135eb9796959493929190615c73565b60405180910390a1604051634b00e98f60e11b8152600481018890527f7bd0ab7f1746bd20a814d6705a46876c84f1aa2d35c80d8c173e268bd6d4b26c9073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af4158015613665573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906136899190615b2b565b604051630713cfad60e31b8152600481018a905273__$c8f743efd2b4f0c9300f2558c784479d3e$__9063389e7d6890602401602060405180830381865af41580156136d9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906136fd9190615c56565b6040805160ff938416815260ff199092166020830152918816918101919091526001600160a01b038416606082015232608082015263ffffffff831660a082015260c0015b60405180910390a150505050505050565b604051634b00e98f60e11b81526004810183905260009073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af41580156137a6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906137ca9190615b2b565b60405163b2466acf60e01b815260ff8216600482015290915073__$fb4566b39bd2075cb32f600f6f40bfaef2$__9063b2466acf90602401602060405180830381865af415801561381f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613843919061553c565b61388f5760405162461bcd60e51b815260206004820152601c60248201527f4552524f523a4b56532d3031303a545950455f554e444546494e4544000000006044820152606401610d36565b6000838152600460208190526040918290208054925163037c8cb160e51b815261010090930460ff16918301919091529073__$2a12cf1a40369f689f3a67e70f4b31dadc$__90636f91962090602401602060405180830381865af41580156138fc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613920919061553c565b61396c5760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a4b56532d3031323a414c52454144595f435245415445440000006044820152606401610d36565b334360006139798561234d565b61398457606461399a565b60ff808616600090815260026020526040902054165b845460ff87811661ffff1990921691909117610100918316919091021762010000600160d01b031916620100006001600160a01b0386160263ffffffff60b01b191617600160b01b63ffffffff85169081029190911763ffffffff60d01b1916600160d01b919091021785556000888152600460205260409020909150600101613a2487826157d3565b50604051634b00e98f60e11b8152600481018890527ffcb75eb7b317145f986c763e1a3eab5f9b4dbaf7955504f70f986d799c3ab39d9073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af4158015613a97573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613abb9190615b2b565b604051630713cfad60e31b8152600481018a905273__$c8f743efd2b4f0c9300f2558c784479d3e$__9063389e7d6890602401602060405180830381865af4158015613b0b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613b2f9190615c56565b6040805160ff938416815260ff199092166020830152918416918101919091526001600160a01b038516606082015232608082015260a001613742565b60405163b2466acf60e01b815260ff8216600482015273__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af4158015613bbe573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613be2919061553c565b613c2e5760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a4b56532d3034303a53544154455f554e444546494e45440000006044820152606401610d36565b6000828152600460208190526040918290208054925163b2466acf60e01b815261010090930460ff169183018290529173__$2a12cf1a40369f689f3a67e70f4b31dadc$__9063b2466acf90602401602060405180830381865af4158015613c9a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613cbe919061553c565b613d0a5760405162461bcd60e51b815260206004820152601a60248201527f4552524f523a4b56532d3034313a4e4f545f4558495354494e470000000000006044820152606401610d36565b8154613d1a9060ff16828561203e565b8154620100003390810262010000600160b01b031960ff87166101000216610100600160b01b03198416171784559063ffffffff600160b01b90910416613d5e4390565b845463ffffffff91909116600160b01b0263ffffffff60b01b19909116178455604051634b00e98f60e11b8152600481018790527fe41a93c15e024a0b2371127599959a8e543dd6a8d820238e906c93a3004248fa9073__$c8f743efd2b4f0c9300f2558c784479d3e$__90639601d31e90602401602060405180830381865af4158015613df0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613e149190615b2b565b604051630713cfad60e31b81526004810189905273__$c8f743efd2b4f0c9300f2558c784479d3e$__9063389e7d6890602401602060405180830381865af4158015613e64573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613e889190615c56565b8588863287604051613ea09796959493929190615c73565b60405180910390a1505050505050565b613eb8612c8c565b611aea816130b5565b600060208284031215613ed357600080fd5b81356001600160e01b0319811681146128d657600080fd5b600060208284031215613efd57600080fd5b5035919050565b6001600160601b0381168114611aea57600080fd5b8035613f2481613f04565b919050565b634e487b7160e01b600052604160045260246000fd5b604080519081016001600160401b0381118282101715613f6157613f61613f29565b60405290565b60405161010081016001600160401b0381118282101715613f6157613f61613f29565b60405161012081016001600160401b0381118282101715613f6157613f61613f29565b60405161020081016001600160401b0381118282101715613f6157613f61613f29565b604051608081016001600160401b0381118282101715613f6157613f61613f29565b60405160e081016001600160401b0381118282101715613f6157613f61613f29565b60405160a081016001600160401b0381118282101715613f6157613f61613f29565b6001600160a01b0381168114611aea57600080fd5b8035613f2481614036565b60006040828403121561406857600080fd5b614070613f3f565b9050813581526020820135602082015292915050565b8015158114611aea57600080fd5b8035613f2481614086565b600061014082840312156140b257600080fd5b6140ba613f67565b90506140c58261404b565b81526140d36020830161404b565b60208201526140e460408301613f19565b60408201526140f560608301613f19565b60608201526141078360808401614056565b60808201526141198360c08401614056565b60a082015261412b6101008301614094565b60c082015261413d610120830161404b565b60e082015292915050565b60ff81168114611aea57600080fd5b6000806000610180848603121561416d57600080fd5b833561417881613f04565b9250614187856020860161409f565b915061016084013561419881614148565b809150509250925092565b6000602082840312156141b557600080fd5b81356128d681614148565b600082601f8301126141d157600080fd5b81356001600160401b03808211156141eb576141eb613f29565b604051601f8301601f19908116603f0116810190828211818310171561421357614213613f29565b8160405283815286602085880101111561422c57600080fd5b836020870160208301376000602085830101528094505050505092915050565b64ffffffffff81168114611aea57600080fd5b8035613f248161424c565b6000610140828403121561427d57600080fd5b614285613f8a565b905061429082613f19565b815261429f8360208401614056565b602082015260608201356001600160401b038111156142bd57600080fd5b6142c9848285016141c0565b6040830152506080820135606082015260a0820135608082015260c082013560a08201526142f960e0830161425f565b60c082015261010061430c81840161425f565b60e083015261431e610120840161425f565b9082015292915050565b6000806040838503121561433b57600080fd5b823561434681613f04565b915060208301356001600160401b0381111561436157600080fd5b61436d8582860161426a565b9150509250929050565b6000806040838503121561438a57600080fd5b823561439581613f04565b915060208301356143a581614148565b809150509250929050565b6000602082840312156143c257600080fd5b81356128d681614036565b60005b838110156143e85781810151838201526020016143d0565b50506000910152565b600081518084526144098160208601602086016143cd565b601f01601f19169290920160200192915050565b6020815260006001600160601b038084511660208401528060208501511660408401525060ff604084015116606083015260608301511515608083015260018060a01b0360808401511660a083015260a083015161448660c08401826001600160a01b03169052565b5060c083015160e0808401526144a06101008401826143f1565b949350505050565b6000806000606084860312156144bd57600080fd5b83356144c881613f04565b925060208401356001600160401b038111156144e357600080fd5b6144ef8682870161426a565b925050604084013561419881614148565b6001600160c01b031981168114611aea57600080fd5b8035613f2481614500565b61ffff81168114611aea57600080fd5b8035613f2481614521565b6000610200828403121561454f57600080fd5b614557613fad565b905061456282613f19565b815261457060208301613f19565b602082015261458160408301614516565b604082015261459260608301614516565b60608201526080820135608082015260a082013560a082015260c082013560c08201526145c160e0830161425f565b60e0820152610100808301356001600160401b03808211156145e257600080fd5b6145ee868387016141c0565b8385015261012092508285013591508082111561460a57600080fd5b50614617858286016141c0565b82840152505061014061462b818401614531565b9082015261016061463d838201614531565b9082015261018082810135908201526101a061465a81840161425f565b908201526101c061466c83820161425f565b908201526101e061431e83820161425f565b60008060006060848603121561469357600080fd5b833561469e81613f04565b925060208401356001600160401b038111156146b957600080fd5b6144ef8682870161453c565b6000602082840312156146d757600080fd5b81356128d681613f04565b63ffffffff81168114611aea57600080fd5b8035613f24816146e2565b6000610120828403121561471257600080fd5b61471a613f8a565b905081356001600160401b038082111561473357600080fd5b61473f858386016141c0565b835260208401356020840152604084013560408401526060840135606084015261476b608085016146f4565b608084015261477c60a085016146f4565b60a084015261478d60c08501614094565b60c084015261479e60e08501614094565b60e0840152610100915081840135818111156147b957600080fd5b6147c5868287016141c0565b8385015250505092915050565b600080604083850312156147e557600080fd5b8235915060208301356001600160401b0381111561480257600080fd5b61436d858286016146ff565b60008060008060008060c0878903121561482757600080fd5b863561483281614036565b9550602087013561484281613f04565b9450604087013561485281614148565b9350606087013561486281614086565b9250608087013561487281614036565b915060a08701356001600160401b0381111561488d57600080fd5b61489989828a016141c0565b9150509295509295509295565b6000604082840312156148b857600080fd5b6148c0613f3f565b905081356148cd81613f04565b815260208201356001600160401b038111156148e857600080fd5b6148f4848285016141c0565b60208301525092915050565b6000806040838503121561491357600080fd5b823561491e81614500565b915060208301356001600160401b0381111561493957600080fd5b61436d858286016148a6565b60006080828403121561495757600080fd5b61495f613fd0565b9050813561496c81614521565b81526020828101359082015260408201356001600160401b0381111561499157600080fd5b61499d848285016141c0565b60408301525060608201356149b18161424c565b606082015292915050565b6000806000606084860312156149d157600080fd5b83356149dc81613f04565b925060208401356149ec816146e2565b915060408401356001600160401b03811115614a0757600080fd5b614a1386828701614945565b9150509250925092565b60008060008060808587031215614a3357600080fd5b8435614a3e81613f04565b93506020850135614a4e816146e2565b925060408501356001600160401b03811115614a6957600080fd5b614a7587828801614945565b9250506060850135614a8681614148565b939692955090935050565b60008060408385031215614aa457600080fd5b8235915060208301356143a581614148565b600060e08284031215614ac857600080fd5b614ad0613ff2565b9050614adb82613f19565b815260208201356001600160401b0380821115614af757600080fd5b614b03858386016141c0565b602084015260408401356040840152614b1e606085016146f4565b6060840152614b2f608085016146f4565b6080840152614b4060a0850161425f565b60a084015260c0840135915080821115614b5957600080fd5b50614b66848285016141c0565b60c08301525092915050565b60008060408385031215614b8557600080fd5b8235915060208301356001600160401b03811115614ba257600080fd5b61436d85828601614ab6565b6020815260006128d660208301846143f1565b600060808284031215614bd357600080fd5b614bdb613fd0565b9050813581526020820135602082015260408201356001600160401b0381111561499157600080fd5b60008060008060808587031215614c1a57600080fd5b8435614c2581613f04565b93506020850135614c3581614521565b925060408501356001600160401b03811115614c5057600080fd5b614a7587828801614bc1565b600060a08284031215614c6e57600080fd5b614c76614014565b905081356001600160401b0380821115614c8f57600080fd5b614c9b858386016141c0565b835260208401359150614cad82614036565b81602084015260408401359150614cc382614036565b81604084015260608401359150614cd982614036565b8160608401526080840135915080821115614cf357600080fd5b50614d00848285016141c0565b60808301525092915050565b600080600060608486031215614d2157600080fd5b8335614d2c81613f04565b925060208401356001600160401b03811115614d4757600080fd5b6144ef86828701614c5c565b60008060408385031215614d6657600080fd5b823561439581614500565b60008060408385031215614d8457600080fd5b8235614d8f81613f04565b915060208301356001600160401b03811115614daa57600080fd5b61436d85828601614c5c565b60ff815116825260ff602082015116602083015260018060a01b036040820151166040830152606081015163ffffffff808216606085015280608084015116608085015250505050565b60208152614e12602082018351614db6565b6000602083015160c0808401526144a060e08401826143f1565b60006101008284031215614e3f57600080fd5b60405160c081018181106001600160401b0382111715614e6157614e61613f29565b6040529050808235614e7281613f04565b81526020830135614e8281614036565b6020820152614e948460408501614056565b6040820152614ea68460808501614056565b606082015260c0830135614eb981614036565b8060808301525060e083013560a08201525092915050565b6000806101208385031215614ee557600080fd5b8235614ef081613f04565b9150614eff8460208501614e2c565b90509250929050565b60a081016112ec8284614db6565b600060a08284031215614f2857600080fd5b614f30614014565b90508135614f3d81614500565b81526020820135614f4d81614086565b602082015260408201356001600160401b03811115614f6b57600080fd5b614f77848285016141c0565b604083015250606082013560608201526080820135608082015292915050565b60008060408385031215614faa57600080fd5b8235614fb581613f04565b915060208301356001600160401b03811115614fd057600080fd5b61436d85828601614f16565b600080600060608486031215614ff157600080fd5b8335614ffc81614500565b925060208401356001600160401b0381111561501757600080fd5b6144ef868287016148a6565b60008060006060848603121561503857600080fd5b833561504381614148565b9250602084013561505381614148565b9150604084013561419881614148565b6000806040838503121561507657600080fd5b823561508181613f04565b915060208301356001600160401b0381111561509c57600080fd5b61436d8582860161453c565b6000806000606084860312156150bd57600080fd5b8335925060208401356001600160401b038111156150da57600080fd5b6144ef868287016146ff565b6000806000606084860312156150fb57600080fd5b833561510681613f04565b9250602084013561505381614521565b6000806040838503121561512957600080fd5b823561513481614036565b946020939093013593505050565b60008060006060848603121561515757600080fd5b833561516281614036565b9250602084013561517281614036565b9150604084013561419881614036565b60008060006060848603121561519757600080fd5b8335925060208401356001600160401b038111156151b457600080fd5b6144ef86828701614ab6565b6000806000606084860312156151d557600080fd5b83356151e081614036565b925060208401356151f081614036565b929592945050506040919091013590565b60ff1981168114611aea57600080fd5b6000806040838503121561522457600080fd5b823561522f81614148565b915060208301356143a581615201565b6000806000610140848603121561525557600080fd5b833561526081613f04565b925061526f8560208601614e2c565b915061012084013561419881614148565b6000806040838503121561529357600080fd5b823561529e81614036565b915060208301356143a581614036565b6000806000606084860312156152c357600080fd5b83356152ce81613f04565b925060208401356152de81614521565b915060408401356001600160401b038111156152f957600080fd5b614a1386828701614bc1565b60008060006060848603121561531a57600080fd5b833561532581613f04565b925060208401356001600160401b0381111561534057600080fd5b6144ef86828701614f16565b600080610160838503121561536057600080fd5b823561536b81613f04565b9150614eff846020850161409f565b81516001600160a01b039081168252602080840151909116908201526040808301516001600160601b0316908201526060808301516101408301916153c9908401826001600160601b03169052565b5060808301516153e6608084018280518252602090810151910152565b5060a0830151805160c0840152602081015160e08401525060c08301518015156101008401525060e08301516001600160a01b0381166101208401525092915050565b602081526154436020820183516001600160601b03169052565b60006020830151615461604084018280518252602090810151910152565b50604083015161014080608085015261547e6101608501836143f1565b9150606085015160a0850152608085015160c085015260a085015160e085015260c08501516101006154b88187018364ffffffffff169052565b60e087015164ffffffffff811661012088015291505b9095015164ffffffffff1693019290925250919050565b6000602082840312156154f757600080fd5b81516128d681614036565b600181811c9082168061551657607f821691505b60208210810361553657634e487b7160e01b600052602260045260246000fd5b50919050565b60006020828403121561554e57600080fd5b81516128d681614086565b60006020828403121561556b57600080fd5b81516128d681613f04565b602081526155906020820183516001600160601b03169052565b600060208301516155ac60408401826001600160601b03169052565b5060408301516001600160c01b0319811660608401525060608301516001600160c01b03198116608084015250608083015160a083015260a083015160c083015260c083015160e083015260e08301516101006156118185018364ffffffffff169052565b8085015191505061020061012081818601526156316102208601846143f1565b9250808601519050610140601f19868503018187015261565184836143f1565b93508087015191505061016061566c8187018361ffff169052565b86015190506101806156838682018361ffff169052565b8601516101a08681019190915286015190506101c06156aa8187018364ffffffffff169052565b86015190506101e06154ce8682018364ffffffffff169052565b6000602082840312156156d657600080fd5b5051919050565b60208152600082516101208060208501526156fc6101408501836143f1565b9150602085015160408501526040850151606085015260608501516080850152608085015161573360a086018263ffffffff169052565b5060a085015163ffffffff811660c08601525060c085015180151560e08601525060e08501516101006157698187018315159052565b860151858403601f190183870152905061578383826143f1565b9695505050505050565b601f821115610c7357600081815260208120601f850160051c810160208610156157b45750805b601f850160051c820191505b81811015612c19578281556001016157c0565b81516001600160401b038111156157ec576157ec613f29565b615800816157fa8454615502565b8461578d565b602080601f831160018114615835576000841561581d5750858301515b600019600386901b1c1916600185901b178555612c19565b600085815260208120601f198616915b8281101561586457888601518255948401946001909101908401615845565b50858210156158825787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b602081526001600160601b038251166020820152600060208301516040808401526144a060608401826143f1565b6020815261ffff82511660208201526020820151604082015260006040830151608060608401526158f460a08401826143f1565b905064ffffffffff60608501511660808401528091505092915050565b602081526001600160601b0382511660208201526000602083015160e060408401526159416101008401826143f1565b90506040840151606084015263ffffffff6060850151166080840152608084015161597460a085018263ffffffff169052565b5060a084015164ffffffffff811660c08501525060c0840151838203601f190160e08501526159a382826143f1565b95945050505050565b60208152815160208201526020820151604082015260006040830151608060608401526158f460a08401826143f1565b602081526000825160a060208401526159f860c08401826143f1565b9050602084015160018060a01b03808216604086015280604087015116606086015280606087015116608086015250506080840151601f198483030160a08501526159a382826143f1565b81516001600160601b031681526020808301516001600160a01b039081168284015260408085015180519185019190915291820151606084015261010083019190606085015180516080860152602081015160a0860152915060808501511660c08401525060a09092015160e09091015290565b602081526001600160401b0360c01b82511660208201526020820151151560408201526000604083015160a06060840152615af560c08401826143f1565b905060608401516080840152608084015160a08401528091505092915050565b634e487b7160e01b600052600160045260246000fd5b600060208284031215615b3d57600080fd5b81516128d681614148565b60008085851115615b5857600080fd5b83861115615b6557600080fd5b5050820193919092039150565b6001600160e01b03198135818116916004851015615b9a5780818660040360031b1b83161692505b505092915050565b6001600160a01b03841681526040602082018190528101829052818360608301376000818301606090810191909152601f909201601f1916010192915050565b600060208284031215615bf457600080fd5b81516001600160401b03811681146128d657600080fd5b60008251615c1d8184602087016143cd565b9190910192915050565b60008060408385031215615c3a57600080fd5b8251615c4581614086565b60208401519092506143a5816146e2565b600060208284031215615c6857600080fd5b81516128d681615201565b60ff978816815260ff1996909616602087015293861660408601529190941660608401526001600160a01b03938416608084015290921660a082015263ffffffff9190911660c082015260e0019056fe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00a2646970667358221220e049e50ee6b5934f82ffdbad61686d21dbc2f26f8dde3b29d305a89ee52bac4364736f6c63430008140033",
|
875
|
+
"bytecode": "0x608060405234801561001057600080fd5b5061288f806100206000396000f3fe608060405234801561001057600080fd5b50600436106102485760003560e01c80637a9e5e4b1161013b578063ca600b1c116100b8578063e5f6cd271161007c578063e5f6cd2714610530578063e7f7fb8614610541578063f7bc431c14610554578063f7c34ee014610567578063fed3d63f1461057a57600080fd5b8063ca600b1c146104c2578063cde749f4146104ca578063d2192dbf146104e4578063d4cda0d814610517578063e1033e7d1461052857600080fd5b8063b428b0b0116100ff578063b428b0b01461046e578063b7d2b16214610481578063bb1e0e5914610494578063bf7e214f146104a7578063c0c53b8b146104af57600080fd5b80637a9e5e4b1461040a578063868923131461041d578063893d20e8146104305780638fb3603714610438578063ada9652e1461045957600080fd5b806329db8c3d116101c95780635fa8aad41161018d5780635fa8aad4146103a357806361f5f420146103b6578063644c45e0146103c7578063675393bf146103ef5780636b9bf08b1461040257600080fd5b806329db8c3d1461035c57806336fc697e1461036f578063422c9d00146103775780634288121d1461038a5780635ab1bd531461039257600080fd5b80631eff4b22116102105780631eff4b22146102e6578063214cdb801461031b5780632449aea81461032e5780632781d4431461034157806327bb7a331461034957600080fd5b806301ffc9a71461024d57806302cd30711461028f5780630f749a89146102b45780630fec111c146102c9578063138461e0146102de575b600080fd5b61027a61025b366004611ead565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6003546001600160a01b03165b6040516001600160a01b039091168152602001610286565b6102c76102c2366004611ee4565b610582565b005b6102d161069d565b6040516102869190611f51565b6102c76107f0565b61030d7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b604051908152602001610286565b6102c7610329366004611ead565b6109f2565b6102c761033c366004611ee4565b610a1f565b61030d600381565b6102c7610357366004612099565b610b31565b6102c761036a366004612185565b610bd6565b6102c7610c43565b6102c7610385366004611ee4565b610c89565b61029c610e33565b6001546001600160a01b031661029c565b6102c76103b136600461222f565b610ec6565b6004546001600160a01b031661029c565b60008051602061281a833981519152546040516001600160601b039091168152602001610286565b6102c76103fd366004611ee4565b610f37565b61029c611045565b6102c7610418366004611ee4565b61106e565b6102c761042b36600461227e565b6110f1565b61029c611134565b61044061126b565b6040516001600160e01b03199091168152602001610286565b61030d60008051602061281a83398151915281565b6102c761047c3660046122b7565b6112a3565b6102c761048f3660046122b7565b611326565b6102c76104a23660046122e5565b611361565b61029c611504565b6102c76104bd366004612311565b611520565b61029c6116ec565b6104d2611715565b60405160ff9091168152602001610286565b6104f76104f236600461235c565b61178c565b604080516001600160401b03938416815292909116602083015201610286565b6005546001600160a01b031661029c565b61029c611817565b6002546001600160a01b031661029c565b6102c761054f3660046123b5565b611840565b6102c7610562366004611ee4565b6119e0565b6102c76105753660046123f6565b611aa0565b61029c611b17565b61058f335b600036611b40565b6002546001600160a01b0316156105cd5760025460405163e02ca03360e01b81526001600160a01b0390911660048201526024015b60405180910390fd5b6105d5611504565b6001600160a01b0316816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561061c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106409190612414565b6001600160a01b03161461067b57610656611504565b6040516374150f9560e11b81526001600160a01b0390911660048201526024016105c4565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b6040805160e0808201835260008083526020830181905282840181905260608084018290526080840182905260a0840182905260c0840152835191820190935290917f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa300919081906001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a00161074c611134565b6001600160a01b0316815260200182600101805461076990612431565b80601f016020809104026020016040519081016040528092919081815260200182805461079590612431565b80156107e25780601f106107b7576101008083540402835291602001916107e2565b820191906000526020600020905b8154815290600101906020018083116107c557829003601f168201915b505050505081525091505090565b600060008051602061281a83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af415801561085f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610883919061246b565b156108af5780546040516301ab8b6760e21b81526001600160601b0390911660048201526024016105c4565b306108c26001546001600160a01b031690565b60405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa15801561090a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061092e919061246b565b6109565760405163b9304b0d60e01b81526001600160a01b03821660048201526024016105c4565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038381166004830152919091169063d272ac1e90602401602060405180830381865afa1580156109aa573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109ce9190612488565b82546bffffffffffffffffffffffff19166001600160601b03919091161790915550565b6109fa611c3e565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b610a2833610587565b6005546001600160a01b031615610a6157600554604051632e67e2ab60e21b81526001600160a01b0390911660048201526024016105c4565b610a69611504565b6001600160a01b0316816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ab0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ad49190612414565b6001600160a01b031614610b0f57610aea611504565b6040516348263eef60e01b81526001600160a01b0390911660048201526024016105c4565b600580546001600160a01b0319166001600160a01b0392909216919091179055565b610b39611c3e565b610b438287611aa0565b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0387166cffffffffffffffffffffffffff1990911617600160601b60ff8716021760ff60681b1916600160681b851515021781557f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa301610bcc83826124eb565b5050505050505050565b610bdf33610587565b6002546040516329db8c3d60e01b81526001600160a01b03909116906329db8c3d90610c159087908790879087906004016125aa565b600060405180830381600087803b158015610c2f57600080fd5b505af1158015610bcc573d6000803e3d6000fd5b610c4b611c3e565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b610c9233610587565b6004546001600160a01b031615610cce576004805460405163384c2dbd60e11b81526001600160a01b03909116918101919091526024016105c4565b306001600160a01b0316816001600160a01b031663de7b5d146040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d16573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d3a9190612414565b6001600160a01b031614610d635760405163decb98c560e01b81523060048201526024016105c4565b610d6b611504565b6001600160a01b0316816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610db2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dd69190612414565b6001600160a01b031614610e1157610dec611504565b604051630312205960e41b81526001600160a01b0390911660048201526024016105c4565b600480546001600160a01b0319166001600160a01b0392909216919091179055565b6000610e476001546001600160a01b031690565b6001600160a01b031663d39e6043606e5b6040516001600160e01b031960e084901b16815260ff909116600482015260036024820152604401602060405180830381865afa158015610e9d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ec19190612414565b905090565b610ecf33610587565b6002546040516317ea2ab560e21b81526001600160a01b0390911690635fa8aad490610f01908590859060040161261f565b600060405180830381600087803b158015610f1b57600080fd5b505af1158015610f2f573d6000803e3d6000fd5b505050505050565b610f3f611c3e565b806001600160a01b03163b600003610f755760405163fdeac91f60e01b81526001600160a01b03821660048201526024016105c4565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b8152630a3888e560e31b60048201526301ffc9a790602401602060405180830381865afa925050508015610fef575060408051601f3d908101601f19168201909252610fec9181019061246b565b60015b6110175760405163fdeac91f60e01b81526001600160a01b03821660048201526024016105c4565b806110405760405163fdeac91f60e01b81526001600160a01b03831660048201526024016105c4565b505b50565b60006110596001546001600160a01b031690565b6001600160a01b031663d39e6043608c610e58565b33611077611504565b6001600160a01b0316816001600160a01b0316146110b25760405162d1953b60e31b81526001600160a01b03821660048201526024016105c4565b816001600160a01b03163b6000036110e8576040516361798f2f60e11b81526001600160a01b03831660048201526024016105c4565b61104082611c89565b6110fa33610587565b6002546040516308b6d1c760e21b81526001600160a01b0384811660048301528315156024830152909116906322db471c90604401610f01565b60008060008051602061281a83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af41580156111a4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111c8919061246b565b15611255576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa15801561122b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061124f9190612414565b91505090565b54600160601b90046001600160a01b0316919050565b60008051602061283a833981519152805460009190600160a01b900460ff1661129557600061124f565b638fb3603760e01b91505090565b6112ac33610587565b600254604051630b428b0b60e41b81526001600160a01b039091169063b428b0b0906112de9085908590600401612643565b6020604051808303816000875af11580156112fd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611321919061246b565b505050565b61132f33610587565b600254604051635be958b160e11b81526001600160a01b039091169063b7d2b162906112de9085908590600401612643565b6001546001600160a01b03166001600160a01b031663120726c36040518163ffffffff1660e01b8152600401602060405180830381865afa1580156113aa573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113ce9190612414565b6001600160a01b0316336001600160a01b0316146113eb57600080fd5b6002546001600160a01b03166303014974611404611cea565b6040516001600160e01b031960e084901b1681526001600160401b039091166004820152602401602060405180830381865afa158015611448573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061146c9190612665565b156114795761147961267e565b6002546001600160a01b031663b428b0b0611492611cea565b846040518363ffffffff1660e01b81526004016114b0929190612643565b6020604051808303816000875af11580156114cf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114f3919061246b565b15156001146110405761104061267e565b60008051602061283a833981519152546001600160a01b031690565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff1615906001600160401b03166000811580156115655750825b90506000826001600160401b031660011480156115815750303b155b90508115801561158f575080155b156115ad5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156115d757845460ff60401b1916600160401b1785555b6001600160a01b0388166115fe5760405163da1db49160e01b815260040160405180910390fd5b61160788611d62565b600087905061168c88826001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa15801561164e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116729190612488565b604660018b60405180602001604052806000815250610b31565b61169c63425ec80560e01b6109f2565b508315610bcc57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15050505050505050565b60006117006001546001600160a01b031690565b6001600160a01b031663d39e60436078610e58565b604051632392b61b60e21b81526003600482015260009073__$9dab98ad7ae1a426029e5739f922230a41$__90638e4ad86c90602401602060405180830381865af4158015611768573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ec19190612694565b60008061179833610587565b60025460405163d2192dbf60e01b81526001600160a01b039091169063d2192dbf906117ca90879087906004016126b1565b60408051808303816000875af11580156117e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061180c91906126df565b909590945092505050565b600061182b6001546001600160a01b031690565b6001600160a01b031663d39e604360d3610e58565b6001546001600160a01b03166001600160a01b031663120726c36040518163ffffffff1660e01b8152600401602060405180830381865afa158015611889573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118ad9190612414565b6001600160a01b0316336001600160a01b0316146118ca57600080fd5b6002546001600160a01b031663b7d2b1626118e3611cea565b856040518363ffffffff1660e01b8152600401611901929190612643565b6020604051808303816000875af1158015611920573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611944919061246b565b15156001146119555761195561267e565b6002546001600160a01b031663b428b0b061196e611cea565b846040518363ffffffff1660e01b815260040161198c929190612643565b6020604051808303816000875af11580156119ab573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119cf919061246b565b15156001146113215761132161267e565b6119e933610587565b306001600160a01b0316816001600160a01b031663de7b5d146040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a31573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a559190612414565b6001600160a01b031614611a7e576040516345789cf560e01b81523060048201526024016105c4565b600380546001600160a01b0319166001600160a01b0392909216919091179055565b611aa8611c3e565b611ab181610f37565b611ab9610c43565b6001600160a01b038216611ae05760405163f17ef42d60e01b815260040160405180910390fd5b5060008051602061281a83398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b6000611b2b6001546001600160a01b031690565b6001600160a01b031663d39e604360dc610e58565b60008051602061283a833981519152600080611b7b611b5d611504565b8730611b6d600460008a8c61270e565b611b7691612738565b611d73565b9150915081610f2f5763ffffffff811615611c1b57825460ff60a01b1916600160a01b178355611ba9611504565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b8152600401611bd893929190612768565b600060405180830381600087803b158015611bf257600080fd5b505af1158015611c06573d6000803e3d6000fd5b5050845460ff60a01b1916855550610f2f9050565b60405162d1953b60e31b81526001600160a01b03871660048201526024016105c4565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff16611c8757604051631afcd79f60e31b815260040160405180910390fd5b565b60008051602061283a83398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b6040516368aebf7b60e01b815261076c600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b90602401602060405180830381865af4158015611d3e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ec191906127a8565b611d6a611c3e565b61104281611e7f565b6040516001600160a01b03848116602483015283811660448301526001600160e01b03198316606483015260009182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b17905251611de291906127c5565b600060405180830381855afa9150503d8060008114611e1d576040519150601f19603f3d011682016040523d82523d6000602084013e611e22565b606091505b50915091508115611e74576040815110611e545780806020019051810190611e4a91906127e1565b9094509250611e74565b6020815110611e745780806020019051810190611e71919061246b565b93505b505094509492505050565b611e87611c3e565b61104281611c89565b80356001600160e01b031981168114611ea857600080fd5b919050565b600060208284031215611ebf57600080fd5b611ec882611e90565b9392505050565b6001600160a01b038116811461104257600080fd5b600060208284031215611ef657600080fd5b8135611ec881611ecf565b60005b83811015611f1c578181015183820152602001611f04565b50506000910152565b60008151808452611f3d816020860160208601611f01565b601f01601f19169290920160200192915050565b6020815260006001600160601b038084511660208401528060208501511660408401525060ff604084015116606083015260608301511515608083015260018060a01b0360808401511660a083015260a0830151611fba60c08401826001600160a01b03169052565b5060c083015160e080840152611fd4610100840182611f25565b949350505050565b6001600160601b038116811461104257600080fd5b60ff8116811461104257600080fd5b801515811461104257600080fd5b634e487b7160e01b600052604160045260246000fd5b60006001600160401b038084111561203e5761203e61200e565b604051601f8501601f19908116603f011681019082821181831017156120665761206661200e565b8160405280935085815286868601111561207f57600080fd5b858560208301376000602087830101525050509392505050565b60008060008060008060c087890312156120b257600080fd5b86356120bd81611ecf565b955060208701356120cd81611fdc565b945060408701356120dd81611ff1565b935060608701356120ed81612000565b925060808701356120fd81611ecf565b915060a08701356001600160401b0381111561211857600080fd5b8701601f8101891361212957600080fd5b61213889823560208401612024565b9150509295509295509295565b600082601f83011261215657600080fd5b611ec883833560208501612024565b6001600160401b038116811461104257600080fd5b8035611ea881612165565b6000806000806060858703121561219b57600080fd5b84356001600160401b03808211156121b257600080fd5b6121be88838901612145565b955060208701359150808211156121d457600080fd5b818701915087601f8301126121e857600080fd5b8135818111156121f757600080fd5b8860208260051b850101111561220c57600080fd5b6020830195508094505050506122246040860161217a565b905092959194509250565b6000806040838503121561224257600080fd5b823561224d81611ecf565b915060208301356001600160401b0381111561226857600080fd5b61227485828601612145565b9150509250929050565b6000806040838503121561229157600080fd5b823561229c81611ecf565b915060208301356122ac81612000565b809150509250929050565b600080604083850312156122ca57600080fd5b82356122d581612165565b915060208301356122ac81611ecf565b600080604083850312156122f857600080fd5b823561230381611ecf565b946020939093013593505050565b60008060006060848603121561232657600080fd5b833561233181611ecf565b9250602084013561234181611ecf565b9150604084013561235181611ecf565b809150509250925092565b6000806040838503121561236f57600080fd5b82356001600160401b038082111561238657600080fd5b61239286838701612145565b935060208501359150808211156123a857600080fd5b5061227485828601612145565b6000806000606084860312156123ca57600080fd5b83356123d581611ecf565b925060208401356123e581611ecf565b929592945050506040919091013590565b6000806040838503121561240957600080fd5b82356122d581611ecf565b60006020828403121561242657600080fd5b8151611ec881611ecf565b600181811c9082168061244557607f821691505b60208210810361246557634e487b7160e01b600052602260045260246000fd5b50919050565b60006020828403121561247d57600080fd5b8151611ec881612000565b60006020828403121561249a57600080fd5b8151611ec881611fdc565b601f82111561132157600081815260208120601f850160051c810160208610156124cc5750805b601f850160051c820191505b81811015610f2f578281556001016124d8565b81516001600160401b038111156125045761250461200e565b612518816125128454612431565b846124a5565b602080601f83116001811461254d57600084156125355750858301515b600019600386901b1c1916600185901b178555610f2f565b600085815260208120601f198616915b8281101561257c5788860151825594840194600190910190840161255d565b508582101561259a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6060815260006125bd6060830187611f25565b8281036020848101919091528582528691810160005b87811015612600576001600160e01b03196125ed85611e90565b16825292820192908201906001016125d3565b508093505050506001600160401b038316604083015295945050505050565b6001600160a01b0383168152604060208201819052600090611fd490830184611f25565b6001600160401b039290921682526001600160a01b0316602082015260400190565b60006020828403121561267757600080fd5b5051919050565b634e487b7160e01b600052600160045260246000fd5b6000602082840312156126a657600080fd5b8151611ec881611ff1565b6040815260006126c46040830185611f25565b82810360208401526126d68185611f25565b95945050505050565b600080604083850312156126f257600080fd5b82516126fd81612165565b60208401519092506122ac81612165565b6000808585111561271e57600080fd5b8386111561272b57600080fd5b5050820193919092039150565b6001600160e01b031981358181169160048510156127605780818660040360031b1b83161692505b505092915050565b6001600160a01b03841681526040602082018190528101829052818360608301376000818301606090810191909152601f909201601f1916010192915050565b6000602082840312156127ba57600080fd5b8151611ec881612165565b600082516127d7818460208701611f01565b9190910192915050565b600080604083850312156127f457600080fd5b82516127ff81612000565b602084015190925063ffffffff811681146122ac57600080fdfe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00a2646970667358221220fe32f01f3c03d1bcc7464ac793ecc40685d7317ef9d1111a8c9974b89ee3818264736f6c63430008140033",
|
876
|
+
"deployedBytecode": "0x608060405234801561001057600080fd5b50600436106102485760003560e01c80637a9e5e4b1161013b578063ca600b1c116100b8578063e5f6cd271161007c578063e5f6cd2714610530578063e7f7fb8614610541578063f7bc431c14610554578063f7c34ee014610567578063fed3d63f1461057a57600080fd5b8063ca600b1c146104c2578063cde749f4146104ca578063d2192dbf146104e4578063d4cda0d814610517578063e1033e7d1461052857600080fd5b8063b428b0b0116100ff578063b428b0b01461046e578063b7d2b16214610481578063bb1e0e5914610494578063bf7e214f146104a7578063c0c53b8b146104af57600080fd5b80637a9e5e4b1461040a578063868923131461041d578063893d20e8146104305780638fb3603714610438578063ada9652e1461045957600080fd5b806329db8c3d116101c95780635fa8aad41161018d5780635fa8aad4146103a357806361f5f420146103b6578063644c45e0146103c7578063675393bf146103ef5780636b9bf08b1461040257600080fd5b806329db8c3d1461035c57806336fc697e1461036f578063422c9d00146103775780634288121d1461038a5780635ab1bd531461039257600080fd5b80631eff4b22116102105780631eff4b22146102e6578063214cdb801461031b5780632449aea81461032e5780632781d4431461034157806327bb7a331461034957600080fd5b806301ffc9a71461024d57806302cd30711461028f5780630f749a89146102b45780630fec111c146102c9578063138461e0146102de575b600080fd5b61027a61025b366004611ead565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b6003546001600160a01b03165b6040516001600160a01b039091168152602001610286565b6102c76102c2366004611ee4565b610582565b005b6102d161069d565b6040516102869190611f51565b6102c76107f0565b61030d7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b604051908152602001610286565b6102c7610329366004611ead565b6109f2565b6102c761033c366004611ee4565b610a1f565b61030d600381565b6102c7610357366004612099565b610b31565b6102c761036a366004612185565b610bd6565b6102c7610c43565b6102c7610385366004611ee4565b610c89565b61029c610e33565b6001546001600160a01b031661029c565b6102c76103b136600461222f565b610ec6565b6004546001600160a01b031661029c565b60008051602061281a833981519152546040516001600160601b039091168152602001610286565b6102c76103fd366004611ee4565b610f37565b61029c611045565b6102c7610418366004611ee4565b61106e565b6102c761042b36600461227e565b6110f1565b61029c611134565b61044061126b565b6040516001600160e01b03199091168152602001610286565b61030d60008051602061281a83398151915281565b6102c761047c3660046122b7565b6112a3565b6102c761048f3660046122b7565b611326565b6102c76104a23660046122e5565b611361565b61029c611504565b6102c76104bd366004612311565b611520565b61029c6116ec565b6104d2611715565b60405160ff9091168152602001610286565b6104f76104f236600461235c565b61178c565b604080516001600160401b03938416815292909116602083015201610286565b6005546001600160a01b031661029c565b61029c611817565b6002546001600160a01b031661029c565b6102c761054f3660046123b5565b611840565b6102c7610562366004611ee4565b6119e0565b6102c76105753660046123f6565b611aa0565b61029c611b17565b61058f335b600036611b40565b6002546001600160a01b0316156105cd5760025460405163e02ca03360e01b81526001600160a01b0390911660048201526024015b60405180910390fd5b6105d5611504565b6001600160a01b0316816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561061c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106409190612414565b6001600160a01b03161461067b57610656611504565b6040516374150f9560e11b81526001600160a01b0390911660048201526024016105c4565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b6040805160e0808201835260008083526020830181905282840181905260608084018290526080840182905260a0840182905260c0840152835191820190935290917f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa300919081906001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a00161074c611134565b6001600160a01b0316815260200182600101805461076990612431565b80601f016020809104026020016040519081016040528092919081815260200182805461079590612431565b80156107e25780601f106107b7576101008083540402835291602001916107e2565b820191906000526020600020905b8154815290600101906020018083116107c557829003601f168201915b505050505081525091505090565b600060008051602061281a83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af415801561085f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610883919061246b565b156108af5780546040516301ab8b6760e21b81526001600160601b0390911660048201526024016105c4565b306108c26001546001600160a01b031690565b60405163c3c5a54760e01b81526001600160a01b038381166004830152919091169063c3c5a54790602401602060405180830381865afa15801561090a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061092e919061246b565b6109565760405163b9304b0d60e01b81526001600160a01b03821660048201526024016105c4565b6001546001600160a01b0316604051636939560f60e11b81526001600160a01b038381166004830152919091169063d272ac1e90602401602060405180830381865afa1580156109aa573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109ce9190612488565b82546bffffffffffffffffffffffff19166001600160601b03919091161790915550565b6109fa611c3e565b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b610a2833610587565b6005546001600160a01b031615610a6157600554604051632e67e2ab60e21b81526001600160a01b0390911660048201526024016105c4565b610a69611504565b6001600160a01b0316816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ab0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ad49190612414565b6001600160a01b031614610b0f57610aea611504565b6040516348263eef60e01b81526001600160a01b0390911660048201526024016105c4565b600580546001600160a01b0319166001600160a01b0392909216919091179055565b610b39611c3e565b610b438287611aa0565b7f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0387166cffffffffffffffffffffffffff1990911617600160601b60ff8716021760ff60681b1916600160681b851515021781557f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa301610bcc83826124eb565b5050505050505050565b610bdf33610587565b6002546040516329db8c3d60e01b81526001600160a01b03909116906329db8c3d90610c159087908790879087906004016125aa565b600060405180830381600087803b158015610c2f57600080fd5b505af1158015610bcc573d6000803e3d6000fd5b610c4b611c3e565b6301ffc9a760e01b60009081526020527f67be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5805460ff19166001179055565b610c9233610587565b6004546001600160a01b031615610cce576004805460405163384c2dbd60e11b81526001600160a01b03909116918101919091526024016105c4565b306001600160a01b0316816001600160a01b031663de7b5d146040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d16573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d3a9190612414565b6001600160a01b031614610d635760405163decb98c560e01b81523060048201526024016105c4565b610d6b611504565b6001600160a01b0316816001600160a01b031663bf7e214f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610db2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dd69190612414565b6001600160a01b031614610e1157610dec611504565b604051630312205960e41b81526001600160a01b0390911660048201526024016105c4565b600480546001600160a01b0319166001600160a01b0392909216919091179055565b6000610e476001546001600160a01b031690565b6001600160a01b031663d39e6043606e5b6040516001600160e01b031960e084901b16815260ff909116600482015260036024820152604401602060405180830381865afa158015610e9d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ec19190612414565b905090565b610ecf33610587565b6002546040516317ea2ab560e21b81526001600160a01b0390911690635fa8aad490610f01908590859060040161261f565b600060405180830381600087803b158015610f1b57600080fd5b505af1158015610f2f573d6000803e3d6000fd5b505050505050565b610f3f611c3e565b806001600160a01b03163b600003610f755760405163fdeac91f60e01b81526001600160a01b03821660048201526024016105c4565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b8152630a3888e560e31b60048201526301ffc9a790602401602060405180830381865afa925050508015610fef575060408051601f3d908101601f19168201909252610fec9181019061246b565b60015b6110175760405163fdeac91f60e01b81526001600160a01b03821660048201526024016105c4565b806110405760405163fdeac91f60e01b81526001600160a01b03831660048201526024016105c4565b505b50565b60006110596001546001600160a01b031690565b6001600160a01b031663d39e6043608c610e58565b33611077611504565b6001600160a01b0316816001600160a01b0316146110b25760405162d1953b60e31b81526001600160a01b03821660048201526024016105c4565b816001600160a01b03163b6000036110e8576040516361798f2f60e11b81526001600160a01b03831660048201526024016105c4565b61104082611c89565b6110fa33610587565b6002546040516308b6d1c760e21b81526001600160a01b0384811660048301528315156024830152909116906322db471c90604401610f01565b60008060008051602061281a83398151915280546040516330b8415f60e01b81526001600160601b03909116600482015290915073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af41580156111a4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111c8919061246b565b15611255576001546001600160a01b03168154604051631c5da14d60e11b81526001600160601b0390911660048201526001600160a01b0391909116906338bb429a90602401602060405180830381865afa15801561122b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061124f9190612414565b91505090565b54600160601b90046001600160a01b0316919050565b60008051602061283a833981519152805460009190600160a01b900460ff1661129557600061124f565b638fb3603760e01b91505090565b6112ac33610587565b600254604051630b428b0b60e41b81526001600160a01b039091169063b428b0b0906112de9085908590600401612643565b6020604051808303816000875af11580156112fd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611321919061246b565b505050565b61132f33610587565b600254604051635be958b160e11b81526001600160a01b039091169063b7d2b162906112de9085908590600401612643565b6001546001600160a01b03166001600160a01b031663120726c36040518163ffffffff1660e01b8152600401602060405180830381865afa1580156113aa573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113ce9190612414565b6001600160a01b0316336001600160a01b0316146113eb57600080fd5b6002546001600160a01b03166303014974611404611cea565b6040516001600160e01b031960e084901b1681526001600160401b039091166004820152602401602060405180830381865afa158015611448573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061146c9190612665565b156114795761147961267e565b6002546001600160a01b031663b428b0b0611492611cea565b846040518363ffffffff1660e01b81526004016114b0929190612643565b6020604051808303816000875af11580156114cf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114f3919061246b565b15156001146110405761104061267e565b60008051602061283a833981519152546001600160a01b031690565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a008054600160401b810460ff1615906001600160401b03166000811580156115655750825b90506000826001600160401b031660011480156115815750303b155b90508115801561158f575080155b156115ad5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff1916600117855583156115d757845460ff60401b1916600160401b1785555b6001600160a01b0388166115fe5760405163da1db49160e01b815260040160405180910390fd5b61160788611d62565b600087905061168c88826001600160a01b031663644c45e06040518163ffffffff1660e01b8152600401602060405180830381865afa15801561164e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116729190612488565b604660018b60405180602001604052806000815250610b31565b61169c63425ec80560e01b6109f2565b508315610bcc57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15050505050505050565b60006117006001546001600160a01b031690565b6001600160a01b031663d39e60436078610e58565b604051632392b61b60e21b81526003600482015260009073__$9dab98ad7ae1a426029e5739f922230a41$__90638e4ad86c90602401602060405180830381865af4158015611768573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ec19190612694565b60008061179833610587565b60025460405163d2192dbf60e01b81526001600160a01b039091169063d2192dbf906117ca90879087906004016126b1565b60408051808303816000875af11580156117e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061180c91906126df565b909590945092505050565b600061182b6001546001600160a01b031690565b6001600160a01b031663d39e604360d3610e58565b6001546001600160a01b03166001600160a01b031663120726c36040518163ffffffff1660e01b8152600401602060405180830381865afa158015611889573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118ad9190612414565b6001600160a01b0316336001600160a01b0316146118ca57600080fd5b6002546001600160a01b031663b7d2b1626118e3611cea565b856040518363ffffffff1660e01b8152600401611901929190612643565b6020604051808303816000875af1158015611920573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611944919061246b565b15156001146119555761195561267e565b6002546001600160a01b031663b428b0b061196e611cea565b846040518363ffffffff1660e01b815260040161198c929190612643565b6020604051808303816000875af11580156119ab573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119cf919061246b565b15156001146113215761132161267e565b6119e933610587565b306001600160a01b0316816001600160a01b031663de7b5d146040518163ffffffff1660e01b8152600401602060405180830381865afa158015611a31573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a559190612414565b6001600160a01b031614611a7e576040516345789cf560e01b81523060048201526024016105c4565b600380546001600160a01b0319166001600160a01b0392909216919091179055565b611aa8611c3e565b611ab181610f37565b611ab9610c43565b6001600160a01b038216611ae05760405163f17ef42d60e01b815260040160405180910390fd5b5060008051602061281a83398151915280546001600160601b0316600160601b6001600160a01b0390931692909202919091179055565b6000611b2b6001546001600160a01b031690565b6001600160a01b031663d39e604360dc610e58565b60008051602061283a833981519152600080611b7b611b5d611504565b8730611b6d600460008a8c61270e565b611b7691612738565b611d73565b9150915081610f2f5763ffffffff811615611c1b57825460ff60a01b1916600160a01b178355611ba9611504565b6001600160a01b03166394c7d7ee8787876040518463ffffffff1660e01b8152600401611bd893929190612768565b600060405180830381600087803b158015611bf257600080fd5b505af1158015611c06573d6000803e3d6000fd5b5050845460ff60a01b1916855550610f2f9050565b60405162d1953b60e31b81526001600160a01b03871660048201526024016105c4565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a0054600160401b900460ff16611c8757604051631afcd79f60e31b815260040160405180910390fd5b565b60008051602061283a83398151915280546001600160a01b0383166001600160a01b03199091168117825560408051918252517f2f658b440c35314f52658ea8a740e05b284cdc84dc9ae01e891f21b8933e7cad9181900360200190a15050565b6040516368aebf7b60e01b815261076c600482015260009073__$cd131c2b3ba46b9dbe046aaf4458b9777d$__906368aebf7b90602401602060405180830381865af4158015611d3e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ec191906127a8565b611d6a611c3e565b61104281611e7f565b6040516001600160a01b03848116602483015283811660448301526001600160e01b03198316606483015260009182918291829189169060840160408051601f198184030181529181526020820180516001600160e01b031663b700961360e01b17905251611de291906127c5565b600060405180830381855afa9150503d8060008114611e1d576040519150601f19603f3d011682016040523d82523d6000602084013e611e22565b606091505b50915091508115611e74576040815110611e545780806020019051810190611e4a91906127e1565b9094509250611e74565b6020815110611e745780806020019051810190611e71919061246b565b93505b505094509492505050565b611e87611c3e565b61104281611c89565b80356001600160e01b031981168114611ea857600080fd5b919050565b600060208284031215611ebf57600080fd5b611ec882611e90565b9392505050565b6001600160a01b038116811461104257600080fd5b600060208284031215611ef657600080fd5b8135611ec881611ecf565b60005b83811015611f1c578181015183820152602001611f04565b50506000910152565b60008151808452611f3d816020860160208601611f01565b601f01601f19169290920160200192915050565b6020815260006001600160601b038084511660208401528060208501511660408401525060ff604084015116606083015260608301511515608083015260018060a01b0360808401511660a083015260a0830151611fba60c08401826001600160a01b03169052565b5060c083015160e080840152611fd4610100840182611f25565b949350505050565b6001600160601b038116811461104257600080fd5b60ff8116811461104257600080fd5b801515811461104257600080fd5b634e487b7160e01b600052604160045260246000fd5b60006001600160401b038084111561203e5761203e61200e565b604051601f8501601f19908116603f011681019082821181831017156120665761206661200e565b8160405280935085815286868601111561207f57600080fd5b858560208301376000602087830101525050509392505050565b60008060008060008060c087890312156120b257600080fd5b86356120bd81611ecf565b955060208701356120cd81611fdc565b945060408701356120dd81611ff1565b935060608701356120ed81612000565b925060808701356120fd81611ecf565b915060a08701356001600160401b0381111561211857600080fd5b8701601f8101891361212957600080fd5b61213889823560208401612024565b9150509295509295509295565b600082601f83011261215657600080fd5b611ec883833560208501612024565b6001600160401b038116811461104257600080fd5b8035611ea881612165565b6000806000806060858703121561219b57600080fd5b84356001600160401b03808211156121b257600080fd5b6121be88838901612145565b955060208701359150808211156121d457600080fd5b818701915087601f8301126121e857600080fd5b8135818111156121f757600080fd5b8860208260051b850101111561220c57600080fd5b6020830195508094505050506122246040860161217a565b905092959194509250565b6000806040838503121561224257600080fd5b823561224d81611ecf565b915060208301356001600160401b0381111561226857600080fd5b61227485828601612145565b9150509250929050565b6000806040838503121561229157600080fd5b823561229c81611ecf565b915060208301356122ac81612000565b809150509250929050565b600080604083850312156122ca57600080fd5b82356122d581612165565b915060208301356122ac81611ecf565b600080604083850312156122f857600080fd5b823561230381611ecf565b946020939093013593505050565b60008060006060848603121561232657600080fd5b833561233181611ecf565b9250602084013561234181611ecf565b9150604084013561235181611ecf565b809150509250925092565b6000806040838503121561236f57600080fd5b82356001600160401b038082111561238657600080fd5b61239286838701612145565b935060208501359150808211156123a857600080fd5b5061227485828601612145565b6000806000606084860312156123ca57600080fd5b83356123d581611ecf565b925060208401356123e581611ecf565b929592945050506040919091013590565b6000806040838503121561240957600080fd5b82356122d581611ecf565b60006020828403121561242657600080fd5b8151611ec881611ecf565b600181811c9082168061244557607f821691505b60208210810361246557634e487b7160e01b600052602260045260246000fd5b50919050565b60006020828403121561247d57600080fd5b8151611ec881612000565b60006020828403121561249a57600080fd5b8151611ec881611fdc565b601f82111561132157600081815260208120601f850160051c810160208610156124cc5750805b601f850160051c820191505b81811015610f2f578281556001016124d8565b81516001600160401b038111156125045761250461200e565b612518816125128454612431565b846124a5565b602080601f83116001811461254d57600084156125355750858301515b600019600386901b1c1916600185901b178555610f2f565b600085815260208120601f198616915b8281101561257c5788860151825594840194600190910190840161255d565b508582101561259a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6060815260006125bd6060830187611f25565b8281036020848101919091528582528691810160005b87811015612600576001600160e01b03196125ed85611e90565b16825292820192908201906001016125d3565b508093505050506001600160401b038316604083015295945050505050565b6001600160a01b0383168152604060208201819052600090611fd490830184611f25565b6001600160401b039290921682526001600160a01b0316602082015260400190565b60006020828403121561267757600080fd5b5051919050565b634e487b7160e01b600052600160045260246000fd5b6000602082840312156126a657600080fd5b8151611ec881611ff1565b6040815260006126c46040830185611f25565b82810360208401526126d68185611f25565b95945050505050565b600080604083850312156126f257600080fd5b82516126fd81612165565b60208401519092506122ac81612165565b6000808585111561271e57600080fd5b8386111561272b57600080fd5b5050820193919092039150565b6001600160e01b031981358181169160048510156127605780818660040360031b1b83161692505b505092915050565b6001600160a01b03841681526040602082018190528101829052818360608301376000818301606090810191909152601f909201601f1916010192915050565b6000602082840312156127ba57600080fd5b8151611ec881612165565b600082516127d7818460208701611f01565b9190910192915050565b600080604083850312156127f457600080fd5b82516127ff81612000565b602084015190925063ffffffff811681146122ac57600080fdfe07ebcf49758b6ed3af50fa146bec0abe157c0218fe65dc0874c286e9d5da4f00f3177357ab46d8af007ab3fdb9af81da189e1068fefdc0073dca88a2cab40a00a2646970667358221220fe32f01f3c03d1bcc7464ac793ecc40685d7317ef9d1111a8c9974b89ee3818264736f6c63430008140033",
|
2953
877
|
"linkReferences": {
|
2954
|
-
"contracts/types/Key32.sol": {
|
2955
|
-
"Key32Lib": [
|
2956
|
-
{
|
2957
|
-
"length": 20,
|
2958
|
-
"start": 10392
|
2959
|
-
},
|
2960
|
-
{
|
2961
|
-
"length": 20,
|
2962
|
-
"start": 13602
|
2963
|
-
},
|
2964
|
-
{
|
2965
|
-
"length": 20,
|
2966
|
-
"start": 13718
|
2967
|
-
},
|
2968
|
-
{
|
2969
|
-
"length": 20,
|
2970
|
-
"start": 13900
|
2971
|
-
},
|
2972
|
-
{
|
2973
|
-
"length": 20,
|
2974
|
-
"start": 14016
|
2975
|
-
},
|
2976
|
-
{
|
2977
|
-
"length": 20,
|
2978
|
-
"start": 14221
|
2979
|
-
},
|
2980
|
-
{
|
2981
|
-
"length": 20,
|
2982
|
-
"start": 14974
|
2983
|
-
},
|
2984
|
-
{
|
2985
|
-
"length": 20,
|
2986
|
-
"start": 15090
|
2987
|
-
},
|
2988
|
-
{
|
2989
|
-
"length": 20,
|
2990
|
-
"start": 15831
|
2991
|
-
},
|
2992
|
-
{
|
2993
|
-
"length": 20,
|
2994
|
-
"start": 15947
|
2995
|
-
}
|
2996
|
-
]
|
2997
|
-
},
|
2998
878
|
"contracts/types/NftId.sol": {
|
2999
879
|
"NftIdLib": [
|
3000
880
|
{
|
3001
881
|
"length": 20,
|
3002
|
-
"start":
|
3003
|
-
},
|
3004
|
-
{
|
3005
|
-
"length": 20,
|
3006
|
-
"start": 4728
|
3007
|
-
},
|
3008
|
-
{
|
3009
|
-
"length": 20,
|
3010
|
-
"start": 5508
|
3011
|
-
},
|
3012
|
-
{
|
3013
|
-
"length": 20,
|
3014
|
-
"start": 6283
|
3015
|
-
},
|
3016
|
-
{
|
3017
|
-
"length": 20,
|
3018
|
-
"start": 7102
|
3019
|
-
},
|
3020
|
-
{
|
3021
|
-
"length": 20,
|
3022
|
-
"start": 7335
|
3023
|
-
},
|
3024
|
-
{
|
3025
|
-
"length": 20,
|
3026
|
-
"start": 8053
|
3027
|
-
},
|
3028
|
-
{
|
3029
|
-
"length": 20,
|
3030
|
-
"start": 11372
|
3031
|
-
}
|
3032
|
-
]
|
3033
|
-
},
|
3034
|
-
"contracts/types/ObjectType.sol": {
|
3035
|
-
"ObjectTypeLib": [
|
3036
|
-
{
|
3037
|
-
"length": 20,
|
3038
|
-
"start": 14342
|
3039
|
-
}
|
3040
|
-
]
|
3041
|
-
},
|
3042
|
-
"contracts/types/RiskId.sol": {
|
3043
|
-
"RiskIdLib": [
|
3044
|
-
{
|
3045
|
-
"length": 20,
|
3046
|
-
"start": 5142
|
3047
|
-
},
|
3048
|
-
{
|
3049
|
-
"length": 20,
|
3050
|
-
"start": 7187
|
882
|
+
"start": 2117
|
3051
883
|
},
|
3052
884
|
{
|
3053
885
|
"length": 20,
|
3054
|
-
"start":
|
886
|
+
"start": 4490
|
3055
887
|
}
|
3056
888
|
]
|
3057
889
|
},
|
@@ -3059,43 +891,7 @@
|
|
3059
891
|
"RoleIdLib": [
|
3060
892
|
{
|
3061
893
|
"length": 20,
|
3062
|
-
"start":
|
3063
|
-
}
|
3064
|
-
]
|
3065
|
-
},
|
3066
|
-
"contracts/types/StateId.sol": {
|
3067
|
-
"StateIdLib": [
|
3068
|
-
{
|
3069
|
-
"length": 20,
|
3070
|
-
"start": 5371
|
3071
|
-
},
|
3072
|
-
{
|
3073
|
-
"length": 20,
|
3074
|
-
"start": 8330
|
3075
|
-
},
|
3076
|
-
{
|
3077
|
-
"length": 20,
|
3078
|
-
"start": 9113
|
3079
|
-
},
|
3080
|
-
{
|
3081
|
-
"length": 20,
|
3082
|
-
"start": 13028
|
3083
|
-
},
|
3084
|
-
{
|
3085
|
-
"length": 20,
|
3086
|
-
"start": 13248
|
3087
|
-
},
|
3088
|
-
{
|
3089
|
-
"length": 20,
|
3090
|
-
"start": 14563
|
3091
|
-
},
|
3092
|
-
{
|
3093
|
-
"length": 20,
|
3094
|
-
"start": 15269
|
3095
|
-
},
|
3096
|
-
{
|
3097
|
-
"length": 20,
|
3098
|
-
"start": 15489
|
894
|
+
"start": 7460
|
3099
895
|
}
|
3100
896
|
]
|
3101
897
|
},
|
@@ -3103,113 +899,21 @@
|
|
3103
899
|
"VersionPartLib": [
|
3104
900
|
{
|
3105
901
|
"length": 20,
|
3106
|
-
"start":
|
902
|
+
"start": 5966
|
3107
903
|
}
|
3108
904
|
]
|
3109
905
|
}
|
3110
906
|
},
|
3111
907
|
"deployedLinkReferences": {
|
3112
|
-
"contracts/types/Key32.sol": {
|
3113
|
-
"Key32Lib": [
|
3114
|
-
{
|
3115
|
-
"length": 20,
|
3116
|
-
"start": 10359
|
3117
|
-
},
|
3118
|
-
{
|
3119
|
-
"length": 20,
|
3120
|
-
"start": 13569
|
3121
|
-
},
|
3122
|
-
{
|
3123
|
-
"length": 20,
|
3124
|
-
"start": 13685
|
3125
|
-
},
|
3126
|
-
{
|
3127
|
-
"length": 20,
|
3128
|
-
"start": 13867
|
3129
|
-
},
|
3130
|
-
{
|
3131
|
-
"length": 20,
|
3132
|
-
"start": 13983
|
3133
|
-
},
|
3134
|
-
{
|
3135
|
-
"length": 20,
|
3136
|
-
"start": 14188
|
3137
|
-
},
|
3138
|
-
{
|
3139
|
-
"length": 20,
|
3140
|
-
"start": 14941
|
3141
|
-
},
|
3142
|
-
{
|
3143
|
-
"length": 20,
|
3144
|
-
"start": 15057
|
3145
|
-
},
|
3146
|
-
{
|
3147
|
-
"length": 20,
|
3148
|
-
"start": 15798
|
3149
|
-
},
|
3150
|
-
{
|
3151
|
-
"length": 20,
|
3152
|
-
"start": 15914
|
3153
|
-
}
|
3154
|
-
]
|
3155
|
-
},
|
3156
908
|
"contracts/types/NftId.sol": {
|
3157
909
|
"NftIdLib": [
|
3158
910
|
{
|
3159
911
|
"length": 20,
|
3160
|
-
"start":
|
3161
|
-
},
|
3162
|
-
{
|
3163
|
-
"length": 20,
|
3164
|
-
"start": 4695
|
3165
|
-
},
|
3166
|
-
{
|
3167
|
-
"length": 20,
|
3168
|
-
"start": 5475
|
3169
|
-
},
|
3170
|
-
{
|
3171
|
-
"length": 20,
|
3172
|
-
"start": 6250
|
3173
|
-
},
|
3174
|
-
{
|
3175
|
-
"length": 20,
|
3176
|
-
"start": 7069
|
3177
|
-
},
|
3178
|
-
{
|
3179
|
-
"length": 20,
|
3180
|
-
"start": 7302
|
3181
|
-
},
|
3182
|
-
{
|
3183
|
-
"length": 20,
|
3184
|
-
"start": 8020
|
3185
|
-
},
|
3186
|
-
{
|
3187
|
-
"length": 20,
|
3188
|
-
"start": 11339
|
3189
|
-
}
|
3190
|
-
]
|
3191
|
-
},
|
3192
|
-
"contracts/types/ObjectType.sol": {
|
3193
|
-
"ObjectTypeLib": [
|
3194
|
-
{
|
3195
|
-
"length": 20,
|
3196
|
-
"start": 14309
|
3197
|
-
}
|
3198
|
-
]
|
3199
|
-
},
|
3200
|
-
"contracts/types/RiskId.sol": {
|
3201
|
-
"RiskIdLib": [
|
3202
|
-
{
|
3203
|
-
"length": 20,
|
3204
|
-
"start": 5109
|
3205
|
-
},
|
3206
|
-
{
|
3207
|
-
"length": 20,
|
3208
|
-
"start": 7154
|
912
|
+
"start": 2085
|
3209
913
|
},
|
3210
914
|
{
|
3211
915
|
"length": 20,
|
3212
|
-
"start":
|
916
|
+
"start": 4458
|
3213
917
|
}
|
3214
918
|
]
|
3215
919
|
},
|
@@ -3217,43 +921,7 @@
|
|
3217
921
|
"RoleIdLib": [
|
3218
922
|
{
|
3219
923
|
"length": 20,
|
3220
|
-
"start":
|
3221
|
-
}
|
3222
|
-
]
|
3223
|
-
},
|
3224
|
-
"contracts/types/StateId.sol": {
|
3225
|
-
"StateIdLib": [
|
3226
|
-
{
|
3227
|
-
"length": 20,
|
3228
|
-
"start": 5338
|
3229
|
-
},
|
3230
|
-
{
|
3231
|
-
"length": 20,
|
3232
|
-
"start": 8297
|
3233
|
-
},
|
3234
|
-
{
|
3235
|
-
"length": 20,
|
3236
|
-
"start": 9080
|
3237
|
-
},
|
3238
|
-
{
|
3239
|
-
"length": 20,
|
3240
|
-
"start": 12995
|
3241
|
-
},
|
3242
|
-
{
|
3243
|
-
"length": 20,
|
3244
|
-
"start": 13215
|
3245
|
-
},
|
3246
|
-
{
|
3247
|
-
"length": 20,
|
3248
|
-
"start": 14530
|
3249
|
-
},
|
3250
|
-
{
|
3251
|
-
"length": 20,
|
3252
|
-
"start": 15236
|
3253
|
-
},
|
3254
|
-
{
|
3255
|
-
"length": 20,
|
3256
|
-
"start": 15456
|
924
|
+
"start": 7428
|
3257
925
|
}
|
3258
926
|
]
|
3259
927
|
},
|
@@ -3261,7 +929,7 @@
|
|
3261
929
|
"VersionPartLib": [
|
3262
930
|
{
|
3263
931
|
"length": 20,
|
3264
|
-
"start":
|
932
|
+
"start": 5934
|
3265
933
|
}
|
3266
934
|
]
|
3267
935
|
}
|