#![cfg_attr(not(feature = "std"), no_std)]
#![recursion_limit = "256"]
#[cfg(feature = "std")]
include!(concat!(env!("OUT_DIR"), "/wasm_binary.rs"));
pub mod constants;
mod weights;
pub mod xcm_config;
use constants::*;
use cumulus_pallet_parachain_system::RelayNumberStrictlyIncreases;
use smallvec::smallvec;
use sp_api::impl_runtime_apis;
use sp_core::{crypto::KeyTypeId, OpaqueMetadata};
use sp_runtime::{
  create_runtime_str, generic, impl_opaque_keys,
  traits::{AccountIdLookup, BlakeTwo256, Block as BlockT, ConvertInto, IdentifyAccount, Verify},
  transaction_validity::{TransactionSource, TransactionValidity},
  ApplyExtrinsicResult, MultiSignature,
};
use sp_std::prelude::*;
#[cfg(feature = "std")]
use sp_version::NativeVersion;
use sp_version::RuntimeVersion;
use frame_support::{
  construct_runtime,
  dispatch::DispatchClass,
  parameter_types,
  traits::{
    AsEnsureOriginWithArg, ConstU128, ConstU32, EitherOfDiverse, Everything, InstanceFilter,
    WithdrawReasons,
  },
  weights::{
    constants::WEIGHT_REF_TIME_PER_SECOND, ConstantMultiplier, Weight, WeightToFeeCoefficient,
    WeightToFeeCoefficients, WeightToFeePolynomial,
  },
  PalletId, RuntimeDebug,
};
use frame_system::{
  limits::{BlockLength, BlockWeights},
  EnsureRoot, EnsureSigned,
};
pub use sp_consensus_aura::sr25519::AuthorityId as AuraId;
pub use sp_runtime::{MultiAddress, Perbill, Percent, Permill};
use xcm_config::{XcmConfig, XcmOriginToTransactDispatchOrigin};
pub use pallet_transaction_payment::{CurrencyAdapter, Multiplier, TargetedFeeAdjustment};
#[cfg(any(feature = "std", test))]
pub use sp_runtime::BuildStorage;
use polkadot_runtime_common::{BlockHashCount, SlowAdjustingFeeUpdate};
use weights::{BlockExecutionWeight, ExtrinsicBaseWeight, RocksDbWeight};
use pallet_mapped_assets;
use pallet_mapped_assets::DefaultCallback;
use xcm::latest::prelude::BodyId;
use xcm_executor::XcmExecutor;
pub type Signature = MultiSignature;
pub use pallet_template;
pub type AccountId = <<Signature as Verify>::Signer as IdentifyAccount>::AccountId;
pub type Balance = u128;
pub type AccountIndex = u32;
pub type Index = u32;
pub type Hash = sp_core::H256;
pub type BlockNumber = u32;
pub type Address = MultiAddress<AccountId, ()>;
pub type Header = generic::Header<BlockNumber, BlakeTwo256>;
pub type Block = generic::Block<Header, UncheckedExtrinsic>;
pub type SignedBlock = generic::SignedBlock<Block>;
pub type BlockId = generic::BlockId<Block>;
pub type SignedExtra = (
  frame_system::CheckNonZeroSender<Runtime>,
  frame_system::CheckSpecVersion<Runtime>,
  frame_system::CheckTxVersion<Runtime>,
  frame_system::CheckGenesis<Runtime>,
  frame_system::CheckEra<Runtime>,
  frame_system::CheckNonce<Runtime>,
  frame_system::CheckWeight<Runtime>,
  pallet_transaction_payment::ChargeTransactionPayment<Runtime>,
);
pub type UncheckedExtrinsic =
  generic::UncheckedExtrinsic<Address, RuntimeCall, Signature, SignedExtra>;
pub type CheckedExtrinsic = generic::CheckedExtrinsic<AccountId, RuntimeCall, SignedExtra>;
pub type Migrations = ();
pub type Executive = frame_executive::Executive<
  Runtime,
  Block,
  frame_system::ChainContext<Runtime>,
  Runtime,
  AllPalletsWithSystem,
  Migrations,
>;
pub type RootOrThreeFifthsOfCouncil = EitherOfDiverse<
  EnsureRoot<AccountId>,
  pallet_collective::EnsureProportionAtLeast<AccountId, CouncilCollective, 3, 5>,
>;
pub struct WeightToFee;
impl WeightToFeePolynomial for WeightToFee {
  type Balance = Balance;
  fn polynomial() -> WeightToFeeCoefficients<Self::Balance> {
    let p = MILLIUNIT / 10;
    let q = 100 * Balance::from(ExtrinsicBaseWeight::get().ref_time());
    smallvec![WeightToFeeCoefficient {
      degree: 1,
      negative: false,
      coeff_frac: Perbill::from_rational(p % q, q),
      coeff_integer: p / q,
    }]
  }
}
pub mod opaque {
  use super::*;
  use sp_runtime::{generic, traits::BlakeTwo256};
  pub use sp_runtime::OpaqueExtrinsic as UncheckedExtrinsic;
  pub type Header = generic::Header<BlockNumber, BlakeTwo256>;
  pub type Block = generic::Block<Header, UncheckedExtrinsic>;
  pub type BlockId = generic::BlockId<Block>;
}
impl_opaque_keys! {
  pub struct SessionKeys {
    pub aura: Aura,
  }
}
#[sp_version::runtime_version]
pub const VERSION: RuntimeVersion = RuntimeVersion {
  spec_name: create_runtime_str!("hashed"),
  impl_name: create_runtime_str!("hashed"),
  authoring_version: 3,
  spec_version: 3,
  impl_version: 0,
  apis: RUNTIME_API_VERSIONS,
  transaction_version: 1,
  state_version: 1,
};
pub const MILLISECS_PER_BLOCK: u64 = 12000;
pub const SLOT_DURATION: u64 = MILLISECS_PER_BLOCK;
pub const MINUTES: BlockNumber = 60_000 / (MILLISECS_PER_BLOCK as BlockNumber);
pub const HOURS: BlockNumber = MINUTES * 60;
pub const DAYS: BlockNumber = HOURS * 24;
pub const UNIT: Balance = 1_000_000_000_000;
pub const MILLIUNIT: Balance = 1_000_000_000;
pub const MICROUNIT: Balance = 1_000_000;
pub const EXISTENTIAL_DEPOSIT: Balance = MILLIUNIT;
const AVERAGE_ON_INITIALIZE_RATIO: Perbill = Perbill::from_percent(5);
const NORMAL_DISPATCH_RATIO: Perbill = Perbill::from_percent(75);
const MAXIMUM_BLOCK_WEIGHT: Weight = Weight::from_parts(
  WEIGHT_REF_TIME_PER_SECOND.saturating_div(2),
  cumulus_primitives_core::relay_chain::MAX_POV_SIZE as u64,
);
#[cfg(feature = "std")]
pub fn native_version() -> NativeVersion {
  NativeVersion { runtime_version: VERSION, can_author_with: Default::default() }
}
parameter_types! {
  pub const Version: RuntimeVersion = VERSION;
  pub RuntimeBlockLength: BlockLength =
    BlockLength::max_with_normal_ratio(5 * 1024 * 1024, NORMAL_DISPATCH_RATIO);
  pub RuntimeBlockWeights: BlockWeights = BlockWeights::builder()
    .base_block(BlockExecutionWeight::get())
    .for_class(DispatchClass::all(), |weights| {
      weights.base_extrinsic = ExtrinsicBaseWeight::get();
    })
    .for_class(DispatchClass::Normal, |weights| {
      weights.max_total = Some(NORMAL_DISPATCH_RATIO * MAXIMUM_BLOCK_WEIGHT);
    })
    .for_class(DispatchClass::Operational, |weights| {
      weights.max_total = Some(MAXIMUM_BLOCK_WEIGHT);
      weights.reserved = Some(
        MAXIMUM_BLOCK_WEIGHT - NORMAL_DISPATCH_RATIO * MAXIMUM_BLOCK_WEIGHT
      );
    })
    .avg_block_initialization(AVERAGE_ON_INITIALIZE_RATIO)
    .build_or_panic();
  pub const SS58Prefix: u16 = 42;
}
impl frame_system::Config for Runtime {
  type AccountId = AccountId;
  type RuntimeCall = RuntimeCall;
  type Lookup = AccountIdLookup<AccountId, ()>;
  type Index = Index;
  type BlockNumber = BlockNumber;
  type Hash = Hash;
  type Hashing = BlakeTwo256;
  type Header = generic::Header<BlockNumber, BlakeTwo256>;
  type RuntimeEvent = RuntimeEvent;
  type RuntimeOrigin = RuntimeOrigin;
  type BlockHashCount = BlockHashCount;
  type Version = Version;
  type PalletInfo = PalletInfo;
  type AccountData = pallet_balances::AccountData<Balance>;
  type OnNewAccount = ();
  type OnKilledAccount = ();
  type DbWeight = RocksDbWeight;
  type BaseCallFilter = Everything;
  type SystemWeightInfo = ();
  type BlockWeights = RuntimeBlockWeights;
  type BlockLength = RuntimeBlockLength;
  type SS58Prefix = SS58Prefix;
  type OnSetCode = cumulus_pallet_parachain_system::ParachainSetCode<Self>;
  type MaxConsumers = frame_support::traits::ConstU32<16>;
}
parameter_types! {
  pub const MinimumPeriod: u64 = SLOT_DURATION / 2;
}
impl pallet_timestamp::Config for Runtime {
  type Moment = u64;
  type OnTimestampSet = ();
  type MinimumPeriod = MinimumPeriod;
  type WeightInfo = ();
}
parameter_types! {
  pub const UncleGenerations: u32 = 0;
}
impl pallet_authorship::Config for Runtime {
  type FindAuthor = pallet_session::FindAccountFromAuthorIndex<Self, Aura>;
  type EventHandler = (CollatorSelection,);
}
parameter_types! {
  pub const ExistentialDeposit: Balance = EXISTENTIAL_DEPOSIT;
  pub const MaxLocks: u32 = 50;
  pub const MaxReserves: u32 = 50;
}
impl pallet_balances::Config for Runtime {
  type MaxLocks = MaxLocks;
  type Balance = Balance;
  type RuntimeEvent = RuntimeEvent;
  type DustRemoval = ();
  type ExistentialDeposit = ExistentialDeposit;
  type AccountStore = System;
  type WeightInfo = pallet_balances::weights::SubstrateWeight<Runtime>;
  type MaxReserves = MaxReserves;
  type ReserveIdentifier = [u8; 8];
}
parameter_types! {
  pub const TransactionByteFee: Balance = 10 * MICROUNIT;
  pub const OperationalFeeMultiplier: u8 = 5;
}
impl pallet_transaction_payment::Config for Runtime {
  type RuntimeEvent = RuntimeEvent;
  type OnChargeTransaction = pallet_transaction_payment::CurrencyAdapter<Balances, ()>;
  type WeightToFee = WeightToFee;
  type LengthToFee = ConstantMultiplier<Balance, TransactionByteFee>;
  type FeeMultiplierUpdate = SlowAdjustingFeeUpdate<Self>;
  type OperationalFeeMultiplier = OperationalFeeMultiplier;
}
parameter_types! {
  pub const BasicDeposit: Balance = 1000 * CENTS;       pub const FieldDeposit: Balance = 250 * CENTS;        pub const SubAccountDeposit: Balance = 200 * CENTS;   pub const MaxSubAccounts: u32 = 100;
  pub const MaxAdditionalFields: u32 = 100;
  pub const MaxRegistrars: u32 = 20;
}
impl pallet_identity::Config for Runtime {
  type RuntimeEvent = RuntimeEvent;
  type Currency = Balances;
  type BasicDeposit = BasicDeposit;
  type FieldDeposit = FieldDeposit;
  type SubAccountDeposit = SubAccountDeposit;
  type MaxSubAccounts = MaxSubAccounts;
  type MaxAdditionalFields = MaxAdditionalFields;
  type MaxRegistrars = MaxRegistrars;
  type Slashed = Treasury;
  type ForceOrigin = EnsureRoot<AccountId>;
  type RegistrarOrigin = EnsureRoot<AccountId>;
  type WeightInfo = ();
}
parameter_types! {
  pub const DepositBase: Balance = deposit(1, 88);
  pub const DepositFactor: Balance = deposit(0, 32);
}
impl pallet_multisig::Config for Runtime {
  type RuntimeEvent = RuntimeEvent;
  type RuntimeCall = RuntimeCall;
  type Currency = Balances;
  type DepositBase = DepositBase;
  type DepositFactor = DepositFactor;
  type MaxSignatories = ConstU32<100>;
  type WeightInfo = pallet_multisig::weights::SubstrateWeight<Runtime>;
}
impl pallet_sudo::Config for Runtime {
  type RuntimeEvent = RuntimeEvent;
  type RuntimeCall = RuntimeCall;
}
parameter_types! {
  pub const ProxyDepositBase: Balance = deposit(1, 8);
  pub const ProxyDepositFactor: Balance = deposit(0, 33);
  pub const AnnouncementDepositBase: Balance = deposit(1, 8);
  pub const AnnouncementDepositFactor: Balance = deposit(0, 66);
}
#[derive(
  Copy,
  Clone,
  Eq,
  PartialEq,
  Ord,
  PartialOrd,
  Encode,
  Decode,
  RuntimeDebug,
  MaxEncodedLen,
  scale_info::TypeInfo,
)]
pub enum ProxyType {
  Any,
  NonTransfer,
  Governance,
  Marketplaces,
}
impl Default for ProxyType {
  fn default() -> Self {
    Self::Any
  }
}
impl InstanceFilter<RuntimeCall> for ProxyType {
  fn filter(&self, c: &RuntimeCall) -> bool {
    match self {
      ProxyType::Any => true,
      ProxyType::NonTransfer => !matches!(
        c,
        RuntimeCall::Balances(..)
          | RuntimeCall::Assets(..)
          | RuntimeCall::Uniques(..)
          | RuntimeCall::Vesting(pallet_vesting::Call::vested_transfer { .. })
          | RuntimeCall::Indices(pallet_indices::Call::transfer { .. })
      ),
      ProxyType::Governance => matches!(
        c,
        RuntimeCall::Bounties(..)
					| RuntimeCall::ChildBounties(..)
					| RuntimeCall::Council(..)
					| RuntimeCall::Society(..)
					| RuntimeCall::Treasury(..)
      ),
      ProxyType::Marketplaces => matches!(c, RuntimeCall::GatedMarketplace(..)),
    }
  }
  fn is_superset(&self, o: &Self) -> bool {
    match (self, o) {
      (x, y) if x == y => true,
      (ProxyType::Any, _) => true,
      (_, ProxyType::Any) => false,
      (ProxyType::NonTransfer, _) => true,
      _ => false,
    }
  }
}
impl pallet_proxy::Config for Runtime {
  type RuntimeEvent = RuntimeEvent;
  type RuntimeCall = RuntimeCall;
  type Currency = Balances;
  type ProxyType = ProxyType;
  type ProxyDepositBase = ProxyDepositBase;
  type ProxyDepositFactor = ProxyDepositFactor;
  type MaxProxies = ConstU32<32>;
  type WeightInfo = pallet_proxy::weights::SubstrateWeight<Runtime>;
  type MaxPending = ConstU32<32>;
  type CallHasher = BlakeTwo256;
  type AnnouncementDepositBase = AnnouncementDepositBase;
  type AnnouncementDepositFactor = AnnouncementDepositFactor;
}
parameter_types! {
  pub const ConfigDepositBase: Balance = 500 * CENTS;
  pub const FriendDepositFactor: Balance = 50 * CENTS;
  pub const MaxFriends: u16 = 9;
  pub const RecoveryDeposit: Balance = 500 * CENTS;
}
impl pallet_recovery::Config for Runtime {
  type RuntimeEvent = RuntimeEvent;
  type WeightInfo = pallet_recovery::weights::SubstrateWeight<Runtime>;
  type RuntimeCall = RuntimeCall;
  type Currency = Balances;
  type ConfigDepositBase = ConfigDepositBase;
  type FriendDepositFactor = FriendDepositFactor;
  type MaxFriends = MaxFriends;
  type RecoveryDeposit = RecoveryDeposit;
}
parameter_types! {
  pub const IndexDeposit: Balance = 100 * CENTS;
}
impl pallet_indices::Config for Runtime {
  type AccountIndex = AccountIndex;
  type Currency = Balances;
  type Deposit = IndexDeposit;
  type RuntimeEvent = RuntimeEvent;
  type WeightInfo = ();
}
parameter_types! {
  pub const MembershipMaxMembers: u32 = 100_000;
}
impl pallet_membership::Config for Runtime {
  type RuntimeEvent = RuntimeEvent;
  type AddOrigin = EnsureRoot<AccountId>;
  type RemoveOrigin = EnsureRoot<AccountId>;
  type SwapOrigin = EnsureRoot<AccountId>;
  type ResetOrigin = EnsureRoot<AccountId>;
  type PrimeOrigin = EnsureRoot<AccountId>;
  type MembershipInitialized = Council;
  type MembershipChanged = Council;
  type MaxMembers = MembershipMaxMembers;
  type WeightInfo = ();
}
parameter_types! {
  pub CouncilMotionDuration: BlockNumber = 3 * DAYS;
  pub const CouncilMaxProposals: u32 = 100;
  pub const CouncilMaxMembers: u32 = 100;
}
type CouncilCollective = pallet_collective::Instance1;
impl pallet_collective::Config<CouncilCollective> for Runtime {
  type RuntimeOrigin = RuntimeOrigin;
  type Proposal = RuntimeCall;
  type RuntimeEvent = RuntimeEvent;
  type MotionDuration = CouncilMotionDuration;
  type MaxProposals = CouncilMaxProposals;
  type MaxMembers = CouncilMaxMembers;
  type DefaultVote = pallet_collective::PrimeDefaultVote;
  type WeightInfo = ();
}
impl pallet_randomness_collective_flip::Config for Runtime {}
parameter_types! {
  pub const CandidateDeposit: Balance = 1000 * CENTS;
  pub const WrongSideDeduction: Balance = 200 * CENTS;
  pub const MaxStrikes: u32 = 10;
  pub const RotationPeriod: BlockNumber = 7 * DAYS;
  pub const PeriodSpend: Balance = 50000 * CENTS;
  pub const MaxLockDuration: BlockNumber = 36 * 30 * DAYS;
  pub const ChallengePeriod: BlockNumber = 7 * DAYS;
  pub const MaxCandidateIntake: u32 = 1;
  pub const SocietyPalletId: PalletId = PalletId(*b"py/socie");
}
impl pallet_society::Config for Runtime {
  type RuntimeEvent = RuntimeEvent;
  type Currency = Balances;
  type Randomness = RandomnessCollectiveFlip;
  type CandidateDeposit = CandidateDeposit;
  type WrongSideDeduction = WrongSideDeduction;
  type MaxStrikes = MaxStrikes;
  type PeriodSpend = PeriodSpend;
  type MembershipChanged = ();
  type RotationPeriod = RotationPeriod;
  type MaxLockDuration = MaxLockDuration;
  type FounderSetOrigin = EnsureRoot<AccountId>;
  type SuspensionJudgementOrigin = pallet_society::EnsureFounder<Runtime>;
  type ChallengePeriod = ChallengePeriod;
  type MaxCandidateIntake = MaxCandidateIntake;
  type PalletId = SocietyPalletId;
}
parameter_types! {
  pub const MinVestedTransfer: Balance = 100 * DOLLARS;
  pub UnvestedFundsAllowedWithdrawReasons: WithdrawReasons =
    WithdrawReasons::except(WithdrawReasons::TRANSFER | WithdrawReasons::RESERVE);
}
impl pallet_vesting::Config for Runtime {
  type RuntimeEvent = RuntimeEvent;
  type Currency = Balances;
  type BlockNumberToBalance = ConvertInto;
  type MinVestedTransfer = MinVestedTransfer;
  type WeightInfo = pallet_vesting::weights::SubstrateWeight<Runtime>;
  type UnvestedFundsAllowedWithdrawReasons = UnvestedFundsAllowedWithdrawReasons;
  const MAX_VESTING_SCHEDULES: u32 = 28;
}
parameter_types! {
  pub const ProposalBond: Permill = Permill::from_percent(5);
  pub const ProposalBondMinimum: Balance = 2000 * CENTS;
  pub const ProposalBondMaximum: Balance = 1 * GRAND;
  pub const SpendPeriod: BlockNumber = 6 * DAYS;
  pub const Burn: Permill = Permill::from_perthousand(2);
  pub const TreasuryPalletId: PalletId = PalletId(*b"py/trsry");
  pub const TipCountdown: BlockNumber = 1 * DAYS;
  pub const TipFindersFee: Percent = Percent::from_percent(20);
  pub const TipReportDepositBase: Balance = 100 * CENTS;
  pub const DataDepositPerByte: Balance = 1 * CENTS;
  pub const MaximumReasonLength: u32 = 16384;
  pub const MaxApprovals: u32 = 100;
  pub const MaxKeys: u32 = 10_000;
  pub const MaxPeerInHeartbeats: u32 = 10_000;
  pub const MaxPeerDataEncodingSize: u32 = 1_000;
}
impl pallet_treasury::Config for Runtime {
  type PalletId = TreasuryPalletId;
  type Currency = Balances;
  type ApproveOrigin = EnsureRoot<AccountId>;
  type RejectOrigin = EnsureRoot<AccountId>;
  type RuntimeEvent = RuntimeEvent;
  type OnSlash = Treasury;
  type ProposalBond = ProposalBond;
  type ProposalBondMinimum = ProposalBondMinimum;
  type ProposalBondMaximum = ProposalBondMaximum; type SpendPeriod = SpendPeriod;
  type SpendOrigin = frame_support::traits::NeverEnsureOrigin<u128>;
  type Burn = Burn;
  type BurnDestination = Treasury;
  type MaxApprovals = MaxApprovals;
  type WeightInfo = ();
  type SpendFunds = Bounties;
}
parameter_types! {
  pub const BountyCuratorDeposit: Permill = Permill::from_percent(50);
  pub const BountyValueMinimum: Balance = 200 * CENTS;
  pub const BountyDepositBase: Balance = 100 * CENTS;
  pub const CuratorDepositMultiplier: Permill = Permill::from_percent(50);
  pub const CuratorDepositMin: Balance = 1 * DOLLARS;
  pub const CuratorDepositMax: Balance = 100 * DOLLARS;
  pub const BountyDepositPayoutDelay: BlockNumber = 4 * DAYS;
  pub const BountyUpdatePeriod: BlockNumber = 90 * DAYS;
}
impl pallet_bounties::Config for Runtime {
  type RuntimeEvent = RuntimeEvent;
  type BountyDepositBase = BountyDepositBase;
  type BountyDepositPayoutDelay = BountyDepositPayoutDelay;
  type BountyUpdatePeriod = BountyUpdatePeriod;
  type CuratorDepositMultiplier = CuratorDepositMultiplier;
  type CuratorDepositMin = CuratorDepositMin;
  type CuratorDepositMax = CuratorDepositMax;
  type BountyValueMinimum = BountyValueMinimum;
  type DataDepositPerByte = DataDepositPerByte;
  type MaximumReasonLength = MaximumReasonLength;
  type WeightInfo = pallet_bounties::weights::SubstrateWeight<Runtime>;
  type ChildBountyManager = ChildBounties;
}
parameter_types! {
  pub const ChildBountyValueMinimum: Balance = 1 * DOLLARS;
}
impl pallet_child_bounties::Config for Runtime {
  type RuntimeEvent = RuntimeEvent;
  type MaxActiveChildBountyCount = ConstU32<200>;
  type ChildBountyValueMinimum = ChildBountyValueMinimum;
  type WeightInfo = ();
}
parameter_types! {
  pub const AssetDeposit: Balance = 100 * DOLLARS;
  pub const ApprovalDeposit: Balance = 1 * DOLLARS;
  pub const StringLimit: u32 = 50;
  pub const MetadataDepositBase: Balance = 10 * DOLLARS;
  pub const MetadataDepositPerByte: Balance = 1 * DOLLARS;
  pub const RemoveItemsLimit: u32 = 1000;
}
impl pallet_assets::Config for Runtime {
  type RuntimeEvent = RuntimeEvent;
  type Balance = u128;
  type AssetId = u32;
  type Currency = Balances;
  type CreateOrigin = AsEnsureOriginWithArg<EnsureSigned<AccountId>>;
  type ForceOrigin = EnsureRoot<AccountId>;
  type AssetDeposit = AssetDeposit;
  type AssetAccountDeposit = ConstU128<DOLLARS>;
  type MetadataDepositBase = MetadataDepositBase;
  type MetadataDepositPerByte = MetadataDepositPerByte;
  type ApprovalDeposit = ApprovalDeposit;
  type StringLimit = StringLimit;
  type Freezer = ();
  type Extra = ();
  type WeightInfo = ();
  type RemoveItemsLimit = RemoveItemsLimit;
  type AssetIdParameter = u32;
  type CallbackHandle = ();
}
parameter_types! {
  pub const PreimageMaxSize: u32 = 4096 * 1024;
  pub const PreimageBaseDeposit: Balance = 1 * DOLLARS;
  pub const PreimageByteDeposit: Balance = 1 * CENTS;
}
impl pallet_preimage::Config for Runtime {
  type WeightInfo = pallet_preimage::weights::SubstrateWeight<Runtime>;
  type RuntimeEvent = RuntimeEvent;
  type Currency = Balances;
  type ManagerOrigin = EnsureRoot<AccountId>;
  type BaseDeposit = PreimageBaseDeposit;
  type ByteDeposit = PreimageByteDeposit;
}
impl pallet_whitelist::Config for Runtime {
  type RuntimeEvent = RuntimeEvent;
  type RuntimeCall = RuntimeCall;
  type WhitelistOrigin = EnsureRoot<AccountId>;
  type DispatchWhitelistedOrigin = EnsureRoot<AccountId>;
  type Preimages = Preimage;
  type WeightInfo = pallet_whitelist::weights::SubstrateWeight<Runtime>;
}
parameter_types! {
  pub const XPubLen: u32 = XPUB_LEN;
  pub const PSBTMaxLen: u32  = 4096;
  pub const MaxVaultsPerUser: u32 = 100;
  pub const MaxCosignersPerVault: u32 = 7;
  pub const VaultDescriptionMaxLen: u32 = 200;
  pub const OutputDescriptorMaxLen: u32 = 4096;
  pub const MaxProposalsPerVault: u32 = 100;
}
impl pallet_bitcoin_vaults::Config for Runtime {
  type AuthorityId = pallet_bitcoin_vaults::types::crypto::TestAuthId;
  type RuntimeEvent = RuntimeEvent;
  type ChangeBDKOrigin = RootOrThreeFifthsOfCouncil;
  type XPubLen = XPubLen;
  type PSBTMaxLen = PSBTMaxLen;
  type MaxVaultsPerUser = MaxVaultsPerUser;
  type MaxCosignersPerVault = MaxCosignersPerVault;
  type VaultDescriptionMaxLen = VaultDescriptionMaxLen;
  type OutputDescriptorMaxLen = OutputDescriptorMaxLen;
  type MaxProposalsPerVault = MaxProposalsPerVault;
}
parameter_types! {
  pub const MaxOwnedDocs: u32 = 100;
  pub const MaxSharedFromDocs: u32 = 100;
  pub const MaxSharedToDocs: u32 = 100;
  pub const DocNameMinLen: u32 = 3;
  pub const DocNameMaxLen: u32 = 50;
  pub const DocDescMinLen: u32 = 5;
  pub const DocDescMaxLen: u32 = 100;
  pub const GroupNameMinLen: u32 = 3;
  pub const GroupNameMaxLen: u32 = 50;
  pub const MaxMemberGroups: u32 = 100;
}
impl pallet_confidential_docs::Config for Runtime {
  type RuntimeEvent = RuntimeEvent;
  type RemoveOrigin = RootOrThreeFifthsOfCouncil;
  type MaxOwnedDocs = MaxOwnedDocs;
  type MaxSharedFromDocs = MaxSharedFromDocs;
  type MaxSharedToDocs = MaxSharedToDocs;
  type DocNameMinLen = DocNameMinLen;
  type DocNameMaxLen = DocNameMaxLen;
  type DocDescMinLen = DocDescMinLen;
  type DocDescMaxLen = DocDescMaxLen;
  type GroupNameMinLen = GroupNameMinLen;
  type GroupNameMaxLen = GroupNameMaxLen;
  type MaxMemberGroups = MaxMemberGroups;
}
impl pallet_remark::Config for Runtime {
  type WeightInfo = pallet_remark::weights::SubstrateWeight<Self>;
  type RuntimeEvent = RuntimeEvent;
}
parameter_types! {
  pub const ReservedXcmpWeight: Weight = MAXIMUM_BLOCK_WEIGHT.saturating_div(4);
  pub const ReservedDmpWeight: Weight = MAXIMUM_BLOCK_WEIGHT.saturating_div(4);
}
impl cumulus_pallet_parachain_system::Config for Runtime {
  type RuntimeEvent = RuntimeEvent;
  type OnSystemEvent = ();
  type SelfParaId = parachain_info::Pallet<Runtime>;
  type OutboundXcmpMessageSource = XcmpQueue;
  type DmpMessageHandler = DmpQueue;
  type ReservedDmpWeight = ReservedDmpWeight;
  type XcmpMessageHandler = XcmpQueue;
  type ReservedXcmpWeight = ReservedXcmpWeight;
  type CheckAssociatedRelayNumber = RelayNumberStrictlyIncreases;
}
impl parachain_info::Config for Runtime {}
impl cumulus_pallet_aura_ext::Config for Runtime {}
impl cumulus_pallet_xcmp_queue::Config for Runtime {
  type RuntimeEvent = RuntimeEvent;
  type XcmExecutor = XcmExecutor<XcmConfig>;
  type ChannelInfo = ParachainSystem;
  type VersionWrapper = ();
  type ExecuteOverweightOrigin = EnsureRoot<AccountId>;
  type ControllerOrigin = EnsureRoot<AccountId>;
  type ControllerOriginConverter = XcmOriginToTransactDispatchOrigin;
  type WeightInfo = ();
  type PriceForSiblingDelivery = ();
}
impl cumulus_pallet_dmp_queue::Config for Runtime {
  type RuntimeEvent = RuntimeEvent;
  type XcmExecutor = XcmExecutor<XcmConfig>;
  type ExecuteOverweightOrigin = EnsureRoot<AccountId>;
}
parameter_types! {
  pub const Period: u32 = 6 * HOURS;
  pub const Offset: u32 = 0;
  pub const MaxAuthorities: u32 = 100_000;
}
impl pallet_session::Config for Runtime {
  type RuntimeEvent = RuntimeEvent;
  type ValidatorId = <Self as frame_system::Config>::AccountId;
  type ValidatorIdOf = pallet_collator_selection::IdentityCollator;
  type ShouldEndSession = pallet_session::PeriodicSessions<Period, Offset>;
  type NextSessionRotation = pallet_session::PeriodicSessions<Period, Offset>;
  type SessionManager = CollatorSelection;
  type SessionHandler = <SessionKeys as sp_runtime::traits::OpaqueKeys>::KeyTypeIdProviders;
  type Keys = SessionKeys;
  type WeightInfo = ();
}
impl pallet_aura::Config for Runtime {
  type AuthorityId = AuraId;
  type DisabledValidators = ();
  type MaxAuthorities = MaxAuthorities;
}
parameter_types! {
  pub const PotId: PalletId = PalletId(*b"PotStake");
  pub const MaxCandidates: u32 = 1000;
  pub const MinCandidates: u32 = 5;
  pub const SessionLength: BlockNumber = 6 * HOURS;
  pub const MaxInvulnerables: u32 = 100;
  pub const ExecutiveBody: BodyId = BodyId::Executive;
}
pub type CollatorSelectionUpdateOrigin = EnsureRoot<AccountId>;
impl pallet_collator_selection::Config for Runtime {
  type RuntimeEvent = RuntimeEvent;
  type Currency = Balances;
  type UpdateOrigin = CollatorSelectionUpdateOrigin;
  type PotId = PotId;
  type MaxCandidates = MaxCandidates;
  type MinCandidates = MinCandidates;
  type MaxInvulnerables = MaxInvulnerables;
  type KickThreshold = Period;
  type ValidatorId = <Self as frame_system::Config>::AccountId;
  type ValidatorIdOf = pallet_collator_selection::IdentityCollator;
  type ValidatorRegistration = Session;
  type WeightInfo = ();
}
pub type SignedPayload = sp_runtime::generic::SignedPayload<RuntimeCall, SignedExtra>;
use codec::{Decode, Encode, MaxEncodedLen};
use sp_runtime::SaturatedConversion;
impl<LocalCall> frame_system::offchain::SendTransactionTypes<LocalCall> for Runtime
where
  RuntimeCall: From<LocalCall>,
{
  type OverarchingCall = RuntimeCall;
  type Extrinsic = UncheckedExtrinsic;
}
impl<LocalCall> frame_system::offchain::CreateSignedTransaction<LocalCall> for Runtime
where
  RuntimeCall: From<LocalCall>,
{
  fn create_transaction<C: frame_system::offchain::AppCrypto<Self::Public, Self::Signature>>(
    call: RuntimeCall,
    public: <Signature as sp_runtime::traits::Verify>::Signer,
    account: AccountId,
    index: Index,
  ) -> Option<(RuntimeCall, <UncheckedExtrinsic as sp_runtime::traits::Extrinsic>::SignaturePayload)>
  {
    let period = BlockHashCount::get() as u64;
    let current_block = System::block_number().saturated_into::<u64>().saturating_sub(1);
    let tip = 0;
    let extra: SignedExtra = (
      frame_system::CheckNonZeroSender::<Runtime>::new(),
      frame_system::CheckSpecVersion::<Runtime>::new(),
      frame_system::CheckTxVersion::<Runtime>::new(),
      frame_system::CheckGenesis::<Runtime>::new(),
      frame_system::CheckEra::<Runtime>::from(generic::Era::mortal(period, current_block)),
      frame_system::CheckNonce::<Runtime>::from(index),
      frame_system::CheckWeight::<Runtime>::new(),
      pallet_transaction_payment::ChargeTransactionPayment::<Runtime>::from(tip),
    );
    let raw_payload = SignedPayload::new(call, extra)
      .map_err(|e| {
        log::warn!("Unable to create signed payload: {:?}", e);
      })
      .ok()?;
    let signature = raw_payload.using_encoded(|payload| C::sign(payload, public))?;
    let address = account;
    let (call, extra, _) = raw_payload.deconstruct();
    Some((call, (sp_runtime::MultiAddress::Id(address), signature.into(), extra)))
  }
}
impl frame_system::offchain::SigningTypes for Runtime {
  type Public = <Signature as sp_runtime::traits::Verify>::Signer;
  type Signature = Signature;
}
parameter_types! {
  pub const CollectionDeposit: Balance = 100 * DOLLARS;
  pub const ItemDeposit: Balance = 1 * DOLLARS;
  pub const KeyLimit: u32 = 32;
  pub const ValueLimit: u32 = 256;
  pub const ChildMaxLen: u32 = 25;
  pub const MaxParentsInCollection: u32 = 4_294_967_295;
}
impl pallet_uniques::Config for Runtime {
  type RuntimeEvent = RuntimeEvent;
  type CollectionId = u32;
  type ItemId = u32;
  type Currency = Balances;
  type ForceOrigin = frame_system::EnsureRoot<AccountId>;
  type CollectionDeposit = CollectionDeposit;
  type ItemDeposit = ItemDeposit;
  type MetadataDepositBase = MetadataDepositBase;
  type AttributeDepositBase = MetadataDepositBase;
  type DepositPerByte = MetadataDepositPerByte;
  type StringLimit = StringLimit;
  type KeyLimit = KeyLimit;
  type ValueLimit = ValueLimit;
  type WeightInfo = pallet_uniques::weights::SubstrateWeight<Runtime>;
  type CreateOrigin = AsEnsureOriginWithArg<EnsureSigned<AccountId>>;
  type Locker = ();
}
impl pallet_fruniques::Config for Runtime {
  type RuntimeEvent = RuntimeEvent;
  type RemoveOrigin = RootOrThreeFifthsOfCouncil;
  type ChildMaxLen = ChildMaxLen;
  type MaxParentsInCollection = MaxParentsInCollection;
  type Rbac = RBAC;
}
parameter_types! {
  pub const LabelMaxLen:u32 = 32;
  pub const MaxAuthsPerMarket:u32 = 3; pub const MaxRolesPerAuth: u32 = 2;
  pub const MaxApplicants: u32 = 10;
  pub const MaxBlockedUsersPerMarket: u32 = 100;
  pub const NotesMaxLen: u32 = 256;
  pub const MaxFeedbackLen: u32 = 256;
  pub const NameMaxLen: u32 = 100;
  pub const MaxFiles: u32 = 10;
  pub const MaxApplicationsPerCustodian: u32 = 10;
  pub const MaxMarketsPerItem: u32 = 10;
  pub const MaxOffersPerMarket: u32 = 100;
}
impl pallet_gated_marketplace::Config for Runtime {
  type RuntimeEvent = RuntimeEvent;
  type MaxAuthsPerMarket = MaxAuthsPerMarket;
  type MaxRolesPerAuth = MaxRolesPerAuth;
  type MaxApplicants = MaxApplicants;
  type MaxBlockedUsersPerMarket = MaxBlockedUsersPerMarket;
  type LabelMaxLen = LabelMaxLen;
  type NotesMaxLen = NotesMaxLen;
  type MaxFeedbackLen = MaxFeedbackLen;
  type NameMaxLen = NameMaxLen;
  type MaxFiles = MaxFiles;
  type MaxApplicationsPerCustodian = MaxApplicationsPerCustodian;
  type MaxMarketsPerItem = MaxMarketsPerItem;
  type MaxOffersPerMarket = MaxOffersPerMarket;
  type Timestamp = Timestamp;
  type Moment = Moment;
  type Rbac = RBAC;
}
impl pallet_mapped_assets::Config for Runtime {
  type RuntimeEvent = RuntimeEvent;
  type Balance = u128;
  type AssetId = u32;
  type Currency = Balances;
  type CreateOrigin = AsEnsureOriginWithArg<EnsureSigned<AccountId>>;
  type ForceOrigin = EnsureRoot<AccountId>;
  type AssetDeposit = AssetDeposit;
  type AssetAccountDeposit = ConstU128<DOLLARS>;
  type MetadataDepositBase = MetadataDepositBase;
  type MetadataDepositPerByte = MetadataDepositPerByte;
  type ApprovalDeposit = ApprovalDeposit;
  type StringLimit = StringLimit;
  type Freezer = ();
  type Extra = ();
  type WeightInfo = ();
  type MaxReserves = MaxReserves;
  type ReserveIdentifier = u32;
  type RemoveItemsLimit = RemoveItemsLimit;
  type AssetIdParameter = u32;
  type CallbackHandle = DefaultCallback;
  type Rbac = RBAC;
}
parameter_types! {
  pub const MaxScopesPerPallet: u32 = 1000;
  pub const MaxRolesPerPallet: u32 = 20;
  pub const RoleMaxLen: u32 = 30;
  pub const PermissionMaxLen: u32 = 30;
  pub const MaxPermissionsPerRole: u32 = 12;
  pub const MaxRolesPerUser: u32 = 10;
  pub const MaxUsersPerRole: u32 = 10;
}
impl pallet_rbac::Config for Runtime {
  type RemoveOrigin = EnsureRoot<AccountId>;
  type RuntimeEvent = RuntimeEvent;
  type MaxScopesPerPallet = MaxScopesPerPallet;
  type MaxRolesPerPallet = MaxRolesPerPallet;
  type RoleMaxLen = RoleMaxLen;
  type PermissionMaxLen = PermissionMaxLen;
  type MaxPermissionsPerRole = MaxPermissionsPerRole;
  type MaxRolesPerUser = MaxRolesPerUser;
  type MaxUsersPerRole = MaxUsersPerRole;
}
parameter_types! {
  pub const MaxDocuments:u32 = 100;
  pub const MaxProjectsPerUser:u32 = 10_000;
  pub const MaxUserPerProject:u32 = 100_000; pub const MaxBuildersPerProject:u32 = 25_00;
  pub const MaxInvestorsPerProject:u32 = 25_000;
  pub const MaxIssuersPerProject:u32 = 25_000;
  pub const MaxRegionalCenterPerProject:u32 = 25_000;
  pub const MaxProjectsPerInvestor:u32 = 1;
  pub const MaxDrawdownsPerProject:u32 = 10_000;
  pub const MaxTransactionsPerDrawdown:u32 = 1_000;
  pub const MaxRegistrationsAtTime:u32 = 100;
  pub const MaxExpendituresPerProject:u32 = 100_000;
  pub const MaxBanksPerProject:u32 = 10_000;
  pub const MaxJobEligiblesByProject:u32 = 100_000;
  pub const MaxRevenuesByProject:u32 = 100_000;
  pub const MaxTransactionsPerRevenue:u32 = 1_000;
  pub const MaxStatusChangesPerDrawdown:u32 = 1_000;
  pub const MaxStatusChangesPerRevenue:u32 = 1_000;
  pub const MinAdminBalance: Balance = 10_000_000_000_000;
  pub const TransferAmount: Balance = 10_000_000_000_000;
  pub const MaxRecoveryChanges:u32 = 1_000;
}
impl pallet_fund_admin::Config for Runtime {
  type RuntimeEvent = RuntimeEvent;
  type Timestamp = Timestamp;
  type Moment = Moment;
  type Rbac = RBAC;
  type RemoveOrigin = EitherOfDiverse<
    EnsureRoot<AccountId>,
    pallet_collective::EnsureProportionAtLeast<AccountId, CouncilCollective, 3, 5>,
  >;
  type Currency = Balances;
  type MaxDocuments = MaxDocuments;
  type MaxProjectsPerUser = MaxProjectsPerUser;
  type MaxUserPerProject = MaxUserPerProject;
  type MaxBuildersPerProject = MaxBuildersPerProject;
  type MaxInvestorsPerProject = MaxInvestorsPerProject;
  type MaxIssuersPerProject = MaxIssuersPerProject;
  type MaxRegionalCenterPerProject = MaxRegionalCenterPerProject;
  type MaxDrawdownsPerProject = MaxDrawdownsPerProject;
  type MaxTransactionsPerDrawdown = MaxTransactionsPerDrawdown;
  type MaxRegistrationsAtTime = MaxRegistrationsAtTime;
  type MaxExpendituresPerProject = MaxExpendituresPerProject;
  type MaxProjectsPerInvestor = MaxProjectsPerInvestor;
  type MaxBanksPerProject = MaxBanksPerProject;
  type MaxJobEligiblesByProject = MaxJobEligiblesByProject;
  type MaxRevenuesByProject = MaxRevenuesByProject;
  type MaxTransactionsPerRevenue = MaxTransactionsPerRevenue;
  type MaxStatusChangesPerDrawdown = MaxStatusChangesPerDrawdown;
  type MaxStatusChangesPerRevenue = MaxStatusChangesPerRevenue;
  type MaxRecoveryChanges = MaxRecoveryChanges;
  type MinAdminBalance = MinAdminBalance;
  type TransferAmount = TransferAmount;
}
impl pallet_template::Config for Runtime {
  type RuntimeEvent = RuntimeEvent;
}
construct_runtime!(
  pub enum Runtime where
    Block = Block,
    NodeBlock = opaque::Block,
    UncheckedExtrinsic = UncheckedExtrinsic,
  {
    System: frame_system::{Pallet, Call, Config, Storage, Event<T>} = 0,
    ParachainSystem: cumulus_pallet_parachain_system::{
      Pallet, Call, Config, Storage, Inherent, Event<T>, ValidateUnsigned,
    } = 1,
    Timestamp: pallet_timestamp::{Pallet, Call, Storage, Inherent} = 2,
    ParachainInfo: parachain_info::{Pallet, Storage, Config} = 3,
    Balances: pallet_balances::{Pallet, Call, Storage, Config<T>, Event<T>} = 10,
    TransactionPayment: pallet_transaction_payment::{Pallet, Storage, Event<T>} = 11,
    Authorship: pallet_authorship::{Pallet, Storage} = 20,
    CollatorSelection: pallet_collator_selection::{Pallet, Call, Storage, Event<T>, Config<T>} = 21,
    Session: pallet_session::{Pallet, Call, Storage, Event, Config<T>} = 22,
    Aura: pallet_aura::{Pallet, Storage, Config<T>} = 23,
    AuraExt: cumulus_pallet_aura_ext::{Pallet, Storage, Config} = 24,
    XcmpQueue: cumulus_pallet_xcmp_queue::{Pallet, Call, Storage, Event<T>} = 30,
    PolkadotXcm: pallet_xcm::{Pallet, Call, Event<T>, Origin, Config} = 31,
    CumulusXcm: cumulus_pallet_xcm::{Pallet, Event<T>, Origin} = 32,
    DmpQueue: cumulus_pallet_dmp_queue::{Pallet, Call, Storage, Event<T>} = 33,
    Bounties: pallet_bounties::{Pallet, Call, Storage, Event<T>} = 61,
    Treasury: pallet_treasury::{Pallet, Call, Storage, Config, Event<T>} = 62,
    ChildBounties: pallet_child_bounties::{Pallet, Call, Storage, Event<T>} = 63,
    Assets: pallet_assets::{Pallet, Call, Storage, Event<T>} = 64,
    Council: pallet_collective::<Instance1> = 81,
    RandomnessCollectiveFlip: pallet_randomness_collective_flip::{Pallet, Storage}  = 82,
    Society: pallet_society::{Pallet, Call, Storage, Event<T>}  = 83,
    Identity: pallet_identity::{Pallet, Call, Storage, Event<T>}  = 84,
    Recovery: pallet_recovery::{Pallet, Call, Storage, Event<T>}  = 85,
    Indices: pallet_indices::{Pallet, Call, Storage, Event<T>}  = 86,
    Membership: pallet_membership::{Pallet, Call, Storage, Event<T>}  = 87,
    Multisig: pallet_multisig::{Pallet, Call, Storage, Event<T>}  = 88,
    Vesting: pallet_vesting::{Pallet, Call, Storage, Event<T>}  = 89,
    Sudo: pallet_sudo::{Pallet, Call, Storage, Event<T>, Config<T>}  = 90,
    Proxy: pallet_proxy::{Pallet, Call, Storage, Event<T>}  = 91,
    Remark: pallet_remark::{Pallet, Call, Storage, Event<T>}  = 52,
    Preimage: pallet_preimage::{Pallet, Call, Storage, Event<T>}  = 100,
    Whitelist: pallet_whitelist::{Pallet, Call, Storage, Event<T>}  = 101,
    BitcoinVaults: pallet_bitcoin_vaults::{Pallet, Call, Storage, Event<T>, ValidateUnsigned}  = 151,
    Uniques: pallet_uniques::{Pallet, Call, Storage, Event<T>}  = 152,
    Fruniques: pallet_fruniques::{Pallet, Call, Storage, Event<T>}  = 153,
    GatedMarketplace: pallet_gated_marketplace::{Pallet, Call, Storage, Event<T>}  = 154,
    RBAC: pallet_rbac::{Pallet, Call, Storage, Event<T>}  = 155,
    ConfidentialDocs: pallet_confidential_docs::{Pallet, Call, Storage, Event<T>}  = 156,
    FundAdmin: pallet_fund_admin::{Pallet, Call, Storage, Event<T>}  = 157,
    TemplateModule: pallet_template::{Pallet, Call, Storage, Event<T>} = 158,
    MappedAssets: pallet_mapped_assets::{Pallet, Call, Storage, Event<T>} = 159,
  }
);
#[cfg(feature = "runtime-benchmarks")]
#[macro_use]
extern crate frame_benchmarking;
#[cfg(feature = "runtime-benchmarks")]
mod benches {
  define_benchmarks!(
    [frame_system, SystemBench::<Runtime>]
    [pallet_balances, Balances]
    [pallet_session, SessionBench::<Runtime>]
    [pallet_timestamp, Timestamp]
    [pallet_collator_selection, CollatorSelection]
    [cumulus_pallet_xcmp_queue, XcmpQueue]
  );
}
impl_runtime_apis! {
  impl sp_consensus_aura::AuraApi<Block, AuraId> for Runtime {
    fn slot_duration() -> sp_consensus_aura::SlotDuration {
      sp_consensus_aura::SlotDuration::from_millis(Aura::slot_duration())
    }
    fn authorities() -> Vec<AuraId> {
      Aura::authorities().into_inner()
    }
  }
  impl sp_api::Core<Block> for Runtime {
    fn version() -> RuntimeVersion {
      VERSION
    }
    fn execute_block(block: Block) {
      Executive::execute_block(block)
    }
    fn initialize_block(header: &<Block as BlockT>::Header) {
      Executive::initialize_block(header)
    }
  }
  impl sp_api::Metadata<Block> for Runtime {
    fn metadata() -> OpaqueMetadata {
      OpaqueMetadata::new(Runtime::metadata().into())
    }
  }
  impl sp_block_builder::BlockBuilder<Block> for Runtime {
    fn apply_extrinsic(extrinsic: <Block as BlockT>::Extrinsic) -> ApplyExtrinsicResult {
      Executive::apply_extrinsic(extrinsic)
    }
    fn finalize_block() -> <Block as BlockT>::Header {
      Executive::finalize_block()
    }
    fn inherent_extrinsics(data: sp_inherents::InherentData) -> Vec<<Block as BlockT>::Extrinsic> {
      data.create_extrinsics()
    }
    fn check_inherents(
      block: Block,
      data: sp_inherents::InherentData,
    ) -> sp_inherents::CheckInherentsResult {
      data.check_extrinsics(&block)
    }
  }
  impl sp_transaction_pool::runtime_api::TaggedTransactionQueue<Block> for Runtime {
    fn validate_transaction(
      source: TransactionSource,
      tx: <Block as BlockT>::Extrinsic,
      block_hash: <Block as BlockT>::Hash,
    ) -> TransactionValidity {
      Executive::validate_transaction(source, tx, block_hash)
    }
  }
  impl sp_offchain::OffchainWorkerApi<Block> for Runtime {
    fn offchain_worker(header: &<Block as BlockT>::Header) {
      Executive::offchain_worker(header)
    }
  }
  impl sp_session::SessionKeys<Block> for Runtime {
    fn generate_session_keys(seed: Option<Vec<u8>>) -> Vec<u8> {
      SessionKeys::generate(seed)
    }
    fn decode_session_keys(
      encoded: Vec<u8>,
    ) -> Option<Vec<(Vec<u8>, KeyTypeId)>> {
      SessionKeys::decode_into_raw_public_keys(&encoded)
    }
  }
  impl frame_system_rpc_runtime_api::AccountNonceApi<Block, AccountId, Index> for Runtime {
    fn account_nonce(account: AccountId) -> Index {
      System::account_nonce(account)
    }
  }
  impl pallet_transaction_payment_rpc_runtime_api::TransactionPaymentApi<Block, Balance> for Runtime {
    fn query_info(
      uxt: <Block as BlockT>::Extrinsic,
      len: u32,
    ) -> pallet_transaction_payment_rpc_runtime_api::RuntimeDispatchInfo<Balance> {
      TransactionPayment::query_info(uxt, len)
    }
    fn query_fee_details(
      uxt: <Block as BlockT>::Extrinsic,
      len: u32,
    ) -> pallet_transaction_payment::FeeDetails<Balance> {
      TransactionPayment::query_fee_details(uxt, len)
    }
    fn query_weight_to_fee(weight: Weight) -> Balance {
      TransactionPayment::weight_to_fee(weight)
    }
    fn query_length_to_fee(length: u32) -> Balance {
      TransactionPayment::length_to_fee(length)
    }
  }
  impl pallet_transaction_payment_rpc_runtime_api::TransactionPaymentCallApi<Block, Balance, RuntimeCall>
    for Runtime
  {
    fn query_call_info(
      call: RuntimeCall,
      len: u32,
    ) -> pallet_transaction_payment::RuntimeDispatchInfo<Balance> {
      TransactionPayment::query_call_info(call, len)
    }
    fn query_call_fee_details(
      call: RuntimeCall,
      len: u32,
    ) -> pallet_transaction_payment::FeeDetails<Balance> {
      TransactionPayment::query_call_fee_details(call, len)
    }
    fn query_weight_to_fee(weight: Weight) -> Balance {
      TransactionPayment::weight_to_fee(weight)
    }
    fn query_length_to_fee(length: u32) -> Balance {
      TransactionPayment::length_to_fee(length)
    }
  }
  impl cumulus_primitives_core::CollectCollationInfo<Block> for Runtime {
    fn collect_collation_info(header: &<Block as BlockT>::Header) -> cumulus_primitives_core::CollationInfo {
      ParachainSystem::collect_collation_info(header)
    }
  }
  #[cfg(feature = "try-runtime")]
  impl frame_try_runtime::TryRuntime<Block> for Runtime {
    fn on_runtime_upgrade(checks: frame_try_runtime::UpgradeCheckSelect) -> (Weight, Weight) {
      let weight = Executive::try_runtime_upgrade(checks).unwrap();
      (weight, RuntimeBlockWeights::get().max_block)
    }
    fn execute_block(
      block: Block,
      state_root_check: bool,
      signature_check: bool,
      select: frame_try_runtime::TryStateSelect
    ) -> Weight {
      Executive::try_execute_block(block, state_root_check, signature_check, select).expect("execute-block failed")
    }
  }
  #[cfg(feature = "runtime-benchmarks")]
  impl frame_benchmarking::Benchmark<Block> for Runtime {
    fn benchmark_metadata(extra: bool) -> (
      Vec<frame_benchmarking::BenchmarkList>,
      Vec<frame_support::traits::StorageInfo>,
    ) {
      use frame_benchmarking::{Benchmarking, BenchmarkList};
      use frame_support::traits::StorageInfoTrait;
      use frame_system_benchmarking::Pallet as SystemBench;
      use cumulus_pallet_session_benchmarking::Pallet as SessionBench;
      let mut list = Vec::<BenchmarkList>::new();
      list_benchmarks!(list, extra);
      let storage_info = AllPalletsWithSystem::storage_info();
      return (list, storage_info)
    }
    fn dispatch_benchmark(
      config: frame_benchmarking::BenchmarkConfig
    ) -> Result<Vec<frame_benchmarking::BenchmarkBatch>, sp_runtime::RuntimeString> {
      use frame_benchmarking::{Benchmarking, BenchmarkBatch, TrackedStorageKey};
      use frame_system_benchmarking::Pallet as SystemBench;
      impl frame_system_benchmarking::Config for Runtime {}
      use cumulus_pallet_session_benchmarking::Pallet as SessionBench;
      impl cumulus_pallet_session_benchmarking::Config for Runtime {}
      let whitelist: Vec<TrackedStorageKey> = vec![
        hex_literal::hex!("26aa394eea5630e07c48ae0c9558cef702a5c1b19ab7a04f536c519aca4983ac").to_vec().into(),
        hex_literal::hex!("c2261276cc9d1f8598ea4b6a74b15c2f57c875e4cff74148e4628f264b974c80").to_vec().into(),
        hex_literal::hex!("26aa394eea5630e07c48ae0c9558cef7ff553b5a9862a516939d82b3d3d8661a").to_vec().into(),
        hex_literal::hex!("26aa394eea5630e07c48ae0c9558cef70a98fdbe9ce6c55837576c60c7af3850").to_vec().into(),
        hex_literal::hex!("26aa394eea5630e07c48ae0c9558cef780d41e5e16056765bc8461851072c9d7").to_vec().into(),
      ];
      let mut batches = Vec::<BenchmarkBatch>::new();
      let params = (&config, &whitelist);
      add_benchmarks!(params, batches);
      if batches.is_empty() { return Err("Benchmark not found for this pallet.".into()) }
      Ok(batches)
    }
  }
}
struct CheckInherents;
impl cumulus_pallet_parachain_system::CheckInherents<Block> for CheckInherents {
  fn check_inherents(
    block: &Block,
    relay_state_proof: &cumulus_pallet_parachain_system::RelayChainStateProof,
  ) -> sp_inherents::CheckInherentsResult {
    let relay_chain_slot = relay_state_proof
      .read_slot()
      .expect("Could not read the relay chain slot from the proof");
    let inherent_data =
      cumulus_primitives_timestamp::InherentDataProvider::from_relay_chain_slot_and_duration(
        relay_chain_slot,
        sp_std::time::Duration::from_secs(6),
      )
      .create_inherent_data()
      .expect("Could not create the timestamp inherent data");
    inherent_data.check_extrinsics(block)
  }
}
cumulus_pallet_parachain_system::register_validate_block! {
  Runtime = Runtime,
  BlockExecutor = cumulus_pallet_aura_ext::BlockExecutor::<Runtime, Executive>,
  CheckInherents = CheckInherents,
}